Compare commits
12 commits
main
...
webSupport
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
217c63a07a | ||
|
|
f0471f35f8 | ||
|
|
f5fef07e0c | ||
|
|
3650878399 | ||
|
|
a3458a2950 | ||
|
|
1f81bb7303 | ||
|
|
8e79abc243 | ||
|
|
d3c313e8a4 | ||
|
|
e933198a85 | ||
|
|
51e73a0f90 | ||
|
|
af7ce57d89 | ||
|
|
d76e12d83e |
6435 changed files with 451450 additions and 423763 deletions
|
|
@ -3,7 +3,7 @@
|
|||
"isRoot": true,
|
||||
"tools": {
|
||||
"modernuoschemagenerator": {
|
||||
"version": "4.0.0",
|
||||
"version": "2.1.4",
|
||||
"commands": [
|
||||
"ModernUOSchemaGenerator"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Read and follow all instructions in CLAUDE.md in this repository's root.
|
||||
|
|
@ -135,19 +135,6 @@ dotnet_style_qualification_for_field=false:suggestion
|
|||
dotnet_style_qualification_for_method=false:suggestion
|
||||
dotnet_style_qualification_for_property=false:suggestion
|
||||
dotnet_style_require_accessibility_modifiers=for_non_interface_members:suggestion
|
||||
# Added by Derek
|
||||
dotnet_diagnostic.IDE0022.severity = none # expression bodies
|
||||
dotnet_diagnostic.IDE0130.severity = none # namespace not matching file location
|
||||
dotnet_diagnostic.IDE0290.severity = none # primary constructors
|
||||
dotnet_diagnostic.IDE1006.severity = none # naming violations with "_"
|
||||
dotnet_diagnostic.IDE0038.severity = none # pattern matching
|
||||
dotnet_diagnostic.IDE0008.severity = none # using var
|
||||
# probably should be ruled var or not var across the board but it's just suggestions anyway.
|
||||
# Leave this here in case we want to turn it on in the future
|
||||
# csharp_style_var_for_built_in_types = true:suggestion # suggest using var (implied) variables
|
||||
# csharp_style_var_when_type_is_apparent = true:suggestion # suggest using var (implied) variables
|
||||
# csharp_style_var_elsewhere = true:suggestion # suggest using var (implied) variables
|
||||
dotnet_diagnostic.RCS1123.severity = none
|
||||
|
||||
# ReSharper properties
|
||||
resharper_apply_auto_detected_rules=false
|
||||
|
|
|
|||
3
.gitattributes
vendored
3
.gitattributes
vendored
|
|
@ -31,6 +31,3 @@ publish.cmd text eol=lf
|
|||
/.github export-ignore
|
||||
.gitignore export-ignore
|
||||
.gitattributes export-ignore
|
||||
|
||||
# Collapse in Github
|
||||
**/Migrations/*.v*.json linguist-generated=true
|
||||
|
|
|
|||
1
.github/COPILOT-INSTRUCTIONS.md
vendored
1
.github/COPILOT-INSTRUCTIONS.md
vendored
|
|
@ -1 +0,0 @@
|
|||
Read and follow all instructions in CLAUDE.md in this repository's root.
|
||||
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
|
|
@ -9,4 +9,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl
|
|||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
otechie: # Replace with a single Otechie username
|
||||
custom: ["https://muo.gg/paypal", "https://muo.gg/venmo", "https://muo.gg/coffee"]
|
||||
custom: ["https://paypal.me/sabresite", "https://venmo.com/code?user_id=1834446441414656966"]
|
||||
|
|
|
|||
15
.github/dependabot.yml
vendored
15
.github/dependabot.yml
vendored
|
|
@ -1,15 +0,0 @@
|
|||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "nuget" # See documentation for possible values
|
||||
directory: "/" # Location of package manifests
|
||||
schedule:
|
||||
interval: "daily"
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/" # Watches .github/workflows/**
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
10
.github/porcelain.ps1
vendored
10
.github/porcelain.ps1
vendored
|
|
@ -1,10 +0,0 @@
|
|||
$untrackedOrModified = git status --porcelain | Select-String -Pattern "^\?\? |^ M"
|
||||
|
||||
if ($untrackedOrModified) {
|
||||
Write-Host "Untracked or modified files found."
|
||||
Exit 1
|
||||
}
|
||||
else {
|
||||
Write-Host "No untracked or modified files."
|
||||
Exit 0
|
||||
}
|
||||
170
.github/workflows/build-test.yml
vendored
170
.github/workflows/build-test.yml
vendored
|
|
@ -3,179 +3,31 @@ name: Build
|
|||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- '.config/dotnet-tools.json'
|
||||
- 'Projects/**'
|
||||
- 'Directory.Build.props'
|
||||
- 'global.json'
|
||||
- 'version.json'
|
||||
- '*.slnx'
|
||||
pull_request:
|
||||
branches: [main]
|
||||
paths:
|
||||
- '.config/dotnet-tools.json'
|
||||
- 'Projects/**'
|
||||
- 'Directory.Build.props'
|
||||
- 'global.json'
|
||||
- 'version.json'
|
||||
- '*.slnx'
|
||||
|
||||
jobs:
|
||||
build-macos:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
# A hung run otherwise bills the full 360-minute default before GitHub kills it.
|
||||
timeout-minutes: 30
|
||||
name: Build (${{ matrix.name }})
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: macos-15
|
||||
name: MacOS 15
|
||||
- os: macos-26
|
||||
name: MacOS 26
|
||||
- os: macos-11
|
||||
name: MacOS 11
|
||||
- os: macos-12
|
||||
name: MacOS 12
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
|
||||
- name: Install .NET
|
||||
uses: actions/setup-dotnet@v6
|
||||
- name: Setup .NET 6
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
global-json-file: global.json
|
||||
- name: Install Prerequisites
|
||||
run: |
|
||||
brew update
|
||||
brew install icu4c libdeflate argon2
|
||||
- name: Set Library Path
|
||||
run: echo "DYLD_LIBRARY_PATH=/opt/homebrew/lib:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
|
||||
dotnet-version: 6.0.300
|
||||
- name: Build
|
||||
run: dotnet run --project Projects/BuildTool -- --config Release --skip-prereqs
|
||||
- name: Migration Changes
|
||||
run: git diff --exit-code ./**/Migrations/*.v*.json
|
||||
run: ./publish.cmd
|
||||
- name: Test
|
||||
# blame-hang kills a stuck test host after 10 minutes and reports the in-flight
|
||||
# tests plus a process dump instead of hanging until the job timeout.
|
||||
run: |
|
||||
dotnet test --logger trx --results-directory ./TestResults --blame-hang --blame-hang-timeout 10m --blame-hang-dump-type full
|
||||
if [ -z "$(find ./TestResults -name '*.trx' 2>/dev/null)" ]; then
|
||||
echo "::error::No test result files were produced - no test projects ran. Failing to avoid masking failures."
|
||||
exit 1
|
||||
fi
|
||||
- name: Upload test results on failure
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: TestResults-${{ matrix.name }}
|
||||
path: ./TestResults
|
||||
if-no-files-found: ignore
|
||||
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
# A hung run otherwise bills the full 360-minute default before GitHub kills it.
|
||||
timeout-minutes: 30
|
||||
container:
|
||||
image: ${{ matrix.container }}
|
||||
options: --security-opt seccomp=unconfined
|
||||
name: Build (${{ matrix.name }})
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- container: ubuntu:26.04
|
||||
name: Ubuntu 26
|
||||
packageManager: apt
|
||||
- container: ubuntu:noble
|
||||
name: Ubuntu 24
|
||||
packageManager: apt
|
||||
- container: ubuntu:jammy
|
||||
name: Ubuntu 22
|
||||
packageManager: apt
|
||||
- container: debian:trixie
|
||||
name: Debian 13
|
||||
packageManager: apt
|
||||
- container: debian:bookworm
|
||||
name: Debian 12
|
||||
packageManager: apt
|
||||
- container: fedora:44
|
||||
name: Fedora 44
|
||||
packageManager: dnf
|
||||
- container: quay.io/centos/centos:stream9
|
||||
name: CentOS 9 Stream
|
||||
packageManager: dnf
|
||||
epel: true
|
||||
- container: quay.io/centos/centos:stream10
|
||||
name: CentOS 10 Stream
|
||||
packageManager: dnf
|
||||
epel: true
|
||||
- container: almalinux:10
|
||||
name: AlmaLinux 10
|
||||
packageManager: dnf
|
||||
epel: true
|
||||
|
||||
steps:
|
||||
# Enable CRB before EPEL, per the EPEL quickstart. epel-next is not installed:
|
||||
# none of the prerequisites need it, EPEL 10 does not have it, and it is one more
|
||||
# mirrorlist to fetch.
|
||||
- name: Enable EPEL and CRB
|
||||
run: |
|
||||
dnf upgrade --refresh -y
|
||||
dnf install -y dnf-plugins-core
|
||||
dnf config-manager --set-enabled crb
|
||||
dnf install -y epel-release
|
||||
if: ${{ matrix.epel }}
|
||||
# Runtime packages only, deliberately. Installing the -dev packages here would add the
|
||||
# unversioned .so symlink and mask the very thing the binding packages now probe for, so a
|
||||
# regression in versioned-SONAME resolution would sail through CI.
|
||||
- name: Install Prerequisites using dnf
|
||||
run: dnf makecache --refresh && dnf install -y findutils libicu libdeflate libargon2 tzdata
|
||||
if: ${{ matrix.packageManager == 'dnf' }}
|
||||
# ICU's runtime package carries the ABI version in its name (libicu70 on jammy, libicu76 on
|
||||
# trixie) and has no stable alias, so match it by pattern. libicu-dev was the old way to stay
|
||||
# version-independent, but it drags in the unversioned symlink and defeats the check below.
|
||||
- name: Install Prerequisites using apt
|
||||
run: apt-get update -y && apt-get install -y curl '^libicu[0-9]+$' libdeflate0 libargon2-1 tzdata
|
||||
if: ${{ matrix.packageManager == 'apt' }}
|
||||
# Versioned-SONAME resolution is only under test while the unversioned symlink is absent. If a
|
||||
# base image or a package ever starts shipping it, every probe would succeed on the first try
|
||||
# and a regression in the fallback would sail through CI, so fail loudly instead of silently
|
||||
# testing nothing.
|
||||
- name: Assert the unversioned .so symlinks are absent
|
||||
run: |
|
||||
found=""
|
||||
for lib in libicuuc libicui18n libdeflate libargon2; do
|
||||
hit=$(ls /usr/lib/*/"$lib".so /usr/lib64/"$lib".so 2>/dev/null || true)
|
||||
if [ -n "$hit" ]; then
|
||||
found="$found $hit"
|
||||
fi
|
||||
done
|
||||
if [ -n "$found" ]; then
|
||||
echo "::error::Unversioned symlinks present, so CI is no longer exercising versioned SONAME resolution:$found"
|
||||
exit 1
|
||||
fi
|
||||
echo "No unversioned symlinks present; versioned SONAME resolution is under test."
|
||||
- uses: actions/checkout@v7
|
||||
with:
|
||||
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
|
||||
- name: Install .NET
|
||||
uses: actions/setup-dotnet@v6
|
||||
with:
|
||||
global-json-file: global.json
|
||||
- name: Build
|
||||
run: dotnet run --project Projects/BuildTool -- --config Release --skip-prereqs
|
||||
- name: Test
|
||||
# blame-hang kills a stuck test host after 10 minutes and reports the in-flight
|
||||
# tests plus a process dump instead of hanging until the job timeout.
|
||||
run: |
|
||||
dotnet test --logger trx --results-directory ./TestResults --blame-hang --blame-hang-timeout 10m --blame-hang-dump-type full
|
||||
if [ -z "$(find ./TestResults -name '*.trx' 2>/dev/null)" ]; then
|
||||
echo "::error::No test result files were produced - no test projects ran. Failing to avoid masking failures."
|
||||
exit 1
|
||||
fi
|
||||
- name: Upload test results on failure
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: TestResults-${{ matrix.name }}
|
||||
path: ./TestResults
|
||||
if-no-files-found: ignore
|
||||
run: dotnet test --no-restore
|
||||
|
|
|
|||
163
.github/workflows/build-tool-release.yml
vendored
163
.github/workflows/build-tool-release.yml
vendored
|
|
@ -1,163 +0,0 @@
|
|||
name: Build Tool Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- 'Projects/BuildTool/**'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
name: Build (${{ matrix.rid }})
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: windows-latest
|
||||
rid: win-x64
|
||||
artifact: build-tool-win-x64.exe
|
||||
- os: windows-latest
|
||||
rid: win-arm64
|
||||
artifact: build-tool-win-arm64.exe
|
||||
- os: macos-15
|
||||
rid: osx-arm64
|
||||
artifact: build-tool-osx-arm64
|
||||
- os: ubuntu-latest
|
||||
rid: linux-x64
|
||||
artifact: build-tool-linux-x64
|
||||
- os: ubuntu-24.04-arm
|
||||
rid: linux-arm64
|
||||
artifact: build-tool-linux-arm64
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v7
|
||||
with:
|
||||
fetch-depth: 0 # Full clone required for Nerdbank.GitVersioning
|
||||
|
||||
- name: Install .NET
|
||||
uses: actions/setup-dotnet@v6
|
||||
with:
|
||||
global-json-file: global.json
|
||||
|
||||
- name: Publish NativeAOT
|
||||
run: dotnet publish Projects/BuildTool/BuildTool.csproj -c Release -r ${{ matrix.rid }} -o publish/
|
||||
|
||||
- name: Rename artifact (Unix)
|
||||
if: runner.os != 'Windows'
|
||||
run: mv publish/build-tool publish/${{ matrix.artifact }}
|
||||
|
||||
- name: Rename artifact (Windows)
|
||||
if: runner.os == 'Windows'
|
||||
run: mv publish/build-tool.exe publish/${{ matrix.artifact }}
|
||||
shell: bash
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ matrix.artifact }}
|
||||
path: publish/${{ matrix.artifact }}
|
||||
|
||||
sign:
|
||||
needs: build
|
||||
if: github.ref == 'refs/heads/main'
|
||||
runs-on: ubuntu-latest
|
||||
name: Sign (${{ matrix.artifact }})
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
id-token: write
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- artifact: build-tool-win-x64.exe
|
||||
- artifact: build-tool-win-arm64.exe
|
||||
|
||||
steps:
|
||||
- name: Download unsigned artifact
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
name: ${{ matrix.artifact }}
|
||||
path: unsigned/
|
||||
|
||||
- name: Upload for signing
|
||||
id: upload-for-signing
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ matrix.artifact }}-unsigned
|
||||
path: unsigned/${{ matrix.artifact }}
|
||||
|
||||
- name: Submit signing request
|
||||
id: submit
|
||||
uses: signpath/github-action-submit-signing-request@v2
|
||||
with:
|
||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||
organization-id: '${{ secrets.SIGNPATH_ORGANIZATION_ID }}'
|
||||
project-slug: 'modernuo'
|
||||
signing-policy-slug: 'release-signing'
|
||||
artifact-configuration-slug: 'build-tool'
|
||||
github-artifact-id: '${{ steps.upload-for-signing.outputs.artifact-id }}'
|
||||
wait-for-completion: true
|
||||
output-artifact-directory: signed/
|
||||
|
||||
- name: Upload signed artifact
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ matrix.artifact }}-signed
|
||||
path: signed/${{ matrix.artifact }}
|
||||
|
||||
release:
|
||||
needs: [build, sign]
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/main'
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v7
|
||||
|
||||
- name: Move tag to current commit
|
||||
run: |
|
||||
git tag -f build-tool-latest
|
||||
git push origin build-tool-latest --force
|
||||
|
||||
- name: Download signed Windows artifacts
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
pattern: '*-signed'
|
||||
path: artifacts/
|
||||
merge-multiple: true
|
||||
|
||||
- name: Download macOS artifacts
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
pattern: 'build-tool-osx-*'
|
||||
path: artifacts/
|
||||
merge-multiple: true
|
||||
|
||||
- name: Download Linux artifacts
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
pattern: 'build-tool-linux-*'
|
||||
path: artifacts/
|
||||
merge-multiple: true
|
||||
|
||||
- name: Generate checksums
|
||||
run: |
|
||||
cd artifacts
|
||||
sha256sum build-tool-* > checksums-sha256.txt
|
||||
|
||||
- name: Create or update release
|
||||
uses: softprops/action-gh-release@v3
|
||||
with:
|
||||
tag_name: build-tool-latest
|
||||
name: Build Tool (Latest)
|
||||
body: |
|
||||
Latest NativeAOT-compiled build tool binaries.
|
||||
These are automatically downloaded by `publish.cmd` / `publish.sh`.
|
||||
prerelease: true
|
||||
files: |
|
||||
artifacts/build-tool-*
|
||||
artifacts/checksums-sha256.txt
|
||||
make_latest: false
|
||||
74
.github/workflows/create-release.yml
vendored
74
.github/workflows/create-release.yml
vendored
|
|
@ -10,29 +10,65 @@ jobs:
|
|||
name: Create Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
|
||||
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||
- name: Install .NET
|
||||
uses: actions/setup-dotnet@v6
|
||||
with:
|
||||
global-json-file: global.json
|
||||
- name: Compute version
|
||||
uses: dotnet/nbgv@v0.5.2
|
||||
token: ${{ secrets.WORKFLOW_TOKEN }}
|
||||
- name: Install NGBV
|
||||
uses: dotnet/nbgv@master
|
||||
id: nbgv
|
||||
- name: Push version tag
|
||||
run: |
|
||||
git tag ${{ steps.nbgv.outputs.Version }}
|
||||
git push origin ${{ steps.nbgv.outputs.Version }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v3
|
||||
- name: Get Latest Release
|
||||
id: last_release
|
||||
uses: pozetroninc/github-action-get-latest-release@master
|
||||
with:
|
||||
owner: ModernUO
|
||||
repo: ModernUO
|
||||
excludes: prerelease, draft
|
||||
- name: Create fake tag for diffing
|
||||
run: |
|
||||
git config --global user.name "Fake Tag Action"
|
||||
git config --global user.email "hi@modernuo.com"
|
||||
git checkout ${{ steps.last_release.outputs.release }}
|
||||
git tag -fa v0.1.0 -m "Fake release"
|
||||
git checkout -
|
||||
- name: Push git changes
|
||||
uses: ad-m/github-push-action@master
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
|
||||
tags: true
|
||||
- name: Conventional Changelog
|
||||
id: changelog
|
||||
uses: TriPSs/conventional-changelog-action@v3
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
output-file: false
|
||||
skip-version-file: true
|
||||
skip-commit: true
|
||||
release-count: 1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Delete v${{ steps.changelog.outputs.version }} Tag
|
||||
uses: dev-drprasad/delete-tag-and-release@v0.1.3
|
||||
with:
|
||||
delete_release: true
|
||||
tag_name: v${{ steps.changelog.outputs.version }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
|
||||
- name: Delete v0.1.0 Tag
|
||||
uses: dev-drprasad/delete-tag-and-release@v0.1.3
|
||||
with:
|
||||
delete_release: true
|
||||
tag_name: v0.1.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
with:
|
||||
body: ${{ steps.changelog.outputs.clean_changelog }}
|
||||
tag_name: ${{ steps.nbgv.outputs.Version }}
|
||||
name: ${{ steps.nbgv.outputs.Version }}
|
||||
release_name: ${{ steps.nbgv.outputs.Version }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
generate_release_notes: true
|
||||
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
|
||||
|
|
|
|||
18
.github/workflows/post-release-discord.yml
vendored
18
.github/workflows/post-release-discord.yml
vendored
|
|
@ -1,18 +0,0 @@
|
|||
name: Post Release to Discord
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- published
|
||||
|
||||
jobs:
|
||||
post-release-discord:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Post Release on Discord
|
||||
uses: SethCohen/github-releases-to-discord@v1.20.0
|
||||
with:
|
||||
webhook_url: ${{ secrets.WEBHOOK_URL }}
|
||||
username: "Release Changelog"
|
||||
avatar_url: "https://cdn.discordapp.com/icons/751317910504603701/ec26ab4881753077e06122da7b78bf7c.webp"
|
||||
max_description: 2000
|
||||
17
.github/workflows/update-docs.yml
vendored
Normal file
17
.github/workflows/update-docs.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: Updates Docs
|
||||
|
||||
on:
|
||||
repository_dispatch:
|
||||
types: [docs]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-docs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.x
|
||||
- run: pip install mkdocs-material
|
||||
- run: mkdocs gh-deploy --force
|
||||
30
.gitignore
vendored
30
.gitignore
vendored
|
|
@ -1,66 +1,36 @@
|
|||
# Distribution Files
|
||||
/Distribution/Logger
|
||||
/Distribution/Logger.*
|
||||
/Distribution/ModernUO
|
||||
/Distribution/ModernUO.*
|
||||
/Distribution/Server
|
||||
/Distribution/Server.*
|
||||
/Distribution/Assemblies
|
||||
/Distribution/bsdtar
|
||||
/Distribution/Configuration/antimacro.json
|
||||
/Distribution/Configuration/assistants.json
|
||||
/Distribution/Configuration/auto-denylist.json
|
||||
/Distribution/Configuration/bans.json
|
||||
/Distribution/Configuration/blocklist.json
|
||||
/Distribution/Configuration/crowdsec.json
|
||||
/Distribution/Configuration/expansion.json
|
||||
/Distribution/Configuration/firewall.json
|
||||
/Distribution/Configuration/ip-allowlist*.txt
|
||||
/Distribution/Configuration/ip-allowlist*.txt.tmp
|
||||
/Distribution/Configuration/ip-blocklist.txt
|
||||
/Distribution/Configuration/ip-blocklist.txt.tmp
|
||||
/Distribution/Configuration/login-allowlist.json
|
||||
/Distribution/Configuration/login-allowlist.txt
|
||||
/Distribution/Configuration/login-allowlist.txt.tmp
|
||||
/Distribution/Configuration/modernuo.json
|
||||
/Distribution/Configuration/email-settings.json
|
||||
/Distribution/Configuration/throttles.json
|
||||
/Distribution/Configuration/tot.json
|
||||
/Distribution/Data/Pathfinding
|
||||
/Distribution/Logs
|
||||
/Distribution/Archives
|
||||
/Distribution/Backups
|
||||
/Distribution/Saves
|
||||
/Distribution/docs
|
||||
/docs/
|
||||
/Distribution/temp
|
||||
/Distribution/*.dylib
|
||||
/Distribution/*.so
|
||||
/Distribution/*.dll
|
||||
/Distribution/*.exe
|
||||
/Distribution/runtimes
|
||||
/Distribution/nohup.out
|
||||
/Distribution/ref
|
||||
/Distribution/web
|
||||
|
||||
/Projects/*/obj
|
||||
/Projects/*/bin
|
||||
/Projects/*/Generated
|
||||
|
||||
*.swp
|
||||
*.log
|
||||
*.user
|
||||
/.idea
|
||||
/.vs
|
||||
/.vscode
|
||||
/.claude
|
||||
|
||||
.DS_Store
|
||||
|
||||
/packages/*
|
||||
/Distribution/Configuration/server-access.json
|
||||
|
||||
# BuildTool native binaries (downloaded from GitHub Releases).
|
||||
# Ignore everything under tools/ except the operator scripts checked in below.
|
||||
/tools/*
|
||||
!/tools/Export-IpBlocklist.ps1
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Read and follow all instructions in CLAUDE.md in this repository's root.
|
||||
117
CLAUDE.md
117
CLAUDE.md
|
|
@ -1,117 +0,0 @@
|
|||
# ModernUO
|
||||
|
||||
.NET 10 Ultima Online server emulator. Single-threaded game loop. All game logic runs on one thread.
|
||||
|
||||
- **Server engine**: `Projects/Server/` — do NOT modify without explicit request
|
||||
- **Game content**: `Projects/UOContent/` — primary editing target
|
||||
- **Build**: `dotnet build` from repo root
|
||||
|
||||
## Code Audit Rules
|
||||
|
||||
Apply these when writing or reviewing `.cs` files under `Projects/`.
|
||||
|
||||
1. **LINQ** — Tier 1 (zero-cost patterns) free on hot paths; Tier 2 (low overhead) OK on warm paths; Tier 3 (allocating) forbidden on hot paths → `dev-docs/code-standards.md`
|
||||
2. **No `Console.WriteLine`** — use `LogFactory.GetLogger(typeof(MyClass))` → `logger.Information(...)` (requires `using Server.Logging;`)
|
||||
3. **Threading policy** — game logic runs only on the main loop; **never** touch game state (`World`, mobiles, items, maps, timers) from a background thread. Heavy work that *needs* game state must be **chunked** across ticks, not threaded. Heavy work that does *not* need game state (large-file parse, external I/O) **must** run on a background thread **and must yield to world saves** (defer while `World.Saving`/`WorldState.PendingSave`). Publish results back to the loop as an immutable snapshot swapped via a single `volatile` reference — the only sanctioned `volatile`. No `lock`/`Mutex`/`ConcurrentDictionary` in game logic. Rule #10 covers how background work hands results back to the loop → `dev-docs/threading-model.md`
|
||||
4. **No `World.Mobiles`/`World.Items` iteration** — use spatial queries: `map.GetMobilesInRange<T>()`, `map.GetItemsInRange<T>()`
|
||||
5. **Clean up refs in `OnDelete()`/`OnAfterDelete()`** — null out `Item`/`Mobile` references
|
||||
6. **Cancel timers in `OnDelete()`/`OnAfterDelete()`** — call `_token.Cancel()` or `_timer?.Stop()`
|
||||
7. **`STArrayPool<T>.Shared`** not `ArrayPool<T>.Shared` — single-threaded optimized, no locks
|
||||
8. **`PooledRefList<T>`** not `new List<T>()` on hot paths — zero GC pressure, stack-allocated ref struct
|
||||
9. **Serialization** — class must be `partial`, constructor needs `[Constructible]`, `TimerExecutionToken` must NOT have `[SerializableField]`. New classes: use `[SerializationGenerator(version)]` (omit `encoded`). Setters that coerce/veto/run side effects: use `[SerializableField]` args `allowFieldChange: nameof(BoolRefMethod)` / `fieldChanged: nameof(OldNewMethod)` — reserve `[SerializableProperty]` for custom getters. Serializable `Timer` members declare `[DeserializeTimer(nameof(Method))]` on the field (anchored by default — downtime preserves remaining delay; `wallClock: true` = absolute; method runs only when a timer was running at save). Conditional writes: `[SaveFlag(nameof(Should), nameof(Default))]` on the field. When bumping versions, add `MigrateFrom(VXContent)` (X = previous version). Never modify `Deserialize(reader, version)` for version bumps — that method is only for pre-codegen legacy saves. When migrating from pre-codegen Serialize/Deserialize: pass `false` if old code used `reader.ReadInt()`, bump version +1, and keep old logic as `private void Deserialize(IGenericReader reader, int version)` → `dev-docs/serialization.md`, `dev-docs/runuo-migration-docs/02-serialization.md`
|
||||
10. **No `Task.Run`/`new Thread()` for game logic** (tandem with rule #3) — game logic is the single-threaded event loop. Backgrounding is allowed only for work that does not itself touch game state (external service calls, large-file parse). **Prove the need before adding a thread**: measure **on-loop** time, not wall-clock (frozen world is the cost, player latency is not), and gate on `Environment.ProcessorCount` — off-loading creates no CPU and buys nothing on 1–2 cores. New workers go in the vetted table in `dev-docs/threading-model.md` with their measurement. When such work must *feed* game logic: run the heavy/I/O part off-loop and `ConfigureAwait(false)` its awaits so a continuation never resumes on the loop and silently foregrounds heavy work; then hand the result back **explicitly** — publish an immutable snapshot swapped via a `volatile` reference (the loop reads it lock-free), or marshal the apply step with `Core.LoopContext.Post(() => …)`, re-validating in the continuation whatever may have changed while it ran. Never touch game state off-thread; never let the scheduler decide where the heavy work runs → `dev-docs/threading-model.md`
|
||||
11. **Never assume era** — if code uses `Core.AOS`/`Core.SE`/etc., ask which expansion to target
|
||||
12. **Naming** — `_camelCase` private fields, `PascalCase` properties/methods/classes; don't flag legacy `m_` but use `_` for new code
|
||||
13. **No empty gumps** — every gump must produce visual elements. An empty gump leaks on client+server (no way to close it). Use static `DisplayTo()` to validate before constructing → `dev-docs/gump-system.md`
|
||||
14. **PropertyList string literals must be holes** — `$"{"Map"}\t{value}"` not `$"Map\t{value}"`. The handler treats bare text as delimiters, `{}` holes as arguments. Only `\t` should be a bare literal → `dev-docs/property-lists.md`
|
||||
15. **Braces required on all control flow** — `if`, `else`, `for`, `foreach`, `while`, `do`, `switch` must always have braces, even for single-line bodies → `dev-docs/code-standards.md`
|
||||
16. **Prefer switch expressions and switch-when** — use switch expressions for value mapping and switch-when for pattern matching where they improve readability. Exception: skip if unreadable or cold path → `dev-docs/code-standards.md`
|
||||
17. **No `System.Text.StringBuilder`** — use `ValueStringBuilder` with `stackalloc` (bounded output) or `ValueStringBuilder.Create()` (unbounded). Supports `$"..."` interpolation directly. Always use `using var` for disposal. Use `Reset()` instead of reassigning → `dev-docs/string-handling.md`
|
||||
18. **Interpolation anti-patterns on handler-aware APIs** — `Send*`/`Say`/`Emote`/`PublicOverhead*`/`IPropertyList.Add`/gump `AddLabel`/`AddHtml`/`Html.Center`/`SpanWriter.Write*` all have `ref RawInterpolatedStringHandler` overloads that allocate zero strings, but only when the call-site argument is a `$"..."` literal directly. Avoid: ternaries with interpolated branches (`Send(c ? $"a" : $"b")`), switch expressions with interpolated arms, pre-built `var s = $"..."` locals (single-use), `.ToString()` / `.String()` / `string.Format` inside holes, string concat (`{a + b}`), LINQ string ops in holes. Use `:L` format spec for lowercase (`{rank:L}` not `rank.ToString().ToLowerInvariant()`) → `dev-docs/string-handling.md` § Interpolation Anti-Patterns
|
||||
19. **No `InvalidateProperties()` from inside `GetProperties`** — every property a `GetProperties` override reads must be a pure read. `InvalidateProperties()` rebuilds the list in place (`Reset()` + rebuild), and `Reset()` returns the pooled interpolation buffer — which the compiler rents for the whole `$"..."` expression, so every hole is evaluated while it is live — and rewinds the packet cursor. A getter that invalidates therefore throws `ArgumentNullException` (parameter `"array"`) out of `GetProperties` from an unrelated-looking line, or silently corrupts the tooltip. The engine refuses and logs an error; `DEBUG` throws. Lazy recomputation in a getter is fine — the *notification* is not. Invalidate in the setter that changes the value, or defer with `Timer.DelayCall(InvalidateProperties)` → `dev-docs/property-lists.md` § Never Invalidate From Inside `GetProperties`
|
||||
20. **Tick-count math must be wraparound-safe** — compare `Core.TickCount`/`GetTimestamp()` values only by subtraction (`a - b < 0`, never `a < b`), no zero/sign sentinels on tick fields, seed deadline fields from a real tick (never rely on the 0 default). Cloud hypervisors (GCP) pass through the host's never-resetting counter: ticks start enormous and can wrap negative. Linux affected in production; Windows not so far → `dev-docs/tick-counts.md`
|
||||
|
||||
## Dev-Docs Reference
|
||||
|
||||
| Topic | File |
|
||||
|---|---|
|
||||
| Code standards & LINQ tiers | `dev-docs/code-standards.md` |
|
||||
| Serialization system | `dev-docs/serialization.md` |
|
||||
| Content patterns (Items, Mobiles, Creatures) | `dev-docs/content-patterns.md` |
|
||||
| Era & expansion handling | `dev-docs/era-expansion.md` |
|
||||
| Timer system | `dev-docs/timers.md` |
|
||||
| Event scheduler (wall-clock/calendar) | `dev-docs/event-scheduler.md` |
|
||||
| Object property lists (tooltips) | `dev-docs/property-lists.md` |
|
||||
| Gump (UI dialog) system | `dev-docs/gump-system.md` |
|
||||
| Commands & targeting | `dev-docs/commands-targeting.md` |
|
||||
| Event system | `dev-docs/events.md` |
|
||||
| Threading model | `dev-docs/threading-model.md` |
|
||||
| Server hardware requirements | `dev-docs/server-requirements.md` |
|
||||
| Debugging event-loop performance (profiling build, decomposition, GC/RAM) | `dev-docs/debugging-event-loop.md` |
|
||||
| Tick-count overflow rules (subtraction comparisons; GCP pass-through counters) | `dev-docs/tick-counts.md` |
|
||||
| Server lifecycle & bootstrap phases (Configure/ConfigurePrompts/Initialize) | `dev-docs/server-lifecycle.md` |
|
||||
| Platform prerequisites (ICU, tzdata, native libs per distro) | `dev-docs/platform-prerequisites.md` |
|
||||
| Configuration system | `dev-docs/configuration.md` |
|
||||
| Networking & packets | `dev-docs/networking-packets.md` |
|
||||
| IP bans, blocklists & allowlists (incl. unblocking a player) | `dev-docs/ip-bans-and-allowlists.md` |
|
||||
| Region system | `dev-docs/regions.md` |
|
||||
| String handling & ValueStringBuilder | `dev-docs/string-handling.md` |
|
||||
| RunUO migration (overview) | `dev-docs/runuo-migration-docs/00-overview.md` |
|
||||
| RunUO migration (all docs) | `dev-docs/runuo-migration-docs/` |
|
||||
|
||||
## Claude Skills (Opt-In)
|
||||
|
||||
Detailed Claude Code skills live in `dev-docs/claude-skills/`. They are **not auto-loaded** — they must be copied to `.claude/skills/` to activate.
|
||||
|
||||
**When to offer**: If the user is building complex content (new items, creatures, spells, gumps, quests, packets, serialization work, etc.), ask:
|
||||
|
||||
> I have detailed Claude Code skills for this kind of work. Want me to enable them?
|
||||
> I'll copy the relevant files from `dev-docs/claude-skills/` to `.claude/skills/`.
|
||||
|
||||
Then copy only the relevant skill files based on the task:
|
||||
|
||||
| Task | Skills to enable |
|
||||
|---|---|
|
||||
| New Item or Mobile | `modernuo-content-patterns`, `modernuo-serialization`, `modernuo-property-lists` |
|
||||
| Creature / spawn | `modernuo-content-patterns`, `modernuo-serialization`, `modernuo-timers` |
|
||||
| Spell or ability | `modernuo-content-patterns`, `modernuo-serialization`, `modernuo-timers`, `modernuo-era-expansion` |
|
||||
| Gump / UI dialog | `modernuo-gump-system`, `modernuo-commands-targeting` |
|
||||
| Quest or event system | `modernuo-events`, `modernuo-content-patterns`, `modernuo-configuration` |
|
||||
| Scheduled / seasonal / holiday events | `modernuo-event-scheduler`, `modernuo-timers` |
|
||||
| Custom regions / dynamic areas | `modernuo-regions`, `modernuo-content-patterns` |
|
||||
| Packet / networking | `modernuo-networking`, `modernuo-threading` |
|
||||
| Commands | `modernuo-commands-targeting` |
|
||||
| Timer work | `modernuo-timers`, `modernuo-serialization` |
|
||||
| Config system | `modernuo-configuration` |
|
||||
| Era-conditional code | `modernuo-era-expansion` |
|
||||
| String building / formatting | `modernuo-string-handling` |
|
||||
| Code review / audit | `modernuo-code-audit` |
|
||||
| Any `.cs` file edit | `modernuo-code-audit` (always offer for code changes) |
|
||||
| **RunUO Migration** | |
|
||||
| Migrate any RunUO script | `migrate-from-runuo/migrate-foundation` (always), plus system-specific skills below |
|
||||
| Migrate Item/Mobile/Creature | `migrate-from-runuo/migrate-foundation`, `migrate-from-runuo/migrate-serialization`, `migrate-from-runuo/migrate-items-mobiles` |
|
||||
| Migrate serialization | `migrate-from-runuo/migrate-serialization` |
|
||||
| Migrate timers | `migrate-from-runuo/migrate-timers` |
|
||||
| Migrate gumps | `migrate-from-runuo/migrate-gumps` |
|
||||
| Migrate packets | `migrate-from-runuo/migrate-packets` |
|
||||
| Migrate property lists | `migrate-from-runuo/migrate-property-lists` |
|
||||
| Migrate events/commands | `migrate-from-runuo/migrate-commands-events` |
|
||||
| Migrate persistence (WorldSave) | `migrate-from-runuo/migrate-persistence` |
|
||||
| Migrate multi-file system | `migrate-from-runuo/migrate-systems` |
|
||||
|
||||
To enable a skill — Claude Code loads `.claude/skills/<name>/SKILL.md`; a bare `.md` dropped
|
||||
directly into `.claude/skills/` is **not** picked up, and newly installed skills appear in the
|
||||
*next* session:
|
||||
|
||||
```sh
|
||||
# Standard skills (modernuo-*)
|
||||
mkdir -p .claude/skills/<name> && cp dev-docs/claude-skills/<name>.md .claude/skills/<name>/SKILL.md
|
||||
|
||||
# Migration skills — sources live in the migrate-from-runuo/ subfolder, but install under the
|
||||
# bare skill name (the table's "migrate-from-runuo/<name>" is the source path, not the name):
|
||||
mkdir -p .claude/skills/<name> && cp dev-docs/claude-skills/migrate-from-runuo/<name>.md .claude/skills/<name>/SKILL.md
|
||||
```
|
||||
|
||||
Migration skills reference the deep docs in `dev-docs/runuo-migration-docs/` and point to existing ModernUO skills for best practices.
|
||||
|
||||
The `modernuo-code-audit` skill auto-triggers on `.cs` file edits and flags convention violations (warnings only, asks before fixing).
|
||||
|
|
@ -28,6 +28,7 @@ We accept fixes and features! Here are some resources to help you get started on
|
|||
|
||||
If you don't know what a pull request is read this article: https://help.github.com/articles/using-pull-requests. Make sure the repository can build and all tests pass. Familiarize yourself with the project workflow and our coding conventions.
|
||||
|
||||
1. Sign a [Contributor License Agreement](https://cla-assistant.io/modernuo/ModernUO) when submitting your pull request.
|
||||
1. Ensure all files have the appropriate [LICENSE](/LICENSE) header (Line 634-649)
|
||||
1. Ensure any install or build dependencies are removed.
|
||||
1. Update the README.md with details of changes to the interface, this includes new build process,
|
||||
|
|
@ -37,5 +38,6 @@ If you don't know what a pull request is read this article: https://help.github.
|
|||
1. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
|
||||
do not have permission to do that, you may request the second reviewer to merge it for you.
|
||||
|
||||
[aspnet-contributing]: https://github.com/aspnet/AspNetCore/blob/456dbf1309f9fcae1d7b376784088dcd7818c01e/CONTRIBUTING.md
|
||||
[homepage]: http://contributor-covenant.org
|
||||
[version]: http://contributor-covenant.org/version/1/4/
|
||||
|
|
|
|||
|
|
@ -3,13 +3,15 @@
|
|||
<PropertyGroup>
|
||||
<Authors>Kamron Batman</Authors>
|
||||
<Company>ModernUO</Company>
|
||||
<Copyright>2019-2026</Copyright>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<LangVersion>14</LangVersion>
|
||||
<Copyright>2019-2020</Copyright>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Platforms>x64</Platforms>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<LangVersion>preview</LangVersion>
|
||||
<PublicRelease>true</PublicRelease>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<NoWarn>NU1603</NoWarn>
|
||||
<RuntimeIdentifiers>win-x64;win-arm64;osx-x64;osx-arm64;linux-x64;linux-arm64</RuntimeIdentifiers>
|
||||
<RuntimeIdentifiers>win-x64;debian.10-x64;debian.11-x64;ubuntu.16.04-x64;ubuntu.18.04-x64;ubuntu.20.04-x64;centos.7-x64;centos.8-x64;fedora.32-x64;fedora.33-x64;fedora.34-x64;rhel.7-x64;rhel.8-x64;linuxmint.17-x64;linuxmint.18-x64;linuxmint.19-x64;osx-x64</RuntimeIdentifiers>
|
||||
<Configurations>Debug;Release;Analyze</Configurations>
|
||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
|
|
@ -19,38 +21,27 @@
|
|||
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
|
||||
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX>
|
||||
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux>
|
||||
<IsX64 Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture)' == 'X64'">true</IsX64>
|
||||
<IsArm64 Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture)' == 'ARM64'">true</IsArm64>
|
||||
<DefineConstants Condition="'$(IsWindows)'=='true'">WINDOWS</DefineConstants>
|
||||
<DefineConstants Condition="'$(IsOSX)'=='true'">OSX</DefineConstants>
|
||||
<DefineConstants Condition="'$(IsLinux)'=='true'">LINUX</DefineConstants>
|
||||
<DefineConstants Condition="'$(IsOSX)'=='true' OR '$(IsLinux)'=='true'">UNIX</DefineConstants>
|
||||
<DefineConstants Condition="'$(IsX64)'=='true'">CPU_X64</DefineConstants>
|
||||
<DefineConstants Condition="'$(IsArm64)'=='true'">CPU_ARM64</DefineConstants>
|
||||
<DefineConstants Condition="'$(SkipLocalsInitAttribute)'=='true'">NO_LOCAL_INIT</DefineConstants>
|
||||
<DefineConstants>MUO</DefineConstants>
|
||||
<GitVersionBaseDirectory>$(SolutionDir)</GitVersionBaseDirectory>
|
||||
<PredefinedCulturesOnly>false</PredefinedCulturesOnly>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(RuntimeIdentifier)'==''">
|
||||
<DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
|
||||
<SelfContained>false</SelfContained>
|
||||
<InvariantGlobalization>false</InvariantGlobalization>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<InvariantGlobalization>true</InvariantGlobalization>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(IsWindows)'=='true' AND '$(IsX64)'=='true' AND '$(RuntimeIdentifier)'==''">
|
||||
<PropertyGroup Condition="'$(IsWindows)'=='true' AND '$(RuntimeIdentifier)'==''">
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(IsWindows)'=='true' AND '$(IsArm64)'=='true' AND '$(RuntimeIdentifier)'==''">
|
||||
<RuntimeIdentifier>win-arm64</RuntimeIdentifier>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(IsOSX)'=='true' AND '$(IsX64)'=='true' AND '$(RuntimeIdentifier)'==''">
|
||||
<PropertyGroup Condition="'$(IsOSX)'=='true' AND '$(RuntimeIdentifier)'==''">
|
||||
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(IsOSX)'=='true' AND '$(isArm64)'=='true' AND '$(RuntimeIdentifier)'==''">
|
||||
<RuntimeIdentifier>osx-arm64</RuntimeIdentifier>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
||||
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
||||
<Optimize>false</Optimize>
|
||||
|
|
@ -63,19 +54,12 @@
|
|||
<CodeAnalysisRuleSet>..\..\Rules.ruleset</CodeAnalysisRuleSet>
|
||||
<AnalysisLevel>latest</AnalysisLevel>
|
||||
</PropertyGroup>
|
||||
<!-- Event-loop time accounting, compiled out unless requested:
|
||||
dotnet build -p:EventLoopProfiling=true
|
||||
See dev-docs/debugging-event-loop.md. Placed last so it appends to whatever the
|
||||
configuration groups above set DefineConstants to. -->
|
||||
<PropertyGroup Condition="'$(EventLoopProfiling)'=='true'">
|
||||
<DefineConstants>$(DefineConstants);EVENT_LOOP_PROFILING</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Serilog" Version="4.4.0" />
|
||||
<PackageReference Include="Serilog.Sinks.Async" Version="2.1.0" />
|
||||
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
|
||||
<PackageReference Include="Serilog" Version="2.11.0" />
|
||||
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
|
||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
|
||||
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')">
|
||||
<Version>3.10.91</Version>
|
||||
<Version>3.5.107</Version>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<AdditionalFiles Include="..\..\Rules.ruleset" />
|
||||
|
|
|
|||
BIN
Distribution/Data/Binary/Bounds.bin
Normal file
BIN
Distribution/Data/Binary/Bounds.bin
Normal file
Binary file not shown.
|
|
@ -1,25 +0,0 @@
|
|||
# Bounty Boards — placed when murderSystem.bountiesEnabled is true
|
||||
# 0x1E5E = east-facing, 0x1E5F = south-facing
|
||||
|
||||
BountyBoard 0x1E5E
|
||||
2887 3482 17
|
||||
2734 2184 0
|
||||
2891 680 0
|
||||
5668 3123 13
|
||||
|
||||
BountyBoard 0x1E5F
|
||||
5278 3981 37
|
||||
1442 1687 0
|
||||
2512 551 0
|
||||
600 2147 0
|
||||
|
||||
# Guards — one per board, standing in front
|
||||
Spawner 0x1F13 (Spawn=WarriorGuard; Count=1; HomeRange=0; WalkingRange=5; Name=Bounty Board Guard Spawner)
|
||||
2887 3487 17
|
||||
2734 2189 0
|
||||
2891 685 0
|
||||
5668 3128 13
|
||||
5283 3981 37
|
||||
1447 1687 0
|
||||
2517 551 0
|
||||
605 2147 0
|
||||
|
|
@ -57,10 +57,6 @@ Static 0x07C3
|
|||
Static 0x07C4
|
||||
1442 1548 30
|
||||
|
||||
# fireplace
|
||||
StoneFireplaceSouthAddon
|
||||
1137 1816 0
|
||||
|
||||
# fireplace
|
||||
Static 0x08CF
|
||||
1248 1704 0
|
||||
|
|
@ -5374,4 +5370,4 @@ Static 0x1F07
|
|||
# pitcher of water
|
||||
Pitcher 0x1F9D (Content=Water)
|
||||
1193 1709 4
|
||||
1512 1425 21
|
||||
1512 1425 21
|
||||
|
|
@ -2766,4 +2766,4 @@ Static 0x1BD7
|
|||
|
||||
# bulletin board
|
||||
BulletinBoard 0x1E5E
|
||||
1452 3768 0
|
||||
1452 3768 0
|
||||
|
|
@ -514,13 +514,13 @@ Static 0x0A6B
|
|||
|
||||
# bed
|
||||
LargeBedSouthAddon 0x0A7D
|
||||
# 4448 1058 0
|
||||
4448 1058 0
|
||||
4470 1218 0
|
||||
4681 1172 0
|
||||
|
||||
# bed
|
||||
LargeBedEastAddon 0x0A83
|
||||
# 4551 918 20
|
||||
4551 918 20
|
||||
4693 1217 0
|
||||
|
||||
# bookcase
|
||||
|
|
@ -1613,7 +1613,7 @@ PewterMug 0x1002
|
|||
|
||||
# archery butte
|
||||
ArcheryButte 0x100B
|
||||
# 4489 1118 0
|
||||
4489 1118 0
|
||||
|
||||
# spinning wheel
|
||||
SpinningWheelSouthAddon 0x1015
|
||||
|
|
@ -1987,4 +1987,4 @@ LocalizedSign 0x1F29 (LabelNumber=1016062)
|
|||
# no draw
|
||||
Blocker 0x21A4
|
||||
4704 1120 0
|
||||
4708 1121 0
|
||||
4708 1121 0
|
||||
|
|
@ -34,9 +34,6 @@ Blocker 0x21A4
|
|||
6082 144 -15
|
||||
6082 145 -15
|
||||
6082 146 -15
|
||||
5920 168 16
|
||||
5920 169 16
|
||||
5920 170 16
|
||||
6058 88 29
|
||||
6058 89 29
|
||||
6058 90 29
|
||||
|
|
@ -141,4 +138,4 @@ Static 0x179A
|
|||
3446 548 -5
|
||||
3456 538 -5
|
||||
3472 512 -5
|
||||
3488 580 -5
|
||||
3488 580 -5
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
# Iron Gate right
|
||||
IronGateShort 0x0856 (Facing=NorthCCW)
|
||||
2783 867 0
|
||||
|
||||
# Iron Gate left
|
||||
IronGateShort 0x0854 (Facing=SouthCW)
|
||||
2783 868 0
|
||||
|
|
@ -1060,7 +1060,7 @@ TreatiseOnAlchemy 0x0FF4
|
|||
3672 2475 4
|
||||
|
||||
# spinning wheel
|
||||
SpinningWheelEastAddon 0x1019
|
||||
Static 0x1019
|
||||
3667 2597 0
|
||||
|
||||
# pile of wool
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
# Iron Gate right
|
||||
IronGateShort 0x0856 (Facing=NorthCCW)
|
||||
2783 867 0
|
||||
|
||||
# Iron Gate left
|
||||
IronGateShort 0x0854 (Facing=SouthCW)
|
||||
2783 868 0
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# teleporter
|
||||
Teleporter 0x1BC3 (PointDest=(5977, 169, 0))
|
||||
5905 97 0
|
||||
|
|
@ -331,13 +331,4 @@ FlourMillSouthAddon 0x192C
|
|||
# bellows
|
||||
LargeForgeEastAddon 0x1986
|
||||
3644 2619 0
|
||||
3596 2601 0
|
||||
|
||||
# New Haven Mine Teleporters
|
||||
# Rope(0x14FA) teleporter
|
||||
InteractionTeleporter 0x14FA (Name=a rope leading down;PointDest=(5953, 319, 0))
|
||||
5994 319 0
|
||||
|
||||
# Rope(0x14FA) teleporter
|
||||
InteractionTeleporter 0x14FA (Name=a rope leading up;PointDest=(5994, 319, 0))
|
||||
5953 319 0
|
||||
3596 2601 0
|
||||
Binary file not shown.
|
|
@ -1,38 +1,27 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "163c83bd-e63d-4654-8c0e-231486150f45",
|
||||
"type": "Spawner",
|
||||
"guid": "c6dedce5-b3a9-4510-b8a4-4e1be285305c",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6540, 872, 0],
|
||||
"location": [6513, 871, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"count": 17,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"homeRange": 35,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "GiantSerpent", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "GiantToad", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Harpy", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "SilverSerpent", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Bogling", "maxCount": 17, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "196961bc-de35-4e5c-9fbf-079ab5092d5f",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6518, 879, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "3bd66ec7-4d6b-46cb-8913-5c62344510c0",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6507, 843, 0],
|
||||
|
|
@ -54,7 +43,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "687f8c07-43c4-4724-8ede-078862373736",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6535, 848, 0],
|
||||
|
|
@ -72,44 +61,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9b045049-0b03-4f18-9148-b0bd1fa3600b",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6489, 897, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c6dedce5-b3a9-4510-b8a4-4e1be285305c",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6513, 871, 0],
|
||||
"map": "Felucca",
|
||||
"count": 17,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 35,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "GiantSerpent", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "GiantToad", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Harpy", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "SilverSerpent", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Bogling", "maxCount": 17, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d4583e64-cac2-49f5-bb09-86c9481e0147",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6518, 870, 0],
|
||||
|
|
@ -131,7 +83,21 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "163c83bd-e63d-4654-8c0e-231486150f45",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6540, 872, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f708c05a-1da4-4452-8d8b-1965849d6e39",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6585, 878, 0],
|
||||
|
|
@ -147,5 +113,33 @@
|
|||
{ "name": "Saliva", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Changeling", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9b045049-0b03-4f18-9148-b0bd1fa3600b",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6489, 897, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "196961bc-de35-4e5c-9fbf-079ab5092d5f",
|
||||
"name": "Spawner (201)",
|
||||
"location": [6518, 879, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,230 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "07b03a23-af40-4539-be8b-6834573838df",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6065, 1459, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "099f6832-75ef-4f46-91b2-0d64509897c2",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6052, 1463, 0],
|
||||
"map": "Felucca",
|
||||
"count": 8,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 8, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2fd77ead-e282-4216-aa6c-0273391bdd4e",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6090, 1483, 0],
|
||||
"map": "Felucca",
|
||||
"count": 8,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 8, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3237bbc2-29a2-488c-a918-d8db1f5e7f60",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6087, 1443, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "371c3545-e908-4d18-8dbb-3b86c422566a",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6112, 1462, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5da0bc6b-dfdb-47b8-a0df-0ff3eaf5c212",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6048, 1487, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "62ba5343-d337-495e-aaf4-9dfb4d46c8b3",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6061, 1490, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "75adb4cb-b0a7-44db-a5fe-d4e9b139ce7b",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6059, 1438, 4],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "75e04bc3-078d-40c2-9ca8-d3a11a97965f",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6108, 1471, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "77bf6da3-ca32-446e-8d0b-239bb4520afd",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6037, 1494, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8674d509-c36a-4ab8-9399-6329f1379984",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6091, 1491, 10],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a8680e6d-12db-4ef9-8107-9df6850893db",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6115, 1491, -15],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a9a6ccfe-d9b7-40f3-bfa8-d00994214056",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6039, 1438, 4],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "aca1fcd4-cc2b-4472-ab6e-89e0322f9fec",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6049, 1447, 4],
|
||||
|
|
@ -242,7 +18,61 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "8674d509-c36a-4ab8-9399-6329f1379984",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6091, 1491, 10],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5da0bc6b-dfdb-47b8-a0df-0ff3eaf5c212",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6048, 1487, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "07b03a23-af40-4539-be8b-6834573838df",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6065, 1459, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b8273eff-be93-4ab9-8642-c1e9a92ddbbc",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6092, 1448, 5],
|
||||
|
|
@ -260,10 +90,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ba6cecc1-f3c1-4e95-a624-ac4d5d668265",
|
||||
"type": "Spawner",
|
||||
"guid": "ebace9c4-5941-4346-9ebf-6ca7ff7e33c5",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6034, 1467, 5],
|
||||
"location": [6107, 1452, 25],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
|
|
@ -278,10 +108,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c93d730a-8c5a-4580-8952-14008d80b395",
|
||||
"type": "Spawner",
|
||||
"guid": "371c3545-e908-4d18-8dbb-3b86c422566a",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6049, 1470, 5],
|
||||
"location": [6112, 1462, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
|
|
@ -296,10 +126,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d0d1dbda-9b50-4646-9509-d5d32eb9f081",
|
||||
"type": "Spawner",
|
||||
"guid": "a9a6ccfe-d9b7-40f3-bfa8-d00994214056",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6041, 1486, 5],
|
||||
"location": [6039, 1438, 4],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
|
|
@ -314,7 +144,25 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a8680e6d-12db-4ef9-8107-9df6850893db",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6115, 1491, -15],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "da9f7dcc-c64d-4a72-ba8a-b5846258a093",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6084, 1470, 5],
|
||||
|
|
@ -332,26 +180,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e8b1dc3e-cc13-4253-b228-12abe499061b",
|
||||
"type": "Spawner",
|
||||
"guid": "c93d730a-8c5a-4580-8952-14008d80b395",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6077, 1492, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ebace9c4-5941-4346-9ebf-6ca7ff7e33c5",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6107, 1452, 25],
|
||||
"location": [6049, 1470, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
|
|
@ -364,5 +196,161 @@
|
|||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ba6cecc1-f3c1-4e95-a624-ac4d5d668265",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6034, 1467, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "75adb4cb-b0a7-44db-a5fe-d4e9b139ce7b",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6059, 1438, 4],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "62ba5343-d337-495e-aaf4-9dfb4d46c8b3",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6061, 1490, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d0d1dbda-9b50-4646-9509-d5d32eb9f081",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6041, 1486, 5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2fd77ead-e282-4216-aa6c-0273391bdd4e",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6090, 1483, 0],
|
||||
"map": "Felucca",
|
||||
"count": 8,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 8, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e8b1dc3e-cc13-4253-b228-12abe499061b",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6077, 1492, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "75e04bc3-078d-40c2-9ca8-d3a11a97965f",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6108, 1471, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3237bbc2-29a2-488c-a918-d8db1f5e7f60",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6087, 1443, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "099f6832-75ef-4f46-91b2-0d64509897c2",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6052, 1463, 0],
|
||||
"map": "Felucca",
|
||||
"count": 8,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 8, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "77bf6da3-ca32-446e-8d0b-239bb4520afd",
|
||||
"name": "Spawner (202)",
|
||||
"location": [6037, 1494, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 2, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,61 +1,52 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "05d2885b-2b4d-4c4e-907e-2fdbe4d54e69",
|
||||
"type": "Spawner",
|
||||
"guid": "edd28bb3-5aeb-487a-8571-9e4e4aea0783",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5212, 674, -20],
|
||||
"location": [5187, 603, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 25,
|
||||
"homeRange": 18,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0b6e0a59-f918-4f77-8bc8-f5b5d944d3a5",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5219, 573, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Mummy", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0be3858f-bd81-4a27-9a8d-3846c0df0603",
|
||||
"type": "Spawner",
|
||||
"guid": "8507dbe4-8220-4439-adbe-5ef6ebb0fec3",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5192, 695, 0],
|
||||
"location": [5186, 575, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"homeRange": 8,
|
||||
"walkingRange": 12,
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fb409b68-fe6b-422f-bf2d-95c4a92f5e21",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5187, 545, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Skeleton", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "19d96c26-d7f8-4209-9071-00e0117ed1d8",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5163, 567, 0],
|
||||
|
|
@ -73,136 +64,92 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1cbfae9c-7cc7-45cc-842f-0e75a158cd8a",
|
||||
"type": "Spawner",
|
||||
"guid": "9862d38e-e12f-4e04-932f-0020f3121d9a",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5307, 546, 0],
|
||||
"location": [5145, 553, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "25b2761d-dc06-443e-b979-049c7f50abf6",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5267, 690, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2a7f9024-7d0f-43a0-8721-52b6a3c27c8f",
|
||||
"type": "Spawner",
|
||||
"guid": "d8ba7cc3-c1f6-4701-b684-850203cb9e37",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5307, 675, -20],
|
||||
"location": [5147, 579, -50],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "350cfc3c-1c89-463d-a93a-f2ab22149d19",
|
||||
"type": "Spawner",
|
||||
"guid": "ab35ec53-2a16-4cdd-a2a1-f1b84922e36c",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5323, 571, 0],
|
||||
"location": [5147, 598, -50],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 2,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "35acdddb-eef4-4687-b6d7-6dea19535b71",
|
||||
"type": "Spawner",
|
||||
"guid": "d9f4d863-626f-480c-968a-9630e6a9a83d",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5314, 748, -20],
|
||||
"location": [5145, 622, -50],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "LichLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SilverSerpent", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3d25517a-5b90-4468-9e23-4041f88774e2",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5299, 603, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "56939d4e-8a5d-47da-a117-e7f56ff6671b",
|
||||
"type": "Spawner",
|
||||
"guid": "cb79321c-1a80-4881-8961-1997174d0458",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5151, 718, 0],
|
||||
"location": [5212, 531, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "684234a4-21ea-4f94-897b-e92d88a17ced",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5219, 552, 0],
|
||||
|
|
@ -221,7 +168,117 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0b6e0a59-f918-4f77-8bc8-f5b5d944d3a5",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5219, 573, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f6b68da6-e7f9-4cb1-870c-079ebff4787b",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5145, 618, -50],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1cbfae9c-7cc7-45cc-842f-0e75a158cd8a",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5307, 546, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d4857128-1876-473c-951f-418107fad15c",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5327, 542, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9b00a63e-cf2d-495b-8bd9-61cef122f168",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5286, 542, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f2fc19bd-75c9-4f68-b59d-6efc65381167",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5283, 583, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "7016863d-26dc-4d2e-beda-68031a966ebe",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5318, 578, 0],
|
||||
|
|
@ -241,23 +298,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "750ebeff-4327-4bf0-b285-8c6749530985",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5190, 655, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "79dfd73d-ede7-44e2-8651-94cfe5f77314",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5342, 582, 0],
|
||||
|
|
@ -274,266 +315,40 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "818d1f8c-a5ba-4ef1-a823-2b04bca2f2e2",
|
||||
"type": "Spawner",
|
||||
"guid": "3d25517a-5b90-4468-9e23-4041f88774e2",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5320, 708, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8507dbe4-8220-4439-adbe-5ef6ebb0fec3",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5186, 575, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "88b5fff8-7124-4a19-83ad-465e8aaf072b",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5150, 742, 0],
|
||||
"location": [5299, 603, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9862d38e-e12f-4e04-932f-0020f3121d9a",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5145, 553, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9b00a63e-cf2d-495b-8bd9-61cef122f168",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5286, 542, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a2d6e670-8282-4b60-bd5f-933e45d3d7a8",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5170, 678, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ab35ec53-2a16-4cdd-a2a1-f1b84922e36c",
|
||||
"type": "Spawner",
|
||||
"guid": "fa668f86-9786-48bc-a676-5a879e77bee2",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5147, 598, -50],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c69344fe-718b-4e69-83b8-d12141250707",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5219, 734, -20],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cacb456a-f52d-4168-9d59-8df80779a1d6",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5183, 727, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cb79321c-1a80-4881-8961-1997174d0458",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5212, 531, 0],
|
||||
"location": [5295, 623, -5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "BoneMagi", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d4857128-1876-473c-951f-418107fad15c",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5327, 542, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d8ba7cc3-c1f6-4701-b684-850203cb9e37",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5147, 579, -50],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d9f4d863-626f-480c-968a-9630e6a9a83d",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5145, 622, -50],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "dbb8562b-7557-4347-9faa-a5facf1ba1d4",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5280, 675, 8],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "FireElemental", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "edd28bb3-5aeb-487a-8571-9e4e4aea0783",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5187, 603, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 18,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "Mummy", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "efc2564d-a6df-40a6-ad5e-6e6e81d066e9",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5322, 626, 0],
|
||||
|
|
@ -553,24 +368,24 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f2fc19bd-75c9-4f68-b59d-6efc65381167",
|
||||
"type": "Spawner",
|
||||
"guid": "350cfc3c-1c89-463d-a93a-f2ab22149d19",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5283, 583, 0],
|
||||
"location": [5323, 571, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 2,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f5e81dcf-fa17-4d36-8aa1-e73496aad012",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5139, 661, 0],
|
||||
|
|
@ -589,52 +404,223 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f6b68da6-e7f9-4cb1-870c-079ebff4787b",
|
||||
"type": "Spawner",
|
||||
"guid": "750ebeff-4327-4bf0-b285-8c6749530985",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5145, 618, -50],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fa668f86-9786-48bc-a676-5a879e77bee2",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5295, 623, -5],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "BoneMagi", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fb409b68-fe6b-422f-bf2d-95c4a92f5e21",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5187, 545, 0],
|
||||
"location": [5190, 655, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Lich", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a2d6e670-8282-4b60-bd5f-933e45d3d7a8",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5170, 678, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "56939d4e-8a5d-47da-a117-e7f56ff6671b",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5151, 718, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0be3858f-bd81-4a27-9a8d-3846c0df0603",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5192, 695, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "cacb456a-f52d-4168-9d59-8df80779a1d6",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5183, 727, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "05d2885b-2b4d-4c4e-907e-2fdbe4d54e69",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5212, 674, -20],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c69344fe-718b-4e69-83b8-d12141250707",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5219, 734, -20],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Lich", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "88b5fff8-7124-4a19-83ad-465e8aaf072b",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5150, 742, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2a7f9024-7d0f-43a0-8721-52b6a3c27c8f",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5307, 675, -20],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "dbb8562b-7557-4347-9faa-a5facf1ba1d4",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5280, 675, 8],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "FireElemental", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "818d1f8c-a5ba-4ef1-a823-2b04bca2f2e2",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5320, 708, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Lich", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "35acdddb-eef4-4687-b6d7-6dea19535b71",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5314, 748, -20],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "LichLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SilverSerpent", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "25b2761d-dc06-443e-b979-049c7f50abf6",
|
||||
"name": "Spawner (204)",
|
||||
"location": [5267, 690, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,399 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0fbce341-ca59-4ec4-a718-cc8f7b3ed34e",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5247, 956, -40],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "171e7677-5e0b-4da4-8599-9c3c16200e7a",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5141, 968, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "326c64f4-34d3-414d-a79c-c7bb9d441e96",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5149, 907, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3e318f8e-aec0-4b16-b435-43dc4fde4372",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5241, 945, -40],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "48b37663-ddee-4f04-978d-35f4c085f785",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5269, 811, 7],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4f8eb77e-64cb-4846-8c0f-0816f16c94b3",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5352, 934, -5],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "506ce404-853e-4168-9b6b-1296d40c90e3",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5183, 1007, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "59c245e9-e59f-4f6c-b3cb-2add65aba939",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5203, 787, 5],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "79707431-23e6-4347-a89e-7bc970162938",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5280, 955, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7dfd256b-c903-4a4f-abf1-bdce7ff2217b",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5284, 926, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "831f9d08-398c-42b0-bc53-72e1c0685e34",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5294, 842, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "87114b5e-ac9d-4d7f-90c1-c6db7a570c2f",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5226, 826, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "889ccd57-8eda-4910-9790-2dc3bc80ca99",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5214, 917, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8b681dd7-a815-4513-85e6-901967f4e6ed",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5143, 986, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "936bde4a-dce6-44bb-859c-81a3e1f0a87b",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5307, 815, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9641ac5e-6eec-4f35-8536-226265c67ace",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5205, 778, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ad446354-3f49-4c9d-ab1d-dea29378794e",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5157, 997, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Wyvern", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "GiantSerpent", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b6125064-8514-4c32-953d-c28eca82fa4e",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5229, 841, 1],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "be7b487d-c201-413a-94c8-8201dc3a1c4d",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5141, 834, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "ShadowWyrm", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d045c909-34f1-46a6-8d61-7275dc6e45c9",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5317, 980, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d8aceeb2-7644-4b3d-96de-4e172f41abd6",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5153, 842, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e2bea874-3646-4dec-8fc9-cbc0c67f2a0a",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5250, 869, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "GiantSerpent", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e6703676-d851-4394-b09f-51286d5d85f2",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5185, 1006, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "AncientWyrm", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e8017d92-b455-4ab2-b484-f95b2957b3be",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5209, 965, -40],
|
||||
|
|
@ -411,10 +18,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "edd4aa65-92a9-491c-97e8-d9906e31fbea",
|
||||
"type": "Spawner",
|
||||
"guid": "0fbce341-ca59-4ec4-a718-cc8f7b3ed34e",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5169, 836, 0],
|
||||
"location": [5247, 956, -40],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -423,12 +30,115 @@
|
|||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "EvilMage", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "79707431-23e6-4347-a89e-7bc970162938",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5280, 955, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "7dfd256b-c903-4a4f-abf1-bdce7ff2217b",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5284, 926, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "889ccd57-8eda-4910-9790-2dc3bc80ca99",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5214, 917, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3e318f8e-aec0-4b16-b435-43dc4fde4372",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5241, 945, -40],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f5973fd2-89b7-405a-bdea-4b1f2fafa92d",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5161, 940, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "GiantSerpent", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "326c64f4-34d3-414d-a79c-c7bb9d441e96",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5149, 907, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ef6d6675-0683-47e4-b236-bfc890a12227",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5141, 915, 0],
|
||||
|
|
@ -445,7 +155,199 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4f8eb77e-64cb-4846-8c0f-0816f16c94b3",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5352, 934, -5],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d045c909-34f1-46a6-8d61-7275dc6e45c9",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5317, 980, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e2bea874-3646-4dec-8fc9-cbc0c67f2a0a",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5250, 869, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "GiantSerpent", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "87114b5e-ac9d-4d7f-90c1-c6db7a570c2f",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5226, 826, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "48b37663-ddee-4f04-978d-35f4c085f785",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5269, 811, 7],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "936bde4a-dce6-44bb-859c-81a3e1f0a87b",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5307, 815, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "831f9d08-398c-42b0-bc53-72e1c0685e34",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5294, 842, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "59c245e9-e59f-4f6c-b3cb-2add65aba939",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5203, 787, 5],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b6125064-8514-4c32-953d-c28eca82fa4e",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5229, 841, 1],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9641ac5e-6eec-4f35-8536-226265c67ace",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5205, 778, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "be7b487d-c201-413a-94c8-8201dc3a1c4d",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5141, 834, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "ShadowWyrm", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "edd4aa65-92a9-491c-97e8-d9906e31fbea",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5169, 836, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "EvilMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f2aa7cb3-ff27-4ea9-a2a4-fe62a0e78b76",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5152, 869, 0],
|
||||
|
|
@ -463,19 +365,101 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f5973fd2-89b7-405a-bdea-4b1f2fafa92d",
|
||||
"type": "Spawner",
|
||||
"guid": "d8aceeb2-7644-4b3d-96de-4e172f41abd6",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5161, 940, 0],
|
||||
"location": [5153, 842, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "171e7677-5e0b-4da4-8599-9c3c16200e7a",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5141, 968, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "FireElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ad446354-3f49-4c9d-ab1d-dea29378794e",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5157, 997, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "GiantSerpent", "maxCount": 6, "probability": 100 }
|
||||
{ "name": "Wyvern", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "GiantSerpent", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e6703676-d851-4394-b09f-51286d5d85f2",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5185, 1006, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "AncientWyrm", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8b681dd7-a815-4513-85e6-901967f4e6ed",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5143, 986, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "506ce404-853e-4168-9b6b-1296d40c90e3",
|
||||
"name": "Spawner (206)",
|
||||
"location": [5183, 1007, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,110 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "04856160-7e89-4672-a7d9-468b8634c3d6",
|
||||
"name": "Spawner (208)",
|
||||
"location": [4545, 1317, 8],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 4535, "y": 1307, "z": -128 },
|
||||
"end": { "x": 4555, "y": 1327, "z": 25 }
|
||||
},
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "14b45cdf-987e-4dff-9e9f-10e90e3662e6",
|
||||
"name": "Spawner (208)",
|
||||
"location": [2758, 867, 0],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 2738, "y": 847, "z": -128 },
|
||||
"end": { "x": 2778, "y": 887, "z": 15 }
|
||||
},
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "43d53b7d-95f9-4332-8d22-33e5f5a1fcf6",
|
||||
"name": "Spawner (208)",
|
||||
"location": [722, 1119, 0],
|
||||
"map": "Felucca",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 10, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "47aa8449-5b66-401f-ac38-c5b6538627b6",
|
||||
"name": "Spawner (208)",
|
||||
"location": [4543, 1314, 8],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 4533, "y": 1304, "z": -128 },
|
||||
"end": { "x": 4553, "y": 1324, "z": 25 }
|
||||
},
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "522530f4-50ea-4fbf-9119-b783bd955678",
|
||||
"name": "Spawner (208)",
|
||||
"location": [2438, 1100, 8],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 2428, "y": 1090, "z": -128 },
|
||||
"end": { "x": 2448, "y": 1110, "z": 30 }
|
||||
},
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "7dfee8fd-49f0-457d-a88c-f38c65bf2474",
|
||||
"name": "Spawner (208)",
|
||||
"location": [1369, 1475, 10],
|
||||
|
|
@ -123,7 +19,115 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b3ba766a-4852-4c5e-adf1-0276e193317f",
|
||||
"name": "Spawner (208)",
|
||||
"location": [1285, 3731, 0],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "522530f4-50ea-4fbf-9119-b783bd955678",
|
||||
"name": "Spawner (208)",
|
||||
"location": [2438, 1100, 8],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "04856160-7e89-4672-a7d9-468b8634c3d6",
|
||||
"name": "Spawner (208)",
|
||||
"location": [4545, 1317, 8],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "47aa8449-5b66-401f-ac38-c5b6538627b6",
|
||||
"name": "Spawner (208)",
|
||||
"location": [4543, 1314, 8],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Lich", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "14b45cdf-987e-4dff-9e9f-10e90e3662e6",
|
||||
"name": "Spawner (208)",
|
||||
"location": [2758, 867, 0],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "43d53b7d-95f9-4332-8d22-33e5f5a1fcf6",
|
||||
"name": "Spawner (208)",
|
||||
"location": [722, 1119, 0],
|
||||
"map": "Felucca",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Skeleton", "maxCount": 10, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8bdfe6b3-df80-48b6-8d1e-8e052efde18b",
|
||||
"name": "Spawner (208)",
|
||||
"location": [3407, 2652, 48],
|
||||
|
|
@ -138,28 +142,5 @@
|
|||
{ "name": "Zombie", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b3ba766a-4852-4c5e-adf1-0276e193317f",
|
||||
"name": "Spawner (208)",
|
||||
"location": [1285, 3731, 0],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 1275, "y": 3721, "z": -128 },
|
||||
"end": { "x": 1295, "y": 3741, "z": 15 }
|
||||
},
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,100 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5a62f325-4e00-49c3-8576-fdd9fcf330e5",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5771, 224, -2],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "ArcticOgreLord", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3d3f7414-5249-4ee4-9602-c842af0da38c",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5799, 188, -6],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "IceSerpent", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "SnowElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Ratman", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "FrostTroll", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "FrostSpider", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b8a2691a-996a-4c38-834f-897b972bfe2f",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5867, 218, -4],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "FrostSpider", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "FrostOoze", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d31d21b1-8768-4d45-a962-182e67f5a5c0",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5850, 219, -3],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "RatmanMage", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e111cb63-9804-4eac-96ad-290a0b963c8f",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5814, 237, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "ArcticOgreLord", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d7d771c1-605a-4253-965e-dec048f72502",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5752, 144, 9],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "WhiteWyrm", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "03498749-3218-4779-8864-b854b36c79f7",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5839, 159, 0],
|
||||
|
|
@ -21,7 +115,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0614ccac-5ffc-4223-8348-cbb5a0f0cc2d",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5785, 161, -6],
|
||||
|
|
@ -42,173 +136,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1cf83838-f5d3-42f9-8390-f445a01ac889",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5754, 211, -6],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "33003603-a1fc-43a4-b9d7-2408eb2e5e50",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5848, 226, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3bf7b937-9eb6-45fc-81e6-d907910ca62a",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5758, 139, 5],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3d3f7414-5249-4ee4-9602-c842af0da38c",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5799, 188, -6],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "IceSerpent", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "SnowElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Ratman", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "FrostTroll", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "FrostSpider", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "479095c0-02ab-4651-9edc-362d77a65a65",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5763, 187, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4ab984eb-913e-4b21-a9b2-5242726ae03f",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5731, 176, -5],
|
||||
"map": "Felucca",
|
||||
"count": 18,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "IceSerpent", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "SnowElemental", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "IceElemental", "maxCount": 9, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4b8dd28c-f72f-45c5-afc4-84dc637c1e0a",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5684, 181, -5],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "51445c30-3ef8-4c0e-95bc-b12e643e39ba",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5669, 330, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "IceFiend", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "57c38552-9c17-4451-9e53-3a8d2048d2f6",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5666, 331, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5a62f325-4e00-49c3-8576-fdd9fcf330e5",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5771, 224, -2],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "ArcticOgreLord", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "61e8233d-f991-4429-9e4e-c7e0d24201d0",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5757, 213, -7],
|
||||
|
|
@ -228,235 +156,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "72473a5f-3d9b-4f69-b3f9-0d266291468a",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5824, 363, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7b080104-77b8-491b-b8f9-44cec8ecbb65",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5680, 306, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "IceFiend", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "89792e6b-89bb-4c0a-8f45-259ab52f6844",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5676, 331, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8aba961b-8ce4-49ba-9ec8-7861204815c4",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5831, 358, -1],
|
||||
"map": "Felucca",
|
||||
"count": 24,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ratman", "maxCount": 12, "probability": 100 },
|
||||
{ "name": "RatmanArcher", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "RatmanMage", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9b93a6e4-67e5-4d22-aa51-ff84ea98bb72",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5751, 140, 10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a3c447a5-c7bb-4826-a5ae-81d8b3863130",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5854, 227, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b8a2691a-996a-4c38-834f-897b972bfe2f",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5867, 218, -4],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "FrostSpider", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "FrostOoze", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b96eb341-ef4c-4b7e-ba01-6fb487be56a7",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5721, 147, -1],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "bca4ab21-15b1-4b04-b698-05d4f8df1f6c",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5838, 355, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cb37f510-fff9-4c76-8c51-2d59ddd8f715",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5683, 197, -4],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cdb2ea29-4ee5-48c3-9444-018c5003afbd",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5837, 245, -5],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d31d21b1-8768-4d45-a962-182e67f5a5c0",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5850, 219, -3],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "RatmanMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d5ca5e49-cbb2-4079-81f1-c8679fcecb46",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5696, 303, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d7d771c1-605a-4253-965e-dec048f72502",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5752, 144, 9],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "WhiteWyrm", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d8d3fc0f-231c-4d04-b0a3-7191cc4512b2",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5681, 191, -6],
|
||||
|
|
@ -476,26 +176,28 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e111cb63-9804-4eac-96ad-290a0b963c8f",
|
||||
"type": "Spawner",
|
||||
"guid": "4ab984eb-913e-4b21-a9b2-5242726ae03f",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5814, 237, 0],
|
||||
"location": [5731, 176, -5],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"count": 18,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "ArcticOgreLord", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "IceSerpent", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "SnowElemental", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "IceElemental", "maxCount": 9, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e89bcb09-65c3-4474-bded-50e62ce3c153",
|
||||
"type": "Spawner",
|
||||
"guid": "33003603-a1fc-43a4-b9d7-2408eb2e5e50",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5712, 145, -34],
|
||||
"location": [5848, 226, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -503,15 +205,13 @@
|
|||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ed18e76c-c568-42fe-9c98-8482c467ff61",
|
||||
"type": "Spawner",
|
||||
"guid": "cb37f510-fff9-4c76-8c51-2d59ddd8f715",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5756, 203, -2],
|
||||
"location": [5683, 197, -4],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -519,15 +219,13 @@
|
|||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f2eb3f17-d5f4-4c58-a248-825e46a8a0f8",
|
||||
"type": "Spawner",
|
||||
"guid": "b96eb341-ef4c-4b7e-ba01-6fb487be56a7",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5772, 188, -3],
|
||||
"location": [5721, 147, -1],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -535,15 +233,13 @@
|
|||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f522aee5-3ff7-427c-a3f1-31b162a65fbe",
|
||||
"type": "Spawner",
|
||||
"guid": "3bf7b937-9eb6-45fc-81e6-d907910ca62a",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5682, 314, 0],
|
||||
"location": [5758, 139, 5],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -551,12 +247,24 @@
|
|||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1cf83838-f5d3-42f9-8390-f445a01ac889",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5754, 211, -6],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fe1657a5-a11c-4fe6-9544-a7ed0d2059b2",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5833, 242, -2],
|
||||
|
|
@ -567,8 +275,248 @@
|
|||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a3c447a5-c7bb-4826-a5ae-81d8b3863130",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5854, 227, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f2eb3f17-d5f4-4c58-a248-825e46a8a0f8",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5772, 188, -3],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "cdb2ea29-4ee5-48c3-9444-018c5003afbd",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5837, 245, -5],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9b93a6e4-67e5-4d22-aa51-ff84ea98bb72",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5751, 140, 10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "479095c0-02ab-4651-9edc-362d77a65a65",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5763, 187, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ed18e76c-c568-42fe-9c98-8482c467ff61",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5756, 203, -2],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e89bcb09-65c3-4474-bded-50e62ce3c153",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5712, 145, -34],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "4b8dd28c-f72f-45c5-afc4-84dc637c1e0a",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5684, 181, -5],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8aba961b-8ce4-49ba-9ec8-7861204815c4",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5831, 358, -1],
|
||||
"map": "Felucca",
|
||||
"count": 24,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Ratman", "maxCount": 12, "probability": 100 },
|
||||
{ "name": "RatmanArcher", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "RatmanMage", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "bca4ab21-15b1-4b04-b698-05d4f8df1f6c",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5838, 355, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "72473a5f-3d9b-4f69-b3f9-0d266291468a",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5824, 363, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "7b080104-77b8-491b-b8f9-44cec8ecbb65",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5680, 306, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "IceFiend", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "51445c30-3ef8-4c0e-95bc-b12e643e39ba",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5669, 330, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "IceFiend", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d5ca5e49-cbb2-4079-81f1-c8679fcecb46",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5696, 303, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f522aee5-3ff7-427c-a3f1-31b162a65fbe",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5682, 314, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "57c38552-9c17-4451-9e53-3a8d2048d2f6",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5666, 331, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "89792e6b-89bb-4c0a-8f45-259ab52f6844",
|
||||
"name": "Spawner (210)",
|
||||
"location": [5676, 331, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,24 +1,24 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "01ae830b-c7f9-4857-8a6b-4bacca6758ad",
|
||||
"type": "Spawner",
|
||||
"guid": "572a2fac-11c7-4583-837a-1b03eae15f85",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5356, 1304, 0],
|
||||
"location": [5146, 1995, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 10,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "OrcBomber", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcCaptain", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "03b59250-db54-481c-85f4-1d0b8b433252",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5153, 1971, 0],
|
||||
|
|
@ -29,12 +29,66 @@
|
|||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Orc", "maxCount": 5, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a1dbbaf6-03e3-42f2-ba42-35d88349fd0c",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5153, 1961, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "DireWolf", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5145b262-72b3-4bf2-8a73-91efe509ce18",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5144, 1960, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "OrcishLord", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fe0be93b-5f45-40b0-9169-16df378c0e6e",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5141, 1968, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "OrcCaptain", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ee800978-f2bf-47e0-8e19-c7f5fe0b33bc",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5332, 1365, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "Orc", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0e858157-adc4-4963-a34b-101fefb109d1",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5308, 1372, 0],
|
||||
|
|
@ -45,12 +99,27 @@
|
|||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "Noble", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "593ee3b4-df42-426d-8976-faced7cd2435",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5302, 1355, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "Noble", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1a6833ee-9e32-4900-ad6e-87926e8fb427",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5316, 1332, 0],
|
||||
|
|
@ -61,46 +130,24 @@
|
|||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "GiantRat", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "GiantRat", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1bff583d-3643-4e60-9a44-e3dea6882a02",
|
||||
"type": "Spawner",
|
||||
"guid": "70960aad-63ab-4bc2-9784-0ae5db883fe1",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5308, 2005, 0],
|
||||
"location": [5331, 1346, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "OrcBrute", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "DireWolf", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2d24f1f9-20ff-4ee1-8f31-8304e2e4822d",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5310, 1969, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "OrcBomber", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "40c5eacc-9b5d-49f4-b13d-c605a32f6816",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5354, 1332, 0],
|
||||
|
|
@ -119,7 +166,25 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "01ae830b-c7f9-4857-8a6b-4bacca6758ad",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5356, 1304, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "OrcBomber", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcCaptain", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "471bb8b3-f768-4654-a3ae-9517ecc8dd45",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5317, 1309, 0],
|
||||
|
|
@ -138,139 +203,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5145b262-72b3-4bf2-8a73-91efe509ce18",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5144, 1960, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "OrcishLord", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "572a2fac-11c7-4583-837a-1b03eae15f85",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5146, 1995, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcCaptain", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "593ee3b4-df42-426d-8976-faced7cd2435",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5302, 1355, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "70960aad-63ab-4bc2-9784-0ae5db883fe1",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5331, 1346, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "DireWolf", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "81a40400-c93d-42f3-8f19-0e9492198a82",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5292, 1316, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "Corpser", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a1dbbaf6-03e3-42f2-ba42-35d88349fd0c",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5153, 1961, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "DireWolf", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a70f186a-94a1-4f54-963f-5c039c7d4006",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5348, 2011, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "OrcBomber", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EarthElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d01dca90-9fac-438e-9660-a93e9df7fc58",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5281, 2029, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d313d866-1199-45fc-a72c-018d146bbe8c",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5300, 1314, 0],
|
||||
|
|
@ -288,10 +221,24 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ee800978-f2bf-47e0-8e19-c7f5fe0b33bc",
|
||||
"type": "Spawner",
|
||||
"guid": "81a40400-c93d-42f3-8f19-0e9492198a82",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5332, 1365, 0],
|
||||
"location": [5292, 1316, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "Corpser", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d01dca90-9fac-438e-9660-a93e9df7fc58",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5281, 2029, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -299,24 +246,57 @@
|
|||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "Orc", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1bff583d-3643-4e60-9a44-e3dea6882a02",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5308, 2005, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 3, "probability": 100 }
|
||||
{ "name": "OrcBrute", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fe0be93b-5f45-40b0-9169-16df378c0e6e",
|
||||
"type": "Spawner",
|
||||
"guid": "2d24f1f9-20ff-4ee1-8f31-8304e2e4822d",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5141, 1968, 0],
|
||||
"location": [5310, 1969, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "OrcCaptain", "maxCount": 3, "probability": 100 }
|
||||
{ "name": "OrcBomber", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a70f186a-94a1-4f54-963f-5c039c7d4006",
|
||||
"name": "Spawner (212)",
|
||||
"location": [5348, 2011, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "OrcBomber", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EarthElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2733b112-93bf-47cc-b071-02e87c3150ab",
|
||||
"name": "Spawner (214)",
|
||||
"location": [6279, 879, -1],
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "bc6475e8-885e-4e5e-bf83-49c3e408ac06",
|
||||
"name": "Spawner (214)",
|
||||
"location": [6275, 879, -2],
|
||||
|
|
@ -1,61 +1,30 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "04a75e0b-4499-4fe6-8bd6-49e3dbf0d528",
|
||||
"type": "Spawner",
|
||||
"guid": "604b87ed-6718-4802-b1b6-f572ed7d9935",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6416, 447, -40],
|
||||
"location": [6295, 616, -50],
|
||||
"map": "Felucca",
|
||||
"count": 15,
|
||||
"count": 27,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"homeRange": 50,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "PlagueBeast", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "AcidElemental", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 7, "probability": 100 }
|
||||
{ "name": "Daemon", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "InterredGrizzle", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "PlagueBeast", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Putrefier", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "PlagueBeastLord", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "04cc01ab-f7da-4992-8913-4db4ea63149e",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6298, 395, 60],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3a0d9e92-6661-4ad8-a38e-dcf7516e05de",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6354, 455, -40],
|
||||
"map": "Felucca",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "PlagueBeast", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5a586bde-b6a0-4f4d-b147-1e1886aae735",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6384, 580, -50],
|
||||
|
|
@ -79,7 +48,139 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e695b242-221c-49b5-853a-9e943afe8355",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6328, 517, -50],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "PoisonElemental", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3a0d9e92-6661-4ad8-a38e-dcf7516e05de",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6354, 455, -40],
|
||||
"map": "Felucca",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "PlagueBeast", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "04a75e0b-4499-4fe6-8bd6-49e3dbf0d528",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6416, 447, -40],
|
||||
"map": "Felucca",
|
||||
"count": 15,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "PlagueBeast", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "AcidElemental", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ad3fbc20-7914-4651-a7c1-994d9b88ed22",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6466, 543, -50],
|
||||
"map": "Felucca",
|
||||
"count": 22,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Daemon", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "PlagueBeastLord", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "PlagueBeast", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "InterredGrizzle", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b7da2a27-b13e-4113-b8c8-e5f2e7ac2e3a",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6292, 462, -50],
|
||||
"map": "Felucca",
|
||||
"count": 18,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "ChaosDaemon", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Moloch", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Daemon", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Balron", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "04cc01ab-f7da-4992-8913-4db4ea63149e",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6298, 395, 60],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "74269ae8-5e94-4496-ad04-611e81b14168",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6404, 378, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 18,
|
||||
"walkingRange": 18,
|
||||
"entries": [
|
||||
{ "name": "AcidElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "AcidElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5ef37566-7b9c-47fb-a88c-d6c0177d92f3",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6418, 358, -40],
|
||||
|
|
@ -104,148 +205,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "604b87ed-6718-4802-b1b6-f572ed7d9935",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6295, 616, -50],
|
||||
"map": "Felucca",
|
||||
"count": 27,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 50,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "InterredGrizzle", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "PlagueBeast", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Putrefier", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "PlagueBeastLord", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "74269ae8-5e94-4496-ad04-611e81b14168",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6404, 378, -40],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 18,
|
||||
"walkingRange": 18,
|
||||
"entries": [
|
||||
{ "name": "AcidElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "AcidElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9c1149a5-ac2a-42e6-b6e2-296e6ca05602",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6249, 352, 60],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "AcidElemental", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "EarthElemental", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "AcidElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EarthElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ad3fbc20-7914-4651-a7c1-994d9b88ed22",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6466, 543, -50],
|
||||
"map": "Felucca",
|
||||
"count": 22,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Daemon", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "PlagueBeastLord", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "PlagueBeast", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "PlagueSpawn", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "InterredGrizzle", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "af6ef316-bb00-417f-852c-14e9c98ca74c",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6285, 353, 60],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b7da2a27-b13e-4113-b8c8-e5f2e7ac2e3a",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6292, 462, -50],
|
||||
"map": "Felucca",
|
||||
"count": 18,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "ChaosDaemon", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Moloch", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Daemon", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Balron", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "bbed003d-43d6-4690-b93e-763f42a4187f",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6353, 400, 60],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d3ba2375-fc73-4996-9f54-3a09dc39c653",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6319, 348, 60],
|
||||
|
|
@ -268,10 +228,45 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e695b242-221c-49b5-853a-9e943afe8355",
|
||||
"type": "Spawner",
|
||||
"guid": "9c1149a5-ac2a-42e6-b6e2-296e6ca05602",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6328, 517, -50],
|
||||
"location": [6249, 352, 60],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "AcidElemental", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "EarthElemental", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "AcidElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EarthElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "af6ef316-bb00-417f-852c-14e9c98ca74c",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6285, 353, 60],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "bbed003d-43d6-4690-b93e-763f42a4187f",
|
||||
"name": "Spawner (215)",
|
||||
"location": [6353, 400, 60],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -280,7 +275,8 @@
|
|||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "PoisonElemental", "maxCount": 4, "probability": 100 }
|
||||
{ "name": "EarthElemental", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "CorrosiveSlime", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,234 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3ccfb405-2b18-4397-9d18-5b37302d62e4",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6521, 139, -20],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "Wisp", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "49f09e2e-fb04-42a9-96e2-d930c04f729f",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6530, 139, -20],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "Wisp", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4e01097c-b1f4-4d22-ad9b-dcd117eeaeec",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6566, 120, 0],
|
||||
"map": "Felucca",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "CrystalVortex", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "IceElemental", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "50809274-807a-49ee-b9f9-6c13693a56d0",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6572, 89, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "CrystalHydra", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "539ddfd6-d1ad-4e3f-b9cf-414a6dc0553a",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6509, 176, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "UnfrozenMummy", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "6912561a-5610-4441-8c64-16f4bd9f73f8",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6510, 171, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "Protector", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "84ae0146-70ef-44e4-9159-db9a045c14c9",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6536, 79, -10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "CrystalDaemon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8f88efe1-68b8-478e-8166-b03984e956e1",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6504, 181, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8fe6c0c3-9fcb-4725-b6b2-ee89df036d80",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6532, 79, -10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "CrystalDaemon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "93922052-811a-473e-b3b2-eddf5380829a",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6475, 101, -44],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "ShadowWisp", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9c7afc30-19c5-4034-a344-8b75e52b6b40",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6547, 91, -10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "CrystalDaemon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9ce6b636-4bca-44d7-adf2-5ef841d08a61",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6535, 179, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "CrystalWisp", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "CrystalLatticeSeeker", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9dc74009-4df1-4872-874f-fcc908ec105b",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6534, 178, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "CrystalWisp", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "adf86a17-213e-408b-be55-3cb37b9a1a36",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6502, 120, -10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 0,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b87b2fe5-b1dc-46b1-9c35-f1627c33ad04",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6553, 157, 0],
|
||||
|
|
@ -239,12 +11,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "CrystalLatticeSeeker", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "CrystalLatticeSeeker", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c04125c7-bad1-4747-8e55-7664e9797a6d",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6474, 74, -34],
|
||||
|
|
@ -261,56 +31,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c66d4bde-6308-44bb-80fe-f6f0070beda7",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6478, 174, 4],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Wisp", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "CrystalWisp", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e82c7115-8675-4d30-b321-c5e6a3b43ea0",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6507, 151, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Protector", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ed613a4e-b19f-422e-943c-c94a29411ff8",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6578, 183, 31],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Ferret", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f083b3bb-c6c8-4774-a9d7-65d6b2cfc831",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6552, 155, 0],
|
||||
|
|
@ -329,7 +50,35 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "3ccfb405-2b18-4397-9d18-5b37302d62e4",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6521, 139, -20],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "Wisp", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "49f09e2e-fb04-42a9-96e2-d930c04f729f",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6530, 139, -20],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "Wisp", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f620b501-c242-4301-a813-b4d7a44e141f",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6576, 91, 0],
|
||||
|
|
@ -340,8 +89,227 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "CrystalSeaSerpent", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "539ddfd6-d1ad-4e3f-b9cf-414a6dc0553a",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6509, 176, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "UnfrozenMummy", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "84ae0146-70ef-44e4-9159-db9a045c14c9",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6536, 79, -10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "CrystalDaemon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9c7afc30-19c5-4034-a344-8b75e52b6b40",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6547, 91, -10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "CrystalDaemon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "50809274-807a-49ee-b9f9-6c13693a56d0",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6572, 89, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "CrystalHydra", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8f88efe1-68b8-478e-8166-b03984e956e1",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6504, 181, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "93922052-811a-473e-b3b2-eddf5380829a",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6475, 101, -44],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "ShadowWisp", "maxCount": 5, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c66d4bde-6308-44bb-80fe-f6f0070beda7",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6478, 174, 4],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "CrystalSeaSerpent", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Wisp", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "CrystalWisp", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "4e01097c-b1f4-4d22-ad9b-dcd117eeaeec",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6566, 120, 0],
|
||||
"map": "Felucca",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "CrystalVortex", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "IceElemental", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9dc74009-4df1-4872-874f-fcc908ec105b",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6534, 178, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "CrystalWisp", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9ce6b636-4bca-44d7-adf2-5ef841d08a61",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6535, 179, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "CrystalWisp", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "CrystalLatticeSeeker", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "adf86a17-213e-408b-be55-3cb37b9a1a36",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6502, 120, -10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 0,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e82c7115-8675-4d30-b321-c5e6a3b43ea0",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6507, 151, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Protector", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8fe6c0c3-9fcb-4725-b6b2-ee89df036d80",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6532, 79, -10],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "CrystalDaemon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ed613a4e-b19f-422e-943c-c94a29411ff8",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6578, 183, 31],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Ferret", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "6912561a-5610-4441-8c64-16f4bd9f73f8",
|
||||
"name": "Spawner (216)",
|
||||
"location": [6510, 171, 0],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "Protector", "maxCount": 3, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,29 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1511b1c9-952f-4b34-a527-40c8458fd839",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6263, 118, -10],
|
||||
"map": "Felucca",
|
||||
"count": 24,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Chicken", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Cow", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Bull", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Boar", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "072beafe-a629-4c48-b5ff-b984254a5d46",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6349, 89, -20],
|
||||
|
|
@ -27,30 +50,110 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1511b1c9-952f-4b34-a527-40c8458fd839",
|
||||
"type": "Spawner",
|
||||
"guid": "f96a5381-773a-4b5a-af6a-4cc8d2d08811",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6263, 118, -10],
|
||||
"location": [6168, 117, 0],
|
||||
"map": "Felucca",
|
||||
"count": 24,
|
||||
"count": 34,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Chicken", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Cow", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Bull", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Boar", "maxCount": 3, "probability": 100 }
|
||||
{ "name": "Ratman", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "RatmanArcher", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "RatmanMage", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "Changeling", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "Doppleganger", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Chicken", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Boar", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Gargoyle", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Titan", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Cyclops", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "orcscout", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a03d9ae7-cc7d-41c7-83ad-fd30bdb1b5be",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6189, 71, 0],
|
||||
"map": "Felucca",
|
||||
"count": 12,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "OgreLord", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Ratman", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Cow", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Bull", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Chicken", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "584c49ef-3604-4c2a-a385-7fca422c604e",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6187, 101, 0],
|
||||
"map": "Felucca",
|
||||
"count": 34,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Titan", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Ettin", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Doppleganger", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "MougGuur", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Chicken", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Cow", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Bull", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "OrcBomber", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "OrcBrute", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Gargoyle", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Ogre", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "36e62443-3909-4f76-b267-0ffe2138c841",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6184, 29, 0],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Chicken", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Doppleganger", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1be8d7aa-7b8d-48b2-a99e-7e8aadda47ae",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6265, 48, -10],
|
||||
|
|
@ -87,80 +190,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "36e62443-3909-4f76-b267-0ffe2138c841",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6184, 29, 0],
|
||||
"map": "Felucca",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Chicken", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Doppleganger", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "584c49ef-3604-4c2a-a385-7fca422c604e",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6187, 101, 0],
|
||||
"map": "Felucca",
|
||||
"count": 34,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Titan", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Ettin", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Doppleganger", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "MougGuur", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Chicken", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Cow", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "Bull", "maxCount": 10, "probability": 100 },
|
||||
{ "name": "OrcBomber", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "OrcBrute", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Orc", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Gargoyle", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Ogre", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a03d9ae7-cc7d-41c7-83ad-fd30bdb1b5be",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6189, 71, 0],
|
||||
"map": "Felucca",
|
||||
"count": 12,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "OgreLord", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Ratman", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Cow", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Bull", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Chicken", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a976bf7f-b394-4429-92e9-b3dd47eae839",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6191, 155, 0],
|
||||
|
|
@ -188,35 +218,5 @@
|
|||
{ "name": "Gargoyle", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f96a5381-773a-4b5a-af6a-4cc8d2d08811",
|
||||
"name": "Spawner (217)",
|
||||
"location": [6168, 117, 0],
|
||||
"map": "Felucca",
|
||||
"count": 34,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Ratman", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "RatmanArcher", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "RatmanMage", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "Changeling", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "Doppleganger", "maxCount": 11, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Chicken", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Boar", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Gargoyle", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Titan", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Cyclops", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "orcscout", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,9 +1,28 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "05f81bd1-8432-458d-973a-85449805e567",
|
||||
"type": "Spawner",
|
||||
"guid": "ec99841b-c28c-4b7c-a4d3-15f2753a4184",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5163, 1585, -15],
|
||||
"location": [5296, 1561, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fee1141d-1c6e-479e-9cfc-d92fed242b0a",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5296, 1562, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -20,10 +39,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0c8d7085-680b-49cf-a8c3-be20a79f94be",
|
||||
"type": "Spawner",
|
||||
"guid": "b3b5c6cf-915f-427b-97b1-89d49bdc440a",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5161, 1584, -15],
|
||||
"location": [5297, 1565, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -39,43 +58,26 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0e911183-4be3-4c7d-878b-a7b4d97d8f14",
|
||||
"type": "Spawner",
|
||||
"guid": "6db88e49-590f-4fc9-9ff2-484c0caba22d",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5201, 1566, 0],
|
||||
"location": [5342, 1553, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "140da661-2c38-4502-a8d3-a093fb672c3e",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5363, 1709, -75],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "14d9a777-99d2-4e2a-92e4-98eb9ed2cc2a",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5342, 1552, 0],
|
||||
|
|
@ -95,83 +97,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1613210d-f099-406c-8dad-b3e6c4978ea4",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5134, 1625, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "19a3a2ba-4466-440e-9eb8-69c30087faf0",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5160, 1586, -15],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "56ff9b13-646b-4f60-be0b-b5aaa730d17d",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5336, 1708, -70],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "578848ef-81b8-4528-b3e5-7819296f1441",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5200, 1568, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5a472619-a1fd-43b6-8ed3-876689a8b7a4",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5343, 1551, 0],
|
||||
|
|
@ -190,270 +116,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "628166d6-c981-4d20-bee3-f9e68ca672e4",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5345, 1551, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "6b1ed67b-dcfd-41a6-9b27-9f815db3e48f",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5200, 1565, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "6db88e49-590f-4fc9-9ff2-484c0caba22d",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5342, 1553, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7045923d-0e54-48e2-8c61-25f4e748bb62",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5176, 1702, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "78eb98fb-eb53-4956-919c-9b075b3a02ad",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5348, 1552, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "877895b3-0048-42fa-943b-4246c6d0dbd1",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5176, 1701, 2],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8cddc6ca-33de-411d-9d6d-03f61c427acc",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5335, 1707, -70],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "97e91add-b1d5-48e6-ae53-6dd25cb088bc",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5270, 1695, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9c464287-4f2e-40c2-b6cd-7110d89097eb",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5132, 1624, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a720dbb7-0f4e-45c8-9bac-c9b76e028c02",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5132, 1623, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ada2362f-c030-42f1-86ce-5d983ff64a38",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5346, 1756, -125],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "adcadb01-80d3-40a1-acf8-6a7493aeef84",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5271, 1693, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b1a245ac-73e5-4f51-a9b0-72a7e0aeb999",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5177, 1700, 1],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b3b5c6cf-915f-427b-97b1-89d49bdc440a",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5297, 1565, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "ce1ce8c5-583f-4f67-84b6-126bc30487ff",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5334, 1613, 0],
|
||||
|
|
@ -472,27 +135,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d3a73b6d-ffa1-4448-9308-6431b4f51d4b",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5345, 1757, -125],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d6b68ad4-a9c2-4982-9477-31a7cb202a69",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5334, 1614, 0],
|
||||
|
|
@ -512,26 +155,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "da8f850f-a715-4ae6-9c10-47db89b3d732",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5344, 1757, -125],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "dfb3c171-67af-4dea-8b11-1d49762b2fb2",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5335, 1615, 0],
|
||||
|
|
@ -550,10 +174,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ebca1c72-604f-4cba-b019-c5de4a5b55c8",
|
||||
"type": "Spawner",
|
||||
"guid": "78eb98fb-eb53-4956-919c-9b075b3a02ad",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5365, 1707, -71],
|
||||
"location": [5348, 1552, 0],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -561,15 +185,27 @@
|
|||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ec99841b-c28c-4b7c-a4d3-15f2753a4184",
|
||||
"type": "Spawner",
|
||||
"guid": "628166d6-c981-4d20-bee3-f9e68ca672e4",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5296, 1561, 0],
|
||||
"location": [5345, 1551, 0],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "da8f850f-a715-4ae6-9c10-47db89b3d732",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5344, 1757, -125],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -585,7 +221,46 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d3a73b6d-ffa1-4448-9308-6431b4f51d4b",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5345, 1757, -125],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ada2362f-c030-42f1-86ce-5d983ff64a38",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5346, 1756, -125],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f9a936c9-3c10-4029-a46d-dbbdb5494b48",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5335, 1706, -70],
|
||||
|
|
@ -604,7 +279,65 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "8cddc6ca-33de-411d-9d6d-03f61c427acc",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5335, 1707, -70],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "56ff9b13-646b-4f60-be0b-b5aaa730d17d",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5336, 1708, -70],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "97e91add-b1d5-48e6-ae53-6dd25cb088bc",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5270, 1695, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fbc340d4-cf84-410e-9764-5987bdacc4fc",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5270, 1694, 0],
|
||||
|
|
@ -624,10 +357,76 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fee1141d-1c6e-479e-9cfc-d92fed242b0a",
|
||||
"type": "Spawner",
|
||||
"guid": "adcadb01-80d3-40a1-acf8-6a7493aeef84",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5296, 1562, 0],
|
||||
"location": [5271, 1693, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ebca1c72-604f-4cba-b019-c5de4a5b55c8",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5365, 1707, -71],
|
||||
"map": "Felucca",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "140da661-2c38-4502-a8d3-a093fb672c3e",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5363, 1709, -75],
|
||||
"map": "Felucca",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "7045923d-0e54-48e2-8c61-25f4e748bb62",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5176, 1702, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "877895b3-0048-42fa-943b-4246c6d0dbd1",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5176, 1701, 2],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -642,5 +441,198 @@
|
|||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b1a245ac-73e5-4f51-a9b0-72a7e0aeb999",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5177, 1700, 1],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9c464287-4f2e-40c2-b6cd-7110d89097eb",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5132, 1624, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a720dbb7-0f4e-45c8-9bac-c9b76e028c02",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5132, 1623, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1613210d-f099-406c-8dad-b3e6c4978ea4",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5134, 1625, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "19a3a2ba-4466-440e-9eb8-69c30087faf0",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5160, 1586, -15],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "05f81bd1-8432-458d-973a-85449805e567",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5163, 1585, -15],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0c8d7085-680b-49cf-a8c3-be20a79f94be",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5161, 1584, -15],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "6b1ed67b-dcfd-41a6-9b27-9f815db3e48f",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5200, 1565, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0e911183-4be3-4c7d-878b-a7b4d97d8f14",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5201, 1566, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "OphidianArchmage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OphidianMatriarch", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "578848ef-81b8-4528-b3e5-7819296f1441",
|
||||
"name": "Spawner (221)",
|
||||
"location": [5200, 1568, 0],
|
||||
"map": "Felucca",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "TerathanAvenger", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanDrone", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanMatriarch", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TerathanWarrior", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,83 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "047a7695-7bd9-46ad-852d-f84b2895b843",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5912, 1326, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "DreadSpider", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "37ea1620-9487-40df-8035-e76b2443a7b2",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5915, 1302, 2],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8190243a-f39d-48b2-9df3-9b00b6e418d4",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5956, 1310, -2],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "DreadSpider", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c0481877-f573-4c00-af1f-c1f5873f4bbb",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5940, 1356, -2],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "DreadSpider", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c08391fb-b609-4c8d-be85-2d3986f1639a",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5976, 1387, -22],
|
||||
|
|
@ -97,7 +20,67 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c0481877-f573-4c00-af1f-c1f5873f4bbb",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5940, 1356, -2],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "DreadSpider", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "047a7695-7bd9-46ad-852d-f84b2895b843",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5912, 1326, 0],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "DreadSpider", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8190243a-f39d-48b2-9df3-9b00b6e418d4",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5956, 1310, -2],
|
||||
"map": "Felucca",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "DreadSpider", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d661a6de-3520-464f-994f-77ff738ff5bd",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5999, 1327, 10],
|
||||
|
|
@ -115,5 +98,22 @@
|
|||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaSnake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "37ea1620-9487-40df-8035-e76b2443a7b2",
|
||||
"name": "Spawner (224)",
|
||||
"location": [5915, 1302, 2],
|
||||
"map": "Felucca",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 1,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "29168b55-1571-4743-9178-01314586cbe5",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5819, 591, 0],
|
||||
|
|
@ -11,12 +11,99 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "JukaWarrior", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "419487ab-4c4b-4726-8f93-0cd1b49aed0d",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5808, 588, 12],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaWarrior", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaWarrior", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "84d09a21-c001-44ed-9c8a-2e7791fa4b1e",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5792, 544, 10],
|
||||
"map": "Felucca",
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Golem", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "63285a8f-9f0d-4966-9f0e-a7fa33fe3a45",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5857, 586, 15],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaWarrior", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "dfb2dd7e-c751-49e6-9059-25b892efce67",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5857, 562, 15],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaWarrior", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "41bd23d3-0a22-41fd-a2d2-5d6d809b2018",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5828, 530, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaWarrior", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "346ff700-516b-4788-85a2-9ee7146726f9",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5659, 563, 20],
|
||||
|
|
@ -35,96 +122,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3ce378dd-3952-4fac-a5fe-ad12a7b09f20",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5690, 534, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaWarrior", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "419487ab-4c4b-4726-8f93-0cd1b49aed0d",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5808, 588, 12],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaWarrior", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "41bd23d3-0a22-41fd-a2d2-5d6d809b2018",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5828, 530, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaWarrior", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "63285a8f-9f0d-4966-9f0e-a7fa33fe3a45",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5857, 586, 15],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JukaWarrior", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "84d09a21-c001-44ed-9c8a-2e7791fa4b1e",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5792, 544, 10],
|
||||
"map": "Felucca",
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Golem", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "87ed7838-1bc6-4987-bd1e-0cc16bd54f32",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5724, 561, 20],
|
||||
|
|
@ -143,16 +141,16 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "dfb2dd7e-c751-49e6-9059-25b892efce67",
|
||||
"type": "Spawner",
|
||||
"guid": "3ce378dd-3952-4fac-a5fe-ad12a7b09f20",
|
||||
"name": "Spawner (227)",
|
||||
"location": [5857, 562, 15],
|
||||
"location": [5690, 534, 0],
|
||||
"map": "Felucca",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "JukaLord", "maxCount": 1, "probability": 100 },
|
||||
|
|
@ -1,40 +1,20 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "113fa6c7-b58a-48eb-8cd8-18332e92e22e",
|
||||
"type": "Spawner",
|
||||
"guid": "cbb2e5a6-ad0e-4bf3-b53d-528756994f1b",
|
||||
"name": "Spawner (301)",
|
||||
"location": [79, 687, -28],
|
||||
"location": [50, 689, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"minDelay": "00:10:00",
|
||||
"maxDelay": "00:20:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"homeRange": 30,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "AncientWyrm", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "60859b12-15e4-4d3f-bbc6-b48c940c4080",
|
||||
"name": "Spawner (301)",
|
||||
"location": [54, 718, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6c0fa0c8-c4fb-4c89-a310-528a89dc22e9",
|
||||
"name": "Spawner (301)",
|
||||
"location": [115, 716, -28],
|
||||
|
|
@ -51,7 +31,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9f1df533-f0b6-4d42-8c80-ebf852a0830b",
|
||||
"name": "Spawner (301)",
|
||||
"location": [131, 78, 0],
|
||||
|
|
@ -68,23 +48,24 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cbb2e5a6-ad0e-4bf3-b53d-528756994f1b",
|
||||
"type": "Spawner",
|
||||
"guid": "60859b12-15e4-4d3f-bbc6-b48c940c4080",
|
||||
"name": "Spawner (301)",
|
||||
"location": [50, 689, -28],
|
||||
"location": [54, 718, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:10:00",
|
||||
"maxDelay": "00:20:00",
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 15,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "AncientWyrm", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fdfe8209-e586-454c-aa1e-fdabf9b43125",
|
||||
"name": "Spawner (301)",
|
||||
"location": [82, 718, -28],
|
||||
|
|
@ -99,5 +80,22 @@
|
|||
{ "name": "FireElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "113fa6c7-b58a-48eb-8cd8-18332e92e22e",
|
||||
"name": "Spawner (301)",
|
||||
"location": [79, 687, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,363 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "01be3c7a-f159-4721-aa38-5861f526d3b8",
|
||||
"name": "Spawner (302)",
|
||||
"location": [45, 905, -29],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "FireElemental", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1146a823-b233-4508-89f4-802dc5f67112",
|
||||
"name": "Spawner (302)",
|
||||
"location": [66, 1171, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Nightmare", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "12ed93c0-e81b-4de2-afe6-0c5c34975a41",
|
||||
"name": "Spawner (302)",
|
||||
"location": [49, 846, -30],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "192e009f-b329-47a3-b290-cd1af4504db6",
|
||||
"name": "Spawner (302)",
|
||||
"location": [148, 953, -29],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Kirin", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "250608fe-f32f-472e-a726-d5e1e3924160",
|
||||
"name": "Spawner (302)",
|
||||
"location": [15, 1503, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2de1d85a-a211-4c0d-8cdb-3820a2f4cde3",
|
||||
"name": "Spawner (302)",
|
||||
"location": [62, 1446, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "32d38b45-94a0-429d-b06d-da2941222110",
|
||||
"name": "Spawner (302)",
|
||||
"location": [39, 1491, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "40c9f7b2-9ce5-4c7c-ba9c-d78cbd9a7eab",
|
||||
"name": "Spawner (302)",
|
||||
"location": [131, 1331, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "LichLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "RottingCorpse", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5644d83b-87a0-46aa-a23d-5166d9d4f2f7",
|
||||
"name": "Spawner (302)",
|
||||
"location": [55, 1303, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "SkeletalKnight", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "SkeletalMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5c977889-217c-4562-bc51-d549a3ce616d",
|
||||
"name": "Spawner (302)",
|
||||
"location": [29, 1016, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "675f68f6-58e7-4a9c-adef-31aa0ecdbc00",
|
||||
"name": "Spawner (302)",
|
||||
"location": [86, 1447, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Mummy", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "6fa3458d-ad0c-4ec0-a058-1d831df7b112",
|
||||
"name": "Spawner (302)",
|
||||
"location": [71, 1521, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "HellHound", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Imp", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "94a6eb04-35cb-49c0-8697-ac3caf736e1a",
|
||||
"name": "Spawner (302)",
|
||||
"location": [124, 1435, -16],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "SkeletalMage", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "94b96b34-65e4-4af5-a3cd-56c2c8e8478f",
|
||||
"name": "Spawner (302)",
|
||||
"location": [473, 1552, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "SerpentineDragon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9a01a01c-2e9f-46ad-b9a9-0d1af7d3b211",
|
||||
"name": "Spawner (302)",
|
||||
"location": [102, 959, -43],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "PoisonElemental", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9bca331b-b283-436c-b46b-446d69e18593",
|
||||
"name": "Spawner (302)",
|
||||
"location": [108, 1110, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9debe6c0-b766-4c9a-94c7-2f4db1d1a7fd",
|
||||
"name": "Spawner (302)",
|
||||
"location": [34, 1462, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a474135e-6997-45bf-a865-77ca9c5c854b",
|
||||
"name": "Spawner (302)",
|
||||
"location": [29, 1009, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b88fa850-e3c3-468e-b8e4-afc1430e5ad6",
|
||||
"name": "Spawner (302)",
|
||||
"location": [87, 1051, -29],
|
||||
"map": "Ilshenar",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Mongbat", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c37e0854-914d-46a7-850f-4b8072add151",
|
||||
"name": "Spawner (302)",
|
||||
"location": [87, 1471, -22],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c5dbed97-1066-4bcc-8b21-cffeb33843ad",
|
||||
"name": "Spawner (302)",
|
||||
"location": [99, 1158, -23],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "AcidElemental", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cb063844-675e-4177-9da9-7e3c1d2704af",
|
||||
"name": "Spawner (302)",
|
||||
"location": [63, 1471, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e3b4ec7a-974a-42ef-b9be-80b93317c858",
|
||||
"name": "Spawner (302)",
|
||||
"location": [129, 1530, -28],
|
||||
|
|
@ -375,39 +18,108 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e4279b1a-4375-4a93-9ed5-df2a8f9ade4a",
|
||||
"type": "Spawner",
|
||||
"guid": "6fa3458d-ad0c-4ec0-a058-1d831df7b112",
|
||||
"name": "Spawner (302)",
|
||||
"location": [438, 1552, -28],
|
||||
"location": [71, 1521, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Pixie", "maxCount": 5, "probability": 100 }
|
||||
{ "name": "HellHound", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Imp", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e73b0e45-8071-4f7a-8126-d3b05a6ac95e",
|
||||
"type": "Spawner",
|
||||
"guid": "c37e0854-914d-46a7-850f-4b8072add151",
|
||||
"name": "Spawner (302)",
|
||||
"location": [114, 908, -26],
|
||||
"location": [87, 1471, -22],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [{ "name": "EvilMage", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "cb063844-675e-4177-9da9-7e3c1d2704af",
|
||||
"name": "Spawner (302)",
|
||||
"location": [63, 1471, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [{ "name": "EvilMage", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "32d38b45-94a0-429d-b06d-da2941222110",
|
||||
"name": "Spawner (302)",
|
||||
"location": [39, 1491, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Daemon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9debe6c0-b766-4c9a-94c7-2f4db1d1a7fd",
|
||||
"name": "Spawner (302)",
|
||||
"location": [34, 1462, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "250608fe-f32f-472e-a726-d5e1e3924160",
|
||||
"name": "Spawner (302)",
|
||||
"location": [15, 1503, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [{ "name": "Imp", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2de1d85a-a211-4c0d-8cdb-3820a2f4cde3",
|
||||
"name": "Spawner (302)",
|
||||
"location": [62, 1446, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [{ "name": "EvilMage", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e87e63f3-2c4e-4a95-ad84-7cae33a9071b",
|
||||
"name": "Spawner (302)",
|
||||
"location": [31, 1410, -28],
|
||||
|
|
@ -418,44 +130,38 @@
|
|||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 11,
|
||||
"entries": [
|
||||
{ "name": "SkeletalKnight", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "SkeletalKnight", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ed586ce9-3e23-403c-b92a-013f2e88fb3c",
|
||||
"type": "Spawner",
|
||||
"guid": "675f68f6-58e7-4a9c-adef-31aa0ecdbc00",
|
||||
"name": "Spawner (302)",
|
||||
"location": [107, 1390, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f444295e-dedd-4070-8386-54b35d4ac4bb",
|
||||
"name": "Spawner (302)",
|
||||
"location": [451, 1552, -27],
|
||||
"location": [86, 1447, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Wisp", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Mummy", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "94a6eb04-35cb-49c0-8697-ac3caf736e1a",
|
||||
"name": "Spawner (302)",
|
||||
"location": [124, 1435, -16],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "SkeletalMage", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fc88bc1a-1266-4ae7-ad00-50ecb32896ff",
|
||||
"name": "Spawner (302)",
|
||||
"location": [124, 1436, -16],
|
||||
|
|
@ -466,12 +172,41 @@
|
|||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Lich", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ed586ce9-3e23-403c-b92a-013f2e88fb3c",
|
||||
"name": "Spawner (302)",
|
||||
"location": [107, 1390, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Lich", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "40c9f7b2-9ce5-4c7c-ba9c-d78cbd9a7eab",
|
||||
"name": "Spawner (302)",
|
||||
"location": [131, 1331, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "LichLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "RottingCorpse", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fd6c1c50-ee38-412c-8957-3f74936e8020",
|
||||
"name": "Spawner (302)",
|
||||
"location": [132, 1332, -28],
|
||||
|
|
@ -482,8 +217,223 @@
|
|||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Zombie", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5644d83b-87a0-46aa-a23d-5166d9d4f2f7",
|
||||
"name": "Spawner (302)",
|
||||
"location": [55, 1303, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Zombie", "maxCount": 4, "probability": 100 }
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "SkeletalKnight", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "SkeletalMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "01be3c7a-f159-4721-aa38-5861f526d3b8",
|
||||
"name": "Spawner (302)",
|
||||
"location": [45, 905, -29],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 30,
|
||||
"entries": [{ "name": "FireElemental", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "12ed93c0-e81b-4de2-afe6-0c5c34975a41",
|
||||
"name": "Spawner (302)",
|
||||
"location": [49, 846, -30],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"entries": [{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e73b0e45-8071-4f7a-8126-d3b05a6ac95e",
|
||||
"name": "Spawner (302)",
|
||||
"location": [114, 908, -26],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "EarthElemental", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9a01a01c-2e9f-46ad-b9a9-0d1af7d3b211",
|
||||
"name": "Spawner (302)",
|
||||
"location": [102, 959, -43],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "PoisonElemental", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "192e009f-b329-47a3-b290-cd1af4504db6",
|
||||
"name": "Spawner (302)",
|
||||
"location": [148, 953, -29],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Kirin", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a474135e-6997-45bf-a865-77ca9c5c854b",
|
||||
"name": "Spawner (302)",
|
||||
"location": [29, 1009, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 35,
|
||||
"entries": [{ "name": "Dragon", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5c977889-217c-4562-bc51-d549a3ce616d",
|
||||
"name": "Spawner (302)",
|
||||
"location": [29, 1016, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 35,
|
||||
"entries": [{ "name": "Drake", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b88fa850-e3c3-468e-b8e4-afc1430e5ad6",
|
||||
"name": "Spawner (302)",
|
||||
"location": [87, 1051, -29],
|
||||
"map": "Ilshenar",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Mongbat", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9bca331b-b283-436c-b46b-446d69e18593",
|
||||
"name": "Spawner (302)",
|
||||
"location": [108, 1110, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 30,
|
||||
"entries": [{ "name": "EarthElemental", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c5dbed97-1066-4bcc-8b21-cffeb33843ad",
|
||||
"name": "Spawner (302)",
|
||||
"location": [99, 1158, -23],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "AcidElemental", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1146a823-b233-4508-89f4-802dc5f67112",
|
||||
"name": "Spawner (302)",
|
||||
"location": [66, 1171, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Nightmare", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e4279b1a-4375-4a93-9ed5-df2a8f9ade4a",
|
||||
"name": "Spawner (302)",
|
||||
"location": [438, 1552, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Pixie", "maxCount": 5, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f444295e-dedd-4070-8386-54b35d4ac4bb",
|
||||
"name": "Spawner (302)",
|
||||
"location": [451, 1552, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Wisp", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "94b96b34-65e4-4af5-a3cd-56c2c8e8478f",
|
||||
"name": "Spawner (302)",
|
||||
"location": [473, 1552, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "SerpentineDragon", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,6 +1,20 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b36243ef-5201-4922-972a-8e0dd78ffe11",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2114, 846, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 30,
|
||||
"entries": [{ "name": "Imp", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1a119f51-d328-4a35-bda3-d63ca1d2f3f0",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2051, 837, -28],
|
||||
|
|
@ -11,60 +25,24 @@
|
|||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Imp", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1e39d497-d9f3-48ba-8c6a-af1bf7a9ba3d",
|
||||
"type": "Spawner",
|
||||
"guid": "8540d8e1-53c7-416b-b611-94127a44d56c",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2145, 911, -28],
|
||||
"location": [2050, 859, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1f6a7fef-6d82-4d17-8505-0927a56a3302",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2083, 911, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2dbb818a-3f08-4752-bfb0-414d433fa5d3",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2146, 951, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "HellCat", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2e60ce70-cd00-4d8d-82fb-0733b5b06c32",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2090, 868, -14],
|
||||
|
|
@ -75,12 +53,108 @@
|
|||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "HellCat", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "HellCat", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d0c57916-16d8-4135-ba77-c43c93947a9d",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2177, 836, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Imp", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "7d083d0d-b124-4567-96ec-6a35ac8cbc06",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2177, 858, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Imp", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b73a5bca-9065-495e-8801-7b776732c00b",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2138, 868, -14],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Imp", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "49e5b4ac-570c-43eb-85cc-8c113c5bea7b",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2138, 868, -14],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1f6a7fef-6d82-4d17-8505-0927a56a3302",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2083, 911, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Balron", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a670a008-155a-4420-ab3c-e15e3e951f83",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2115, 917, -23],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Balron", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1e39d497-d9f3-48ba-8c6a-af1bf7a9ba3d",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2145, 911, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Balron", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2eada9f7-16d7-4d0e-9418-9e013208bf4f",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2170, 920, -28],
|
||||
|
|
@ -91,12 +165,80 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 32,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "7f72864a-7c9b-41ce-abda-a205be287234",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2058, 907, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d08b49a2-1291-4d12-a97f-50aee1c289ff",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2058, 932, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8b88f31e-d1c6-4a32-b719-2062d630872f",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2083, 951, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Daemon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ac12b1c2-8db2-4664-91db-7381d677eb02",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2114, 951, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Daemon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2dbb818a-3f08-4752-bfb0-414d433fa5d3",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2146, 951, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "Daemon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3a8ab857-7a3d-4cd4-9466-567fd9d0b3ea",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2113, 1017, -28],
|
||||
|
|
@ -111,181 +253,5 @@
|
|||
{ "name": "Succubus", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "49e5b4ac-570c-43eb-85cc-8c113c5bea7b",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2138, 868, -14],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7d083d0d-b124-4567-96ec-6a35ac8cbc06",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2177, 858, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7f72864a-7c9b-41ce-abda-a205be287234",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2058, 907, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8540d8e1-53c7-416b-b611-94127a44d56c",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2050, 859, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "HellCat", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8b88f31e-d1c6-4a32-b719-2062d630872f",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2083, 951, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a670a008-155a-4420-ab3c-e15e3e951f83",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2115, 917, -23],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ac12b1c2-8db2-4664-91db-7381d677eb02",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2114, 951, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b36243ef-5201-4922-972a-8e0dd78ffe11",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2114, 846, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b73a5bca-9065-495e-8801-7b776732c00b",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2138, 868, -14],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d08b49a2-1291-4d12-a97f-50aee1c289ff",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2058, 932, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d0c57916-16d8-4135-ba77-c43c93947a9d",
|
||||
"name": "Spawner (303)",
|
||||
"location": [2177, 836, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,172 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1156d090-d270-4d2c-99b5-d9801dc4b411",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1932, 196, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Golem", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "21934889-6573-468b-b7e9-40d090d3e9e3",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1995, 67, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "224edb01-38bc-4e79-abee-c1754f857c1a",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2063, 183, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GargoyleEnforcer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2704244a-7822-45bf-bc70-120c145fc097",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1979, 192, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "ExodusOverseer", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "ExodusMinion", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2cddb981-ac94-4967-9c20-2cc3de1a52c9",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1980, 39, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "ExodusOverseer", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "ExodusMinion", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "GolemController", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "35394aa1-6039-446f-b247-51d9f7926f6c",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1894, 116, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "ExodusOverseer", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3a54ee30-73d0-4f81-8889-ace39a951514",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2032, 184, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GargoyleEnforcer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "412a318b-d693-413c-86e6-92996375f16e",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1896, 72, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GargoyleDestroyer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "75b1d8fc-c98d-42c5-9445-12024a38f167",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1895, 160, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GargoyleDestroyer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8c609c03-ea54-4cb3-8e79-ae67bbe813a8",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2044, 87, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "ExodusMinion", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Golem", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "8e098781-936b-42cc-adfa-806111b9a9f2",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1980, 116, -28],
|
||||
|
|
@ -183,7 +17,52 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d39e9374-f30b-488c-8a12-5f3a6315f391",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1939, 116, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "ExodusMinion", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "35394aa1-6039-446f-b247-51d9f7926f6c",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1894, 116, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "ExodusOverseer", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a35646cf-0460-48d2-a4ea-5e9cc33ad9ab",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1964, 164, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GolemController", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "918f3735-8e70-42c3-a633-2fe03730f22d",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1932, 164, -28],
|
||||
|
|
@ -194,15 +73,103 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GolemController", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1156d090-d270-4d2c-99b5-d9801dc4b411",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1932, 196, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "GolemController", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Golem", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "98c1814f-9347-402a-93aa-0d3fad5ca8e5",
|
||||
"type": "Spawner",
|
||||
"guid": "75b1d8fc-c98d-42c5-9445-12024a38f167",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2071, 116, -28],
|
||||
"location": [1895, 160, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GargoyleDestroyer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2704244a-7822-45bf-bc70-120c145fc097",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1979, 192, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "ExodusOverseer", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "ExodusMinion", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f7bef168-af9c-4bc5-9928-348891d481c0",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1996, 164, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GolemController", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3a54ee30-73d0-4f81-8889-ace39a951514",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2032, 184, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GargoyleEnforcer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "224edb01-38bc-4e79-abee-c1754f857c1a",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2063, 183, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GargoyleEnforcer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "dddffe92-2c45-4677-9690-2e782e597530",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2058, 163, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -211,12 +178,12 @@
|
|||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "ExodusOverseer", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "GargoyleEnforcer", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "GargoyleDestroyer", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a2ff6be0-f521-42fa-8cda-0ca0436133d6",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2044, 143, -28],
|
||||
|
|
@ -234,10 +201,44 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a35646cf-0460-48d2-a4ea-5e9cc33ad9ab",
|
||||
"type": "Spawner",
|
||||
"guid": "98c1814f-9347-402a-93aa-0d3fad5ca8e5",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1964, 164, -28],
|
||||
"location": [2071, 116, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "ExodusOverseer", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8c609c03-ea54-4cb3-8e79-ae67bbe813a8",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2044, 87, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "ExodusMinion", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Golem", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e3d9b4cc-ec56-4fed-a26c-330d2bd4edac",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2031, 48, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -245,12 +246,56 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GargoyleEnforcer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f226735c-6233-4aba-989b-d6f90cd48e2f",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2038, 67, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GargoyleDestroyer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "21934889-6573-468b-b7e9-40d090d3e9e3",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1995, 67, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "GolemController", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2cddb981-ac94-4967-9c20-2cc3de1a52c9",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1980, 39, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "ExodusOverseer", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "ExodusMinion", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "GolemController", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b44ae0e1-0a06-4385-b550-c72c58b6b41f",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1931, 67, -28],
|
||||
|
|
@ -261,12 +306,24 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "GolemController", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "412a318b-d693-413c-86e6-92996375f16e",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1896, 72, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "GargoyleDestroyer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c6d64523-ac82-4ad3-9f39-f2d80731a5a3",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1932, 35, -28],
|
||||
|
|
@ -281,86 +338,5 @@
|
|||
{ "name": "GolemController", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Golem", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d39e9374-f30b-488c-8a12-5f3a6315f391",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1939, 116, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "ExodusMinion", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "dddffe92-2c45-4677-9690-2e782e597530",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2058, 163, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GargoyleEnforcer", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "GargoyleDestroyer", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e3d9b4cc-ec56-4fed-a26c-330d2bd4edac",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2031, 48, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GargoyleEnforcer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f226735c-6233-4aba-989b-d6f90cd48e2f",
|
||||
"name": "Spawner (304)",
|
||||
"location": [2038, 67, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GargoyleDestroyer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f7bef168-af9c-4bc5-9928-348891d481c0",
|
||||
"name": "Spawner (304)",
|
||||
"location": [1996, 164, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GolemController", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,22 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3e3f2805-df30-4d29-abdd-e8a53002b1d2",
|
||||
"name": "Spawner (305)",
|
||||
"location": [1415, 1498, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:02:00",
|
||||
"maxDelay": "00:05:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "MushroomTrap", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "46803838-2abe-45af-8c77-4deccf2e99d7",
|
||||
"name": "Spawner (305)",
|
||||
"location": [1444, 1519, -28],
|
||||
|
|
@ -27,28 +11,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "MushroomTrap", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "MushroomTrap", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e7588959-6148-4bf7-a0b1-829b3dca6e1b",
|
||||
"name": "Spawner (305)",
|
||||
"location": [1464, 1495, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:02:00",
|
||||
"maxDelay": "00:05:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "MushroomTrap", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f5a9bc72-4489-4b3a-83ee-7c476d4c9396",
|
||||
"name": "Spawner (305)",
|
||||
"location": [1441, 1532, -28],
|
||||
|
|
@ -59,8 +25,34 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "MushroomTrap", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "MushroomTrap", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3e3f2805-df30-4d29-abdd-e8a53002b1d2",
|
||||
"name": "Spawner (305)",
|
||||
"location": [1415, 1498, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:02:00",
|
||||
"maxDelay": "00:05:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "MushroomTrap", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e7588959-6148-4bf7-a0b1-829b3dca6e1b",
|
||||
"name": "Spawner (305)",
|
||||
"location": [1464, 1495, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:02:00",
|
||||
"maxDelay": "00:05:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "MushroomTrap", "maxCount": 4, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,41 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0182a6f9-bdde-4ca6-95c8-a7c146b1a0e1",
|
||||
"name": "Spawner (307)",
|
||||
"location": [1224, 1494, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "SkeletalKnight", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "BoneKnight", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2694470a-4c93-488c-96a3-87938993d306",
|
||||
"name": "Spawner (307)",
|
||||
"location": [1171, 1511, -68],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "46e1d6c5-ebe2-4575-beeb-3e35754caef7",
|
||||
"name": "Spawner (307)",
|
||||
"location": [1310, 1519, -28],
|
||||
|
|
@ -53,7 +18,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a96346f4-9aca-4dd6-b1ff-e823d8741a19",
|
||||
"name": "Spawner (307)",
|
||||
"location": [1224, 1524, -28],
|
||||
|
|
@ -71,7 +36,25 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0182a6f9-bdde-4ca6-95c8-a7c146b1a0e1",
|
||||
"name": "Spawner (307)",
|
||||
"location": [1224, 1494, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "SkeletalKnight", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "BoneKnight", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "LavaLizard", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c6766cd8-89ac-4169-a2d9-8216a74369a4",
|
||||
"name": "Spawner (307)",
|
||||
"location": [1181, 1512, -68],
|
||||
|
|
@ -82,8 +65,23 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "SkeletalDragon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2694470a-4c93-488c-96a3-87938993d306",
|
||||
"name": "Spawner (307)",
|
||||
"location": [1171, 1511, -68],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "SkeletalDragon", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,55 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "027c989e-9d77-4dfd-85d8-b7c83f722bde",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2094, 56, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Executioner", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "148839f1-8a5b-44bd-b6f5-3b310de5c951",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2155, 24, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "PoisonElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "LichLord", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "151afe47-a4c7-42d9-999b-6be7ab8ed901",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2125, 137, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2481376c-f54f-453e-aa09-b0ae25a2da13",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2188, 310, -7],
|
||||
|
|
@ -67,10 +18,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3a6c8beb-1840-4e1a-b55e-b44158315f59",
|
||||
"type": "Spawner",
|
||||
"guid": "93052936-70f8-43b4-a20c-d68adab714c6",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2138, 97, -27],
|
||||
"location": [2220, 75, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -78,45 +29,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "ElderGazer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "AcidElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4f5851f5-110c-4155-91a4-5d6715b52c2f",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2183, 85, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EvilMageLord", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5c78812b-3143-4ab4-a3e2-950a74181fb1",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2185, 168, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6d9c7f2b-dc74-4ca3-9396-fb2a38fa2d80",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2207, 113, -27],
|
||||
|
|
@ -127,12 +43,24 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "StoneGargoyle", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "StoneGargoyle", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5c78812b-3143-4ab4-a3e2-950a74181fb1",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2185, 168, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "TreasureChestLevel4", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8d713f41-daf3-40c4-9d90-bbf4befb1b08",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2229, 143, -32],
|
||||
|
|
@ -149,7 +77,100 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "bdba50d6-07c1-40ad-ba33-ac67631712cc",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2154, 163, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Lich", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fc19f651-1312-4542-80df-b9f2362974da",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2125, 165, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Executioner", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "151afe47-a4c7-42d9-999b-6be7ab8ed901",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2125, 137, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Lich", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3a6c8beb-1840-4e1a-b55e-b44158315f59",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2138, 97, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "ElderGazer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "4f5851f5-110c-4155-91a4-5d6715b52c2f",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2183, 85, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EvilMageLord", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "148839f1-8a5b-44bd-b6f5-3b310de5c951",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2155, 24, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "PoisonElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "LichLord", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "92ee0621-2fc1-434c-a2d8-11b9359e01bc",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2124, 96, -32],
|
||||
|
|
@ -167,10 +188,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "93052936-70f8-43b4-a20c-d68adab714c6",
|
||||
"type": "Spawner",
|
||||
"guid": "027c989e-9d77-4dfd-85d8-b7c83f722bde",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2220, 75, -27],
|
||||
"location": [2094, 56, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -178,28 +199,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "AcidElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Executioner", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "bdba50d6-07c1-40ad-ba33-ac67631712cc",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2154, 163, -27],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f8cc122d-1672-4b14-a6bf-4dcc6178efdc",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2127, 29, -32],
|
||||
|
|
@ -214,22 +217,5 @@
|
|||
{ "name": "HellHound", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "LichLord", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fc19f651-1312-4542-80df-b9f2362974da",
|
||||
"name": "Spawner (308)",
|
||||
"location": [2125, 165, -32],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Executioner", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,188 +1,20 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "091c33d5-ee75-471b-aafc-78ea45d3dd66",
|
||||
"type": "Spawner",
|
||||
"guid": "fc22ceb7-01e2-4389-a356-ffc788071f0f",
|
||||
"name": "Spawner (309)",
|
||||
"location": [336, 48, -28],
|
||||
"location": [427, 67, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Gargoyle", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "10f6b4be-fd86-480d-b285-d00f0f55b59c",
|
||||
"name": "Spawner (309)",
|
||||
"location": [155, 21, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "ElderGazer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1fb85d78-33ef-42c5-8145-e0af0ec5bd33",
|
||||
"name": "Spawner (309)",
|
||||
"location": [336, 37, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Gargoyle", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "20ea3ede-9733-4b69-a2a9-44312ad782df",
|
||||
"name": "Spawner (309)",
|
||||
"location": [254, 20, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "271dd12c-8c89-4962-8766-27c6e23ab039",
|
||||
"name": "Spawner (309)",
|
||||
"location": [427, 95, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "BoneKnight", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "27540523-3186-413d-99da-3fd4ef5be98f",
|
||||
"name": "Spawner (309)",
|
||||
"location": [281, 20, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "ElderGazer", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Gazer", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "GazerLarva", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "29b9ab63-8072-4a0e-b8b2-cbdbe54a74c6",
|
||||
"name": "Spawner (309)",
|
||||
"location": [462, 16, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "HeadlessOne", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Mongbat", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "37598c17-946c-4a0a-8e86-20d1329e4bca",
|
||||
"name": "Spawner (309)",
|
||||
"location": [133, 114, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "BoneKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SkeletalKnight", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Zombie", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3aad6c47-815b-4713-93f2-c57156aded30",
|
||||
"name": "Spawner (309)",
|
||||
"location": [305, 20, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "DullCopperElemental", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "492af6a5-b034-4a8b-aa7b-923b906321e2",
|
||||
"name": "Spawner (309)",
|
||||
"location": [133, 114, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5bceb873-73d8-4326-8ec1-46bb48c65d60",
|
||||
"name": "Spawner (309)",
|
||||
"location": [214, 67, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5e285fc0-52a0-4f23-ad8f-bc7e90b2fcec",
|
||||
"name": "Spawner (309)",
|
||||
"location": [455, 70, -28],
|
||||
|
|
@ -200,7 +32,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6433de3a-a4f6-4d51-9249-0dc37a3fe107",
|
||||
"name": "Spawner (309)",
|
||||
"location": [394, 69, -28],
|
||||
|
|
@ -217,25 +49,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "65f92121-fb34-4f86-9722-4ee64ec64b61",
|
||||
"name": "Spawner (309)",
|
||||
"location": [109, 44, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "BoneMagi", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "SkeletalMage", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Mummy", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "72c10d82-2c9a-489b-8bad-28dac3e794c9",
|
||||
"name": "Spawner (309)",
|
||||
"location": [447, 19, -28],
|
||||
|
|
@ -254,23 +68,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "73b4ab03-1cab-4034-a3c0-9b8ba61d3600",
|
||||
"name": "Spawner (309)",
|
||||
"location": [160, 59, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "73efa56f-434e-4fc0-8822-c028c9a83e6c",
|
||||
"name": "Spawner (309)",
|
||||
"location": [431, 16, -28],
|
||||
|
|
@ -287,7 +85,101 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "29b9ab63-8072-4a0e-b8b2-cbdbe54a74c6",
|
||||
"name": "Spawner (309)",
|
||||
"location": [462, 16, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "HeadlessOne", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Mongbat", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "86f27a56-95cc-49ed-8483-38c07cd31de2",
|
||||
"name": "Spawner (309)",
|
||||
"location": [462, 16, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "EarthElemental", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9cebea0f-1699-45af-a9b1-0d79d99d290e",
|
||||
"name": "Spawner (309)",
|
||||
"location": [383, 29, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "271dd12c-8c89-4962-8766-27c6e23ab039",
|
||||
"name": "Spawner (309)",
|
||||
"location": [427, 95, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "BoneKnight", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "20ea3ede-9733-4b69-a2a9-44312ad782df",
|
||||
"name": "Spawner (309)",
|
||||
"location": [254, 20, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "27540523-3186-413d-99da-3fd4ef5be98f",
|
||||
"name": "Spawner (309)",
|
||||
"location": [281, 20, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "ElderGazer", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Gazer", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "GazerLarva", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "807fd985-4f3a-4d1f-a7be-942294f1d782",
|
||||
"name": "Spawner (309)",
|
||||
"location": [238, 48, -28],
|
||||
|
|
@ -304,205 +196,21 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "818d30b9-0568-4e69-9b00-a8567e0f63b4",
|
||||
"type": "Spawner",
|
||||
"guid": "5bceb873-73d8-4326-8ec1-46bb48c65d60",
|
||||
"name": "Spawner (309)",
|
||||
"location": [143, 70, -28],
|
||||
"location": [214, 67, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "EvilMageLord", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "846a8862-f62b-4814-856b-88a6f9cb0a27",
|
||||
"name": "Spawner (309)",
|
||||
"location": [350, 42, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "86f27a56-95cc-49ed-8483-38c07cd31de2",
|
||||
"name": "Spawner (309)",
|
||||
"location": [462, 16, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "94e38cf9-78c0-498b-927d-f7151001f811",
|
||||
"name": "Spawner (309)",
|
||||
"location": [67, 70, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 6,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "LichLord", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Mummy", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"walkingRange": 40,
|
||||
"entries": [{ "name": "Imp", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "99674640-e132-4cdd-a69e-1607e28dc5f3",
|
||||
"name": "Spawner (309)",
|
||||
"location": [310, 92, -13],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "LichLord", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9ce0e4a2-0318-4e8d-83a6-48933b302425",
|
||||
"name": "Spawner (309)",
|
||||
"location": [336, 42, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9cebea0f-1699-45af-a9b1-0d79d99d290e",
|
||||
"name": "Spawner (309)",
|
||||
"location": [383, 29, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a1b6deba-e340-4851-bba7-4f5ad2d03353",
|
||||
"name": "Spawner (309)",
|
||||
"location": [146, 83, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a304cb5f-12b3-401a-96d3-104ee9f33544",
|
||||
"name": "Spawner (309)",
|
||||
"location": [311, 91, -13],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b6f7c48e-faa6-44a6-b59f-d0b47313a4f6",
|
||||
"name": "Spawner (309)",
|
||||
"location": [278, 53, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "HellHound", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "bd576d60-5525-4ee3-b85f-8439e6dd38fd",
|
||||
"name": "Spawner (309)",
|
||||
"location": [160, 9, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Efreet", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "bed076f5-fb2b-4342-9423-6a3228cc1978",
|
||||
"name": "Spawner (309)",
|
||||
"location": [262, 84, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Gargoyle", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EvilMage", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f4631bce-3338-4d0e-88c9-9faa4ba968ef",
|
||||
"name": "Spawner (309)",
|
||||
"location": [262, 84, -28],
|
||||
|
|
@ -520,19 +228,281 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fc22ceb7-01e2-4389-a356-ffc788071f0f",
|
||||
"type": "Spawner",
|
||||
"guid": "bed076f5-fb2b-4342-9423-6a3228cc1978",
|
||||
"name": "Spawner (309)",
|
||||
"location": [427, 67, -28],
|
||||
"location": [262, 84, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Gargoyle", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EvilMage", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b6f7c48e-faa6-44a6-b59f-d0b47313a4f6",
|
||||
"name": "Spawner (309)",
|
||||
"location": [278, 53, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "HellHound", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3aad6c47-815b-4713-93f2-c57156aded30",
|
||||
"name": "Spawner (309)",
|
||||
"location": [305, 20, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "DullCopperElemental", "maxCount": 5, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "99674640-e132-4cdd-a69e-1607e28dc5f3",
|
||||
"name": "Spawner (309)",
|
||||
"location": [310, 92, -13],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "LichLord", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a304cb5f-12b3-401a-96d3-104ee9f33544",
|
||||
"name": "Spawner (309)",
|
||||
"location": [311, 91, -13],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1fb85d78-33ef-42c5-8145-e0af0ec5bd33",
|
||||
"name": "Spawner (309)",
|
||||
"location": [336, 37, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Gargoyle", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "091c33d5-ee75-471b-aafc-78ea45d3dd66",
|
||||
"name": "Spawner (309)",
|
||||
"location": [336, 48, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Gargoyle", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9ce0e4a2-0318-4e8d-83a6-48933b302425",
|
||||
"name": "Spawner (309)",
|
||||
"location": [336, 42, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "846a8862-f62b-4814-856b-88a6f9cb0a27",
|
||||
"name": "Spawner (309)",
|
||||
"location": [350, 42, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a1b6deba-e340-4851-bba7-4f5ad2d03353",
|
||||
"name": "Spawner (309)",
|
||||
"location": [146, 83, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "818d30b9-0568-4e69-9b00-a8567e0f63b4",
|
||||
"name": "Spawner (309)",
|
||||
"location": [143, 70, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "EvilMageLord", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "73b4ab03-1cab-4034-a3c0-9b8ba61d3600",
|
||||
"name": "Spawner (309)",
|
||||
"location": [160, 59, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "10f6b4be-fd86-480d-b285-d00f0f55b59c",
|
||||
"name": "Spawner (309)",
|
||||
"location": [155, 21, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "ElderGazer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "bd576d60-5525-4ee3-b85f-8439e6dd38fd",
|
||||
"name": "Spawner (309)",
|
||||
"location": [160, 9, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Efreet", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "65f92121-fb34-4f86-9722-4ee64ec64b61",
|
||||
"name": "Spawner (309)",
|
||||
"location": [109, 44, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "BoneMagi", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "SkeletalMage", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Mummy", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "94e38cf9-78c0-498b-927d-f7151001f811",
|
||||
"name": "Spawner (309)",
|
||||
"location": [67, 70, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "LichLord", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Mummy", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "37598c17-946c-4a0a-8e86-20d1329e4bca",
|
||||
"name": "Spawner (309)",
|
||||
"location": [133, 114, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "BoneKnight", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SkeletalKnight", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "492af6a5-b034-4a8b-aa7b-923b906321e2",
|
||||
"name": "Spawner (309)",
|
||||
"location": [133, 114, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "BloodElemental", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "70e1e800-e6dc-4f5c-a610-269930e6c327",
|
||||
"name": "Spawner (310)",
|
||||
"location": [1981, 1059, -28],
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,23 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "418a0be2-0604-4ff8-b39d-1fb570fa7b7e",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2177, 1210, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "LadyLissith", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "LadySabrix", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "46dc7fc7-d062-4be9-8134-f960352fbca3",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2171, 1181, -44],
|
||||
|
|
@ -37,23 +20,42 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5a47595b-b894-4d45-b35d-5714de0c8c51",
|
||||
"type": "Spawner",
|
||||
"guid": "418a0be2-0604-4ff8-b39d-1fb570fa7b7e",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2206, 1220, -8],
|
||||
"location": [2177, 1210, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "LadyLissith", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "LadySabrix", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "cd6dab60-126f-4877-b9dd-f786cbfad49b",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2138, 1212, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "CuSidhe", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Quagmire", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "WhippingVine", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Irk", "maxCount": 8, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5cb54b29-10c4-448f-a036-5ba23dcb350a",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2224, 1218, 13],
|
||||
|
|
@ -64,28 +66,90 @@
|
|||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "Swoop", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Swoop", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "68b1853c-f9bd-4bd1-852f-dcc9977a3049",
|
||||
"type": "Spawner",
|
||||
"guid": "aa8d4c55-b124-40ae-a0db-31b873c7a549",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2167, 1266, -60],
|
||||
"location": [2134, 1174, -46],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Malefic", "maxCount": 3, "probability": 100 }
|
||||
{ "name": "Gnaw", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "DireWolf", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5a47595b-b894-4d45-b35d-5714de0c8c51",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2206, 1220, -8],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "CuSidhe", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fe2db064-ee88-4f04-8c49-b3d7a56fd9a2",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2159, 1223, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Corpser", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "Spite", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "Guile", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "eea8e238-78e9-4d84-a91b-95360f6f2fd6",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2170, 1247, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Malefic", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Virulent", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "852fa8b9-931f-493c-9ee0-200a3f229110",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2163, 1189, -48],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [{ "name": "Changeling", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "6eee069d-8662-415f-bdcc-78975f1a54ae",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2207, 1180, -36],
|
||||
|
|
@ -105,7 +169,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "76ef21c0-5e48-410e-84f5-57023fa7efb4",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2137, 1216, -60],
|
||||
|
|
@ -116,61 +180,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Silk", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Silk", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7e991368-4fad-4e2b-af3b-88d360b88627",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2157, 1206, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Virulent", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "852fa8b9-931f-493c-9ee0-200a3f229110",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2163, 1189, -48],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 8,
|
||||
"entries": [
|
||||
{ "name": "Changeling", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "aa8d4c55-b124-40ae-a0db-31b873c7a549",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2134, 1174, -46],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Gnaw", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "DireWolf", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b5b1118b-161e-43fb-80dd-f890dec2be53",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2177, 1229, -60],
|
||||
|
|
@ -181,61 +194,34 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "GiantBlackWidow", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "GiantBlackWidow", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cd6dab60-126f-4877-b9dd-f786cbfad49b",
|
||||
"type": "Spawner",
|
||||
"guid": "7e991368-4fad-4e2b-af3b-88d360b88627",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2138, 1212, -60],
|
||||
"location": [2157, 1206, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 8,
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Quagmire", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "WhippingVine", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Irk", "maxCount": 8, "probability": 100 }
|
||||
]
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Virulent", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "eea8e238-78e9-4d84-a91b-95360f6f2fd6",
|
||||
"type": "Spawner",
|
||||
"guid": "68b1853c-f9bd-4bd1-852f-dcc9977a3049",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2170, 1247, -60],
|
||||
"location": [2167, 1266, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Malefic", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Virulent", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fe2db064-ee88-4f04-8c49-b3d7a56fd9a2",
|
||||
"name": "Spawner (314)",
|
||||
"location": [2159, 1223, -60],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Corpser", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "Spite", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "Guile", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Malefic", "maxCount": 3, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,172 +1,20 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0d68da82-d86a-4c40-8085-174a01c65f55",
|
||||
"type": "Spawner",
|
||||
"guid": "ae956108-5118-4793-94d7-ac885617030f",
|
||||
"name": "Spawner (313)",
|
||||
"location": [775, 1479, -28],
|
||||
"location": [681, 1535, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0fe99fe0-a203-4563-994b-5e02d70f1b3f",
|
||||
"name": "Spawner (313)",
|
||||
"location": [888, 1568, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EvilMageLord", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "14b1989d-ec45-42db-af1b-92f49023b981",
|
||||
"name": "Spawner (313)",
|
||||
"location": [891, 1537, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "RottingCorpse", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2ef49b9b-97d6-431a-946d-ffd2f1615697",
|
||||
"name": "Spawner (313)",
|
||||
"location": [855, 1566, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "33185d9f-afa2-43d7-a7aa-7d221c1a309a",
|
||||
"name": "Spawner (313)",
|
||||
"location": [964, 1554, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "LichLord", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4b9e3103-e83e-48a4-88b3-c72acbe5e173",
|
||||
"name": "Spawner (313)",
|
||||
"location": [936, 1559, -22],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "516473d8-b5d1-4924-ad74-556649f98470",
|
||||
"name": "Spawner (313)",
|
||||
"location": [939, 1492, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "530dcd87-a132-4cdb-a9c9-0f78758e4ad0",
|
||||
"name": "Spawner (313)",
|
||||
"location": [962, 1480, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Wraith", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5ce9d857-549d-4bf0-8e70-2dd6902c4ccf",
|
||||
"name": "Spawner (313)",
|
||||
"location": [775, 1480, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"count": 20,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
"walkingRange": 60,
|
||||
"entries": [{ "name": "Wisp", "maxCount": 20, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "649b7645-25f8-4c0c-ac2d-896e558b2767",
|
||||
"name": "Spawner (313)",
|
||||
"location": [776, 1480, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 15,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 3,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel1", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "67d46705-d56a-4098-bafb-ede2658118a8",
|
||||
"name": "Spawner (313)",
|
||||
"location": [855, 1567, -28],
|
||||
|
|
@ -177,12 +25,38 @@
|
|||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 6,
|
||||
"entries": [
|
||||
{ "name": "SkeletalMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "SkeletalMage", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2ef49b9b-97d6-431a-946d-ffd2f1615697",
|
||||
"name": "Spawner (313)",
|
||||
"location": [855, 1566, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Shade", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a90852cd-b672-4c4f-83bb-99dcc861ead0",
|
||||
"name": "Spawner (313)",
|
||||
"location": [851, 1498, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "RottingCorpse", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "6cf2cd79-9f0f-4f25-af2b-333a9317171f",
|
||||
"name": "Spawner (313)",
|
||||
"location": [827, 1479, -28],
|
||||
|
|
@ -200,7 +74,161 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "add779de-8361-4edb-b214-900500ca81f0",
|
||||
"name": "Spawner (313)",
|
||||
"location": [888, 1471, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Shade", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "BoneKnight", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "BoneMagi", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f4f8aa84-982a-4bd5-a708-9724d8598dd7",
|
||||
"name": "Spawner (313)",
|
||||
"location": [901, 1507, 2],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "EvilMageLord", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "79272788-c6c6-4216-84e0-985b942af71b",
|
||||
"name": "Spawner (313)",
|
||||
"location": [871, 1531, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "EvilMage", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "14b1989d-ec45-42db-af1b-92f49023b981",
|
||||
"name": "Spawner (313)",
|
||||
"location": [891, 1537, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "RottingCorpse", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0fe99fe0-a203-4563-994b-5e02d70f1b3f",
|
||||
"name": "Spawner (313)",
|
||||
"location": [888, 1568, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "EvilMageLord", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "be42e727-e04f-47a2-b07c-49046fdafcb9",
|
||||
"name": "Spawner (313)",
|
||||
"location": [939, 1531, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Imp", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "516473d8-b5d1-4924-ad74-556649f98470",
|
||||
"name": "Spawner (313)",
|
||||
"location": [939, 1492, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Imp", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fc4fedc9-9489-4385-bf85-9ec569081f4a",
|
||||
"name": "Spawner (313)",
|
||||
"location": [961, 1502, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Ettin", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "530dcd87-a132-4cdb-a9c9-0f78758e4ad0",
|
||||
"name": "Spawner (313)",
|
||||
"location": [962, 1480, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Wraith", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b19163ea-9376-48e7-9bf7-b0a6a2e75d38",
|
||||
"name": "Spawner (313)",
|
||||
"location": [1000, 1512, 0],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Titan", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Cyclops", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "74498688-9c91-4ea3-8abd-adcd2beb3b8d",
|
||||
"name": "Spawner (313)",
|
||||
"location": [959, 1530, -28],
|
||||
|
|
@ -219,134 +247,78 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "79272788-c6c6-4216-84e0-985b942af71b",
|
||||
"type": "Spawner",
|
||||
"guid": "4b9e3103-e83e-48a4-88b3-c72acbe5e173",
|
||||
"name": "Spawner (313)",
|
||||
"location": [871, 1531, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "EvilMage", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a90852cd-b672-4c4f-83bb-99dcc861ead0",
|
||||
"name": "Spawner (313)",
|
||||
"location": [851, 1498, -28],
|
||||
"location": [936, 1559, -22],
|
||||
"map": "Ilshenar",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "RottingCorpse", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Balron", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "add779de-8361-4edb-b214-900500ca81f0",
|
||||
"type": "Spawner",
|
||||
"guid": "33185d9f-afa2-43d7-a7aa-7d221c1a309a",
|
||||
"name": "Spawner (313)",
|
||||
"location": [888, 1471, -28],
|
||||
"location": [964, 1554, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 8,
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Shade", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "BoneKnight", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "BoneMagi", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"homeRange": 7,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "LichLord", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ae956108-5118-4793-94d7-ac885617030f",
|
||||
"type": "Spawner",
|
||||
"guid": "0d68da82-d86a-4c40-8085-174a01c65f55",
|
||||
"name": "Spawner (313)",
|
||||
"location": [681, 1535, -28],
|
||||
"location": [775, 1479, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 20,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 60,
|
||||
"entries": [
|
||||
{ "name": "Wisp", "maxCount": 20, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b19163ea-9376-48e7-9bf7-b0a6a2e75d38",
|
||||
"name": "Spawner (313)",
|
||||
"location": [1000, 1512, 0],
|
||||
"map": "Ilshenar",
|
||||
"count": 5,
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Titan", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Cyclops", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Balron", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "be42e727-e04f-47a2-b07c-49046fdafcb9",
|
||||
"type": "Spawner",
|
||||
"guid": "5ce9d857-549d-4bf0-8e70-2dd6902c4ccf",
|
||||
"name": "Spawner (313)",
|
||||
"location": [939, 1531, -28],
|
||||
"location": [775, 1480, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Imp", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [{ "name": "Imp", "maxCount": 5, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f4f8aa84-982a-4bd5-a708-9724d8598dd7",
|
||||
"type": "Spawner",
|
||||
"guid": "649b7645-25f8-4c0c-ac2d-896e558b2767",
|
||||
"name": "Spawner (313)",
|
||||
"location": [901, 1507, 2],
|
||||
"location": [776, 1480, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"count": 15,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 3,
|
||||
"entries": [
|
||||
{ "name": "EvilMageLord", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fc4fedc9-9489-4385-bf85-9ec569081f4a",
|
||||
"name": "Spawner (313)",
|
||||
"location": [961, 1502, -28],
|
||||
"map": "Ilshenar",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Ettin", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "TreasureChestLevel1", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "8c2124f4-e175-4198-8cf8-9cf64804fc22",
|
||||
"name": "Spawner (408)",
|
||||
"location": [98, 1656, 0],
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "eaa69fa3-4076-4fc5-950a-fe175713bbd3",
|
||||
"name": "Spawner (408)",
|
||||
"location": [104, 1655, 0],
|
||||
|
|
@ -35,8 +35,6 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "RedDeath", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "RedDeath", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,39 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "114d80f2-07e6-49e3-9418-6e7c30291028",
|
||||
"name": "Spawner (406)",
|
||||
"location": [142, 1921, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "tigersclawthief", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "15b169f9-fe9e-4ef7-973b-cb0619b9937d",
|
||||
"name": "Spawner (406)",
|
||||
"location": [82, 1875, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "serpentsfangassassin", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "eliteninjawarrior", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "17abd9d2-3b7a-44ec-a724-57c202236788",
|
||||
"name": "Spawner (406)",
|
||||
"location": [179, 1869, 0],
|
||||
|
|
@ -50,7 +17,38 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "856c181e-183a-4231-acc8-5146301c56c6",
|
||||
"name": "Spawner (406)",
|
||||
"location": [185, 1920, 0],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [{ "name": "magedragonsflamemage", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "4854c18d-7bf2-4f8c-a69f-7679204b6d7d",
|
||||
"name": "Spawner (406)",
|
||||
"location": [155, 1869, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "serpentsfangassassin", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "dragonsflamemage", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "28535caf-b979-4745-8a87-e62691d7cb11",
|
||||
"name": "Spawner (406)",
|
||||
"location": [145, 1898, 0],
|
||||
|
|
@ -68,7 +66,25 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b5fed5a1-35db-4f09-b4b6-8017146a8bf3",
|
||||
"name": "Spawner (406)",
|
||||
"location": [174, 1900, 0],
|
||||
"map": "Malas",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "serpentsfangassassin", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "dragonsflamemage", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "eliteninjawarrior", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2d629e57-63db-4610-b6d2-cf3bfd34f0b0",
|
||||
"name": "Spawner (406)",
|
||||
"location": [181, 1883, 0],
|
||||
|
|
@ -87,7 +103,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "347e85d2-c752-4abf-86c7-bda2a2051033",
|
||||
"name": "Spawner (406)",
|
||||
"location": [183, 1961, 0],
|
||||
|
|
@ -104,92 +120,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "364cc553-16d0-428d-bf97-061c3ddfd120",
|
||||
"name": "Spawner (406)",
|
||||
"location": [170, 1974, 0],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "serpentsfangassassin", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "serpentsfanghighexecutioner", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "435ce67b-aad4-4ed0-b621-73ab4b6b0042",
|
||||
"name": "Spawner (406)",
|
||||
"location": [81, 1892, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "eliteninjawarrior", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "serpentsfangassassin", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "dragonsflamemage", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4854c18d-7bf2-4f8c-a69f-7679204b6d7d",
|
||||
"name": "Spawner (406)",
|
||||
"location": [155, 1869, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "serpentsfangassassin", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "dragonsflamemage", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "50c87975-6021-46cb-bbe1-58c45ba776b7",
|
||||
"name": "Spawner (406)",
|
||||
"location": [77, 1883, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "dragonsflamemage", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "eliteninjawarrior", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "856c181e-183a-4231-acc8-5146301c56c6",
|
||||
"name": "Spawner (406)",
|
||||
"location": [185, 1920, 0],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "magedragonsflamemage", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9f02ef97-7699-4a65-8cd6-615aa50cc318",
|
||||
"name": "Spawner (406)",
|
||||
"location": [139, 1868, 0],
|
||||
|
|
@ -209,25 +140,24 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b5fed5a1-35db-4f09-b4b6-8017146a8bf3",
|
||||
"type": "Spawner",
|
||||
"guid": "364cc553-16d0-428d-bf97-061c3ddfd120",
|
||||
"name": "Spawner (406)",
|
||||
"location": [174, 1900, 0],
|
||||
"location": [170, 1974, 0],
|
||||
"map": "Malas",
|
||||
"count": 5,
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "serpentsfangassassin", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "dragonsflamemage", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "eliteninjawarrior", "maxCount": 5, "probability": 100 }
|
||||
{ "name": "serpentsfangassassin", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "serpentsfanghighexecutioner", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "dccae74d-bafa-40ff-9984-7a2a0af5d8de",
|
||||
"name": "Spawner (406)",
|
||||
"location": [140, 1974, 0],
|
||||
|
|
@ -244,7 +174,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fb6ee275-c5c2-4780-9180-76e3a4ac1a97",
|
||||
"name": "Spawner (406)",
|
||||
"location": [134, 1947, 0],
|
||||
|
|
@ -259,5 +189,71 @@
|
|||
{ "name": "magedragonsflamemage", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "dragonsflamemage", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "435ce67b-aad4-4ed0-b621-73ab4b6b0042",
|
||||
"name": "Spawner (406)",
|
||||
"location": [81, 1892, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "eliteninjawarrior", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "serpentsfangassassin", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "dragonsflamemage", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "114d80f2-07e6-49e3-9418-6e7c30291028",
|
||||
"name": "Spawner (406)",
|
||||
"location": [142, 1921, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "tigersclawthief", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "50c87975-6021-46cb-bbe1-58c45ba776b7",
|
||||
"name": "Spawner (406)",
|
||||
"location": [77, 1883, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "dragonsflamemage", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "eliteninjawarrior", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "15b169f9-fe9e-4ef7-973b-cb0619b9937d",
|
||||
"name": "Spawner (406)",
|
||||
"location": [82, 1875, 0],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "serpentsfangassassin", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "eliteninjawarrior", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,22 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0b34e749-7a4e-4dc8-8b84-6d6444d80525",
|
||||
"name": "Spawner (407)",
|
||||
"location": [335, 1920, 0],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Miasma", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "3ba58850-4bed-4935-8a37-e0c703f3b768",
|
||||
"name": "Spawner (407)",
|
||||
"location": [366, 1928, 0],
|
||||
|
|
@ -35,43 +19,86 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3d9f4f90-3f61-4dc1-9715-0d614c34c99c",
|
||||
"type": "Spawner",
|
||||
"guid": "ebe544f9-9a54-4822-bb37-ee11ba1059db",
|
||||
"name": "Spawner (407)",
|
||||
"location": [382, 1913, 0],
|
||||
"location": [384, 1932, 10],
|
||||
"map": "Malas",
|
||||
"count": 0,
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Minotaur", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0b34e749-7a4e-4dc8-8b84-6d6444d80525",
|
||||
"name": "Spawner (407)",
|
||||
"location": [335, 1920, 0],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Meraktus", "maxCount": 0, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Miasma", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "46f54372-6b9c-4e33-9f35-99fc01204b59",
|
||||
"type": "Spawner",
|
||||
"guid": "eea9dc24-23e1-4198-8dbc-b22bddb5a71c",
|
||||
"name": "Spawner (407)",
|
||||
"location": [427, 1923, 5],
|
||||
"location": [1740, 990, -80],
|
||||
"map": "Malas",
|
||||
"count": 10,
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "WanderingHealer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b9da636f-3e98-4924-a7da-8ac3d0141e5f",
|
||||
"name": "Spawner (407)",
|
||||
"location": [1742, 990, -84],
|
||||
"map": "Malas",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "MinotaurCaptain", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Minotaur", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "MinotaurScout", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TropicalBird", "maxCount": 4, "probability": 100 }
|
||||
{ "name": "Scorpion", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b8196e8f-9f8f-4362-b188-6bb06dbfea9d",
|
||||
"name": "Spawner (407)",
|
||||
"location": [336, 1891, 0],
|
||||
"map": "Malas",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "Minotaur", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "MinotaurScout", "maxCount": 5, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "4a9e68d9-d730-402c-96cc-979f6d08fcfa",
|
||||
"name": "Spawner (407)",
|
||||
"location": [357, 1898, 5],
|
||||
|
|
@ -82,83 +109,27 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Rend", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Rend", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "50f241e9-15cf-4561-9a1c-0fe8522d01cd",
|
||||
"type": "Spawner",
|
||||
"guid": "f5972024-9852-4b8d-96a2-bf1afc05c588",
|
||||
"name": "Spawner (407)",
|
||||
"location": [415, 1897, 5],
|
||||
"location": [346, 1959, 0],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Pyre", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "613eb20c-bb8e-4f16-8561-bd839851b463",
|
||||
"name": "Spawner (407)",
|
||||
"location": [390, 1883, 0],
|
||||
"map": "Malas",
|
||||
"count": 8,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Eagle", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "TropicalBird", "maxCount": 8, "probability": 100 }
|
||||
{ "name": "Squirrel", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a451b30c-88b8-411d-99b6-3a66cdfd0cd5",
|
||||
"name": "Spawner (407)",
|
||||
"location": [355, 1918, 0],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Reptalon", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Minotaur", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "aaca3ab0-5ea8-4af5-ac5f-c037d41b00fa",
|
||||
"name": "Spawner (407)",
|
||||
"location": [347, 1888, 5],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "flurry", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "grim", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "mistral", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "tempest", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "af7b61de-563e-4559-9905-d5113f0e7c02",
|
||||
"name": "Spawner (407)",
|
||||
"location": [392, 1917, 0],
|
||||
|
|
@ -180,41 +151,43 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b8196e8f-9f8f-4362-b188-6bb06dbfea9d",
|
||||
"type": "Spawner",
|
||||
"guid": "613eb20c-bb8e-4f16-8561-bd839851b463",
|
||||
"name": "Spawner (407)",
|
||||
"location": [336, 1891, 0],
|
||||
"location": [390, 1883, 0],
|
||||
"map": "Malas",
|
||||
"count": 5,
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Minotaur", "maxCount": 5, "probability": 100 },
|
||||
{ "name": "MinotaurScout", "maxCount": 5, "probability": 100 }
|
||||
{ "name": "Eagle", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 8, "probability": 100 },
|
||||
{ "name": "TropicalBird", "maxCount": 8, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b9da636f-3e98-4924-a7da-8ac3d0141e5f",
|
||||
"type": "Spawner",
|
||||
"guid": "a451b30c-88b8-411d-99b6-3a66cdfd0cd5",
|
||||
"name": "Spawner (407)",
|
||||
"location": [1742, 990, -84],
|
||||
"location": [355, 1918, 0],
|
||||
"map": "Malas",
|
||||
"count": 10,
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 12,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Scorpion", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 4, "probability": 100 }
|
||||
{ "name": "Reptalon", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Minotaur", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c1e202ec-c6ba-4c76-8a26-29767ae27907",
|
||||
"name": "Spawner (407)",
|
||||
"location": [346, 1910, 0],
|
||||
|
|
@ -231,40 +204,27 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ebe544f9-9a54-4822-bb37-ee11ba1059db",
|
||||
"type": "Spawner",
|
||||
"guid": "46f54372-6b9c-4e33-9f35-99fc01204b59",
|
||||
"name": "Spawner (407)",
|
||||
"location": [384, 1932, 10],
|
||||
"location": [427, 1923, 5],
|
||||
"map": "Malas",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Minotaur", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "eea9dc24-23e1-4198-8dbc-b22bddb5a71c",
|
||||
"name": "Spawner (407)",
|
||||
"location": [1740, 990, -80],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "WanderingHealer", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "MinotaurCaptain", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Minotaur", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "MinotaurScout", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TropicalBird", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "ef581668-95b6-4e1b-b43f-06e805e2e646",
|
||||
"name": "Spawner (407)",
|
||||
"location": [348, 1948, 0],
|
||||
|
|
@ -284,20 +244,50 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f5972024-9852-4b8d-96a2-bf1afc05c588",
|
||||
"type": "Spawner",
|
||||
"guid": "50f241e9-15cf-4561-9a1c-0fe8522d01cd",
|
||||
"name": "Spawner (407)",
|
||||
"location": [346, 1959, 0],
|
||||
"location": [415, 1897, 5],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Pyre", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "aaca3ab0-5ea8-4af5-ac5f-c037d41b00fa",
|
||||
"name": "Spawner (407)",
|
||||
"location": [347, 1888, 5],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Squirrel", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 4, "probability": 100 }
|
||||
{ "name": "flurry", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "grim", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "mistral", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "tempest", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3d9f4f90-3f61-4dc1-9715-0d614c34c99c",
|
||||
"name": "Spawner (407)",
|
||||
"location": [382, 1913, 0],
|
||||
"map": "Malas",
|
||||
"count": 0,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Meraktus", "maxCount": 0, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b37c3d38-2d53-4d2d-a8aa-a2e4926a29c6",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1119, 530, -90],
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e1ba3ada-d1fd-44fb-83b8-82e0e1fcf94f",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1674, 659, -84],
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "099efd1a-520c-4e6b-bb39-552def69e2df",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1434, 607, -89],
|
||||
|
|
@ -61,7 +61,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c9c80a39-40db-4cb9-a3c7-243957ecdd39",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1194, 638, -84],
|
||||
|
|
@ -82,7 +82,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0335054c-d38b-4c5a-9fc6-c04c42ba9de1",
|
||||
"name": "Spawner (402)",
|
||||
"location": [920, 356, -85],
|
||||
|
|
@ -101,5 +101,348 @@
|
|||
{ "name": "GreatHart", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JackRabbit", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "6ef4d890-5038-4d39-977c-5eb15448543a",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1659, 112, -80],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a7be1139-619a-4d84-a98a-8ea04c550827",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1869, 480, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "41a269ac-0492-4a16-bbc3-449c7efa9ef9",
|
||||
"name": "Spawner (402)",
|
||||
"location": [2121, 597, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a1e3857a-952a-47c2-9311-d6bcc3806c45",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1980, 660, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e2af6c55-d320-4255-a85f-c694f8d9886b",
|
||||
"name": "Spawner (402)",
|
||||
"location": [2233, 555, -90],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 60,
|
||||
"walkingRange": 60,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b85a0fee-612e-4bd9-8489-28fbcdc60ef5",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1137, 223, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b48ebb7a-8bfc-4c48-a0ab-f82ca41e38ac",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1381, 340, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "67b52f00-d808-4db4-91ca-9313330d0b40",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1710, 403, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "63d80004-20f7-48d8-bcc8-639a8d83c099",
|
||||
"name": "Spawner (402)",
|
||||
"location": [766, 114, -90],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "be2f76e8-a03b-42b9-b39c-c641f03ee091",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1206, 191, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "abaa8a2d-9997-4bff-b033-a9dfa78d46f9",
|
||||
"name": "Spawner (402)",
|
||||
"location": [2030, 500, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 70,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "135a20a6-0885-4a61-9a55-a01593f3e874",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1482, 347, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 60,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e3f940e1-3225-416f-a9ba-717b28fb944a",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1023, 192, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2db6869c-b590-4f82-a5eb-edb7afdd18e4",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1274, 300, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "dec6f03f-a79d-414a-8b8b-c46af723371a",
|
||||
"name": "Spawner (402)",
|
||||
"location": [1587, 386, -50],
|
||||
"map": "Malas",
|
||||
"count": 7,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Walrus", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SnowLeopard", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "WhiteWolf", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "IceSnake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PolarBear", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0c628980-8a6f-45e1-bdc8-ed7ea16765fd",
|
||||
"name": "Spawner (402)",
|
||||
"location": [2205, 145, -90],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 50,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "Unicorn", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2efda65d-ebc3-4251-b6a3-356d42cca581",
|
||||
"name": "Spawner (402)",
|
||||
"location": [2291, 295, -90],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 60,
|
||||
"walkingRange": 60,
|
||||
"entries": [{ "name": "GoreFiend", "maxCount": 6, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,34 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f4837b68-40f5-42db-b907-f4fe65248cf9",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1343, 1248, -90],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "Orc", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9a42ced3-e2d2-4d65-bb78-3903a4092c9f",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1343, 1196, -90],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [{ "name": "Orc", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0cb005f6-2405-41d4-b9b6-9ad8c75a6851",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1372, 1225, -90],
|
||||
|
|
@ -20,131 +48,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2abcbbd3-3842-46f6-95f1-41b743bb7083",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1364, 596, -86],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "415080ef-9b67-4529-8651-f82d4e0fba5c",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1205, 700, -88],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "778c0ad2-e39e-4c61-9b1c-e45b6a9b554e",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1257, 1326, -90],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9a42ced3-e2d2-4d65-bb78-3903a4092c9f",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1343, 1196, -90],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b187d6bd-fe00-43c8-906d-f18ee330f432",
|
||||
"name": "Spawner (403)",
|
||||
"location": [911, 194, -79],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c4a2ba68-4d62-480c-a9a9-b893f56a1a5d",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1598, 1819, -110],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c93264b1-19bd-47d9-ae8d-261e8d36fc30",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1665, 356, -50],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "ea44d8fe-27b9-4650-9c22-fed0630e5cc3",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1322, 1225, -90],
|
||||
|
|
@ -164,19 +68,111 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f4837b68-40f5-42db-b907-f4fe65248cf9",
|
||||
"type": "Spawner",
|
||||
"guid": "b187d6bd-fe00-43c8-906d-f18ee330f432",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1343, 1248, -90],
|
||||
"location": [911, 194, -79],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c93264b1-19bd-47d9-ae8d-261e8d36fc30",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1665, 356, -50],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "2abcbbd3-3842-46f6-95f1-41b743bb7083",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1364, 596, -86],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "415080ef-9b67-4529-8651-f82d4e0fba5c",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1205, 700, -88],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "778c0ad2-e39e-4c61-9b1c-e45b6a9b554e",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1257, 1326, -90],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c4a2ba68-4d62-480c-a9a9-b893f56a1a5d",
|
||||
"name": "Spawner (403)",
|
||||
"location": [1598, 1819, -110],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:15:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Orc", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "OrcishLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "OrcishMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "27bdb175-d7c0-49c9-b389-b26fe028e58a",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1920, 1124, -90],
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "56c3146a-f634-4ee8-9dd8-65e7fb98f8e2",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1920, 1124, -90],
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5286c49e-21e5-407a-a363-8ecf2ff5eafe",
|
||||
"name": "Spawner (404)",
|
||||
"location": [2266, 1218, -85],
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "695dcc16-4e4d-4b93-be25-05cf6ddf199c",
|
||||
"name": "Spawner (404)",
|
||||
"location": [2267, 1218, -85],
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "bb4e40ab-96e4-4061-85e9-8011b42ed020",
|
||||
"name": "Spawner (404)",
|
||||
"location": [2303, 1258, -86],
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "3e41feda-8300-4fa4-ba72-6752d37486cd",
|
||||
"name": "Spawner (404)",
|
||||
"location": [2304, 1258, -86],
|
||||
|
|
@ -146,7 +146,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4b59baa2-7ce0-40a6-9c68-c6f2210f0869",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1641, 1797, -110],
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9aa39353-19ab-480a-9e96-6a7ba1485251",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1899, 1609, -110],
|
||||
|
|
@ -184,7 +184,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6216b5d7-8c6f-420b-b615-54edf74cb173",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1741, 1487, -110],
|
||||
|
|
@ -203,7 +203,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "3f641570-9b47-44a3-859a-e9ab15dd4da8",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1837, 1803, -110],
|
||||
|
|
@ -222,7 +222,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "18a04411-aa44-46c4-9476-a77365090afa",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1823, 1799, -90],
|
||||
|
|
@ -231,10 +231,7 @@
|
|||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 1819, "y": 1795, "z": -90 },
|
||||
"end": { "x": 1827, "y": 1803, "z": -75 }
|
||||
},
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SkeletalKnight", "maxCount": 2, "probability": 100 },
|
||||
|
|
@ -246,7 +243,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4a2b88ce-b146-439d-917c-3f056775012e",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1821, 1798, -110],
|
||||
|
|
@ -255,10 +252,7 @@
|
|||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 1817, "y": 1794, "z": -110 },
|
||||
"end": { "x": 1825, "y": 1802, "z": -95 }
|
||||
},
|
||||
"homeRange": 4,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GiantRat", "maxCount": 4, "probability": 100 },
|
||||
|
|
@ -268,7 +262,27 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6bbb82e4-b0d1-4a23-a9da-5d35911ce762",
|
||||
"name": "Spawner (404)",
|
||||
"location": [2231, 1605, -95],
|
||||
"map": "Malas",
|
||||
"count": 33,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 160,
|
||||
"walkingRange": 160,
|
||||
"entries": [
|
||||
{ "name": "Mongbat", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "SandVortex", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Scorpion", "maxCount": 7, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 6, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 7, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d91c089c-551a-4333-adbb-4ff82e82908f",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1466, 1418, -90],
|
||||
|
|
@ -288,7 +302,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "01e68ebc-8521-44bd-ada3-a96cf6dc7b8e",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1477, 1241, -85],
|
||||
|
|
@ -308,7 +322,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "7a14417b-5b9c-4c46-978d-4f9aaf4ab2d8",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1347, 1739, -110],
|
||||
|
|
@ -328,7 +342,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c5036af7-93ad-41b3-a29b-48b1e60393fe",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1327, 1146, -90],
|
||||
|
|
@ -347,7 +361,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6d49d6f6-4054-4b02-a319-8be526aaefcf",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1256, 1221, -90],
|
||||
|
|
@ -366,7 +380,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "aa9e1655-d9ed-4fdc-99c9-ef04a9234b9b",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1345, 1314, -85],
|
||||
|
|
@ -385,7 +399,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fad094bd-915f-49d1-a0c6-486029d25506",
|
||||
"name": "Spawner (404)",
|
||||
"location": [943, 1150, -90],
|
||||
|
|
@ -396,12 +410,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Brigand", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Brigand", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c2cdce00-aaf5-40cc-b1f5-28c0d1364eff",
|
||||
"name": "Spawner (404)",
|
||||
"location": [900, 1494, -90],
|
||||
|
|
@ -420,7 +432,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c5657dd4-3bbc-4557-a5bb-9a111c7e6763",
|
||||
"name": "Spawner (404)",
|
||||
"location": [829, 1474, -85],
|
||||
|
|
@ -439,7 +451,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "eb36fa8a-c49d-42b2-ac5a-246391bdb716",
|
||||
"name": "Spawner (404)",
|
||||
"location": [989, 1419, -82],
|
||||
|
|
@ -458,7 +470,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e9f2158f-8b22-46cd-94ce-924a22b6dd65",
|
||||
"name": "Spawner (404)",
|
||||
"location": [913, 1335, -90],
|
||||
|
|
@ -477,7 +489,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "20e95aca-18d5-4862-a0cd-72e65f188dc4",
|
||||
"name": "Spawner (404)",
|
||||
"location": [881, 927, -90],
|
||||
|
|
@ -488,12 +500,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Pixie", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Pixie", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "51a28e73-74fd-454b-8c02-5aeacd7f041b",
|
||||
"name": "Spawner (404)",
|
||||
"location": [882, 1000, -90],
|
||||
|
|
@ -504,12 +514,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Pixie", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Pixie", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "83ded31b-46a4-4d33-b340-abb593f01ea9",
|
||||
"name": "Spawner (404)",
|
||||
"location": [989, 1420, -82],
|
||||
|
|
@ -520,12 +528,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Pixie", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Pixie", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0109ed70-dc93-4c76-9647-ef3565315a1b",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1455, 1445, -90],
|
||||
|
|
@ -536,12 +542,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Pixie", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Pixie", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c3fa83a1-72e9-440b-9ddf-d8733e54e59f",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1429, 1549, -110],
|
||||
|
|
@ -552,12 +556,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Pixie", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Pixie", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f18bf6f0-7dde-43f7-81f5-ac26393e48c0",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1305, 1095, -90],
|
||||
|
|
@ -568,12 +570,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "Pixie", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Pixie", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b49f301b-9378-489a-b999-51785a3307e9",
|
||||
"name": "Spawner (404)",
|
||||
"location": [790, 948, -90],
|
||||
|
|
@ -592,7 +592,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "74e793f9-ab88-4c51-b713-203fe3ec3828",
|
||||
"name": "Spawner (404)",
|
||||
"location": [766, 1364, -90],
|
||||
|
|
@ -611,7 +611,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d5aa4b2a-02bd-4fab-ad78-6e0a2cd7c575",
|
||||
"name": "Spawner (404)",
|
||||
"location": [656, 1431, -90],
|
||||
|
|
@ -630,7 +630,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "ff590783-b876-429c-aaad-e6096a86ea7e",
|
||||
"name": "Spawner (404)",
|
||||
"location": [805, 1232, -90],
|
||||
|
|
@ -649,7 +649,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "eeaacf1f-a83f-4ba0-86f3-1f39aff6a3ec",
|
||||
"name": "Spawner (404)",
|
||||
"location": [672, 1237, -90],
|
||||
|
|
@ -668,7 +668,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d0fe5086-d802-43d1-b62f-a81dbc603ca1",
|
||||
"name": "Spawner (404)",
|
||||
"location": [684, 1109, -90],
|
||||
|
|
@ -687,7 +687,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c30d468f-b35f-4aa5-a13f-773518810151",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1079, 1440, -90],
|
||||
|
|
@ -706,7 +706,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "cf2df3ea-792b-4d9e-9723-b094b5654dcf",
|
||||
"name": "Spawner (404)",
|
||||
"location": [966, 1213, -90],
|
||||
|
|
@ -725,7 +725,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6651b803-1285-427b-93a5-c127957915bc",
|
||||
"name": "Spawner (404)",
|
||||
"location": [925, 1105, -90],
|
||||
|
|
@ -744,7 +744,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "bfcc0baf-f539-440f-96b6-911679afc732",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1049, 1332, -90],
|
||||
|
|
@ -763,7 +763,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "445e307b-72d4-4d2e-9284-14938e4dab15",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1086, 1067, -90],
|
||||
|
|
@ -782,7 +782,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "375e8bd1-6823-442a-a125-2e2acf53edd9",
|
||||
"name": "Spawner (404)",
|
||||
"location": [1062, 988, -90],
|
||||
|
|
|
|||
|
|
@ -1,6 +1,470 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "99cde945-5b9c-4cff-924f-a59142bcbdb9",
|
||||
"name": "Spawner (405)",
|
||||
"location": [989, 520, -50],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Banker", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Minter", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "7bd799ab-c7fb-446e-b6cb-580d1fe2f7fb",
|
||||
"name": "Spawner (405)",
|
||||
"location": [976, 512, -50],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Blacksmith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "BlacksmithGuildmaster", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f62df843-74a7-4bb0-a101-53d1dc4cb806",
|
||||
"name": "Spawner (405)",
|
||||
"location": [976, 527, -50],
|
||||
"map": "Malas",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Tailor", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Weaver", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TailorGuildmaster", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Tanner", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Furtrader", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "79aa68b8-d2bd-4a4d-ad84-422588aeaaff",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1016, 514, -70],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "KeeperOfChivalry", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e08eb38c-0b25-4387-8999-f9d8a0a877aa",
|
||||
"name": "Spawner (405)",
|
||||
"location": [961, 517, -70],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "KeeperOfChivalry", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a4200c02-8035-48bc-b79d-8b45225ffd4f",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1004, 527, -50],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "HolyMage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Herbalist", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Alchemist", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "CustomHairstylist", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c1bda852-fee4-45ee-aa79-630980bc44e9",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1003, 512, -50],
|
||||
"map": "Malas",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Tinker", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TinkerGuildmaster", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Carpenter", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Architect", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "RealEstateBroker", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "df531ac9-d2b0-48ae-bc19-dc043d6af3de",
|
||||
"name": "Spawner (405)",
|
||||
"location": [993, 511, -50],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Provisioner", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Cobbler", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Jeweler", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "54deea77-bc1e-446b-8274-ea23bddb369e",
|
||||
"name": "Spawner (405)",
|
||||
"location": [989, 527, -50],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InnKeeper", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "7a10d380-53e3-48c9-9c5b-07a3c215032a",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1027, 494, -70],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "AnimalTrainer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3d301c77-1ade-4823-b2ff-f1d4e0ed2bf0",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1029, 520, -55],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Healer", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HealerGuildmaster", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0d9c6323-7da9-4e12-861a-76fd30b3e3dc",
|
||||
"name": "Spawner (405)",
|
||||
"location": [950, 520, -55],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Healer", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HealerGuildmaster", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "55fab330-6d2a-4823-a666-3dfa33dceeb6",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1977, 1365, -80],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Blacksmith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "BlacksmithGuildmaster", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "81e4af4e-3310-4864-8517-a032d487716f",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1992, 1315, -90],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "AnimalTrainer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9ad9f47f-17bc-4790-9a84-1e9aee66478f",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2011, 1326, -80],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Provisioner", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Cobbler", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fa9dbd50-e0ca-4206-a197-0fe85a349900",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2017, 1356, -90],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Baker", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b4f71d7e-8c76-47db-a1c1-b81c4484741b",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2027, 1353, -90],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "TavernKeeper", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Waiter", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Cook", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Barkeeper", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3dcbbc92-14ac-4798-8753-41aa3b6b2450",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2023, 1379, -80],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Mage", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Alchemist", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "MageGuildmaster", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a0c83d13-2354-494f-9535-d4e587cc7a6b",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2025, 1387, -80],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Herbalist", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Alchemist", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "CustomHairstylist", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3d69c950-70d4-48c5-8729-be8848330c1a",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2045, 1397, -90],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "Jeweler", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a263ccfc-65e1-4181-93b6-6e1c7914f5b8",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2048, 1343, -85],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Banker", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Minter", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9347985d-23a4-4044-9a5c-79939c9f7df0",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2037, 1311, -85],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InnKeeper", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "eb50b13f-dd98-42c1-bfa0-2599bdc85de3",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2066, 1282, -80],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Tinker", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TinkerGuildmaster", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8ed338dc-51c1-40b3-a91a-7ebd8d91131b",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2060, 1283, -80],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Carpenter", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Architect", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "RealEstateBroker", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d6de9f30-1ee9-4914-853c-be075bd119ce",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2083, 1322, -80],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Tailor", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Weaver", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TailorGuildmaster", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "72a7f47d-d4cb-4530-9ba6-3878482279b2",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2078, 1327, -80],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Tanner", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Furtrader", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0db7d5e9-beaa-43a2-ac46-2802ac962fcb",
|
||||
"name": "Spawner (405)",
|
||||
"location": [2068, 1372, -75],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Healer", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HealerGuildmaster", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b7226aea-9fd0-4079-8e21-70a7a443d0b2",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1056, 1434, -85],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InnKeeper", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "befc0201-8bec-432e-8ced-3ee5ceb57d09",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1050, 1434, -85],
|
||||
|
|
@ -18,7 +482,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d8e03ce8-cd76-433e-af76-0c0767290705",
|
||||
"name": "Spawner (405)",
|
||||
"location": [1042, 1444, -90],
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "35fb2ebe-b2e6-4a64-af3a-ce1eaacd9a54",
|
||||
"name": "Spawner (601)",
|
||||
"location": [795, 753, 53],
|
||||
|
|
@ -11,12 +11,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Hydra", "maxCount": 8, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Hydra", "maxCount": 8, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "8d0bc27a-c900-4d7f-8811-a52f386b6d0c",
|
||||
"name": "Spawner (601)",
|
||||
"location": [745, 739, 16],
|
||||
|
|
@ -27,12 +25,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "MaddeningHorror", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "MaddeningHorror", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f7e9ab99-b970-4be1-881b-9e7ef1af0d01",
|
||||
"name": "Spawner (601)",
|
||||
"location": [749, 475, -17],
|
||||
|
|
@ -43,12 +39,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "SlasherOfVeils", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "SlasherOfVeils", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "dd5aea6e-c13b-40f4-949f-9f41eac96589",
|
||||
"name": "Spawner (601)",
|
||||
"location": [326, 159, 20],
|
||||
|
|
@ -59,12 +53,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "StygianDragon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "StygianDragon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5c81b759-1add-4e8a-b151-420aa778e236",
|
||||
"name": "Spawner (601)",
|
||||
"location": [716, 720, -11],
|
||||
|
|
@ -84,7 +76,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a02bf178-9eb0-48ff-ae18-d06958f798a8",
|
||||
"name": "Spawner (601)",
|
||||
"location": [992, 337, 9],
|
||||
|
|
@ -104,7 +96,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "3929df23-08d5-4650-89a1-6cb025fddbac",
|
||||
"name": "Spawner (601)",
|
||||
"location": [982, 491, -12],
|
||||
|
|
@ -122,7 +114,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "941cbed7-bf9a-448d-ae6a-f741459f50d1",
|
||||
"name": "Spawner (601)",
|
||||
"location": [981, 491, -12],
|
||||
|
|
@ -133,12 +125,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 18,
|
||||
"walkingRange": 18,
|
||||
"entries": [
|
||||
{ "name": "ClockworkScorpion", "maxCount": 16, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "ClockworkScorpion", "maxCount": 16, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "517bfdd3-f625-4e1c-af4b-8467810e6e46",
|
||||
"name": "Spawner (601)",
|
||||
"location": [919, 502, -12],
|
||||
|
|
@ -156,7 +146,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "592811d2-8196-4006-a774-5658b4df3ecb",
|
||||
"name": "Spawner (601)",
|
||||
"location": [918, 502, -12],
|
||||
|
|
@ -167,12 +157,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "ClanRibbonPlagueRat", "maxCount": 15, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "ClanRibbonPlagueRat", "maxCount": 15, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "8ff19011-9cc1-4aaf-a795-1867c6667123",
|
||||
"name": "Spawner (601)",
|
||||
"location": [949, 555, -14],
|
||||
|
|
@ -190,7 +178,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1b0b5739-68fc-4048-b2be-10da4dee13b8",
|
||||
"name": "Spawner (601)",
|
||||
"location": [950, 555, -14],
|
||||
|
|
@ -201,12 +189,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "ClanScratchSavageWolf", "maxCount": 18, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "ClanScratchSavageWolf", "maxCount": 18, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c33dadb8-e340-4fc6-9944-627054cf96f6",
|
||||
"name": "Spawner (601)",
|
||||
"location": [974, 161, -11],
|
||||
|
|
@ -229,7 +215,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "dcc3ba35-0e14-48fe-8a1b-8a7e5b3e4c03",
|
||||
"name": "Spawner (601)",
|
||||
"location": [581, 815, -45],
|
||||
|
|
@ -252,7 +238,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6dfe8446-6623-4133-8990-6d11813b2b0d",
|
||||
"name": "Spawner (601)",
|
||||
"location": [526, 766, -92],
|
||||
|
|
@ -276,7 +262,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6d71c735-e0cb-414d-b687-10c1a4192856",
|
||||
"name": "Spawner (601)",
|
||||
"location": [536, 657, 8],
|
||||
|
|
@ -298,7 +284,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "29d4421f-924d-47c3-abe5-45fe5e1be9a5",
|
||||
"name": "Spawner (601)",
|
||||
"location": [601, 905, -60],
|
||||
|
|
@ -321,7 +307,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "7dac51b3-7c0a-4f22-8652-7e29ba875fee",
|
||||
"name": "Spawner (601)",
|
||||
"location": [818, 927, -15],
|
||||
|
|
@ -332,12 +318,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Medusa", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Medusa", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c64053fc-272a-4fdd-9c6c-4f05a1ec02be",
|
||||
"name": "Spawner (601)",
|
||||
"location": [684, 579, -15],
|
||||
|
|
@ -357,7 +341,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a72aa352-96b2-4163-83c0-de180a8fb7e8",
|
||||
"name": "Spawner (601)",
|
||||
"location": [440, 708, 24],
|
||||
|
|
@ -376,7 +360,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "875d5be5-9156-4e42-a41a-973aef764aee",
|
||||
"name": "Spawner (601)",
|
||||
"location": [674, 828, -109],
|
||||
|
|
@ -399,7 +383,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "11551b29-0ee5-4fae-8d9b-2fd60465b032",
|
||||
"name": "Spawner (601)",
|
||||
"location": [887, 277, 3],
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "910e07be-fd79-4608-9990-5b860c14f95f",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1109, 3744, -34],
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e93d2519-a992-406d-84db-c246d4c9e68c",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1088, 3732, -43],
|
||||
|
|
@ -28,12 +28,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5de9c1d3-274e-418f-8d1f-01357fa82fa4",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1126, 3714, -43],
|
||||
|
|
@ -44,12 +42,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "88ee3368-50a1-458c-9c99-8fb7ceddf079",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1134, 3483, -42],
|
||||
|
|
@ -71,7 +67,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "dd1b50db-06cc-4ab8-b1ae-7eb6d7ebeb03",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1118, 3416, -42],
|
||||
|
|
@ -92,7 +88,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "17ea295b-36bd-43e1-aa63-81d61bb7db98",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1112, 3624, -45],
|
||||
|
|
@ -109,7 +105,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "38fa4d5b-ab23-455a-9b32-3cfae24dacf1",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1036, 3670, 0],
|
||||
|
|
@ -126,7 +122,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "08c6d785-3e69-4343-a48e-54e876e09863",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1012, 3652, -30],
|
||||
|
|
@ -143,7 +139,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "ae84b446-e1a6-4df6-84b7-487218c2ffc0",
|
||||
"name": "Spawner (602)",
|
||||
"location": [996, 3406, -43],
|
||||
|
|
@ -168,7 +164,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f6d1d4f5-6a84-430b-bbef-8b248d6b7c34",
|
||||
"name": "Spawner (602)",
|
||||
"location": [851, 3642, -43],
|
||||
|
|
@ -193,7 +189,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1faffedd-40e4-4dcf-b944-418dbd7f1300",
|
||||
"name": "Spawner (602)",
|
||||
"location": [934, 3564, -43],
|
||||
|
|
@ -218,7 +214,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f76c2cff-e0c9-4b37-a7f8-9463975f34ac",
|
||||
"name": "Spawner (602)",
|
||||
"location": [965, 3489, -43],
|
||||
|
|
@ -243,7 +239,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "56b271ca-0fcc-4ea4-9c2d-7b5aeec0d532",
|
||||
"name": "Spawner (602)",
|
||||
"location": [858, 3532, -43],
|
||||
|
|
@ -260,7 +256,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "3b6298d3-c9f3-40df-af03-20af1ed36ad5",
|
||||
"name": "Spawner (602)",
|
||||
"location": [981, 3318, -42],
|
||||
|
|
@ -277,7 +273,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "869aeec5-52eb-4041-ab43-5d943d05055f",
|
||||
"name": "Spawner (602)",
|
||||
"location": [881, 3344, -43],
|
||||
|
|
@ -294,7 +290,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "46785472-bc5c-4563-8a5b-2ea1c0f9f465",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1073, 3322, -42],
|
||||
|
|
@ -317,7 +313,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5f076796-65bf-4d41-88f3-78dacfab04b8",
|
||||
"name": "Spawner (602)",
|
||||
"location": [981, 3574, -43],
|
||||
|
|
@ -334,7 +330,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "55507c03-3ae8-43ba-a2c5-7e8ecd7a3457",
|
||||
"name": "Spawner (602)",
|
||||
"location": [909, 3235, 38],
|
||||
|
|
@ -357,7 +353,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6d62246c-b5a5-4a2a-8f8a-3a9d54387e8a",
|
||||
"name": "Spawner (602)",
|
||||
"location": [802, 3231, 40],
|
||||
|
|
@ -380,7 +376,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "572149ff-9542-42c1-92b9-99b71d8f2579",
|
||||
"name": "Spawner (602)",
|
||||
"location": [679, 3248, 38],
|
||||
|
|
@ -400,7 +396,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c05a8e56-f166-414e-babc-dcc1d14221c4",
|
||||
"name": "Spawner (602)",
|
||||
"location": [588, 3267, 37],
|
||||
|
|
@ -423,7 +419,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1a1cad72-ebdf-4491-a623-66d87bc45538",
|
||||
"name": "Spawner (602)",
|
||||
"location": [521, 3355, 38],
|
||||
|
|
@ -444,7 +440,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e23908dc-858c-4ec1-a41a-474fd7e9730d",
|
||||
"name": "Spawner (602)",
|
||||
"location": [511, 3273, 36],
|
||||
|
|
@ -462,7 +458,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "955417f2-d918-4c43-93a6-346ca6fb4bbc",
|
||||
"name": "Spawner (602)",
|
||||
"location": [547, 3421, 37],
|
||||
|
|
@ -483,7 +479,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "ebbbc910-1d0f-4180-8e7a-544d819906b8",
|
||||
"name": "Spawner (602)",
|
||||
"location": [571, 3506, 38],
|
||||
|
|
@ -501,7 +497,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "153e658a-818b-4ed3-80d0-8b5f99193b6e",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1169, 3338, -42],
|
||||
|
|
@ -523,7 +519,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "18cef512-871f-4ff0-b21d-54e22e6197bc",
|
||||
"name": "Spawner (602)",
|
||||
"location": [689, 3711, -43],
|
||||
|
|
@ -543,7 +539,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "8745bf7c-2b8b-45ae-b992-7de9c58d14fc",
|
||||
"name": "Spawner (602)",
|
||||
"location": [761, 3650, -43],
|
||||
|
|
@ -563,7 +559,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "97c2ed7b-69c7-43db-8ccb-8591ecd90316",
|
||||
"name": "Spawner (602)",
|
||||
"location": [616, 3684, -43],
|
||||
|
|
@ -581,7 +577,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "990f3875-b9e4-4060-8e14-7f2c4b9a69a2",
|
||||
"name": "Spawner (602)",
|
||||
"location": [668, 3831, -31],
|
||||
|
|
@ -600,7 +596,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0b5d810e-182e-4d7c-9a79-2dfb3ba8e5f3",
|
||||
"name": "Spawner (602)",
|
||||
"location": [680, 3788, -43],
|
||||
|
|
@ -611,12 +607,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "8151255d-cede-4c52-bacc-fc3a1a434c45",
|
||||
"name": "Spawner (602)",
|
||||
"location": [760, 3810, -42],
|
||||
|
|
@ -637,7 +631,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1017634b-fad7-41ee-a13c-ec15dc0e5ae9",
|
||||
"name": "Spawner (602)",
|
||||
"location": [826, 3762, -43],
|
||||
|
|
@ -659,7 +653,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e2817ac3-8c77-4901-af5f-d51f0ceb7f7d",
|
||||
"name": "Spawner (602)",
|
||||
"location": [795, 3827, -19],
|
||||
|
|
@ -670,12 +664,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "54228f45-e935-4df1-8d50-e15ec557d110",
|
||||
"name": "Spawner (602)",
|
||||
"location": [799, 3863, 48],
|
||||
|
|
@ -697,7 +689,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "91a9c0fa-51f3-4726-aeb1-25a03911fffa",
|
||||
"name": "Spawner (602)",
|
||||
"location": [763, 3991, -42],
|
||||
|
|
@ -718,7 +710,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "866bde45-dd02-4eef-b6c4-143bf3b6c31a",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1129, 3163, -42],
|
||||
|
|
@ -738,7 +730,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "08ce21d5-67cc-46c7-a827-68048f38e3ef",
|
||||
"name": "Spawner (602)",
|
||||
"location": [687, 3917, -43],
|
||||
|
|
@ -749,12 +741,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TrapdoorSpider", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "63140eed-b7f0-4ca9-87f5-5caeff3b6607",
|
||||
"name": "Spawner (602)",
|
||||
"location": [641, 3922, -43],
|
||||
|
|
@ -775,7 +765,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5216666c-6c47-4d72-9818-510a88ea6edc",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1065, 2996, 74],
|
||||
|
|
@ -795,7 +785,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "089d3262-1c31-4f80-aa13-d2d5383f0535",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1099, 3010, 50],
|
||||
|
|
@ -806,12 +796,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 3,
|
||||
"entries": [
|
||||
{ "name": "ToxicSlith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "ToxicSlith", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c1db00c8-9759-4f55-8ac4-f7557a6b9242",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1053, 2971, 50],
|
||||
|
|
@ -822,12 +810,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 3,
|
||||
"entries": [
|
||||
{ "name": "ToxicSlith", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "ToxicSlith", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a7437a00-ed2e-4acc-9375-b234ceffd92a",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1062, 3026, 50],
|
||||
|
|
@ -838,12 +824,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 3,
|
||||
"entries": [
|
||||
{ "name": "ToxicSlith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "ToxicSlith", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d0e61272-a938-4b64-8713-3bac2356f1c7",
|
||||
"name": "Spawner (602)",
|
||||
"location": [762, 3073, 105],
|
||||
|
|
@ -866,7 +850,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "27b77304-78cf-43bd-9ea3-076c491369a4",
|
||||
"name": "Spawner (602)",
|
||||
"location": [917, 3088, 37],
|
||||
|
|
@ -889,7 +873,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "150f4f85-b244-48a4-a46f-d5b3c56951c6",
|
||||
"name": "Spawner (602)",
|
||||
"location": [839, 3086, 83],
|
||||
|
|
@ -912,7 +896,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9f18de9c-4862-4940-a2b2-ea02d78c2a69",
|
||||
"name": "Spawner (602)",
|
||||
"location": [817, 2960, 76],
|
||||
|
|
@ -932,7 +916,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4b7fcf89-dc47-4a59-8da2-bda0f810beeb",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1106, 3138, -43],
|
||||
|
|
@ -949,7 +933,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "743c46bb-a95f-4a7b-8a7f-4c4c0473fe38",
|
||||
"name": "Spawner (602)",
|
||||
"location": [861, 2923, 38],
|
||||
|
|
@ -969,7 +953,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "de473023-c4ad-43f6-b9bd-b84d281234e8",
|
||||
"name": "Spawner (602)",
|
||||
"location": [648, 3131, 38],
|
||||
|
|
@ -991,7 +975,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "7ad064f2-fb54-47c6-ba74-7d36d9425ea6",
|
||||
"name": "Spawner (602)",
|
||||
"location": [622, 3045, 35],
|
||||
|
|
@ -1008,7 +992,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "10d3d73f-7f91-4eed-bd56-fc5805653892",
|
||||
"name": "Spawner (602)",
|
||||
"location": [685, 2901, 36],
|
||||
|
|
@ -1027,7 +1011,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f1c797af-4863-4b66-8169-795330712f08",
|
||||
"name": "Spawner (602)",
|
||||
"location": [562, 2942, 36],
|
||||
|
|
@ -1046,7 +1030,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fc314f2e-f697-4a0b-8bb0-f7dd51c1ed2a",
|
||||
"name": "Spawner (602)",
|
||||
"location": [486, 3211, 38],
|
||||
|
|
@ -1064,7 +1048,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4182343a-a4c0-4bc5-b07a-2e71cb1d3d97",
|
||||
"name": "Spawner (602)",
|
||||
"location": [426, 3190, 38],
|
||||
|
|
@ -1084,7 +1068,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a340eb44-bdd5-4ae8-a316-570d801cc0d3",
|
||||
"name": "Spawner (602)",
|
||||
"location": [354, 3283, 57],
|
||||
|
|
@ -1101,7 +1085,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f5ea0039-e107-461c-8091-21561b83f1d8",
|
||||
"name": "Spawner (602)",
|
||||
"location": [453, 3632, 37],
|
||||
|
|
@ -1118,7 +1102,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "80ecee75-df9e-462a-ac4c-695f0941b8fb",
|
||||
"name": "Spawner (602)",
|
||||
"location": [387, 3524, 38],
|
||||
|
|
@ -1135,7 +1119,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0b95e3c9-d94c-478c-9179-0ee10faad038",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1130, 3240, -42],
|
||||
|
|
@ -1156,7 +1140,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6eff3e1c-0886-4c54-b7d6-0b01477deca7",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1054, 3215, 38],
|
||||
|
|
@ -1175,7 +1159,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b928e0bb-64e8-442d-bd4f-c058e9bde1c2",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1057, 3167, 38],
|
||||
|
|
@ -1195,7 +1179,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "979cdd74-3b3d-419b-9cf2-d7721332883d",
|
||||
"name": "Spawner (602)",
|
||||
"location": [1186, 3558, -42],
|
||||
|
|
@ -1214,7 +1198,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4383a8fc-ec81-4ae6-b57e-f28ef51d26a1",
|
||||
"name": "Spawner (602)",
|
||||
"location": [35, 99, -5],
|
||||
|
|
@ -1231,7 +1215,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2841721d-dcb8-41ce-84ed-ec8fca926424",
|
||||
"name": "Spawner (602)",
|
||||
"location": [35, 159, 0],
|
||||
|
|
@ -1249,7 +1233,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "600fd870-3e98-44cf-9650-3e5e80977bc5",
|
||||
"name": "Spawner (602)",
|
||||
"location": [143, 158, -20],
|
||||
|
|
@ -1260,8 +1244,6 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Niporailem", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Niporailem", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1cd4979b-aac9-4287-b8af-9a31bb5526bc",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1127, 1202, -2],
|
||||
|
|
@ -11,12 +11,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "genericguard", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "genericguard", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "568aaef8-af43-44f6-8212-a50e96dc51d8",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1130, 1202, -2],
|
||||
|
|
@ -27,12 +25,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "genericguard", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "genericguard", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "c7124c0d-db07-4d72-92e4-ff8ebb54ce89",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1128, 1165, -12],
|
||||
|
|
@ -43,12 +39,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "Garamon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Garamon", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "29ebc79d-9f58-4ab8-9017-44a71fe17440",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1108, 1153, -22],
|
||||
|
|
@ -59,12 +53,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "gremlin", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "gremlin", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "81c4ea7e-4927-4bba-a31b-62ec12092f66",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1110, 1169, -23],
|
||||
|
|
@ -75,12 +67,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Slime", "maxCount": 10, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Slime", "maxCount": 10, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4eddff06-5db8-4a97-ad02-9284c3437410",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1097, 1189, -38],
|
||||
|
|
@ -91,12 +81,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "acidslug", "maxCount": 25, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "acidslug", "maxCount": 25, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "bf730c77-6395-4ba6-80a4-8b004a7a78a1",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1039, 1185, -56],
|
||||
|
|
@ -113,7 +101,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f6324bc0-73ac-4936-805a-875b46164c54",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1058, 1135, -37],
|
||||
|
|
@ -124,12 +112,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "rotworm", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "rotworm", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "dc88d319-4808-474a-8897-8bf076d951f9",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1064, 1106, -65],
|
||||
|
|
@ -140,12 +126,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Kraken", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Kraken", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "bcc44632-3114-4d86-86c5-a9b1e05a9c98",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1153, 1187, -32],
|
||||
|
|
@ -156,12 +140,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 14,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "rotworm", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "rotworm", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "84dd7320-c5a2-4b62-a959-83b749d88285",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1187, 1186, -40],
|
||||
|
|
@ -172,12 +154,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "bd06c2cc-090f-47c9-98af-119591c20f30",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1063, 1159, -42],
|
||||
|
|
@ -195,7 +175,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0784ac30-eae0-4d6e-8953-f2217416f2a8",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1152, 1130, -42],
|
||||
|
|
@ -206,12 +186,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "rotworm", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "rotworm", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1485dfcd-1dea-412f-a8fe-06a3f6a076cb",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1121, 1132, -42],
|
||||
|
|
@ -222,12 +200,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "FiddlingTobin", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "FiddlingTobin", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fd834a4b-778b-4f9c-9a86-c92de20ff2fe",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1150, 963, -43],
|
||||
|
|
@ -238,12 +214,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "NevilleBrightwhistle", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "NevilleBrightwhistle", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f94a912f-46d6-45b9-81c0-910a92f2aa87",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1108, 1086, -60],
|
||||
|
|
@ -254,12 +228,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "tanglingroots", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "tanglingroots", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0829e9d8-84e7-41d2-9587-2d61b117f473",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1095, 1076, -71],
|
||||
|
|
@ -270,12 +242,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "tanglingroots", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "tanglingroots", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "587467d9-8b59-4257-a242-9890ec058b00",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1089, 1128, -42],
|
||||
|
|
@ -286,12 +256,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "Gretchen", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Gretchen", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9e60f208-6e14-4d77-83f0-fb067d02e804",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1104, 1128, -52],
|
||||
|
|
@ -302,12 +270,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "ElderDugan", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "ElderDugan", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "66d7c6f5-eeb7-4b34-af75-c82d38330ee1",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1135, 1132, -42],
|
||||
|
|
@ -318,12 +284,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "QuartermasterFlint", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "QuartermasterFlint", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2affc9d3-8b16-4c2e-947f-45d362a4a0f4",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1015, 1118, -42],
|
||||
|
|
@ -348,7 +312,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "382e2dee-6150-4d26-960b-c07b96638749",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1022, 1087, -42],
|
||||
|
|
@ -373,7 +337,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "d072d262-08f3-4da3-9dcc-3983fa81d186",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1039, 1072, -32],
|
||||
|
|
@ -384,12 +348,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "GreaterPoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "GreaterPoisonElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9beef510-d580-44fc-95a6-d5ba9100cc34",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1191, 1022, -42],
|
||||
|
|
@ -406,7 +368,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "afed6e34-b8ee-4c64-b7d1-1b66629ccb97",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1177, 995, -27],
|
||||
|
|
@ -423,7 +385,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5caafbc5-1310-408c-8a26-ec00335494c2",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1218, 1049, -42],
|
||||
|
|
@ -440,7 +402,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a7f77781-8fcb-4aa0-b398-8f9b87b59eb2",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1178, 971, -27],
|
||||
|
|
@ -451,12 +413,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GrayGoblin", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "GrayGoblin", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6b2a7732-7ee9-480e-abd4-db501214cb05",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1214, 1026, -22],
|
||||
|
|
@ -467,12 +427,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "GrayGoblin", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "GrayGoblin", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b00555a0-97e8-4eb3-b609-2bb9bc5d21bd",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1199, 1053, -42],
|
||||
|
|
@ -489,7 +447,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "23b17a4f-d7e9-421c-8581-ba8eb8aff487",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1204, 1041, -42],
|
||||
|
|
@ -500,12 +458,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "Jaacar", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Jaacar", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "25d8cb74-d701-4e5a-9074-e7c20f7cff39",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1189, 989, -27],
|
||||
|
|
@ -516,12 +472,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": -1,
|
||||
"entries": [
|
||||
{ "name": "Barreraak", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Barreraak", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "95edace5-c3dc-4582-b559-1c3f9905f6f5",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1208, 984, -1],
|
||||
|
|
@ -538,7 +492,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "975d89b2-f693-48c0-b88b-9796d8e39ee8",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1217, 1074, -52],
|
||||
|
|
@ -560,7 +514,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1b91d22a-24a2-4aee-88fa-36304f40dfdc",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1053, 861, -32],
|
||||
|
|
@ -571,12 +525,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "NavreyNightEyes", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "NavreyNightEyes", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a37dcfad-6094-4074-8fc4-ead7d8dd889c",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1094, 1002, -16],
|
||||
|
|
@ -593,7 +545,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5a3f2d8b-8ed7-43fe-977b-a082ad4fd243",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1124, 1008, -43],
|
||||
|
|
@ -610,7 +562,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "31bf6eb1-fe34-4d25-b7cc-d0f395b2370a",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1147, 993, -41],
|
||||
|
|
@ -621,12 +573,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "IronBeetle", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "IronBeetle", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "399bf1fe-0c47-4945-8c14-5ee8a1d3b6b3",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1034, 1028, -43],
|
||||
|
|
@ -644,7 +594,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "df3d7a25-190a-4f00-968c-a6def4cfa15e",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1015, 1022, -43],
|
||||
|
|
@ -655,12 +605,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "GreenGoblinAlchemist", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "GreenGoblinAlchemist", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4bdd2d24-47f0-4678-b220-921df1e1c213",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1014, 1000, -43],
|
||||
|
|
@ -677,7 +625,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b1225d9f-1777-4ceb-9e03-2566fb2dc314",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1034, 1004, -43],
|
||||
|
|
@ -694,7 +642,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "af6a0287-46a1-490c-88ae-15172ec414f8",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1024, 1018, -42],
|
||||
|
|
@ -705,12 +653,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "rotworm", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "rotworm", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "332360f9-69c2-4c45-b36b-0325b7c6650e",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1015, 976, -27],
|
||||
|
|
@ -728,7 +674,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4bb2f7ea-9131-47be-83a6-0f13831e76b1",
|
||||
"name": "Spawner (603)",
|
||||
"location": [1044, 976, -30],
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "7bd2b3c7-3c39-40c5-9c3b-98b73d060c65",
|
||||
"name": "Spawner (604)",
|
||||
"location": [976, 3881, -42],
|
||||
|
|
@ -11,12 +11,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Baker", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Baker", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a80c5b72-e181-4266-8109-9c7a5eaf6a10",
|
||||
"name": "Spawner (604)",
|
||||
"location": [1010, 3883, -42],
|
||||
|
|
@ -33,7 +31,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "99c47ee2-bbb0-4d0b-9294-18104ebb0f6b",
|
||||
"name": "Spawner (604)",
|
||||
"location": [1013, 3913, -42],
|
||||
|
|
@ -50,7 +48,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6b95fe1b-1c63-479d-b481-1b4d4c929a79",
|
||||
"name": "Spawner (604)",
|
||||
"location": [977, 3909, -42],
|
||||
|
|
@ -67,7 +65,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9c632527-c639-469c-9ded-ca859e4a8859",
|
||||
"name": "Spawner (604)",
|
||||
"location": [943, 3924, -42],
|
||||
|
|
@ -78,12 +76,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "InnKeeper", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "InnKeeper", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b317c56d-c032-4e81-aa3a-78988500a740",
|
||||
"name": "Spawner (604)",
|
||||
"location": [1020, 3884, -42],
|
||||
|
|
@ -100,7 +96,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "556fdb4d-f7f2-4ba0-9d01-d94a76ee7a28",
|
||||
"name": "Spawner (604)",
|
||||
"location": [740, 3466, -19],
|
||||
|
|
@ -111,12 +107,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "InnKeeper", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "InnKeeper", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "65b19c79-0f40-4772-9037-1cad0769456d",
|
||||
"name": "Spawner (604)",
|
||||
"location": [772, 3467, -20],
|
||||
|
|
@ -127,12 +121,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Scribe", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Scribe", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fd3342ae-de6c-436e-964a-e410ba1f983b",
|
||||
"name": "Spawner (604)",
|
||||
"location": [773, 3478, -20],
|
||||
|
|
@ -150,7 +142,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fcffbb1c-fb73-4c59-9257-52e1d6ebadb4",
|
||||
"name": "Spawner (604)",
|
||||
"location": [772, 3490, -20],
|
||||
|
|
@ -168,7 +160,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "bb731ab1-950e-4e4b-8e55-6378eeb2c3b0",
|
||||
"name": "Spawner (604)",
|
||||
"location": [783, 3491, -20],
|
||||
|
|
@ -185,7 +177,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "36f1b1bc-0754-4605-929a-d7c8e030a80b",
|
||||
"name": "Spawner (604)",
|
||||
"location": [797, 3494, 0],
|
||||
|
|
@ -202,7 +194,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "28cda9f4-bbd1-451d-acb0-f568361a7d6f",
|
||||
"name": "Spawner (604)",
|
||||
"location": [805, 3491, -20],
|
||||
|
|
@ -213,12 +205,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Baker", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Baker", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0bd1f793-51e9-4dbe-ab5c-dbd452e85d8c",
|
||||
"name": "Spawner (604)",
|
||||
"location": [817, 3456, -10],
|
||||
|
|
@ -229,12 +219,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Butcher", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Butcher", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5f573458-bb63-4617-b2c4-c73762718dae",
|
||||
"name": "Spawner (604)",
|
||||
"location": [817, 3438, 0],
|
||||
|
|
@ -252,7 +240,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "37378f9d-5e71-46a8-8d15-0b98d48a3d04",
|
||||
"name": "Spawner (604)",
|
||||
"location": [817, 3426, 0],
|
||||
|
|
@ -269,7 +257,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2088913c-0ec7-4225-8f9d-1112e817542b",
|
||||
"name": "Spawner (604)",
|
||||
"location": [816, 3419, 0],
|
||||
|
|
@ -286,7 +274,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "094d18b0-4b1a-491d-ae33-2463d400904b",
|
||||
"name": "Spawner (604)",
|
||||
"location": [805, 3397, 0],
|
||||
|
|
@ -304,7 +292,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b9c41d27-d185-41dc-aa13-7258c018abc1",
|
||||
"name": "Spawner (604)",
|
||||
"location": [804, 3387, 0],
|
||||
|
|
@ -321,7 +309,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "720f9c6d-c0e6-4f66-aca9-cca448a5d02d",
|
||||
"name": "Spawner (604)",
|
||||
"location": [851, 3404, -20],
|
||||
|
|
@ -332,12 +320,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "AnimalTrainer", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "AnimalTrainer", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "0197b002-1c6d-45ac-8d7d-21706a854586",
|
||||
"name": "Spawner (604)",
|
||||
"location": [833, 3439, -20],
|
||||
|
|
@ -354,7 +340,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "3e2450a8-7aa3-434a-a144-dfc36f784d9e",
|
||||
"name": "Spawner (604)",
|
||||
"location": [843, 3439, -20],
|
||||
|
|
@ -371,7 +357,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f2b8fe59-6e8b-4db1-a20c-9663efe3b725",
|
||||
"name": "Spawner (604)",
|
||||
"location": [702, 3435, -20],
|
||||
|
|
@ -388,7 +374,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "59459615-255f-449a-b4ee-c6adf848c09a",
|
||||
"name": "Spawner (604)",
|
||||
"location": [727, 3425, -20],
|
||||
|
|
@ -405,7 +391,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "fa9d60df-aa99-4934-bfab-35066f170481",
|
||||
"name": "Spawner (604)",
|
||||
"location": [715, 3446, -20],
|
||||
|
|
@ -422,7 +408,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "27644d88-d3d5-458f-902d-78b7b59eaf95",
|
||||
"name": "Spawner (604)",
|
||||
"location": [713, 3438, -20],
|
||||
|
|
@ -440,7 +426,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2a0e5133-2658-44f4-95ca-bcc5d68ddaeb",
|
||||
"name": "Spawner (604)",
|
||||
"location": [794, 3446, -10],
|
||||
|
|
@ -457,7 +443,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6d91f1ff-12e5-4d75-aa5a-033ff00b9a24",
|
||||
"name": "Spawner (604)",
|
||||
"location": [779, 3431, -10],
|
||||
|
|
@ -468,12 +454,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "Jeweler", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Jeweler", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a1ba61c1-0fc5-46a4-b7de-1350606fb0fc",
|
||||
"name": "Spawner (604)",
|
||||
"location": [842, 3453, -18],
|
||||
|
|
@ -484,8 +468,6 @@
|
|||
"team": 0,
|
||||
"homeRange": 0,
|
||||
"walkingRange": 4,
|
||||
"entries": [
|
||||
{ "name": "TownCrier", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "TownCrier", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,56 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "42b06210-4cd3-49d6-a5d1-74e5ab0cc77a",
|
||||
"name": "Spawner (501)",
|
||||
"location": [977, 218, 23],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [{ "name": "FanDancer", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "47256f4f-b709-4c19-866b-2d7bdd896fd6",
|
||||
"name": "Spawner (501)",
|
||||
"location": [78, 546, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellHound", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "66d98c69-5788-471a-b93c-d82e252471b2",
|
||||
"name": "Spawner (501)",
|
||||
"location": [110, 540, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellHound", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "005c0fd4-1893-489e-9a09-14c53b246567",
|
||||
"name": "Spawner (501)",
|
||||
"location": [96, 540, -1],
|
||||
|
|
@ -17,7 +67,169 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f093fd90-d7b6-48a7-b5f3-c2524f4ca2ca",
|
||||
"name": "Spawner (501)",
|
||||
"location": [100, 499, -1],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "24b2ba02-2289-4cb3-a957-e3ec7629c0b1",
|
||||
"name": "Spawner (501)",
|
||||
"location": [64, 488, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HordeMinion", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f3743807-ec35-485a-82b5-f3cd3ba27bc0",
|
||||
"name": "Spawner (501)",
|
||||
"location": [70, 376, -1],
|
||||
"map": "Malas",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "FanDancer", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "HordeMinion", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "06d87817-7b93-45c4-9696-35c26ca4218d",
|
||||
"name": "Spawner (501)",
|
||||
"location": [120, 415, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "HordeMinion", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "bd077bc0-b36c-41b4-9e4c-e3f067d6846e",
|
||||
"name": "Spawner (501)",
|
||||
"location": [99, 387, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "HeadlessOne", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "4849d20d-77fc-4f0d-a513-a352a5849467",
|
||||
"name": "Spawner (501)",
|
||||
"location": [123, 387, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "HeadlessOne", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "183ea3fc-7ed8-4f54-bd05-513be50f48d6",
|
||||
"name": "Spawner (501)",
|
||||
"location": [79, 521, -1],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "HeadlessOne", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "624d9055-be69-4b42-9aa8-f8876a6c3cbf",
|
||||
"name": "Spawner (501)",
|
||||
"location": [88, 332, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "FanDancer", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "cdd374da-1e88-4389-ac42-a6c63ba30d0b",
|
||||
"name": "Spawner (501)",
|
||||
"location": [97, 467, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "HordeMinion", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "752b7dfa-4f8c-4bb6-875e-2f18385881b5",
|
||||
"name": "Spawner (501)",
|
||||
"location": [111, 352, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "HordeMinion", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "016a082b-0696-40c3-815b-c3dbef373d50",
|
||||
"name": "Spawner (501)",
|
||||
"location": [173, 615, -1],
|
||||
|
|
@ -36,58 +248,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "06d87817-7b93-45c4-9696-35c26ca4218d",
|
||||
"name": "Spawner (501)",
|
||||
"location": [120, 415, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "HordeMinion", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "12d3edf5-87f3-4fb4-9ca5-8462b94a81d8",
|
||||
"name": "Spawner (501)",
|
||||
"location": [134, 651, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "FanDancer", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HellHound", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "183ea3fc-7ed8-4f54-bd05-513be50f48d6",
|
||||
"name": "Spawner (501)",
|
||||
"location": [79, 521, -1],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "HeadlessOne", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1a384aa9-3d4c-4df7-82df-58e658f4bf5f",
|
||||
"name": "Spawner (501)",
|
||||
"location": [147, 646, -1],
|
||||
|
|
@ -104,144 +265,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "24b2ba02-2289-4cb3-a957-e3ec7629c0b1",
|
||||
"name": "Spawner (501)",
|
||||
"location": [64, 488, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HordeMinion", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "42b06210-4cd3-49d6-a5d1-74e5ab0cc77a",
|
||||
"name": "Spawner (501)",
|
||||
"location": [977, 218, 23],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "FanDancer", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "47256f4f-b709-4c19-866b-2d7bdd896fd6",
|
||||
"name": "Spawner (501)",
|
||||
"location": [78, 546, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellHound", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "477ff85e-e7ac-4a85-a99f-75d1b3e9eb74",
|
||||
"name": "Spawner (501)",
|
||||
"location": [110, 649, -1],
|
||||
"map": "Malas",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "FanDancer", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4849d20d-77fc-4f0d-a513-a352a5849467",
|
||||
"name": "Spawner (501)",
|
||||
"location": [123, 387, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "HeadlessOne", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "624d9055-be69-4b42-9aa8-f8876a6c3cbf",
|
||||
"name": "Spawner (501)",
|
||||
"location": [88, 332, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "FanDancer", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "66d98c69-5788-471a-b93c-d82e252471b2",
|
||||
"name": "Spawner (501)",
|
||||
"location": [110, 540, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellHound", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "752b7dfa-4f8c-4bb6-875e-2f18385881b5",
|
||||
"name": "Spawner (501)",
|
||||
"location": [111, 352, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "HordeMinion", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9a661087-c1ec-4503-9451-8873a8c24bd9",
|
||||
"name": "Spawner (501)",
|
||||
"location": [175, 660, -1],
|
||||
|
|
@ -259,7 +283,21 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e3fd2f65-4f1e-4af5-8cab-26493d9c5350",
|
||||
"name": "Spawner (501)",
|
||||
"location": [142, 692, -1],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "FanDancer", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a4392a5c-8729-40c2-bd31-4b145cba2f1a",
|
||||
"name": "Spawner (501)",
|
||||
"location": [106, 685, -1],
|
||||
|
|
@ -276,89 +314,39 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "bd077bc0-b36c-41b4-9e4c-e3f067d6846e",
|
||||
"type": "Spawner",
|
||||
"guid": "477ff85e-e7ac-4a85-a99f-75d1b3e9eb74",
|
||||
"name": "Spawner (501)",
|
||||
"location": [99, 387, -1],
|
||||
"location": [110, 649, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "HeadlessOne", "maxCount": 4, "probability": 100 }
|
||||
{ "name": "FanDancer", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Balron", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cdd374da-1e88-4389-ac42-a6c63ba30d0b",
|
||||
"type": "Spawner",
|
||||
"guid": "12d3edf5-87f3-4fb4-9ca5-8462b94a81d8",
|
||||
"name": "Spawner (501)",
|
||||
"location": [97, 467, -1],
|
||||
"location": [134, 651, -1],
|
||||
"map": "Malas",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "HordeMinion", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Succubus", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e3fd2f65-4f1e-4af5-8cab-26493d9c5350",
|
||||
"name": "Spawner (501)",
|
||||
"location": [142, 692, -1],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "FanDancer", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f093fd90-d7b6-48a7-b5f3-c2524f4ca2ca",
|
||||
"name": "Spawner (501)",
|
||||
"location": [100, 499, -1],
|
||||
"map": "Malas",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f3743807-ec35-485a-82b5-f3cd3ba27bc0",
|
||||
"name": "Spawner (501)",
|
||||
"location": [70, 376, -1],
|
||||
"map": "Malas",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "FanDancer", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "HeadlessOne", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "HordeMinion", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Daemon", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "FanDancer", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "HellHound", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "HellCat", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,221 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "03f1632a-1fc5-4132-92a7-288b4baf9ae9",
|
||||
"name": "Spawner (503)",
|
||||
"location": [744, 1347, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Sheep", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "217af4ba-df3f-4134-b360-8f8f921e8a01",
|
||||
"name": "Spawner (503)",
|
||||
"location": [721, 1274, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "366108fc-b366-4620-b8bb-4d04014d40b7",
|
||||
"name": "Spawner (503)",
|
||||
"location": [625, 1317, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Crane", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Goat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rabbit", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3cc46920-b82d-4c3b-b622-611f7b416b66",
|
||||
"name": "Spawner (503)",
|
||||
"location": [803, 1338, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3eced8bf-e4d6-484b-ae5f-6519e827a787",
|
||||
"name": "Spawner (503)",
|
||||
"location": [679, 1224, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "40d3a681-f9b5-4866-b6c2-93aa8d211660",
|
||||
"name": "Spawner (503)",
|
||||
"location": [834, 1351, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Crane", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "40d40ab7-a774-4443-8225-790b81878d3a",
|
||||
"name": "Spawner (503)",
|
||||
"location": [768, 1192, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "42f392a2-faec-48fe-b8fa-44c394ce4f31",
|
||||
"name": "Spawner (503)",
|
||||
"location": [844, 1318, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Crane", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JackRabbit", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4400a7f9-33b7-4f12-993e-6370e8422577",
|
||||
"name": "Spawner (503)",
|
||||
"location": [812, 1222, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JackRabbit", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "59135bf6-67a7-42db-ae76-2d9d53ee8d6b",
|
||||
"name": "Spawner (503)",
|
||||
"location": [628, 1310, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5a5e3558-be1a-49cc-a5cc-201c160e6c7b",
|
||||
"name": "Spawner (503)",
|
||||
"location": [711, 1322, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Dog", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Crane", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Sheep", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "63828858-74cb-4daa-a2e3-d79928cd539d",
|
||||
"name": "Spawner (503)",
|
||||
"location": [630, 1225, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Crane", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Rabbit", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "660e512a-833e-42d2-b13d-8d9aee2b8e68",
|
||||
"name": "Spawner (503)",
|
||||
"location": [667, 1343, 25],
|
||||
|
|
@ -226,28 +11,10 @@
|
|||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Rabbit", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Rabbit", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "787cabab-33ea-4938-a32d-5f3443af22c4",
|
||||
"name": "Spawner (503)",
|
||||
"location": [712, 1238, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Cat", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "7c22ce54-d85a-48c0-8388-25f26d1c7904",
|
||||
"name": "Spawner (503)",
|
||||
"location": [756, 1236, 25],
|
||||
|
|
@ -266,7 +33,21 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "787cabab-33ea-4938-a32d-5f3443af22c4",
|
||||
"name": "Spawner (503)",
|
||||
"location": [712, 1238, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Cat", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8065872f-41df-44a9-b382-d5d16e9f31da",
|
||||
"name": "Spawner (503)",
|
||||
"location": [683, 1231, 25],
|
||||
|
|
@ -277,12 +58,170 @@
|
|||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Rat", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3eced8bf-e4d6-484b-ae5f-6519e827a787",
|
||||
"name": "Spawner (503)",
|
||||
"location": [679, 1224, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Bird", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "dbffb36b-2e05-4968-96f6-c8f53ddeb50a",
|
||||
"name": "Spawner (503)",
|
||||
"location": [706, 1208, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Bird", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "217af4ba-df3f-4134-b360-8f8f921e8a01",
|
||||
"name": "Spawner (503)",
|
||||
"location": [721, 1274, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9780bf47-bc15-4bdd-8dc6-0a5ec2abddea",
|
||||
"name": "Spawner (503)",
|
||||
"location": [740, 1284, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Bird", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ae3ea0e1-e260-4f24-a0f2-7a617cbe7bbe",
|
||||
"name": "Spawner (503)",
|
||||
"location": [713, 1351, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Crane", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d9dd4287-6d11-4e50-b4b1-834c431ee60b",
|
||||
"name": "Spawner (503)",
|
||||
"location": [710, 1350, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Bird", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "cb8699ff-ca4c-44b1-9dd8-422e6e31fbbf",
|
||||
"name": "Spawner (503)",
|
||||
"location": [636, 1331, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Rabbit", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Crane", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "59135bf6-67a7-42db-ae76-2d9d53ee8d6b",
|
||||
"name": "Spawner (503)",
|
||||
"location": [628, 1310, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Bird", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "366108fc-b366-4620-b8bb-4d04014d40b7",
|
||||
"name": "Spawner (503)",
|
||||
"location": [625, 1317, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Crane", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Goat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rabbit", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "63828858-74cb-4daa-a2e3-d79928cd539d",
|
||||
"name": "Spawner (503)",
|
||||
"location": [630, 1225, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Crane", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Rabbit", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8ca277a3-a47d-4c33-8470-60d67d1fb2c7",
|
||||
"name": "Spawner (503)",
|
||||
"location": [628, 1272, 25],
|
||||
|
|
@ -300,7 +239,81 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "40d40ab7-a774-4443-8225-790b81878d3a",
|
||||
"name": "Spawner (503)",
|
||||
"location": [768, 1192, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f3688f98-8e8b-4100-8952-4f90020ab8ae",
|
||||
"name": "Spawner (503)",
|
||||
"location": [857, 1166, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Sheep", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c7bce2da-6a6c-4d0f-9c79-70c5a2895962",
|
||||
"name": "Spawner (503)",
|
||||
"location": [853, 1287, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Sheep", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e828c6c6-2867-4d26-a77a-ab581c4a7dcc",
|
||||
"name": "Spawner (503)",
|
||||
"location": [843, 1247, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Sheep", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "962520ff-e7ec-4187-b385-5550af5428cb",
|
||||
"name": "Spawner (503)",
|
||||
"location": [844, 1198, 25],
|
||||
|
|
@ -320,23 +333,25 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9780bf47-bc15-4bdd-8dc6-0a5ec2abddea",
|
||||
"type": "Spawner",
|
||||
"guid": "4400a7f9-33b7-4f12-993e-6370e8422577",
|
||||
"name": "Spawner (503)",
|
||||
"location": [740, 1284, 25],
|
||||
"location": [812, 1222, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 2,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JackRabbit", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9bf1fbe7-640a-44fe-89c5-b8771032d64b",
|
||||
"name": "Spawner (503)",
|
||||
"location": [807, 1287, 25],
|
||||
|
|
@ -355,30 +370,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ae3ea0e1-e260-4f24-a0f2-7a617cbe7bbe",
|
||||
"type": "Spawner",
|
||||
"guid": "42f392a2-faec-48fe-b8fa-44c394ce4f31",
|
||||
"name": "Spawner (503)",
|
||||
"location": [713, 1351, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 693, "y": 1331, "z": -128 },
|
||||
"end": { "x": 733, "y": 1371, "z": 40 }
|
||||
},
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Crane", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Cat", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "c7bce2da-6a6c-4d0f-9c79-70c5a2895962",
|
||||
"name": "Spawner (503)",
|
||||
"location": [853, 1287, 25],
|
||||
"location": [844, 1318, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -387,17 +382,32 @@
|
|||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Sheep", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Crane", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "JackRabbit", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cb8699ff-ca4c-44b1-9dd8-422e6e31fbbf",
|
||||
"type": "Spawner",
|
||||
"guid": "40d3a681-f9b5-4866-b6c2-93aa8d211660",
|
||||
"name": "Spawner (503)",
|
||||
"location": [636, 1331, 25],
|
||||
"location": [834, 1351, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Crane", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3cc46920-b82d-4c3b-b622-611f7b416b66",
|
||||
"name": "Spawner (503)",
|
||||
"location": [803, 1338, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -406,48 +416,12 @@
|
|||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Rabbit", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Crane", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d9dd4287-6d11-4e50-b4b1-834c431ee60b",
|
||||
"name": "Spawner (503)",
|
||||
"location": [710, 1350, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 690, "y": 1330, "z": -128 },
|
||||
"end": { "x": 730, "y": 1370, "z": 40 }
|
||||
},
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Bird", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "dbffb36b-2e05-4968-96f6-c8f53ddeb50a",
|
||||
"name": "Spawner (503)",
|
||||
"location": [706, 1208, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "df568bbb-9e8c-4594-a32b-85dd93540f10",
|
||||
"name": "Spawner (503)",
|
||||
"location": [770, 1344, 25],
|
||||
|
|
@ -466,27 +440,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e828c6c6-2867-4d26-a77a-ab581c4a7dcc",
|
||||
"type": "Spawner",
|
||||
"guid": "03f1632a-1fc5-4132-92a7-288b4baf9ae9",
|
||||
"name": "Spawner (503)",
|
||||
"location": [843, 1247, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Sheep", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Pig", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f3688f98-8e8b-4100-8952-4f90020ab8ae",
|
||||
"name": "Spawner (503)",
|
||||
"location": [857, 1166, 25],
|
||||
"location": [744, 1347, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -496,13 +453,32 @@
|
|||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Sheep", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dog", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Rat", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5a5e3558-be1a-49cc-a5cc-201c160e6c7b",
|
||||
"name": "Spawner (503)",
|
||||
"location": [711, 1322, 25],
|
||||
"map": "Tokuno",
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Dog", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Bird", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Crane", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Sheep", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f4d88eea-fd00-4029-bf05-960a4a03a082",
|
||||
"name": "Spawner (503)",
|
||||
"location": [690, 1288, 25],
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,79 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "115246e3-d444-4ad4-ad93-ba5f98ade944",
|
||||
"name": "Spawner (506)",
|
||||
"location": [71, 29, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "DullCopperElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "YomotsuWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "YomotsuPriest", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "6561df12-d971-4504-9a84-fba65d6e3339",
|
||||
"name": "Spawner (506)",
|
||||
"location": [111, 20, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "DullCopperElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "YomotsuWarrior", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "YomotsuPriest", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "694ea01f-680b-4054-9f13-bf9e7317a6d8",
|
||||
"name": "Spawner (506)",
|
||||
"location": [107, 23, -1],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "FireBeetle", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "922f0ff6-6efc-4787-aab1-32b8c41831ab",
|
||||
"name": "Spawner (506)",
|
||||
"location": [54, 67, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "DullCopperElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "YomotsuWarrior", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "YomotsuPriest", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "9cbd85a7-68f8-401d-a8c3-b2a220b2e431",
|
||||
"name": "Spawner (506)",
|
||||
"location": [16, 56, -1],
|
||||
|
|
@ -92,10 +19,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a0525c92-565a-4b15-b6b0-61c6be263ae7",
|
||||
"type": "Spawner",
|
||||
"guid": "ee2e7f73-a95f-40e6-8493-80dbe4c2ea65",
|
||||
"name": "Spawner (506)",
|
||||
"location": [102, 84, -1],
|
||||
"location": [25, 19, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -111,7 +38,45 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "115246e3-d444-4ad4-ad93-ba5f98ade944",
|
||||
"name": "Spawner (506)",
|
||||
"location": [71, 29, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "DullCopperElemental", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "YomotsuWarrior", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "YomotsuPriest", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "922f0ff6-6efc-4787-aab1-32b8c41831ab",
|
||||
"name": "Spawner (506)",
|
||||
"location": [54, 67, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "DullCopperElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "YomotsuWarrior", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "YomotsuPriest", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ba3f54b0-b977-476e-be97-2ad5ba39dc19",
|
||||
"name": "Spawner (506)",
|
||||
"location": [83, 114, -1],
|
||||
|
|
@ -130,7 +95,26 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "a0525c92-565a-4b15-b6b0-61c6be263ae7",
|
||||
"name": "Spawner (506)",
|
||||
"location": [102, 84, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 30,
|
||||
"entries": [
|
||||
{ "name": "EarthElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "DullCopperElemental", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "YomotsuWarrior", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "YomotsuPriest", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "dc1fe934-3641-4ddd-8b6c-207ccf0861ef",
|
||||
"name": "Spawner (506)",
|
||||
"location": [116, 61, -1],
|
||||
|
|
@ -149,10 +133,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ee2e7f73-a95f-40e6-8493-80dbe4c2ea65",
|
||||
"type": "Spawner",
|
||||
"guid": "6561df12-d971-4504-9a84-fba65d6e3339",
|
||||
"name": "Spawner (506)",
|
||||
"location": [25, 19, -1],
|
||||
"location": [111, 20, -1],
|
||||
"map": "Malas",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -166,5 +150,19 @@
|
|||
{ "name": "YomotsuWarrior", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "YomotsuPriest", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "694ea01f-680b-4054-9f13-bf9e7317a6d8",
|
||||
"name": "Spawner (506)",
|
||||
"location": [107, 23, -1],
|
||||
"map": "Malas",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "FireBeetle", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,99 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "025ff0bc-ff5b-4175-b963-1e393ee70543",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6535, 848, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Abscess", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Hydra", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "BogThing", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "04ebab40-c487-455f-8bea-211ae849bf2a",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6518, 879, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3dbad35b-a4c0-4d6d-b1d7-ad4cb792da01",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6489, 897, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [
|
||||
{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "43cff389-a041-49a6-89fb-cd5111466e70",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6518, 870, 0],
|
||||
"map": "Trammel",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "Thrasher", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "SwampTentacle", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Reaper", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Bogling", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Alligator", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Coil", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "WhippingVine", "maxCount": 9, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "713c3e56-33d2-430c-b182-364da7607c83",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6513, 871, 0],
|
||||
"map": "Trammel",
|
||||
"count": 17,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 35,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "GiantSerpent", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "GiantToad", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Harpy", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "SilverSerpent", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Bogling", "maxCount": 17, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b04cfa39-6091-49da-bdba-1b737c266a0a",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6507, 843, 0],
|
||||
|
|
@ -115,7 +22,28 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "713c3e56-33d2-430c-b182-364da7607c83",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6513, 871, 0],
|
||||
"map": "Trammel",
|
||||
"count": 17,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 35,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "GiantSerpent", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "GiantToad", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Harpy", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "SilverSerpent", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Snake", "maxCount": 17, "probability": 100 },
|
||||
{ "name": "Bogling", "maxCount": 17, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "c6215ac8-c0e3-4c83-9394-984deb29c773",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6585, 878, 0],
|
||||
|
|
@ -133,7 +61,25 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "025ff0bc-ff5b-4175-b963-1e393ee70543",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6535, 848, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Abscess", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "Hydra", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "BogThing", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e840761f-1c5b-45f2-ba91-2a273e9739c2",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6540, 872, 0],
|
||||
|
|
@ -144,8 +90,56 @@
|
|||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "43cff389-a041-49a6-89fb-cd5111466e70",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6518, 870, 0],
|
||||
"map": "Trammel",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Thrasher", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "SwampTentacle", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Reaper", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Bogling", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Alligator", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "Coil", "maxCount": 9, "probability": 100 },
|
||||
{ "name": "WhippingVine", "maxCount": 9, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "3dbad35b-a4c0-4d6d-b1d7-ad4cb792da01",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6489, 897, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "04ebab40-c487-455f-8bea-211ae849bf2a",
|
||||
"name": "Spawner (101)",
|
||||
"location": [6518, 879, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 5,
|
||||
"entries": [{ "name": "InsaneDryad", "maxCount": 1, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
|
|
@ -1,58 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "16798caa-188d-4b2d-8494-c3b56cbaa4c7",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6049, 1470, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "1fb937a2-b8d8-4796-8f7e-62dc86db4541",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6052, 1463, 0],
|
||||
"map": "Trammel",
|
||||
"count": 8,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 8, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "2059e438-3ea0-4553-9d80-2c4b3e179956",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6092, 1448, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "308b2558-7402-46d1-a300-11eb22feaf0b",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6049, 1447, 4],
|
||||
|
|
@ -70,41 +18,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "31142c48-f400-4b04-a235-4df3d184432a",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6115, 1491, -15],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "424591d5-810a-4248-b002-51d2d993b09e",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6108, 1471, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4502169a-d510-4779-a2d4-7ecff61c32a1",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6091, 1491, 10],
|
||||
|
|
@ -122,75 +36,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "551ba232-804a-48e2-a289-048ac2c5952c",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6087, 1443, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5873288f-b3d0-4ffc-b937-1a938b0ab0a3",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6039, 1438, 4],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5e47e277-8d43-46c0-b43a-a15ce3623ceb",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6112, 1462, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "639f6230-75e9-4633-8e2b-cfd6f35f4fdc",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6077, 1492, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "70842ac5-c2f9-490b-8fca-603396002f94",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6048, 1487, 5],
|
||||
|
|
@ -208,7 +54,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "73483117-862e-472d-b856-13fbe0f2cb04",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6065, 1459, 5],
|
||||
|
|
@ -226,26 +72,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "80883952-a77b-466d-b01e-f810fca42c11",
|
||||
"type": "Spawner",
|
||||
"guid": "2059e438-3ea0-4553-9d80-2c4b3e179956",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6090, 1483, 0],
|
||||
"map": "Trammel",
|
||||
"count": 8,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 8, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "82cbfa7a-4ea4-476b-ac8c-a3963746fffd",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6061, 1490, 5],
|
||||
"location": [6092, 1448, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
|
|
@ -260,25 +90,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "bda24adb-c409-4c12-a0c0-8aacd36ab3d9",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6034, 1467, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "cb41f5b8-add1-42be-8bbe-48b76f9a4dd9",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6107, 1452, 25],
|
||||
|
|
@ -296,7 +108,115 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "5e47e277-8d43-46c0-b43a-a15ce3623ceb",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6112, 1462, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5873288f-b3d0-4ffc-b937-1a938b0ab0a3",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6039, 1438, 4],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "31142c48-f400-4b04-a235-4df3d184432a",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6115, 1491, -15],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "ed8f2188-17cd-4235-86d8-54d62209ef93",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6084, 1470, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "16798caa-188d-4b2d-8494-c3b56cbaa4c7",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6049, 1470, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "bda24adb-c409-4c12-a0c0-8aacd36ab3d9",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6034, 1467, 5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "dd1b022d-98d5-4f06-aac1-7751d2416304",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6059, 1438, 4],
|
||||
|
|
@ -314,23 +234,25 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "e40a3f76-4701-425c-a806-06cb36504593",
|
||||
"type": "Spawner",
|
||||
"guid": "82cbfa7a-4ea4-476b-ac8c-a3963746fffd",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6037, 1494, 0],
|
||||
"location": [6061, 1490, 5],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"count": 3,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Alligator", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "e5f0bff7-c610-4923-8c17-b32a00911628",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6041, 1486, 5],
|
||||
|
|
@ -348,21 +270,87 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "ed8f2188-17cd-4235-86d8-54d62209ef93",
|
||||
"type": "Spawner",
|
||||
"guid": "80883952-a77b-466d-b01e-f810fca42c11",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6084, 1470, 5],
|
||||
"location": [6090, 1483, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"count": 8,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 1,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "SewerRat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Rat", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "BullFrog", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 8, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "639f6230-75e9-4633-8e2b-cfd6f35f4fdc",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6077, 1492, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "424591d5-810a-4248-b002-51d2d993b09e",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6108, 1471, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "551ba232-804a-48e2-a289-048ac2c5952c",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6087, 1443, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "1fb937a2-b8d8-4796-8f7e-62dc86db4541",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6052, 1463, 0],
|
||||
"map": "Trammel",
|
||||
"count": 8,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 5,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 8, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "e40a3f76-4701-425c-a806-06cb36504593",
|
||||
"name": "Spawner (102)",
|
||||
"location": [6037, 1494, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:00:00",
|
||||
"maxDelay": "00:01:00",
|
||||
"team": 0,
|
||||
"homeRange": 4,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "Alligator", "maxCount": 2, "probability": 100 }]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,61 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "20f986bd-7976-415c-bf34-2df8bde4025e",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5150, 742, 0],
|
||||
"map": "Trammel",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "28f3eccc-1c12-4576-ae46-e9cfb11fb19f",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5163, 567, 0],
|
||||
"map": "Trammel",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Mummy", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "3dfec3c5-2cc6-4908-b975-51182b394218",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5286, 542, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4563aa47-639e-47f3-a301-c430a6e1777a",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5187, 603, 0],
|
||||
|
|
@ -73,7 +18,70 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "94066b8f-d45a-4273-b649-ab593fbe55e8",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5186, 575, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 12,
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f4c26861-33c2-4f4b-af35-62f556e385cb",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5187, 545, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Skeleton", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "28f3eccc-1c12-4576-ae46-e9cfb11fb19f",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5163, 567, 0],
|
||||
"map": "Trammel",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Mummy", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b83d71f9-6539-4a90-a43a-4feb8ee48678",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5145, 553, -40],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "462bded2-9162-4b79-a1a3-7d35a889f899",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5147, 579, -50],
|
||||
|
|
@ -90,23 +98,132 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4afcb2a6-cecf-4d42-a449-de7e061ccd6c",
|
||||
"type": "Spawner",
|
||||
"guid": "5da72c5b-46fd-4a13-962f-3accc945f462",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5190, 655, 0],
|
||||
"location": [5147, 598, -50],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5c3582a8-fa9c-4839-aff6-82457f87f023",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5145, 622, -50],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5018fced-3b89-4654-88ac-143ceed1e566",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5212, 531, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d729f42a-87ef-4a42-8a3b-b65ae177ab40",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5219, 552, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Ghoul", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f2dac00d-2532-4fc4-8ae2-bde51687b3e1",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5219, 573, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "5b1e99f8-bde4-41f5-a76d-78b9dca9844c",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5145, 618, -50],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d846b9eb-23d3-4b86-8a61-20331e2cf8db",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5307, 546, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "4fb75ec8-f949-4480-b573-064a299b34c0",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5327, 542, 0],
|
||||
|
|
@ -125,127 +242,26 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5018fced-3b89-4654-88ac-143ceed1e566",
|
||||
"type": "Spawner",
|
||||
"guid": "3dfec3c5-2cc6-4908-b975-51182b394218",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5212, 531, 0],
|
||||
"location": [5286, 542, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "564f98cb-f8fe-43dd-a180-9da4652a4f1e",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5342, 582, 0],
|
||||
"map": "Trammel",
|
||||
"count": 8,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "BoneKnight", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "SkeletalKnight", "maxCount": 4, "probability": 100 }
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "591e02f3-9855-42a6-ae25-d11d0fbe788b",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5323, 571, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 2,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5b1e99f8-bde4-41f5-a76d-78b9dca9844c",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5145, 618, -50],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5c3582a8-fa9c-4839-aff6-82457f87f023",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5145, 622, -50],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "5da72c5b-46fd-4a13-962f-3accc945f462",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5147, 598, -50],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "6006bae6-ddb4-4c35-9c38-c1378f71e584",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5267, 690, 0],
|
||||
"map": "Trammel",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "6ac0a6d7-ac00-48c9-bb46-827c103b44ef",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5283, 583, 0],
|
||||
|
|
@ -262,168 +278,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7038def8-3dd9-481a-aff9-b344e58e0122",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5151, 718, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7a2d79d7-d842-4977-8449-5d7735e73c6f",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5280, 675, 8],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "FireElemental", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "7f6975e8-9689-441b-b484-e0c803cf29db",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5170, 678, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8a63e78b-f33d-4502-9760-81c36f272658",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5299, 603, 0],
|
||||
"map": "Trammel",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8f579b88-cb8e-4c17-b795-fd4d1d3d69d2",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5320, 708, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "94066b8f-d45a-4273-b649-ab593fbe55e8",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5186, 575, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 12,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9f4cf647-abba-4181-aa0a-b477d21800c4",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5322, 626, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a3e5c4ff-6bd0-4380-aebd-47ee3c1c1421",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5314, 748, -20],
|
||||
"map": "Trammel",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "LichLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SilverSerpent", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "a44b5c06-0cda-4edc-8468-fa4a00a52b1e",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5295, 623, -5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "BoneMagi", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "b094c982-2cfd-42ff-ab54-b175a134de30",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5318, 578, 0],
|
||||
|
|
@ -443,76 +298,94 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b0cf1788-6671-41ad-aa47-4e8287fbac5e",
|
||||
"type": "Spawner",
|
||||
"guid": "564f98cb-f8fe-43dd-a180-9da4652a4f1e",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5212, 674, -20],
|
||||
"location": [5342, 582, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b83d71f9-6539-4a90-a43a-4feb8ee48678",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5145, 553, -40],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "bf4c7226-e5d1-4d90-b70c-cc4d3ad472cb",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5307, 675, -20],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"count": 8,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "BoneKnight", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "SkeletalKnight", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cd67b487-cfbb-436c-9623-b05e87602698",
|
||||
"type": "Spawner",
|
||||
"guid": "8a63e78b-f33d-4502-9760-81c36f272658",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5219, 734, -20],
|
||||
"location": [5299, 603, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a44b5c06-0cda-4edc-8468-fa4a00a52b1e",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5295, 623, -5],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "BoneMagi", "maxCount": 3, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9f4cf647-abba-4181-aa0a-b477d21800c4",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5322, 626, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Lich", "maxCount": 4, "probability": 100 }
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "591e02f3-9855-42a6-ae25-d11d0fbe788b",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5323, 571, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 2,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d2d34809-99ba-41b9-9f74-ed1a65248ca0",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5139, 661, 0],
|
||||
|
|
@ -531,29 +404,24 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d729f42a-87ef-4a42-8a3b-b65ae177ab40",
|
||||
"type": "Spawner",
|
||||
"guid": "4afcb2a6-cecf-4d42-a449-de7e061ccd6c",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5219, 552, 0],
|
||||
"location": [5190, 655, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
"entries": [{ "name": "Lich", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d846b9eb-23d3-4b86-8a61-20331e2cf8db",
|
||||
"type": "Spawner",
|
||||
"guid": "7f6975e8-9689-441b-b484-e0c803cf29db",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5307, 546, 0],
|
||||
"location": [5170, 678, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -563,16 +431,16 @@
|
|||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f2dac00d-2532-4fc4-8ae2-bde51687b3e1",
|
||||
"type": "Spawner",
|
||||
"guid": "7038def8-3dd9-481a-aff9-b344e58e0122",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5219, 573, 0],
|
||||
"location": [5151, 718, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -581,14 +449,31 @@
|
|||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "f6f496d1-7f72-4e0a-be1f-e8249bc31633",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5192, 695, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "f3f74896-465e-4cc7-bb83-63d508157390",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5183, 727, 0],
|
||||
|
|
@ -605,36 +490,137 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f4c26861-33c2-4f4b-af35-62f556e385cb",
|
||||
"type": "Spawner",
|
||||
"guid": "b0cf1788-6671-41ad-aa47-4e8287fbac5e",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5187, 545, 0],
|
||||
"location": [5212, 674, -20],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 6,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 2, "probability": 100 }
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f6f496d1-7f72-4e0a-be1f-e8249bc31633",
|
||||
"type": "Spawner",
|
||||
"guid": "cd67b487-cfbb-436c-9623-b05e87602698",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5192, 695, 0],
|
||||
"location": [5219, 734, -20],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Lich", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "20f986bd-7976-415c-bf34-2df8bde4025e",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5150, 742, 0],
|
||||
"map": "Trammel",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 3,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "bf4c7226-e5d1-4d90-b70c-cc4d3ad472cb",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5307, 675, -20],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "7a2d79d7-d842-4977-8449-5d7735e73c6f",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5280, 675, 8],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "FireElemental", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8f579b88-cb8e-4c17-b795-fd4d1d3d69d2",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5320, 708, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "Lich", "maxCount": 2, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "a3e5c4ff-6bd0-4380-aebd-47ee3c1c1421",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5314, 748, -20],
|
||||
"map": "Trammel",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 8,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "Ghoul", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "PoisonElemental", "maxCount": 1, "probability": 100 }
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "LichLord", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "SilverSerpent", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "6006bae6-ddb4-4c35-9c38-c1378f71e584",
|
||||
"name": "Spawner (104)",
|
||||
"location": [5267, 690, 0],
|
||||
"map": "Trammel",
|
||||
"count": 5,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 2,
|
||||
"walkingRange": 35,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Lich", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,76 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "01f5635b-645f-43a3-b8e1-de505a9805f4",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5269, 811, 7],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "039faa13-d838-4ccf-8790-13500ac30d28",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5141, 834, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "ShadowWyrm", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "0f5e5a38-ef2b-4e49-8574-b5349c21dd06",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5352, 934, -5],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "22700190-506d-4f55-be3b-4ecf63f097a1",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5152, 869, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "ShadowWyrm", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "2d985bfc-95b3-40be-8a3e-f1919da38b19",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5209, 965, -40],
|
||||
|
|
@ -88,23 +18,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "31627f88-cd2c-42f2-8aa2-df019970100f",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5294, 842, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "34426acb-8319-4eb6-8760-d0acb86670f9",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5247, 956, -40],
|
||||
|
|
@ -121,145 +35,10 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "45519d94-93ec-4b71-9fcd-0693de58f4e8",
|
||||
"type": "Spawner",
|
||||
"guid": "fce8877c-f374-4e24-9d3f-65205427600e",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5229, 841, 1],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4a321325-9193-4861-a25e-c6f075636a07",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5241, 945, -40],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "4dea2c35-b11b-43cd-9916-6ee8d03105c7",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5153, 842, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "58412982-34fe-41e4-9c85-cd0d5691d62c",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5143, 986, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "68815cec-f528-4033-be41-04c6d75415e1",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5161, 940, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "GiantSerpent", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "699dfc8f-e891-4978-9c73-a74cb1762849",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5185, 1006, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "AncientWyrm", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "6b05c0d4-7c45-4d29-9f15-adbb0b12686f",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5141, 915, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "73ef3d35-2c97-40c0-8c9d-f949bedf4bf0",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5169, 836, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "EvilMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "89faa9ac-5c83-4145-a239-0f1bbc3088a6",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5226, 826, 0],
|
||||
"location": [5280, 955, -40],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
|
|
@ -274,23 +53,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "8a097ab1-3372-4f64-bb50-b18470eed97f",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5250, 869, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "GiantSerpent", "maxCount": 6, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "95541af6-6526-41ad-8329-a9819a3a1f8d",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5284, 926, -40],
|
||||
|
|
@ -308,93 +71,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "9f0b2731-3658-43bd-9fe4-3bca1a7c5212",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5317, 980, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b2eb4c30-1f29-4ef5-b80a-851c68af76f9",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5157, 997, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Wyvern", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "GiantSerpent", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "b705ea99-1d95-42ff-8287-fb6588d0ed24",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5149, 907, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "cde84676-d0c3-44e7-8be3-9335dc9c5b1b",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5203, 787, 5],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "d6da5d02-55ae-4e14-8aec-e02b2e7cf188",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5307, 815, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "da94b96f-7cbc-4016-91b5-6ec3df649e23",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5214, 917, -40],
|
||||
|
|
@ -412,7 +89,364 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "4a321325-9193-4861-a25e-c6f075636a07",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5241, 945, -40],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "68815cec-f528-4033-be41-04c6d75415e1",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5161, 940, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "GiantSerpent", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b705ea99-1d95-42ff-8287-fb6588d0ed24",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5149, 907, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 15,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "6b05c0d4-7c45-4d29-9f15-adbb0b12686f",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5141, 915, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 25,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "0f5e5a38-ef2b-4e49-8574-b5349c21dd06",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5352, 934, -5],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "9f0b2731-3658-43bd-9fe4-3bca1a7c5212",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5317, 980, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "8a097ab1-3372-4f64-bb50-b18470eed97f",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5250, 869, 0],
|
||||
"map": "Trammel",
|
||||
"count": 6,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "GiantSerpent", "maxCount": 6, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "89faa9ac-5c83-4145-a239-0f1bbc3088a6",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5226, 826, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "01f5635b-645f-43a3-b8e1-de505a9805f4",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5269, 811, 7],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "d6da5d02-55ae-4e14-8aec-e02b2e7cf188",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5307, 815, 0],
|
||||
"map": "Trammel",
|
||||
"count": 2,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "31627f88-cd2c-42f2-8aa2-df019970100f",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5294, 842, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "cde84676-d0c3-44e7-8be3-9335dc9c5b1b",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5203, 787, 5],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 12,
|
||||
"walkingRange": 25,
|
||||
"entries": [{ "name": "WaterElemental", "maxCount": 4, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "45519d94-93ec-4b71-9fcd-0693de58f4e8",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5229, 841, 1],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "def6615c-5bbd-4b7c-ab81-4dc4327c97d8",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5205, 778, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "039faa13-d838-4ccf-8790-13500ac30d28",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5141, 834, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "ShadowWyrm", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "73ef3d35-2c97-40c0-8c9d-f949bedf4bf0",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5169, 836, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Daemon", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "EvilMage", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "22700190-506d-4f55-be3b-4ecf63f097a1",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5152, 869, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 25,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Drake", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "ShadowWyrm", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "4dea2c35-b11b-43cd-9916-6ee8d03105c7",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5153, 842, 0],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 40,
|
||||
"walkingRange": 40,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 4, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel2", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fb1e3f19-4276-4b1f-b87f-0b4e38ebd70b",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5141, 968, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [{ "name": "FireElemental", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "b2eb4c30-1f29-4ef5-b80a-851c68af76f9",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5157, 997, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Wyvern", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "GiantSerpent", "maxCount": 3, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "699dfc8f-e891-4978-9c73-a74cb1762849",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5185, 1006, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 50,
|
||||
"entries": [{ "name": "AncientWyrm", "maxCount": 1, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "58412982-34fe-41e4-9c85-cd0d5691d62c",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5143, 986, 0],
|
||||
"map": "Trammel",
|
||||
"count": 3,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "db505150-0a76-44ac-8b27-841ef6b87321",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5183, 1007, 0],
|
||||
|
|
@ -427,55 +461,5 @@
|
|||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "TreasureChestLevel4", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "def6615c-5bbd-4b7c-ab81-4dc4327c97d8",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5205, 778, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 7,
|
||||
"walkingRange": 7,
|
||||
"entries": [
|
||||
{ "name": "TreasureChestLevel3", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fb1e3f19-4276-4b1f-b87f-0b4e38ebd70b",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5141, 968, 0],
|
||||
"map": "Trammel",
|
||||
"count": 1,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 10,
|
||||
"entries": [
|
||||
{ "name": "FireElemental", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "fce8877c-f374-4e24-9d3f-65205427600e",
|
||||
"name": "Spawner (106)",
|
||||
"location": [5280, 955, -40],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 30,
|
||||
"walkingRange": 50,
|
||||
"entries": [
|
||||
{ "name": "Dragon", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Drake", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wyvern", "maxCount": 1, "probability": 100 }
|
||||
]
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,45 +1,6 @@
|
|||
[
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "003c2e17-0f7e-4af8-9b25-de6ccc4c6e24",
|
||||
"name": "Spawner (108)",
|
||||
"location": [4545, 1317, 8],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 4535, "y": 1307, "z": -128 },
|
||||
"end": { "x": 4555, "y": 1327, "z": 25 }
|
||||
},
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "18ac21c4-da65-4449-997e-6e3952e53d46",
|
||||
"name": "Spawner (108)",
|
||||
"location": [722, 1119, 0],
|
||||
"map": "Trammel",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Skeleton", "maxCount": 10, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "1b1194dd-0699-4c9e-9cbe-1332a477a90d",
|
||||
"name": "Spawner (108)",
|
||||
"location": [1369, 1475, 10],
|
||||
|
|
@ -58,29 +19,27 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "69dd4fe9-7f47-466e-b290-963f9bf240d8",
|
||||
"type": "Spawner",
|
||||
"guid": "f40bd4f4-6ff1-40ba-84c3-296ade50ab51",
|
||||
"name": "Spawner (108)",
|
||||
"location": [2758, 867, 0],
|
||||
"location": [1285, 3731, 0],
|
||||
"map": "Trammel",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 2738, "y": 847, "z": -128 },
|
||||
"end": { "x": 2778, "y": 887, "z": 15 }
|
||||
},
|
||||
"walkingRange": 20,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 15,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "eb0eb81f-7aea-4162-bf8d-1a0e614ecbcd",
|
||||
"name": "Spawner (108)",
|
||||
"location": [2438, 1100, 8],
|
||||
|
|
@ -89,10 +48,7 @@
|
|||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 2428, "y": 1090, "z": -128 },
|
||||
"end": { "x": 2448, "y": 1110, "z": 30 }
|
||||
},
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
|
|
@ -104,30 +60,60 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"guid": "f40bd4f4-6ff1-40ba-84c3-296ade50ab51",
|
||||
"type": "Spawner",
|
||||
"guid": "003c2e17-0f7e-4af8-9b25-de6ccc4c6e24",
|
||||
"name": "Spawner (108)",
|
||||
"location": [1285, 3731, 0],
|
||||
"location": [4545, 1317, 8],
|
||||
"map": "Trammel",
|
||||
"count": 4,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 10,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 1, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 2, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "69dd4fe9-7f47-466e-b290-963f9bf240d8",
|
||||
"name": "Spawner (108)",
|
||||
"location": [2758, 867, 0],
|
||||
"map": "Trammel",
|
||||
"count": 9,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"spawnBounds": {
|
||||
"start": { "x": 1275, "y": 3721, "z": -128 },
|
||||
"end": { "x": 1295, "y": 3741, "z": 15 }
|
||||
},
|
||||
"walkingRange": 15,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [
|
||||
{ "name": "Spectre", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Wraith", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Shade", "maxCount": 2, "probability": 100 },
|
||||
{ "name": "Skeleton", "maxCount": 3, "probability": 100 },
|
||||
{ "name": "Zombie", "maxCount": 4, "probability": 100 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"$type": "Spawner",
|
||||
"type": "Spawner",
|
||||
"guid": "18ac21c4-da65-4449-997e-6e3952e53d46",
|
||||
"name": "Spawner (108)",
|
||||
"location": [722, 1119, 0],
|
||||
"map": "Trammel",
|
||||
"count": 10,
|
||||
"minDelay": "00:05:00",
|
||||
"maxDelay": "00:10:00",
|
||||
"team": 0,
|
||||
"homeRange": 20,
|
||||
"walkingRange": 20,
|
||||
"entries": [{ "name": "Skeleton", "maxCount": 10, "probability": 100 }]
|
||||
},
|
||||
{
|
||||
"type": "Spawner",
|
||||
"guid": "fd6f9733-1638-485e-a3fd-3d6f9550591e",
|
||||
"name": "Spawner (108)",
|
||||
"location": [3407, 2652, 48],
|
||||
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue