Compare commits

..

4 commits

Author SHA1 Message Date
Max Tharr
5a39b04e6e Add example module 2021-01-20 22:55:06 +01:00
Max Tharr
64de91194e Fix misscasting error and restructure code 2021-01-20 22:41:01 +01:00
Max Tharr
0f5a16ceb7 Add an initial database and a very hacky guide on how to create it 2021-01-19 22:39:11 +01:00
Max Tharr
5266223d64 First hack for a creature importer script 2021-01-19 21:51:20 +01:00
636 changed files with 16276 additions and 69613 deletions

View file

@ -1,7 +1,3 @@
# SPDX-FileCopyrightText: 2021 Johannes Loher
#
# SPDX-License-Identifier: MIT
root = true
[*]

View file

@ -1,4 +0,0 @@
/dist
/.pnp.cjs
/.pnp.loader.mjs
/.yarn/

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT

View file

@ -1,33 +0,0 @@
// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
},
env: {
browser: true,
},
extends: ["plugin:@typescript-eslint/recommended", "plugin:jest/recommended", "plugin:prettier/recommended"],
plugins: ["@typescript-eslint", "jest"],
rules: {
// Specify any specific ESLint rules.
},
overrides: [
{
files: ["./*.cjs", "./*.js"],
rules: {
"@typescript-eslint/no-var-requires": "off",
},
},
],
};

19
.eslintrc.js Normal file
View file

@ -0,0 +1,19 @@
module.exports = {
parser: "@typescript-eslint/parser", // Specifies the ESLint parser
parserOptions: {
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
sourceType: "module", // Allows for the use of imports
},
extends: [
"plugin:@typescript-eslint/recommended", // Uses the recommended rules from the @typescript-eslint/eslint-plugin
"prettier/@typescript-eslint", // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
"plugin:prettier/recommended", // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
],
rules: {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
},
};

15
.gitignore vendored
View file

@ -1,9 +1,3 @@
# SPDX-FileCopyrightText: 2021 Johannes Loher
# SPDX-FileCopyrightText: 2021 Oliver Rümpelein
#
# SPDX-License-Identifier: MIT
# IDE
.idea/
.vs/
@ -23,12 +17,3 @@ dist
# Junit results
results.xml
junit.xml
# yarn
.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*

View file

@ -1,59 +1,50 @@
# SPDX-FileCopyrightText: 2021 Johannes Loher
# SPDX-FileCopyrightText: 2021 Oliver Rümpelein
#
# SPDX-License-Identifier: MIT
image: node:lts
image: node:latest
stages:
- prepare
- test
- build
- prepare-release
- release
- publish
cache: &global_cache
key:
files:
- package-lock.json
policy: pull
paths:
- .yarn/cache
- node_modules/
install-dependencies:
stage: prepare
script:
- npm install
cache:
<<: *global_cache
policy: pull-push
lint:
stage: test
before_script:
- yarn install --immutable
script:
- yarn lint
- npm run lint
cache:
<<: *global_cache
test:
stage: test
before_script:
- yarn install --immutable
script:
- yarn test:ci
- npm run test:ci
cache:
<<: *global_cache
artifacts:
when: always
reports:
junit:
- junit.xml
reuse:
stage: test
image:
name: fsfe/reuse:latest
entrypoint: [""]
script:
- reuse lint
- results.xml
build:
stage: build
before_script:
- yarn install --immutable
- if [[ ! -z ${CI_COMMIT_TAG+x} ]]; then export NODE_ENV=production; fi
script:
- yarn build
- npm run build
- mv dist ds4
cache:
<<: *global_cache
@ -62,37 +53,9 @@ build:
- ds4
expire_in: 1 week
publish-artifacts:
stage: prepare-release
image: alpine:latest
before_script:
- apk update
- apk add zip curl
script: |
zip -r ds4.zip ds4/*
curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file ds4.zip "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/ds4/$CI_COMMIT_TAG/ds4.zip"
curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file ds4/system.json "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/ds4/$CI_COMMIT_TAG/system.json"
rules:
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
changelog:
stage: prepare-release
before_script:
- yarn install --immutable
script:
- yarn changelog
cache:
<<: *global_cache
artifacts:
paths:
- CHANGELOG.md
rules:
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
.release-template: &release-template
stage: release
before_script:
- yarn install
- apt update
- apt install --yes jq
- REPOSITORY_URL=$(echo "${CI_REPOSITORY_URL}" | sed -e "s|gitlab-ci-token:.*@|${RELEASE_TOKEN}:${RELEASE_TOKEN_SECRET}@|g")
@ -104,13 +67,15 @@ changelog:
cache:
<<: *global_cache
script: |
yarn bump-version --release=${RELEASE_TYPE}
npm run updateManifest -- --update=${RELEASE_TYPE}
RELEASE_VERSION=$(jq -r '.version' < package.json)
git add package.json system.json
git add package.json package-lock.json src/system.json
git --no-pager diff
git commit -m "chore(release): ${RELEASE_VERSION}"
git commit -m "release version ${RELEASE_VERSION}"
git tag -f latest
git tag -f ${RELEASE_VERSION}
git push origin ci-processing:${CI_BUILD_REF_NAME} -o ci.skip
git push origin ci-processing:${CI_BUILD_REF_NAME}
git push origin latest -f
git push origin ${RELEASE_VERSION}
only:
- master
@ -130,46 +95,3 @@ release-major:
variables:
RELEASE_TYPE: major
<<: *release-template
release:
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
script:
- echo 'release job'
rules:
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
release:
tag_name: $CI_COMMIT_TAG
description: "./CHANGELOG.md"
assets:
links:
- name: "ds4.zip"
url: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/ds4/$CI_COMMIT_TAG/ds4.zip"
filepath: /ds4.zip
link_type: package
- name: "system.json"
url: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/ds4/$CI_COMMIT_TAG/system.json"
filepath: /system.json
link_type: other
publish-latest-manifest:
stage: publish
image: alpine:latest
before_script:
- apk update
- apk add zip curl
script: |
curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file ds4/system.json "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/ds4/latest/system.json"
rules:
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
publish-to-foundry-admin:
stage: publish
image: johannesloher/foundry-publish
variables:
FVTT_MANIFEST_PATH: ds4/system.json
FVTT_MANIFEST_URL: ${CI_PROJECT_URL}/-/releases/${CI_COMMIT_TAG}/downloads/system.json
FVTT_DELETE_OBSOLETE_VERSIONS: "true"
script: foundry-publish
rules:
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'

View file

@ -1,48 +1,29 @@
Your issue may already have been reported! Please search on the issue tracker (https://git.f3l.de/dungeonslayers/ds4/-/issues) before submitting a new one.
# Description
Thanks for taking the time to fill out this bug report! In order to make it effective, please provide the following information.
Please describe the issue.
# Issue Description
## Expected Behavior
(What is the behavior that you expected?)
## Current Behavior
(What is the current behavior, i.e., what happens actually?)
## Steps to Reproduce
(What are the steps to reproduce the problem?)
# Steps to Reproduce
1. ...
2. ...
3. ...
## Context
# Expected Behavior
(Please provide any additional context that might be helpful, e.g. log messages,
screenshots, videos, or exports of problematic scenes or worlds.)
Please describe the expected behavior.
# Environment Details
# Actual Behavior
## Version
Please describe the actual behavior.
(Which version(s) of DS4 are you seeing the problem on?)
# Additional Details
## Foundry VTT Version
These are optional, please add them if it makes sense.
(Which version(s) and build of Foundry VTT are you seeing the problem on?)
- ![Screenshot]()
- [Logfile]()
- ...
## Operating System
# Possible Solutions
(Which operating system are you using? (Windows, OS X, Linux (which distro)))
## Browser / App
(Are you using a Browser or the native Electron application?)
## Relevant Modules
(Please list any active modules (including their versions) that you think might be relevant.)
If you have any suggestions on how to solve the issue, please add them here.

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2022 Johannes Loher
SPDX-License-Identifier: MIT

View file

@ -1,11 +1,13 @@
Your issue may already have been reported! Please search on the issue tracker (https://git.f3l.de/dungeonslayers/ds4/-/issues) before submitting a new one.
# Story
In order to submit an effective feature request, please provide the following information.
As a …, I want … so that …
# Description
(Please describe the proposal in as much detail as you feel is necessary.)
Please add a more detailed description of the feature here.
# Context
# Acceptance criteria
(Is there anything else you can add about the proposal? You might want to link to related issues here if you haven't already.)
1. Criterion 1
2. Criterion 2
3. …

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2022 Johannes Loher
SPDX-License-Identifier: MIT

1
.husky/.gitignore vendored
View file

@ -1 +0,0 @@
_

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT

View file

@ -1,9 +0,0 @@
#!/bin/sh
# SPDX-FileCopyrightText: 2021 Johannes Loher
#
# SPDX-License-Identifier: MIT
. "$(dirname "$0")/_/husky.sh"
yarn run commitlint --edit "$1"

View file

@ -1,9 +0,0 @@
#!/bin/sh
# SPDX-FileCopyrightText: 2021 Johannes Loher
#
# SPDX-License-Identifier: MIT
. "$(dirname "$0")/_/husky.sh"
yarn run lint-staged

7
.npmignore Normal file
View file

@ -0,0 +1,7 @@
# IDE
.idea/
.vs/
# Node Modules
node_modules/
npm-debug.log

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT

View file

@ -1,6 +0,0 @@
/dist
/package-lock.json
/.pnp.cjs
/.pnp.loader.mjs
/.yarn/
/.vscode/

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT

View file

@ -1,7 +1,3 @@
// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
module.exports = {
semi: true,
trailingComma: "all",

View file

@ -1,52 +0,0 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: ds4
Upstream-Contact: Johannes Loher <johannes.loher@fg4f.de>
Source: https://git.f3l.de/dungeonslayers/ds4
Files: .yarn/**
Copyright: Copyright (c) 2016-present, Yarn Contributors. All rights reserved.
License: BSD-2-Clause
Files: assets/icons/official/*
Copyright: 2021 Johannes Loher
License: CC-BY-NC-SA-4.0
Files: assets/icons/game-icons/caro-asercion/*
Copyright: Caro Asercion
License: CC-BY-3.0
Files: assets/icons/game-icons/cathelineau/*
Copyright: Cathelineau
License: CC-BY-3.0
Files: assets/icons/game-icons/darkzaitev/*
Copyright: DarkZaitzev, http://darkzaitzev.deviantart.com/
License: CC-BY-3.0
Files: assets/icons/game-icons/delapouite/*
Copyright: Delapouite, https://delapouite.com/
License: CC-BY-3.0
Files: assets/icons/game-icons/heavenly-dog/*
Copyright: HeavenlyDog, http://www.gnomosygoblins.blogspot.com/
License: CC-BY-3.0
Files: assets/icons/game-icons/lorc/*
Copyright: Lorc, http://lorcblog.blogspot.com/
License: CC-BY-3.0
Files: assets/icons/game-icons/sbed/*
Copyright: Sbed, http://opengameart.org/content/95-game-icons
License: CC-BY-3.0
Files: assets/icons/game-icons/skoll/*
Copyright: Skoll
License: CC-BY-3.0
Files: assets/icons/game-icons/willdabeast/*
Copyright: Willdabeast, http://wjbstories.blogspot.com/
License: CC-BY-3.0
Files: assets/tokens/devin-night/*
Copyright: Devin Night, https://immortalnights.com/
License: LicenseRef-DevinNightTokenUsageRights

View file

@ -1,7 +1,8 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"arcanis.vscode-zipfs"
]
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"gruntfuggly.todo-tree",
"eg2.vscode-npm-script"
]
}

View file

@ -1,4 +0,0 @@
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-FileCopyrightText: 2021 Oliver Rümpelein
SPDX-License-Identifier: MIT

16
.vscode/launch.json vendored
View file

@ -1,16 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"runtimeExecutable": "/usr/bin/chromium",
"name": "Launch Chrome against localhost",
"url": "http://localhost:30000/game",
"webRoot": "${workspaceFolder}/dist"
}
]
}

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT

10
.vscode/settings.json vendored
View file

@ -1,10 +0,0 @@
{
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true
},
"eslint.nodePath": ".yarn/sdks",
"prettier.prettierPath": ".yarn/sdks/prettier/index.js",
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,20 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require eslint/bin/eslint.js
require(absPnpApiPath).setup();
}
}
// Defer to the real eslint/bin/eslint.js your application uses
module.exports = absRequire(`eslint/bin/eslint.js`);

View file

@ -1,20 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require eslint/lib/api.js
require(absPnpApiPath).setup();
}
}
// Defer to the real eslint/lib/api.js your application uses
module.exports = absRequire(`eslint/lib/api.js`);

View file

@ -1,6 +0,0 @@
{
"name": "eslint",
"version": "8.1.0-sdk",
"main": "./lib/api.js",
"type": "commonjs"
}

View file

@ -1,5 +0,0 @@
# This file is automatically generated by @yarnpkg/sdks.
# Manual changes might be lost!
integrations:
- vscode

View file

@ -1,20 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require prettier/index.js
require(absPnpApiPath).setup();
}
}
// Defer to the real prettier/index.js your application uses
module.exports = absRequire(`prettier/index.js`);

View file

@ -1,6 +0,0 @@
{
"name": "prettier",
"version": "2.4.1-sdk",
"main": "./index.js",
"type": "commonjs"
}

View file

@ -1,20 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require typescript/bin/tsc
require(absPnpApiPath).setup();
}
}
// Defer to the real typescript/bin/tsc your application uses
module.exports = absRequire(`typescript/bin/tsc`);

View file

@ -1,20 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require typescript/bin/tsserver
require(absPnpApiPath).setup();
}
}
// Defer to the real typescript/bin/tsserver your application uses
module.exports = absRequire(`typescript/bin/tsserver`);

View file

@ -1,20 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require typescript/lib/tsc.js
require(absPnpApiPath).setup();
}
}
// Defer to the real typescript/lib/tsc.js your application uses
module.exports = absRequire(`typescript/lib/tsc.js`);

View file

@ -1,184 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
const moduleWrapper = tsserver => {
if (!process.versions.pnp) {
return tsserver;
}
const {isAbsolute} = require(`path`);
const pnpApi = require(`pnpapi`);
const isVirtual = str => str.match(/\/(\$\$virtual|__virtual__)\//);
const normalize = str => str.replace(/\\/g, `/`).replace(/^\/?/, `/`);
const dependencyTreeRoots = new Set(pnpApi.getDependencyTreeRoots().map(locator => {
return `${locator.name}@${locator.reference}`;
}));
// VSCode sends the zip paths to TS using the "zip://" prefix, that TS
// doesn't understand. This layer makes sure to remove the protocol
// before forwarding it to TS, and to add it back on all returned paths.
function toEditorPath(str) {
// We add the `zip:` prefix to both `.zip/` paths and virtual paths
if (isAbsolute(str) && !str.match(/^\^?(zip:|\/zip\/)/) && (str.match(/\.zip\//) || isVirtual(str))) {
// We also take the opportunity to turn virtual paths into physical ones;
// this makes it much easier to work with workspaces that list peer
// dependencies, since otherwise Ctrl+Click would bring us to the virtual
// file instances instead of the real ones.
//
// We only do this to modules owned by the the dependency tree roots.
// This avoids breaking the resolution when jumping inside a vendor
// with peer dep (otherwise jumping into react-dom would show resolution
// errors on react).
//
const resolved = isVirtual(str) ? pnpApi.resolveVirtual(str) : str;
if (resolved) {
const locator = pnpApi.findPackageLocator(resolved);
if (locator && dependencyTreeRoots.has(`${locator.name}@${locator.reference}`)) {
str = resolved;
}
}
str = normalize(str);
if (str.match(/\.zip\//)) {
switch (hostInfo) {
// Absolute VSCode `Uri.fsPath`s need to start with a slash.
// VSCode only adds it automatically for supported schemes,
// so we have to do it manually for the `zip` scheme.
// The path needs to start with a caret otherwise VSCode doesn't handle the protocol
//
// Ref: https://github.com/microsoft/vscode/issues/105014#issuecomment-686760910
//
// Update Oct 8 2021: VSCode changed their format in 1.61.
// Before | ^zip:/c:/foo/bar.zip/package.json
// After | ^/zip//c:/foo/bar.zip/package.json
//
case `vscode <1.61`: {
str = `^zip:${str}`;
} break;
case `vscode`: {
str = `^/zip/${str}`;
} break;
// To make "go to definition" work,
// We have to resolve the actual file system path from virtual path
// and convert scheme to supported by [vim-rzip](https://github.com/lbrayner/vim-rzip)
case `coc-nvim`: {
str = normalize(resolved).replace(/\.zip\//, `.zip::`);
str = resolve(`zipfile:${str}`);
} break;
// Support neovim native LSP and [typescript-language-server](https://github.com/theia-ide/typescript-language-server)
// We have to resolve the actual file system path from virtual path,
// everything else is up to neovim
case `neovim`: {
str = normalize(resolved).replace(/\.zip\//, `.zip::`);
str = `zipfile:${str}`;
} break;
default: {
str = `zip:${str}`;
} break;
}
}
}
return str;
}
function fromEditorPath(str) {
switch (hostInfo) {
case `coc-nvim`:
case `neovim`: {
str = str.replace(/\.zip::/, `.zip/`);
// The path for coc-nvim is in format of /<pwd>/zipfile:/<pwd>/.yarn/...
// So in order to convert it back, we use .* to match all the thing
// before `zipfile:`
return process.platform === `win32`
? str.replace(/^.*zipfile:\//, ``)
: str.replace(/^.*zipfile:/, ``);
} break;
case `vscode`:
default: {
return process.platform === `win32`
? str.replace(/^\^?(zip:|\/zip)\/+/, ``)
: str.replace(/^\^?(zip:|\/zip)\/+/, `/`);
} break;
}
}
// Force enable 'allowLocalPluginLoads'
// TypeScript tries to resolve plugins using a path relative to itself
// which doesn't work when using the global cache
// https://github.com/microsoft/TypeScript/blob/1b57a0395e0bff191581c9606aab92832001de62/src/server/project.ts#L2238
// VSCode doesn't want to enable 'allowLocalPluginLoads' due to security concerns but
// TypeScript already does local loads and if this code is running the user trusts the workspace
// https://github.com/microsoft/vscode/issues/45856
const ConfiguredProject = tsserver.server.ConfiguredProject;
const {enablePluginsWithOptions: originalEnablePluginsWithOptions} = ConfiguredProject.prototype;
ConfiguredProject.prototype.enablePluginsWithOptions = function() {
this.projectService.allowLocalPluginLoads = true;
return originalEnablePluginsWithOptions.apply(this, arguments);
};
// And here is the point where we hijack the VSCode <-> TS communications
// by adding ourselves in the middle. We locate everything that looks
// like an absolute path of ours and normalize it.
const Session = tsserver.server.Session;
const {onMessage: originalOnMessage, send: originalSend} = Session.prototype;
let hostInfo = `unknown`;
Object.assign(Session.prototype, {
onMessage(/** @type {string} */ message) {
const parsedMessage = JSON.parse(message)
if (
parsedMessage != null &&
typeof parsedMessage === `object` &&
parsedMessage.arguments &&
typeof parsedMessage.arguments.hostInfo === `string`
) {
hostInfo = parsedMessage.arguments.hostInfo;
if (hostInfo === `vscode` && process.env.VSCODE_IPC_HOOK && process.env.VSCODE_IPC_HOOK.match(/Code\/1\.([1-5][0-9]|60)\./)) {
hostInfo += ` <1.61`;
}
}
return originalOnMessage.call(this, JSON.stringify(parsedMessage, (key, value) => {
return typeof value === `string` ? fromEditorPath(value) : value;
}));
},
send(/** @type {any} */ msg) {
return originalSend.call(this, JSON.parse(JSON.stringify(msg, (key, value) => {
return typeof value === `string` ? toEditorPath(value) : value;
})));
}
});
return tsserver;
};
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require typescript/lib/tsserver.js
require(absPnpApiPath).setup();
}
}
// Defer to the real typescript/lib/tsserver.js your application uses
module.exports = moduleWrapper(absRequire(`typescript/lib/tsserver.js`));

View file

@ -1,184 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
const moduleWrapper = tsserver => {
if (!process.versions.pnp) {
return tsserver;
}
const {isAbsolute} = require(`path`);
const pnpApi = require(`pnpapi`);
const isVirtual = str => str.match(/\/(\$\$virtual|__virtual__)\//);
const normalize = str => str.replace(/\\/g, `/`).replace(/^\/?/, `/`);
const dependencyTreeRoots = new Set(pnpApi.getDependencyTreeRoots().map(locator => {
return `${locator.name}@${locator.reference}`;
}));
// VSCode sends the zip paths to TS using the "zip://" prefix, that TS
// doesn't understand. This layer makes sure to remove the protocol
// before forwarding it to TS, and to add it back on all returned paths.
function toEditorPath(str) {
// We add the `zip:` prefix to both `.zip/` paths and virtual paths
if (isAbsolute(str) && !str.match(/^\^?(zip:|\/zip\/)/) && (str.match(/\.zip\//) || isVirtual(str))) {
// We also take the opportunity to turn virtual paths into physical ones;
// this makes it much easier to work with workspaces that list peer
// dependencies, since otherwise Ctrl+Click would bring us to the virtual
// file instances instead of the real ones.
//
// We only do this to modules owned by the the dependency tree roots.
// This avoids breaking the resolution when jumping inside a vendor
// with peer dep (otherwise jumping into react-dom would show resolution
// errors on react).
//
const resolved = isVirtual(str) ? pnpApi.resolveVirtual(str) : str;
if (resolved) {
const locator = pnpApi.findPackageLocator(resolved);
if (locator && dependencyTreeRoots.has(`${locator.name}@${locator.reference}`)) {
str = resolved;
}
}
str = normalize(str);
if (str.match(/\.zip\//)) {
switch (hostInfo) {
// Absolute VSCode `Uri.fsPath`s need to start with a slash.
// VSCode only adds it automatically for supported schemes,
// so we have to do it manually for the `zip` scheme.
// The path needs to start with a caret otherwise VSCode doesn't handle the protocol
//
// Ref: https://github.com/microsoft/vscode/issues/105014#issuecomment-686760910
//
// Update Oct 8 2021: VSCode changed their format in 1.61.
// Before | ^zip:/c:/foo/bar.zip/package.json
// After | ^/zip//c:/foo/bar.zip/package.json
//
case `vscode <1.61`: {
str = `^zip:${str}`;
} break;
case `vscode`: {
str = `^/zip/${str}`;
} break;
// To make "go to definition" work,
// We have to resolve the actual file system path from virtual path
// and convert scheme to supported by [vim-rzip](https://github.com/lbrayner/vim-rzip)
case `coc-nvim`: {
str = normalize(resolved).replace(/\.zip\//, `.zip::`);
str = resolve(`zipfile:${str}`);
} break;
// Support neovim native LSP and [typescript-language-server](https://github.com/theia-ide/typescript-language-server)
// We have to resolve the actual file system path from virtual path,
// everything else is up to neovim
case `neovim`: {
str = normalize(resolved).replace(/\.zip\//, `.zip::`);
str = `zipfile:${str}`;
} break;
default: {
str = `zip:${str}`;
} break;
}
}
}
return str;
}
function fromEditorPath(str) {
switch (hostInfo) {
case `coc-nvim`:
case `neovim`: {
str = str.replace(/\.zip::/, `.zip/`);
// The path for coc-nvim is in format of /<pwd>/zipfile:/<pwd>/.yarn/...
// So in order to convert it back, we use .* to match all the thing
// before `zipfile:`
return process.platform === `win32`
? str.replace(/^.*zipfile:\//, ``)
: str.replace(/^.*zipfile:/, ``);
} break;
case `vscode`:
default: {
return process.platform === `win32`
? str.replace(/^\^?(zip:|\/zip)\/+/, ``)
: str.replace(/^\^?(zip:|\/zip)\/+/, `/`);
} break;
}
}
// Force enable 'allowLocalPluginLoads'
// TypeScript tries to resolve plugins using a path relative to itself
// which doesn't work when using the global cache
// https://github.com/microsoft/TypeScript/blob/1b57a0395e0bff191581c9606aab92832001de62/src/server/project.ts#L2238
// VSCode doesn't want to enable 'allowLocalPluginLoads' due to security concerns but
// TypeScript already does local loads and if this code is running the user trusts the workspace
// https://github.com/microsoft/vscode/issues/45856
const ConfiguredProject = tsserver.server.ConfiguredProject;
const {enablePluginsWithOptions: originalEnablePluginsWithOptions} = ConfiguredProject.prototype;
ConfiguredProject.prototype.enablePluginsWithOptions = function() {
this.projectService.allowLocalPluginLoads = true;
return originalEnablePluginsWithOptions.apply(this, arguments);
};
// And here is the point where we hijack the VSCode <-> TS communications
// by adding ourselves in the middle. We locate everything that looks
// like an absolute path of ours and normalize it.
const Session = tsserver.server.Session;
const {onMessage: originalOnMessage, send: originalSend} = Session.prototype;
let hostInfo = `unknown`;
Object.assign(Session.prototype, {
onMessage(/** @type {string} */ message) {
const parsedMessage = JSON.parse(message)
if (
parsedMessage != null &&
typeof parsedMessage === `object` &&
parsedMessage.arguments &&
typeof parsedMessage.arguments.hostInfo === `string`
) {
hostInfo = parsedMessage.arguments.hostInfo;
if (hostInfo === `vscode` && process.env.VSCODE_IPC_HOOK && process.env.VSCODE_IPC_HOOK.match(/Code\/1\.([1-5][0-9]|60)\./)) {
hostInfo += ` <1.61`;
}
}
return originalOnMessage.call(this, JSON.stringify(parsedMessage, (key, value) => {
return typeof value === `string` ? fromEditorPath(value) : value;
}));
},
send(/** @type {any} */ msg) {
return originalSend.call(this, JSON.parse(JSON.stringify(msg, (key, value) => {
return typeof value === `string` ? toEditorPath(value) : value;
})));
}
});
return tsserver;
};
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require typescript/lib/tsserverlibrary.js
require(absPnpApiPath).setup();
}
}
// Defer to the real typescript/lib/tsserverlibrary.js your application uses
module.exports = moduleWrapper(absRequire(`typescript/lib/tsserverlibrary.js`));

View file

@ -1,20 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require typescript/lib/typescript.js
require(absPnpApiPath).setup();
}
}
// Defer to the real typescript/lib/typescript.js your application uses
module.exports = absRequire(`typescript/lib/typescript.js`);

View file

@ -1,6 +0,0 @@
{
"name": "typescript",
"version": "4.4.4-sdk",
"main": "./lib/typescript.js",
"type": "commonjs"
}

View file

@ -1,7 +0,0 @@
nodeLinker: pnp
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
yarnPath: .yarn/releases/yarn-3.1.1.cjs

View file

@ -1,3 +0,0 @@
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT

View file

@ -1,72 +0,0 @@
<!--
SPDX-FileCopyrightText: 2022 Johannes Loher
SPDX-License-Identifier: MIT
-->
# Attribution
* [Dungeonslayers] by Christian Kennig is licensed under [CC BY-NC-SA 3.0 DE].
* The icons in [assets/icons/official] are derivative work of icons from
[Dungeonslayers] by Christian Kennig, used under [CC BY-NC-SA 3.0 DE]. They are
licensed under [CC BY-NC-SA 4.0].
* The compendium packs in [packs] are derivative work of [Dungeonslayers]
by Christian Kennig, used under [CC BY-NC-SA 3.0 DE]. They are licensed under
[CC BY-NC-SA 4.0].
* The icons in [assets/icons/game-icons/acro-asercion] by Caro Asercion from
[Game-icons.net] are licensed under [CC BY 3.0].
* The icons in [assets/icons/game-icons/cathelineau] by Cathelineau from
[Game-icons.net] are licensed under [CC BY 3.0].
* The icons in [assets/icons/game-icons/darkzaitev] by [DarkZaitzev] from
[Game-icons.net] are licensed under [CC BY 3.0].
* The icons in [assets/icons/game-icons/delapouite] by [Delapouite] from
[Game-icons.net] are licensed under [CC BY 3.0].
* The icons in [assets/icons/game-icons/heavenly-dog] by [HeavenlyDog] from
[Game-icons.net] are licensed under [CC BY 3.0].
* The icons in [assets/icons/game-icons/lorc] by [Lorc] from
[Game-icons.net] are licensed under [CC BY 3.0].
* The icons in [assets/icons/game-icons/sbed] by [Sbed] from
[Game-icons.net] are licensed under [CC BY 3.0].
* The icons in [assets/icons/game-icons/skoll] by Skoll from
[Game-icons.net] are licensed under [CC BY 3.0].
* The icons in [assets/icons/game-icons/willdabeast] by [Willdabeast] from
[Game-icons.net] are licensed under [CC BY 3.0].
* The images in [assets/tokens/devin-night] by [Devin Night] are
licensed under these custom [Token Usage Rights].
* The [Lora] font in [fonts/Lora] by The Lora Project Authors is licensed
under [OFL 1.1].
* The Woodstamp font in [fonts/Woodstamp] by [Ryoichi Tsunekawa] is licensed
under a custom [EULA](LICENSES/LicenseRef-Woodstamp.txt).
[Dungeonslayers]: https://www.dungeonslayers.net/
[Game-icons.net]: https://game-icons.net/
[DarkZaitzev]: http://darkzaitzev.deviantart.com/
[Delapouite]: https://delapouite.com/
[HeavenlyDog]: http://www.gnomosygoblins.blogspot.com/
[Lorc]: http://lorcblog.blogspot.com/
[Sbed]: http://opengameart.org/content/95-game-icons
[Willdabeast]: http://wjbstories.blogspot.com/
[Devin Night]: https://immortalnights.com/
[Lora]: https://github.com/cyrealtype/Lora-Cyrillic
[Ryoichi Tsunekawa]: https://dharmatype.com/
[CC BY-NC-SA 3.0 DE]: https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode
[CC BY-NC-SA 4.0]: LICENSES/CC-BY-NC-SA-4.0.txt
[CC BY 3.0]: LICENSES/CC-BY-3.0.txt
[Token Usage Rights]: LICENSES/LicenseRef-DevinNightTokenUsageRights.txt
[OFL 1.1]: LICENSES/OFL-1.1.txt
[assets/icons/official]: assets/icons/official
[packs]: packs
[assets/icons/game-icons/acro-asercion]: assets/icons/game-icons/acro-asercion/
[assets/icons/game-icons/cathelineau]: assets/icons/game-icons/cathelineau/
[assets/icons/game-icons/darkzaitev]: assets/icons/game-icons/darkzaitev/
[assets/icons/game-icons/delapouite]: assets/icons/game-icons/delapouite/
[assets/icons/game-icons/heavenly-dog]: assets/icons/game-icons/heavenly-dog/
[assets/icons/game-icons/lorc]: assets/icons/game-icons/lorc/
[assets/icons/game-icons/sbed]: assets/icons/game-icons/sbed/
[assets/icons/game-icons/skoll]: assets/icons/game-icons/skoll/
[assets/icons/game-icons/willdabeast]: assets/icons/game-icons/willdabeast/
[assets/tokens/devin-night]: assets/tokens/devin-night
[fonts/Lora]: fonts/Lora/
[fonts/Woodstamp]: fonts/Woodstamp/

View file

@ -0,0 +1,342 @@
Name,Quelle,Gruppe,Volk,Klasse,Stufe,Fähigkeiten,Upgrade,KÖR,AGI,GEI,ST,BE,VE,,GE,AU,Lebenskraft,Initiative,Laufen,Abwehr,Schlagen,Schiessen,Zauber,Zielzauber,GH,GK,EP,Talente,Waffen,Panzerung,Ausrüstung,Zaubersprüche
Adler,Dungeonslayers Basisbox,Tiere,,,,,,3,8,1,1,3,0,0,1,1,7,11,5,4,5,9,,,1,kl,52,"Fliegen, Natürliche Waffen, Sturzangriff",Krallen (WB+1),Federkleid (PA+1),,
Aensteiner Soldat,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,2,2,0,2,4,0,20,11,5,14,12,14,,,2,no,55,"Fieser Schuss I, Kämpfer I, Parade I, Schütze I, Wahrnehmung I","Kurzbogen (2h) (WB+1, INI+1), Speer (WB+1)","Lederpanzer (PA+1), Holzschild (PA+1), Lederschienen (Arm & Bein) (PA+1)",,
Aensteiner Wilderer,Slayerforum,Mensch,Mensch,SPÄ,1,Talentiert,,6,8,6,2,1,1,1,5,0,17,10,5,7,8,15,,,1,no,49,"Fieser Schuss I, Heimlichkeit I, Jäger I, Wahrnehmung I, Wissensgebiet I","Langbogen (2h) (WB+2, INI+1)",,,
Airigh,Das Umbarla-Becken,Mensch,Mensch,Zau,7,Talentiert,,6,6,8,0,0,6,0,4,6,16,6,4,6,7,10,14,13,1,no,72,"Magieresistent III, Feuermagier II, Bildung II, Wechsler II, Zaubermacht II, Runenkunde I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1, Zauber: Teleport eingebettet)",Robe (runenbestickt) (Aura +1),,"Feuerlanze (+4), Feuerstrahl (+3), Flammenklinge (+2), Giftbann (0), Giftschutz (0), Licht (+5), Magie entdecken (0), Magie identifizieren (0), Tiere besänftigen (-LK/5)"
Akyna,SC2GO,Mensch,Mensch,Zau,1,Talentiert,,6,6,8,0,0,3,2,3,3,21,6,4,8,7,9,,13,1,no,56,"Bildung I, Einstecker I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Feuerstrahl (+1)
Al-Nuzzran,Der verdorbene Baumherr,Mensch,Mensch,DÄM,,Talentiert,,6,6,9,2,8,5,0,0,7,19,14,4,6,8,6,16,9,1,no,100,"Diener der Dunkelheit V, Beschwörer III, Zaubermacht III, Verheerer II, Einstecker I, Bändiger I, Meister seiner Klasse I, Feuermagier I",,,,"Blut kochen (-(KÖR+AU)/2), Dämonen beschwören (-(KÖR+AU)+BB), Ebenentor (-8), Erdspalt (-4), Feuerstrahl (+2), Flammeninferno (+6), Halt (-(KÖR+AU)/2), Kontrollieren (-(GEI+AU)/2), Schattenlanze (+5), Schattenpfeil (+2), Trugbild (-2), Versetzte Stimme (-1/10m), Wächter (0), Zaubertrick (0), Zombies erwecken (0)"
Alligator,Dungeonslayers Basisbox,Tiere,,,,,,12,10,1,2,5,0,4,0,0,78,15,9.5,18,16,10,,,10,gr,151,"Natürliche Waffen, Schwimmen, Sturmangriff","Großer Biss (WB+2, GA-2)",Schuppenpanzer (PA+2),,
Anarioth 'Der Sturmrufer',Das Volk der Sturmelfen,Elf,Elf,Zau,1,"Nachtsicht, Unsterblich, Zielsicher",,5,7,8,0,0,2,0,5,4,15,7,4.5,5,6,13,,16,1,no,50,"Blitzmacher I, Freie Talentpunkte I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Schock (+1)
Angischer Clanskrieger,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,5,2,0,3,0,0,21,8,5,12,17,8,,,4,no,94,"Brutaler Hieb I, Kämpfer I, Parade I, Prügler I, Standhaft I","Bihänder (2h) (WB+3, INI-2, GA-4)",,,
Ankmatur,Dungeonslayers Basisbox,Mensch,Mensch,NEK,10,Talentiert,,4,8,8,0,0,6,4,2,5,18,9,5,10,7,10,13,10,1,no,83,,"mag. Langschwert +1 (WB+3, INI+1, GA-1)",mag. Robe +2 (PA+2),,"Feuerball (+3), Kontrollieren (-(GEI+AU)/2), Schattenpfeil (+2), Skelette erwecken (0), Terror (-(GEI+VE)/2), Totengespräch (0), Verwirren (-(GEI+AU)/2), Zombies erwecken (0), Öffnen (-SW)"
Apokalpytischer Reiter der Pestilenz,Slay! #3,Untote,,,,,Anführer,12,15,10,5,7,5,5,7,5,108,22,9,22,23,22,,,17,gr,462,Wesen der Dunkelheit (Settingoption),"Peitsche (WB+4, GA-4)",Umhang (PA+3),,
Apokalpytischer Reiter des Hungers,Slay! #3,Untote,,,,,Anführer,15,10,10,7,5,5,7,5,5,128,15,6.5,26,28,15,,,22,gr,476,Wesen der Dunkelheit (Settingoption),"Flegel (WB+4, GA-3)",Dicke Haut (PA+2),,
Apokalpytischer Reiter des Kriegs,Slay! #3,Untote,,,,,Anführer,20,8,10,7,5,5,10,3,5,160,12,4,37,33,11,,,32,gr,654,Wesen der Dunkelheit (Settingoption),"Kriegsaxt (WB+4, GA-8)","Plattenpanzer (PA+3, LA-1), Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)",,
Apokalpytischer Reiter des Todes,Slay! #3,Untote,,,,,Anführer,12,12,12,6,6,6,6,6,6,112,18,7.5,22,25,18,,,18,gr,452,Wesen der Dunkelheit (Settingoption),"Sense (WB+5, GA-3)",Dicke Haut (PA+2),,
Apokalpytisches Ross,Slay! #3,Tiere,,,,,,12,10,2,4,4,0,3,0,0,75,14,9.5,15,18,10,,,13,gr,162,"Angst, Fliegen, Geistesimmun, Wesen der Dunkelheit (Settingoption)",Huf (WB+2),,,
Arbeiter,Lockruf aus der Finsternis,Mensch,Mensch,KRI,1,Talentiert,,8,7,5,5,1,0,3,1,0,21,8,4.5,11,15,8,,,2,no,53,,Werkzeug (WB+2),,,
Arcuna,Das Umbarla-Becken,Mensch,Mensch,Hei,2,Talentiert,,5,7,8,0,0,3,0,4,5,15,7,4.5,5,5,11,13,,1,no,50,"Alchemie II, Fürsorger I, Magieresistent I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I",,,"Kette (Gift trotzen +3), Stab (Aura +1, Zauber: Wolke der Reue eingebettet)","Giftschutz (+1), Heilbeeren (+1), Tiere besänftigen (-LK/5)"
Arken Beijl,D2GO #6,Mensch,Mensch,DÄM,15,Talentiert,,4,6,8,0,1,7,4,4,8,27,8,4,10,6,10,16,14,1,no,108,"Einstecker III, Zaubermacht III, Verheerer II, Abklingen I","mag. Kampfstab (2h) +1 (WB+2, INI+1, GA-1, Zielzauber +1, Zielzauber +1)","mag. Robe (runenbestickt) +2 (PA+2, Verstand +1, Aura +1)","Ring (Zauber: Versetzen eingebettet, Abklingzeit 3x täglich ignorieren), Stab (Zauber: Feuerball als Zauberstab)","Feuerball (+3), Feuerlanze (+2), Flammeninferno (+5), Fliegen (0), Glühender Glaube (-2), Niesanfall (-(KÖR+AU)/2), Schutzschild (0), Terror (-(GEI+VE)/2)"
Ascheelf Krieger,Slayerforum,Elf,Elf,KRI,1,"Nachtsicht, Unsterblich, Leichtfüßig",,8,6,6,2,2,2,2,2,0,20,9,3,12,13,8,,,1,no,54,"Diener der Dunkelheit II, Wissensgebiet II, Kämpfer I","Langschwert (WB+2), Dolch (INI+1)","Plattenarmschienen (PA+1, LA-0.5), Plattenbeinschienen (PA+1, LA-0.5)",,
Ascheelf Rächer,Slayerforum,Elf,Elf,Sch,1,"Nachtsicht, Unsterblich, Leichtfüßig",,6,6,8,2,2,2,2,2,1,18,9,4,8,9,8,,12,1,no,53,"Diener der Dunkelheit II, Wissensgebiet II, Manipulator I, Zaubermacht I","Kampfstab (2h) (WB+1, Zielzauber +1), Dolch (INI+1)",Robe,,Feuerstrahl (+1)
Ascheelf Späher,Slayerforum,Elf,Elf,SPÄ,1,"Nachtsicht, Unsterblich, Leichtfüßig",,6,8,6,2,2,2,2,2,0,18,11,5,9,8,12,,,1,no,51,"Diener der Dunkelheit II, Wissensgebiet II, Akrobat I, Heimlichkeit I","Langbogen (2h) (WB+2, INI+1), Dolch (INI+1)",Lederschienen (Arm & Bein) (PA+1),,
Asphyx,Slay! #3,Untote,,,,,,4,11,0,3,3,0,1,1,0,4,14,6.5,13,9,12,,,11,wi,169,"Dunkelsicht, Fliegen, Geistesimmun, Natürliche Waffen, Nur durch Magie verletzbar, Umschlingen, Werteverlust, Wesen der Dunkelheit (Settingoption)","Geisterklaue (WB+2, GA-2)",Körperlos (PA+8),,
Augenball,Dungeonslayers Basisbox,Magische Wesen,,,,,,8,4,10,0,0,2,4,2,3,44,4,3.5,14,8,6,13,12,13,gr,218,"Mehrere Angriffe (+4), Antimagie, Dunkelsicht, Mehrere Angriffsglieder, Schweben, Wesen der Dunkelheit (Settingoption)",,Warzenhaut (PA+2),,"Blenden (-(AGI+AU)/2), Einschläfern (-(KÖR+VE)/2), Gehorche (-(GEI+VE)/2), Kettenblitz (+3), Schleudern (-(KÖR+AU)/2), Schutzfeld (0), Schutzschild (0), Telekinese (-1/Stufe x5 kg), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2)"
Baby Monsterspinne,Trächtige Wildsau,Tiere,,,,,,6,6,1,2,4,0,1,3,0,13,10,6,8,9,11,,,3,kl,75,"Kletterläufer, Lähmungseffekt, Natürliche Waffen","Netzflüssigkeit (WB+2), Spinnenbiss (WB+1)",Chitinpanzer (PA+1),,
Barex,SC2GO,Zwerg,Zwerg,KRI,1,"Dunkelsicht, Langlebig, Zäh",,8,8,4,3,0,0,5,2,0,26,5,4.5,17,14,12,,,3,no,64,Einstecker I,"Streitaxt (2h) (WB+3, INI-2), Armbrust, leicht (2h) (WB+2, INI-2)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)",,
Basilisk,Dungeonslayers Basisbox,Magische Wesen,,,,,,14,7,1,3,3,0,4,0,1,84,10,7.5,20,19,7,,,18,gr,206,"Blickangriff, Nachtsicht, Natürliche Waffen, Versteinern","Großer Biss (WB+2, GA-2)",Schuppenpanzer (PA+2),,
Baumgolem,Der verdorbene Baumherr,Konstrukte,,,,,,10,4,4,6,0,0,2,0,0,44,4,3.5,16,18,4,,,9,gr,98,"Mehrere Angriffe (+1), Anfällig, Geistesimmun",Asthiebe (WB+2),Dicke Rinde (PA+4),,
Baumherr,Dungeonslayers Basisbox,Pflanzenwesen,,,,,,20,1,1,5,0,0,5,0,0,70,1,2,27,27,1,,,23,gr,157,"Mehrere Angriffe (+3), Anfällig, Nachtsicht, Natürliche Waffen, Schleudern",Asthiebe (WB+2),Dicke Rinde (PA+2),,
Belgor,D2GO #1,Mensch,Mensch,KRI,1,Talentiert,,8,8,2,4,2,1,2,2,0,20,11,4.5,12,14,11,,,1,no,54,,"Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)","Kettenpanzer (PA+2, LA-0.5)",,
Bergzwergischer Söldner,Slayerforum,Zwerg,Zwerg,KRI,1,"Dunkelsicht, Langlebig, Zäh",,8,8,4,4,1,0,5,0,0,26,4,5,16,16,8,,,5,no,61,"Einstecker I, Kämpfer I, Schlachtruf I, Waffenkenner I","Streithammer (2h) (WB+3, INI-4)","Lederpanzer (PA+1), Metallhelm (PA+1, INI-1)",,
Berna-Priesterin,Slayerforum,Halbling,Halbling,SPÄ,1,"Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen",,5,8,7,0,0,2,1,3,4,16,11,5,7,5,13,,,1,kl,48,"Diener des Lichts I, Magieresistent I, Schütze I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I","Kurzbogen (2h) (WB+1, INI+1)",Lederpanzer (PA+1),,
Billiger Söldner,Trächtige Wildsau,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,4,2,0,2,2,0,20,9,5,13,14,11,,,2,no,54,"Kämpfer I, Parade I",Speer (WB+1),"Lederpanzer (PA+1), Metallhelm (PA+1, INI-1)",,
Blasaminator,Die Pyramide des Eck Wan,Konstrukte,,,,,,18,4,4,4,0,0,5,2,0,66,4,3.5,28,26,6,,,26,gr,191,"Mehrere Angriffe (+3), Dunkelsicht, Geistesimmun, Mehrere Angriffsglieder (+3), Schleudern, Sturmangriff",Werkzeug (WB+4),Steinwesen (PA+5),,
Blob,Die Hallen der Reinigung,Magische Wesen,,,,,,10,8,1,0,0,0,4,4,0,36,8,7.5,14,12,16,,,7,no,99,"Gift, Anfällig, Kletterläufer, Regeneration","Säurestrahl (WB+4), Säurestoß (WB+2, GA-2)",,,
Bosker Sturmkrähe (Söldner),Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,4,1,0,4,1,0,22,9,5,15,14,10,,,2,no,56,"Diebeskunst I, Kämpfer I, Parade I, Schlitzohr I, Wissensgebiet I, Wissensgebiet I","Speer (WB+1), Kurzschwert (WB+1)","Lederpanzer (PA+1), Holzschild (PA+1)",,
Brambel,Der Kult des Snarrk'Izz,Mensch,Mensch,SPÄ,0,Talentiert,,6,8,6,0,3,1,2,10,0,18,9,5,10,6,20,,,1,no,58,"Ausweichen III, Heimlichkeit III, Schlitzohr III, Wissensgebiet II, Handwerk I","Armbrust, leicht (2h) (WB+2, INI-2)",mag. Lederpanzer +1 (PA+2),,
Brasko,Das Umbarla-Becken,Mensch,Mensch,KRI,3,Talentiert,,7,6,7,4,0,2,4,0,4,21,6,4,16,13,6,,,3,no,59,"Parade III, Ausweichen I, Schlachtruf I, Wissensgebiet I, Wissensgebiet I","Krummschwert (WB+2, Sehnenschneider +I, Verletzen +I)","mag. Holzschild +1 (PA+2, Zauber: Flackern eingebettet)","Stirnreif (Aura +2, Charmant +I, Schlitzohr +I)",
Brutac,SC2GO,Mensch,Mensch,KRI,1,Talentiert,,8,7,5,4,0,0,4,2,0,22,7,4,15,15,9,,,4,no,57,Kämpfer I,Langschwert (WB+2),"Kettenpanzer (PA+2, LA-0.5), Holzschild (PA+1)",,
Bulegor,Das Umbarla-Becken,Zwerg,Zwerg,KRI,8,"Dunkelsicht, Langlebig, Zäh",,8,6,6,2,0,2,9,1,0,27,7,3.5,27,14,7,,,10,no,79,"Ausweichen III, Blocker III, Parade III, Wissensgebiet III, Handwerk II, Kämpfer II, Wissensgebiet II","mag. Hammer +1 (WB+2, INI+1, GA-2)","Kettenpanzer (PA+2, LA-0.5), mag. Metallschild +1 (PA+2), mag. Metallhelm +1 (PA+2)",,
Bär,Dungeonslayers Basisbox,Tiere,,,,,,12,8,1,3,4,0,3,0,0,75,12,8,16,17,8,,,9,gr,139,"Natürliche Waffen, Sturmangriff","Pranke (WB+2, GA-2)",Fell (PA+1),,
Caerner Freibeuter,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,7,5,3,2,0,4,1,0,25,9,5.5,13,13,8,,,2,no,57,"Akrobat I, Einstecker I, Flink I, Kämpfer I, Schwimmen I, Wissensgebiet I",Kurzschwert (WB+1),Lederpanzer (PA+1),,
Casius,SC2GO,Mensch,Mensch,Hei,1,Talentiert,,6,6,8,1,0,3,2,0,5,18,6,4,8,8,6,14,,1,no,63,"Ausweichen I, Bildung I","Streitkolben (WB+1, GA-1)",Robe (runenbestickt) (Aura +1),,Heilende Hand (+1)
Chalog Omesch,Chalog Omesch,Elf,Elf,SPÄ,14,"Nachtsicht, Unsterblich, Leichtfüßig",,5,7,8,0,3,4,2,8,0,17,14,4.5,10,5,21,,,1,no,61,"Wahrnehmung V, Heimlichkeit III, Jäger III, Bildung III, Diebeskunst II, Fieser Schuss II, Schütze II, Schnelle Reflexe II, Runenkunde I, In Deckung I, Diener des Lichts I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I","mag. Armbrust, leicht (2h) +2 (WB+4, GA-2, Verletzen +II)","mag. Lederpanzer +2 (PA+3, Zauber: Balancieren eingebettet)","Kompass (Zauber: Magie entdecken eingebettet, Zauber: Verborgenes sehen eingebettet)",
Chien Kwan,D2GO #17,Mensch,Mensch,Zau,5,Talentiert,,8,4,8,1,0,3,1,5,4,28,4,3,10,10,9,12,14,1,no,76,"Einstecker III, Zaubermacht III","Kampfstab (2h) (WB+1, Zielzauber +1)","mag. Robe (runenbestickt) +1 (PA+1, Aura +1)",,"Feuerlanze (+2), Feuerstrahl (+1), Verteidigung (0), Zaubertrick (0), Öffnen (-SW)"
Chio-Puan Wandermönch,Slayerforum,Mensch,Mensch,Hei,1,Talentiert,,7,5,8,3,0,2,1,1,4,18,5,3.5,8,11,6,14,,1,no,54,"Bildung I, Fürsorger I, Waffenloser Meister I, Wahrnehmung I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Heilende Hand (+2)
Copperntaler Milizionär,Slayerforum,Halbling,Halbling,KRI,1,"Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen",,8,7,5,4,2,1,2,1,0,20,12,4.5,13,14,9,,,1,kl,54,"Instrument I, Kämpfer I, Parade I, Schlitzohr I, Wissensgebiet I, Wissensgebiet I","Speer (WB+1), Dolch (INI+1)","Lederpanzer (PA+1), Holzschild (PA+1)",,
Cranag der Wanderer,Das Umbarla-Becken,Mensch,Mensch,WAM,12,Talentiert,,8,6,6,11,1,0,7,0,2,34,7,4,21,27,6,,,14,no,126,"Einstecker III, Kämpfer III, Jäger I, Brutaler Hieb I, Perfektion I, Prügler I, Sensenspötter I, Standhaft I, Tod entrinnen I, Waffenkenner I, Wissensgebiet I, Wissensgebiet I","mag. Bihänder (2h) +2 (WB+5, GA-6, Panzerung zerschmettern +II, Verletzen +II)","mag. Lederschienen (Arm & Bein) +2 (PA+3), mag. Lederpanzer +2 (PA+3)",,
Dampfkutsche,Der König von Gnommewahn,Konstrukte,,,,,,15,14,0,6,3,0,6,0,0,93,17,12.5,23,21,14,,,16,gr,159,"Schleudern, Sturmangriff",Rammen,Metallwesen (PA+2),,
Deformierter Drachenwelpe,Der Turm des Sturmrufers,Magische Wesen,,,,,,5,5,2,1,1,1,2,2,2,51,6,6,10,9,10,,,4,gr,126,"Mehrere Angriffe (+1), Elementare Aufzehrung, Elementare Freisetzung, Dunkelsicht, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)","Biss, Klaue, Odem oder Schwanzhieb (WB+3, GA-2)",Drachenschuppen (PA+3),,
Der Ketzer,Die Hallen der Reinigung,Untote,,,,,,4,6,9,13,0,4,17,5,4,31,6,4,21,17,11,13,17,9,no,141,"Geistesimmun, Natürliche Waffen, Totenkraft, Wesen der Dunkelheit (Settingoption)",Klauen/Schlangen,,,"Feuerball (+3), Feuerlanze (+2), Flackern (-2), Fluch (-(GEI+AU)/2), Kontrollieren (-(GEI+AU)/2), Magie entdecken (0), Schatten (-(AGI+AU)/2), Skelette erwecken (0), Terror (-(GEI+VE)/2), Versetzen (0), Zombies erwecken (0)"
Der Weltenfresser,Weltenfresser,Magische Wesen,,,,,Episch,32,12,4,12,5,1,10,0,10,5200,17,12,50,52,14,,,261,ge,10812,"Anfällig, Geistesimmun, Schleudern, Sturmangriff, Verschlingen, Zerstampfen","Steinpranke (WB+4, GA-4), Felsen (WB+2, GA-2)",Steinwesen (PA+4),,
Dermot Madal,Die Goblinarena,Mensch,Mensch,NEK,12,Talentiert,,7,5,8,1,0,7,0,3,9,17,9,3.5,7,11,8,17,11,1,no,84,"Diener der Dunkelheit V, Beschwörer II, Genesung II, Feuermagier I","mag. Dolch +3 (WB+3, INI+4, GA-3)",,,"Feuerball (+4), Flammenklinge (+1), Fluch (-(GEI+AU)/2), Kontrollieren (-(GEI+AU)/2), Netz (-(AGI+ST)/2), Schattenpfeil (+2), Skelette erwecken (0), Tarnender Nebel (-2), Terror (-(GEI+VE)/2), Totengespräch (0), Verteidigung (0), Verwirren (-(GEI+AU)/2), Öffnen (-SW)"
Die Eiskönigin,Das Geschenk der Eiskönigin,Mensch,Mensch,ELE,20,Talentiert,Episch,6,6,8,0,0,10,4,4,14,209,9,4,17,10,10,22,17,14,no,628,"Diener der Dunkelheit III, Einstecker III, Elementen trotzen III, Magieresistent III, Schutz vor Elementen III, Verheerer III, Wissensgebiet III, Zaubermacht III","mag. Kampfstab (2h) +3 (WB+4, INI+3, GA-3, Zielzauber +1, Eismagier +V)","mag. Robe +3 (PA+3, Bändiger +I, Elementare bündeln +I, Herausforderer der Elemente +I, Herr der Elemente +I, Knechtschaft +I, Mächtige Herbeirufung +I)","Diadem (Diener der Dunkelheit +II, Zauber: Halt eingebettet), Ring (Aura +3, Zauber: Gehorche eingebettet, Zauber: Freund eingebettet)","Bannen (-(KÖR+AU)/2), Ebenentor (-8), Eisbombe (+9), Eishauch (+9), Elementar herbeirufen (-Stufe x5), Elementar herbeirufen (-Stufe x5), Fliegen (0), Frostschock (+9), Frostwaffe (+5), Gasgestalt (0), Kältefront (+4), Kältekegel (+8), Kältestrahl (+7), Schatten (-(AGI+AU)/2), Schutzfeld (0), Schutzschild (0), Tarnender Nebel (-2), Tierbeherrschung (-LK/2), Wasserwandeln (+5), Zeitstop (-5)"
Dirion,Valen Coladris,Elf,Elf,KRI,1,"Nachtsicht, Unsterblich, Zielsicher",,8,8,4,4,0,0,3,3,0,21,8,5,14,13,13,,,2,no,56,"Blocker I, Jäger I, Wissensgebiet I, Wissensgebiet I",Speer (WB+1),"Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1), Holzschild (PA+1)",,
Donnerechse,Die Insel der Stürme,Magische Wesen,,,,,,8,7,3,4,1,0,5,3,0,69,8,7.5,15,14,10,,9,5,gr,151,"Natürliche Waffen, Sturmangriff","Großer Biss (WB+2, GA-2)",Schuppenpanzer (PA+2),,Blitz (+3)
Donnervogel,Die Insel der Stürme,Tiere,,,,,,8,9,1,4,6,0,1,2,0,38,15,6,10,14,11,,,4,gr,82,"Natürliche Waffen, Sturmangriff",Großer Schnabel (WB+2),Federkleid (PA+1),,
Drac,SC2GO,Mensch,Mensch,KRI,1,Talentiert,,8,6,6,5,0,0,5,0,0,26,4,3.5,15,17,6,,,6,no,101,"Einstecker I, Kämpfer I","Bihänder (2h) (WB+3, INI-2, GA-4)","Kettenpanzer (PA+2, LA-0.5)",,
Drachenwelpe,Dungeonslayers Basisbox,Magische Wesen,,,,,,9,11,5,2,3,1,2,3,2,63,14,10.5,14,14,17,,,20,gr,270,"Angst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen","Biss, Klaue, Odem oder Schwanzhieb (WB+3, GA-2)",Drachenschuppen (PA+3),,
Drazuul die Verderberin,Lockruf aus der Finsternis,Tiere,,,,,Heroisch,10,9,9,10,5,5,10,5,5,150,14,5.5,25,25,14,,,27,no,588,"Mehrere Angriffe (+1), Dunkelsicht, Geistesimmun, Bezaubern, Sturmangriff, Wesen der Dunkelheit (Settingoption)",Schattenklaue (WB+3),Schattenkörper (PA+3),,
Duldgnomischer Zaubertechniker,Slayerforum,Gnom,Gnom,Zau,1,"Dunkelsicht, Klein, Langlebig, Magisch begabt, Zäh, Zäher als sie aussehen",,6,6,8,2,0,2,0,4,3,16,6,4,7,9,10,12,,1,kl,60,"Handwerk II, Diebeskunst I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I","Hammer (WB+1, GA-1)",Robe (runenbestickt) (Aura +1),,Magisches Schloss (0)
Dunkler Krieger,Die Goblinarena,Mensch,Mensch,KRI,,Talentiert,,8,6,6,6,0,1,5,2,0,26,5,4,15,17,8,,,5,no,64,"Diener der Dunkelheit II, Einstecker I, Kämpfer I",Langschwert (WB+2),"Lederpanzer (PA+1), Metallhelm (PA+1, INI-1)",,
Dämonenfürst,Dungeonslayers Basisbox,Magische Wesen,,,,,,20,20,10,10,10,5,10,10,5,400,30,16,32,35,30,,,42,ge,579,"Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Pranke (WB+5, GA-5)",Dämonenhaut (PA+2),,
Echsenmensch,Dungeonslayers Basisbox,Humanoide,,,,,,9,8,3,4,0,2,2,2,0,21,8,5,12,14,11,,,3,no,69,"Nachtsicht, Schleudern",Speer (WB+1),Schuppenpanzer (PA+1),,
Einbrecher,Slayerforum,Halbling,Halbling,SPÄ,1,"Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen",,6,8,6,2,2,0,1,5,0,17,13,6,8,8,15,,,1,kl,49,"Akrobat I, Diebeskunst I, Flink I, Heimlichkeit I, Schütze I, Wahrnehmung I","Kurzbogen (2h) (WB+1, INI+1)",Lederpanzer (PA+1),,
Einhorn,Dungeonslayers Basisbox,Magische Wesen,,,,,,9,13,1,2,6,1,2,0,1,63,19,12,11,12,13,0,,5,gr,194,"Angst, Mehrere Angriffe (+1), Geistesimmun, Nachtsicht, Schleudern, Sturmangriff, Wesen des Lichts (Settingoption)","Horn oder Hufe (WB+1, GA-2)",,,Spurt (-2)
Eiselementar III,Ein Riesenproblem,Magische Wesen,,,,,,15,9,1,5,0,0,6,4,0,62,9,6,29,24,17,,,15,gr,128,"Anfällig, Körperlos",Eisstrahl (WB+4),Keine feste Gestalt (PA+8),,
Eisenhaller Armbrustschütze,Slayerforum,Zwerg,Zwerg,SPÄ,1,"Dunkelsicht, Langlebig, Zäh",,8,8,4,0,0,0,4,6,0,25,8,4.5,15,8,17,,,2,no,59,"Einstecker I, Schlachtruf I, Schütze I","Armbrust, leicht (2h) (WB+2, INI-2), Dolch (INI+1)","Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)",,
Eiswolf,Ein Riesenproblem,Tiere,,,,,,11,8,1,4,2,0,2,2,0,17,10,7.5,14,16,12,,,6,kl,86,"Anfällig, Natürliche Waffen, Odem, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Eisodem (WB+2), Biss (WB+1)",Frostfell (PA+1),,
Eiszwerg,Ein Riesenproblem,Humanoide,,,,,,10,6,2,2,0,1,3,3,0,23,7,4,14,13,10,,,2,no,58,Nachtsicht,"Kurzbogen (2h) (WB+1, INI+1), Kurzschwert (WB+1)",Lederpanzer (PA+1),,
Eldvyn,Slay! #1,Elf,Elf,KRI,3,"Nachtsicht, Unsterblich, Leichtfüßig",,7,7,6,4,1,1,3,1,0,20,8,4.5,13,14,8,,,2,no,51,"Parade III, Kämpfer II, Wissensgebiet II",Kurzschwert (WB+1),,,
Emrich,Dungeonslayers Basisbox,Mensch,Mensch,KRI,3,Talentiert,,8,7,5,5,0,2,4,1,0,22,4,4,15,15,10,,,2,no,61,,"Langschwert (WB+2), Armbrust, leicht (2h) (WB+2, INI-2)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)",,
Engel der Apokalypse,Slay! #3,Humanoide,,,,,,20,20,10,10,10,5,10,10,5,200,30,13,32,35,30,,,33,ri,377,"Fliegen, Wesen der Dunkelheit (Settingoption)","Schattenklinge (WB+5, GA-5)",Umhang (PA+2),,
Enural,Valen Coladris,Elf,Elf,KRI,1,"Nachtsicht, Unsterblich, Zielsicher",,8,6,6,4,0,1,4,0,1,22,8,4,13,13,7,,,2,no,54,"Glückspilz I, Schnelle Reflexe I, Wissensgebiet I, Wissensgebiet I",Kurzschwert (WB+1),Lederpanzer (PA+1),,
Erald,Valen Coladris,Elf,Elf,SPÄ,1,"Nachtsicht, Unsterblich, Zielsicher",,6,8,6,0,1,1,2,6,0,18,10,5,9,6,17,,,1,no,50,"Bildung I, Glückspilz I, Schütze I, Wissensgebiet I","Kurzbogen (2h) (WB+1, INI+1)",Lederpanzer (PA+1),,
Erdelementar I,Dungeonslayers Basisbox,Magische Wesen,,,,,,12,2,1,3,1,0,4,0,0,13,3,2,20,19,2,,,8,kl,44,Anfällig,Steinpranke (WB+4),Steinwesen (PA+4),,
Erdelementar II,Dungeonslayers Basisbox,Magische Wesen,,,,,,17,2,1,4,1,0,5,0,0,32,3,2,26,25,2,,,15,no,70,Anfällig,Steinpranke (WB+4),Steinwesen (PA+4),,
Erdelementar III,Dungeonslayers Basisbox,Magische Wesen,,,,,,22,2,1,5,1,0,7,0,0,78,3,2.5,33,31,2,,,23,gr,124,Anfällig,Steinpranke (WB+4),Steinwesen (PA+4),,
Erfahrener Rattling,Slay! #2,Rattling,Rattling,SPÄ,5,"Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen",,6,8,6,0,4,1,3,6,0,22,12,6,12,7,17,,,1,kl,61,"Schütze II, Einstecker I, Fieser Schuss I, Flink I, Ausweichen I, Schwimmen I, Heimlichkeit I, Wahrnehmung I","Kurzbogen (2h) (WB+1, INI+1), Kurzschwert (WB+1)","Metallhelm (PA+1, INI-1), Lederschienen (Arm & Bein) (PA+1), Lederpanzer (PA+1)",,
Erindor,Valen Coladris,Elf,Elf,Zau,1,"Nachtsicht, Unsterblich, Zielsicher",,5,7,8,0,0,3,1,5,2,16,7,4.5,6,6,13,,16,1,no,51,"Bildung I, Blitzmacher I, Wissensgebiet I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Schock (+1)
Erwachsener Drache,Dungeonslayers Basisbox,Magische Wesen,,,,,,24,16,10,6,4,2,6,4,3,600,20,18.5,35,35,25,,,65,ge,922,"Angst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen","Biss, Klaue, Odem oder Schwanzhieb (WB+5, GA-5)",Drachenschuppen (PA+5),,
Ettin,Slay! #1,Humanoide,,,,,,18,4,5,5,2,3,6,0,0,68,6,3.5,25,26,4,,,22,gr,168,"Angst, Gift, Mehrere Angriffe (+1), Nachtsicht, Wesen der Dunkelheit (Settingoption)","Steinkeule (WB+3, GA+3)",Felle (PA+1),,
Eulerich,Dungeonslayers Basisbox,Magische Wesen,,,,,,14,6,1,4,3,0,3,0,0,54,9,4.5,18,20,6,,,11,gr,115,Dunkelsicht,"Pranke (WB+2, GA-2)",Federkleid (PA+1),,
Fahlstepper Grenzwächter,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,7,5,4,0,0,3,2,0,24,8,4.5,13,13,10,,,1,no,57,"Einstecker I, Jäger I, Schlachtruf I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I","Speer (WB+1), Kurzbogen (2h) (WB+1, INI+1)","Lederpanzer (PA+1), Holzschild (PA+1)",,
Falschspieler,Slayerforum,Halbling,Halbling,SPÄ,1,"Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen",,6,8,6,1,1,2,1,4,1,17,14,5,8,7,12,,,1,kl,48,"Charmant I, Glückspilz I, Schlitzohr I, Schnelle Reflexe I, Wahrnehmung I, Wissensgebiet I","Dolch (INI+1), Wurfmesser",Lederpanzer (PA+1),,
Faria (Feuermagierin),Avakars Runde,Mensch,Mensch,Zau,6,Talentiert,,8,4,8,0,0,4,4,4,5,22,4,4,12,9,8,13,13,1,no,81,"Feuermagier III, Wechsler II, Flink I, Ausweichen I, Wissensgebiet I, Zaubermacht I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),"Armband (Verstand +1), Gürtel (1x aktionsfrei Zauber wechseln), Krähenfuß (Feuerzauber +1)","Duftnote (0), Feuerlanze (+6), Flammenklinge (+4), Licht (+5), Niesanfall (-(KÖR+AU)/2), Öffnen (-SW)"
Faulbauch,Dungeonslayers Basisbox,Untote,,,,,,16,6,0,6,0,0,5,0,0,62,6,4.5,23,24,6,,,17,gr,131,"Dunkelsicht, Geistesimmun, Schleudern, Wesen der Dunkelheit (Settingoption)",Knochenpranke (WB+2),Merkt nichts (PA+2),,
Faulbauchmade,Dungeonslayers Basisbox,Untote,,,,,,6,6,0,2,0,0,4,0,0,10,6,4,10,10,6,,,1,kl,47,"Dunkelsicht, Geistesimmun, Natürliche Waffen",Zahnschlund (WB+2),,,
Fenya,Das Volk der Sturmelfen,Elf,Elf,SPÄ,1,"Nachtsicht, Unsterblich, Zielsicher",,4,8,8,0,3,2,2,3,0,16,12,5,7,4,13,,,1,no,47,"Akrobat I, Heimlichkeit I, Schütze I, Wissensgebiet I","Dolch (INI+1), Schleuder",Lederpanzer (PA+1),,
Fetter Goblin-Aufseher,Trächtige Wildsau,Humanoide,,,,,,6,7,2,3,2,1,4,2,0,20,10,4.5,14,10,9,,,1,kl,69,"Parade II, Kämpfer I","Peitsche (WB-1, INI+1, GA-2)","Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)",,
Feuerelementar I,Dungeonslayers Basisbox,Magische Wesen,,,,,,9,5,1,3,0,0,5,0,0,12,5,3.5,22,14,5,,,9,kl,70,"Anfällig, Fliegen, Körperlos",Flammenhieb (WB+2),Keine feste Gestalt (PA+8),,
Feuerelementar II,Dungeonslayers Basisbox,Magische Wesen,,,,,,13,6,1,4,0,0,6,0,0,29,6,4,27,20,6,,,15,no,95,"Anfällig, Fliegen, Körperlos",Flammenhieb (WB+3),Keine feste Gestalt (PA+8),,
Feuerelementar III,Dungeonslayers Basisbox,Magische Wesen,,,,,,18,6,1,6,0,0,7,0,0,70,6,4.5,33,28,6,,,24,gr,145,"Anfällig, Fliegen, Körperlos",Flammenhieb (WB+4),Keine feste Gestalt (PA+8),,
Fjordinger Wikinger,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,4,2,0,4,0,0,25,9,5,14,14,8,,,4,no,78,"Einstecker I, Kämpfer I, Schlachtruf I, Schwimmen I, Wissensgebiet I","Breitschwert (WB+1, GA-2)","Lederpanzer (PA+1), Metallhelm (PA+1, INI-1)",,
Fjordorzwergischer Kaperfahrer,Slayerforum,Zwerg,Zwerg,KRI,1,"Dunkelsicht, Langlebig, Zäh",,8,8,4,6,0,0,4,0,0,22,7,5,17,15,9,,,3,no,58,"Prügler I, Raserei I, Schlachtruf I, Wissensgebiet I",Axt (WB+1),"Lederpanzer (PA+1), Holzschild (PA+1), Lederschienen (Arm & Bein) (PA+1), Metallhelm (PA+1, INI-1)",,
Fliegender Schädel,Slay! #3,Untote,,,,,,5,8,8,1,2,4,3,0,4,5,10,5,8,7,8,12,,4,wi,93,"Dunkelsicht, Fliegen, Geistesimmun, Werteverlust, Wesen der Dunkelheit (Settingoption)",Biss (WB+1),,,"Totenlachen (-GEI+AU auf VE Ziele im Umkreis von VEx2 Metern, sofern diese das Lachen hören können; Erfolg führt zu Werteverlust.) (undefined)"
Fliegendes Schwert,Dungeonslayers Basisbox,Konstrukte,,,,,,10,5,0,4,0,0,4,0,0,12,5,3.5,19,16,5,,,8,kl,57,Fliegen,Langschwert (WB+2),Metallwesen (PA+5),,
Floragon,Valen Coladris,Elf,Elf,SPÄ,1,"Nachtsicht, Unsterblich, Zielsicher",,5,8,7,0,2,0,3,3,2,18,11,5,8,5,14,,,1,no,49,"Jäger I, Schütze I, Wissensgebiet I, Wissensgebiet I","Kurzbogen (2h) (WB+1, INI+1), Dolch (INI+1)",,,
Freiländer Dämonenjäger,Slayerforum,Mensch,Mensch,Hei,1,Talentiert,,6,6,8,0,0,1,2,5,2,18,8,4,9,7,14,9,,1,no,54,"Diener des Lichts I, Fieser Schuss I, Schnelle Reflexe I, Schütze I, Wahrnehmung I","Armbrust, leicht (2h) (WB+2, INI-2), Kurzschwert (WB+1)",Lederpanzer (PA+1),,Wasser weihen (0)
Funkenfieper,Die verlassene Hütte im Spinnensumpf,Magische Wesen,,,,,,3,6,4,0,4,0,0,5,0,7,10,4,3,5,11,,12,1,kl,71,"Dunkelsicht, Geladen, Kletterläufer, Natürliche Waffen",Spitze Zähne (WB+2),,,"Blitz (+3), Kettenblitz (+3)"
Galen,Slay! #2,Mensch,Mensch,Zau,2,Talentiert,,5,7,8,0,0,2,0,5,5,15,9,4.5,5,6,12,13,,1,no,52,"Bildung I, Charmant I, Diebeskunst I, Heimlichkeit I, Schlitzohr I, Schnelle Reflexe I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,"Versetzte Stimme (-1/10m), Zaubertrick (0)"
Gargyl,Dungeonslayers Basisbox,Magische Wesen,,,,,,7,7,1,2,1,0,2,2,1,10,8,4.5,13,11,9,,,6,kl,91,"Anfällig, Dunkelsicht, Fliegen, Geistesimmun, Kletterläufer, Natürliche Waffen, Sturzangriff",Steinpranke (WB+2),Steinwesen (PA+4),,
Geist,Dungeonslayers Basisbox,Untote,,,,,,1,11,10,16,0,3,16,2,6,27,11,6.5,25,19,13,16,,24,no,279,"Angst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit / Wesen des Lichts (Settingoption)","Geisterklaue (WB+2, GA-2)",Körperlos (PA+8),,Terror (-(GEI+VE)/2)
Geistpeiniger,Geistpeiniger,Magische Wesen,,,,,,14,11,19,3,0,5,4,4,6,28,11,6.5,20,19,22,25,,29,no,323,"Mehrere Angriffe (+3), Gedankensturm, Antimagie, Natürliche Waffen, Werteverlust","Gedankensturm (WB+7), Tentakel (WB+2)",Lederhaut (PA+2),,"Ebenentor (-8), Fliegen (0), Freund (-(GEI+VE)/2), Gehorche (-(GEI+VE)/2), Kleiner Terror (-(GEI+VE)/2), Verwirren (-(GEI+AU)/2)"
Getreuer Dammenhalls,D2GO #20,Untote,,,,,Heroisch,10,8,0,8,2,0,8,2,0,140,11,5,27,23,10,,,22,no,428,"Angst, Alterung, Geistesimmun, Wesen der Dunkelheit (Settingoption)","mag. Langschwert +1 (WB+3, INI+1, GA-1)","mag. Kettenpanzer +1 (PA+3), mag. Metallhelm +1 (PA+2), mag. Metallschild +1 (PA+2)",,
Gisamor,Die Hallen der Reinigung,Magische Wesen,,,,,Anführer,12,7,7,5,4,4,5,4,4,54,11,4.5,23,22,13,11,13,10,no,382,"Dunkelsicht, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Schattenklinge (WB+3, GA-4), Feuerlanze (WB+2)",Schattenrüstung (PA+4),,"Feuerlanze (+2), Skelette erwecken (0)"
Glitzerhand (Dieb),Avakars Runde,Elf,Elf,SPÄ,6,"Nachtsicht, Unsterblich, Leichtfüßig",,6,8,6,0,2,4,2,7,0,18,12,5,10,7,18,,,1,no,58,"Diebeskunst III, Wahrnehmung III, Genesung I, Fieser Schuss I, Jäger I, Schütze I","Langbogen (2h) (WB+2, INI+1), mag. Dolch +1 (WB+1, INI+2, GA-1)","Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)",,
Gloriel 'Die Kräuterhexe',Valen Coladris,Elf,Elf,Sch,1,"Nachtsicht, Unsterblich, Zielsicher",,7,5,8,0,0,3,2,3,3,19,6,3.5,9,7,9,,14,1,no,54,"Alchemie I, Feuermagier I, Wissensgebiet I, Zaubermacht I",Dolch (INI+1),Robe (runenbestickt) (Aura +1),,Feuerstrahl (+2)
Gnomischer Illusionist,Slayerforum,Gnom,Gnom,Zau,1,"Dunkelsicht, Klein, Langlebig, Magisch begabt, Zäh, Zäher als sie aussehen",,6,6,8,0,0,2,0,4,5,16,6,4,7,7,10,14,,1,kl,50,"Bildung I, Charmant I, Schlitzohr I, Wahrnehmung I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Zaubertrick (0)
Goblin,Dungeonslayers Basisbox,Humanoide,,,,,,5,7,3,2,2,1,1,2,0,8,9,4.5,7,7,9,,,1,kl,42,"Nachtsicht, Wesen der Dunkelheit (Settingoption)",Wurfmesser,Felle (PA+1),,
Goblin Berserker,Slay! #1,Humanoide,,,,,,6,7,2,4,2,0,2,1,0,9,9,4.5,8,11,8,,,2,kl,64,"Nachtsicht, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Hammer (WB+1, GA-1)",Fellschurz,,
Goblin Bomber,Slay! #1,Humanoide,,,,,,4,8,3,0,2,1,3,3,0,9,10,5,8,4,14,,,1,kl,47,"Nachtsicht, Wesen der Dunkelheit (Settingoption)",Brandbombe (WB+3),Felle (PA+1),,
Goblin Giftmörder,Slay! #1,Humanoide,,,,,,6,7,2,4,2,0,1,2,0,9,9,4.5,7,10,9,,,2,kl,63,"Gift, Mehrere Angriffe (+1), Nachtsicht, Wesen der Dunkelheit (Settingoption)",Dolch,Dunkler Lumpenumhang,,
Goblin Häuptling,Slay! #1,Humanoide,,,,,Anführer,5,7,3,3,2,2,3,2,1,18,9,4,12,11,9,,,2,kl,140,"Mehrere Angriffe (+1), Nachtsicht, Wesen der Dunkelheit (Settingoption)",Kurzschwert (WB+1),"Kettenpanzer (PA+2, LA-0.5)",,
Goblin Krieger,Slay! #1,Humanoide,,,,,,6,7,2,3,2,1,2,1,0,9,9,4.5,9,10,8,,,1,kl,45,"Nachtsicht, Wesen der Dunkelheit (Settingoption)",Keule (WB+1),Lederpanzer (PA+1),,
Goblin Schamane,Slay! #1,Humanoide,,,,,Anführer,4,6,5,0,1,2,1,3,5,15,7,4,7,5,9,10,11,1,kl,112,"Nachtsicht, Wesen der Dunkelheit (Settingoption)","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,"Blenden (-(AGI+AU)/2), Heilende Hand (+1), Niesanfall (-(KÖR+AU)/2), Verteidigung (0)"
Goblin Späher,Slay! #1,Humanoide,,,,,,4,8,3,1,2,1,1,4,0,8,11,5,6,5,13,,,1,kl,44,"Nachtsicht, Wesen der Dunkelheit (Settingoption)","Kurzbogen (2h) (WB+1, INI+1)",Felle (PA+1),,
Goblin Stadtratte,Slay! #1,Humanoide,,,,,,5,7,3,0,1,3,1,2,2,8,9,4.5,6,6,9,,,1,kl,43,"Nachtsicht, Wesen der Dunkelheit (Settingoption)","Dolch (WB+1, INI+1)",Lumpen,,
Goblinrächer,Die Goblinarena,Humanoide,,,,,,5,7,3,2,2,1,1,2,0,8,9,4.5,7,8,10,,,1,kl,34,"Diener der Dunkelheit V, Vergeltung I, Vernichtender Schlag I",Axt (WB+1),Felle (PA+1),,
"Golem, Eisen-",Dungeonslayers Basisbox,Konstrukte,,,,,,20,5,0,5,2,0,6,0,0,72,7,4,31,31,5,,,27,gr,173,"Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff, Zerstampfen",Eisenpranke (WB+6),Metallwesen (PA+5),,
"Golem, Knochen-",Dungeonslayers Basisbox,Konstrukte,,,,,,10,12,0,5,6,0,0,0,0,40,18,7.5,10,17,12,,,12,gr,148,"Mehrere Angriffe (+3), Dunkelsicht, Geistesimmun, Mehrere Angriffsglieder, Schleudern, Sturmangriff",Knochenpranke (WB+2),,,
"Golem, Kristall-",Dungeonslayers Basisbox,Konstrukte,,,,,,8,10,4,3,0,0,3,5,0,42,10,6.5,14,13,15,,12,7,gr,134,"Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff",Kristallpranke (WB+2),Kristallwesen (PA+3),,Blitz (+3)
"Golem, Lehm-",Dungeonslayers Basisbox,Konstrukte,,,,,,10,6,4,3,2,0,3,0,0,46,8,4.5,13,16,6,,,8,gr,114,"Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff",Lehmpranke (WB+3),,,
"Golem, Stein-",Dungeonslayers Basisbox,Konstrukte,,,,,,18,4,4,4,0,0,5,2,0,66,4,3.5,27,26,6,,,23,gr,163,"Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff, Zerstampfen",Steinpranke (WB+4),Steinwesen (PA+4),,
Gralbor Weißauge,Das Umbarla-Becken,Mensch,Mensch,Hei,9,Talentiert,,6,6,9,0,0,7,0,0,9,16,6,4,6,6,6,18,,1,no,73,"Fürsorger III, Magieresistent III, Wechsler III, Diener des Lichts II, Wissensgebiet II, Wissensgebiet II, Zaubermacht II, Wissensgebiet I",,,"Stab (Arkane Explosion +III), Umhang (GEI +1)","Bannen (-(KÖR+AU)/2), Flackern (+1), Giftbann (0), Glühender Glaube (-2), Heilbeeren (+3), Heilende Aura (+3), Heilende Hand (+4), Schutzfeld (+3), Schutzkuppel (+3), Schutzschild (+3), Segen (0), Stossgebet (-(KÖR+AU)/2)"
Grottenschrat,Lockruf aus der Finsternis,Humanoide,,,,,,11,6,3,3,2,1,4,1,0,25,8,4,18,18,7,,,8,no,70,"Dunkelsicht, Natürliche Waffen",Biss (WB+4),Dicke Haut (PA+3),,
Großmutter Gorla,Der Kult des Snarrk'Izz,Mensch,Mensch,Hei,8,Talentiert,,8,4,9,0,0,4,0,5,9,18,4,3,11,9,9,18,15,2,no,75,"Wissensgebiet III, Fürsorger II, Manipulator II, Heimlichkeit I, Alchemie I, Bildung I, Wahrnehmung I, Wechsler I, Zaubermacht I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (Geschick +3),"Amulett (Abwehr +3), Kapuzenumhang (Magieresistent +III)","Einschläfern (-(KÖR+VE)/2+2), Flackern (0), Freund (-(GEI+VE)/2+2), Giftbann (0), Halt (-(KÖR+AU)/2), Heilbeeren (+2), Heilende Aura (+2), Heilende Hand (+3), Licht (+5), Schutzschild (+2), Schweben (0), Segen (0), Wächter (0)"
Grufthauptmann,Das Geheimnis der heiligen Quelle,Mensch,Mensch,KRI,9,Talentiert,,8,7,5,10,1,1,5,2,0,23,8,3.5,22,24,9,,,13,no,111,"Kämpfer III, Parade III, Brutaler Hieb II, Magieresistent II","Bihänder (2h) (WB+3, INI-2, GA-4), mag. Langschwert +1 (WB+3, INI+1, GA-1)","mag. Kettenpanzer +1 (PA+3), Metallhelm (PA+1, INI-1), Plattenarmschienen (PA+1, LA-0.5), Plattenbeinschienen (PA+1, LA-0.5)",,
Gruftplünderer,Slay! #3,Untote,,,,,,6,8,6,2,5,4,1,5,0,17,14,5,9,9,14,,,4,no,94,"Diebeskunst, Dunkelsicht, Geistesimmun, Kletterläufer, Wesen der Dunkelheit (Settingoption)","Kurzschwert (WB+1), Kurzbogen (2h) (WB+1, INI+1)","Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)",,
Gruftritter,Das Geheimnis der heiligen Quelle,Mensch,Mensch,KRI,3,Talentiert,,8,7,5,6,1,1,2,2,0,20,7,4,16,19,9,,,6,no,59,"Kämpfer III, Parade I",Langschwert (WB+2),"Kettenpanzer (PA+2, LA-0.5), Holzschild (PA+1), Lederschienen (Arm & Bein) (PA+1), Metallhelm (PA+1, INI-1)",,
Gärtner,Slayerforum,Halbling,Halbling,SPÄ,1,"Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen",,6,8,6,0,2,2,2,4,0,18,12,5,9,7,14,,,1,kl,51,"Jäger I, Schütze I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I",Speer (WB+1),Lederpanzer (PA+1),,
Hai,Dungeonslayers Basisbox,Tiere,,,,,,13,6,1,4,3,0,3,0,0,39,9,6,16,19,6,,,9,no,106,"Natürliche Waffen, Schwimmen, Sturmangriff","Großer Biss (WB+2, GA-2)",,,
Halblingskelett,Die Pyramide des Eck Wan,Untote,,,,,,10,8,0,3,2,0,2,2,4,11,10,5,12,14,10,,,3,kl,58,"Geistesimmun, Wesen der Dunkelheit (Settingoption)",Kochenklauen (WB+1),,,
Harpyie,Dungeonslayers Basisbox,Magische Wesen,,,,,,8,6,6,2,2,1,2,1,2,20,8,4,11,12,7,8,,5,no,108,"Bezaubern, Fliegen, Nachtsicht, Natürliche Waffen, Sturzangriff",Krallenklaue (WB+2),Federkleid (PA+1),,Lockruf (funktioniert wie der Zauberspruch Gehorche; Abklingzeit des Lockrufs: 10 Kampfrunden) (undefined)
Harringer,Dungeonslayers Basisbox,Mensch,Mensch,KRI,4,Talentiert,,7,6,7,4,0,3,5,0,0,22,6,3.5,14,13,6,,,2,no,58,,Langschwert (WB+2),"Kettenpanzer (PA+2, LA-0.5)",,
Hartmund,Der schwarze Ritter,Mensch,Mensch,Hei,10,Talentiert,,6,6,8,0,0,6,2,5,7,18,6,4,8,7,11,15,14,1,no,88,"Fürsorger III, Manipulator III, Zaubermacht III, Bildung I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,"Allheilung (+3), Blenden (-(AGI+AU)/2), Einschläfern (-(KÖR+VE)/2+3), Freund (-(GEI+VE)/2+3), Giftbann (0), Heilende Hand (+4), Heilendes Licht (+5), Kleiner Terror (-(GEI+VE)/2+3), Schutzschild (+3), Verlangsamen (-(KÖR+AU)/2), Verwirren (-(GEI+AU)/2+3)"
Heiler/Schütze 01,Beispiele,Mensch,Mensch,Hei,1,Talentiert,,5,7,8,0,0,1,4,5,1,19,8,4.5,10,5,13,13,,1,no,58,"Fürsorger III, Rüstzauberer I","Kurzbogen (2h) (WB+1, INI+1)","Lederschienen (Arm & Bein) (PA+1), Robe (runenbestickt) (Aura +1)",,Heilende Hand (+4)
Heiler/Schütze 04,Beispiele,Mensch,Mensch,Hei,4,Talentiert,,5,7,8,0,0,2,4,5,3,25,8,4.5,10,5,17,11,16,1,no,79,"Fürsorger III, Einstecker II, Abklingen I, Rüstzauberer I","Langbogen (2h) (WB+2, INI+1)","Lederschienen (Arm & Bein) (PA+1, Schütze +III), Robe (runenbestickt) (Aura +1)",,"Flackern (+1), Heilende Hand (+4), Heilendes Licht (+5), Magische Waffe (0), Segen (0)"
Heiler/Schütze 08,Beispiele,Mensch,Mensch,Hei,8,Talentiert,,5,7,8,0,0,3,4,5,6,25,10,4.5,13,5,18,15,17,3,no,87,"Fürsorger III, Abklingen II, Einstecker II, Rüstzauberer I, Schnelle Reflexe I, Schütze I, Vertrauter I","Langbogen (2h) (WB+2, INI+1)","Lederschienen (Arm & Bein) (PA+1, Schütze +III), Robe (runenbestickt) (Aura +1)","Ring (Abwehr +3), Vertrauter (Zaubern +1)","Flackern (+1), Glühender Glaube (-2), Heilbeeren (+3), Heilende Hand (+4), Heilendes Licht (+5), Magische Rüstung (+3), Magische Waffe (0), Schutzschild (+3), Segen (0)"
Heiler/Schütze 12,Beispiele,Mensch,Mensch,Hei,12,Talentiert,,5,7,8,0,0,5,4,5,8,25,10,4.5,13,5,21,17,19,4,no,104,"Fürsorger III, Schütze III, Abklingen II, Einstecker II, Rüstzauberer I, Schnelle Reflexe I, Scharfschütze I, Vertrauter I, Wissensgebiet I","Elfenbogen (2h) (WB+3, INI+1)","Lederschienen (Arm & Bein) (PA+1, Schütze +III), Robe (runenbestickt) (Aura +1)","Ring (Abwehr +3), Ring (Wechsler +V), Vertrauter (Zaubern +1)","Flackern (+1), Glühender Glaube (-2), Heilbeeren (+3), Heilende Hand (+4), Heilende Strahlen (+3), Heilendes Licht (+5), Magische Rüstung (+3), Magische Waffe (0), Schutzschild (+3), Segen (0)"
Heimsucher,Slay! #3,Untote,,,,,,5,9,7,8,6,5,8,7,1,23,15,5.5,21,13,17,,,14,no,180,"Angst, Dunkelsicht, Fliegen, Geistesimmun, Totenkraft, Werteverlust, Wesen der Dunkelheit (Settingoption)","Schattenpfeil (WB+1, GA-2)",Körperlos (PA+8),,
Hellweiter Diplomat,Slayerforum,Mensch,Mensch,SPÄ,1,Talentiert,,6,6,8,0,0,4,0,1,5,16,7,4,7,6,7,,,1,no,47,"Bildung I, Charmant I, Schlitzohr I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I",Dolch (INI+1),Lederpanzer (PA+1),,
Heob (Ordensheiler),Avakars Runde,Mensch,Mensch,Hei,6,Talentiert,,8,5,7,4,0,3,4,0,4,22,5,3.5,16,13,5,11,,3,no,84,"Fürsorger III, Diener des Lichts II, Wechsler II, Wissensgebiet II, Charmant I, Rüstzauberer I","Streitkolben (WB+1, GA-1)","Lederpanzer (PA+1, Parade +II, 1x aktionsfrei Waffe ziehen, Zauber: Bannen mit 12 Ladungen), Holzschild (PA+1, Blocker +III)",Krug (Zauber: Segen eingebettet),"Flackern (+1), Heilende Hand (+4), Schutzschild (+3), Stossgebet (-(KÖR+AU)/2), Vertreiben (-(KÖR+AU)/2), Wasser weihen (0)"
Hilaner Priester,Slayerforum,Mensch,Mensch,Hei,1,Talentiert,,6,6,8,0,0,5,1,0,4,17,6,4,7,6,6,13,,1,no,50,"Bildung II, Wissensgebiet II, Diener des Lichts I, Wissensgebiet I",,,,Heilende Hand (+1)
Hilanischer Peltast,Slayerforum,Mensch,Mensch,SPÄ,1,Talentiert,,7,8,5,1,1,0,2,6,0,19,11,6,12,9,16,,,1,no,53,"Ausweichen I, Flink I, Parade I, Schnelle Reflexe I, Schütze I",Speer (WB+1),"Lederpanzer (PA+1), Holzschild (PA+1)",,
Hobgoblin,Dungeonslayers Basisbox,Humanoide,,,,,,11,6,3,2,0,2,3,3,0,24,6,3.5,18,15,10,,,4,no,71,"Nachtsicht, Wesen der Dunkelheit (Settingoption)","Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Holzschild (PA+1)",,
Hoher Dämon,Dungeonslayers Basisbox,Magische Wesen,,,,,,7,7,6,3,3,3,3,3,3,20,10,4.5,12,12,10,,,4,no,104,"Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Pranke (WB+2, GA-2)",Dämonenhaut (PA+2),,
Hund,Dungeonslayers Basisbox,Tiere,,,,,,5,6,1,3,3,0,0,0,0,11,9,6,6,9,6,,,1,kl,31,Natürliche Waffen,Biss (WB+1),Fell (PA+1),,
Hydra,Dungeonslayers Basisbox,Magische Wesen,,,,,,14,10,1,5,2,0,6,0,0,90,12,9.5,22,21,10,,,23,gr,246,"Mehrere Angriffe (+5), Mehrere Angriffsglieder, Nachtsicht, Natürliche Waffen, Regeneration, Schleudern, Schwimmen","Großer Biss (WB+2, GA-2)",Schuppenpanzer (PA+2),,
Iglorion,Das Volk der Sturmelfen,Elf,Elf,KRI,1,"Nachtsicht, Unsterblich, Zielsicher",,8,6,6,5,0,0,4,1,0,25,6,4,12,16,8,,,3,no,58,"Einstecker I, Schnelle Reflexe I, Wissensgebiet I, Wissensgebiet I","Streitaxt (2h) (WB+3, INI-2)",,,
Irrlicht,Wolfshatz im Wargenwald,Magische Wesen,,,,,,4,6,1,0,2,0,2,3,0,8,8,4,14,4,10,,,9,kl,185,"Angst, Antimagie, Körperlos, Schweben, Sonar","Blitzstrahl (WB+1, GA-5)",Keine feste Gestalt (PA+8),,
Jok von Walderson,Chalog Omesch,Mensch,Mensch,KRI,8,Talentiert,,8,7,5,9,2,0,4,0,0,25,10,4,22,23,7,,,12,no,70,"Kämpfer III, Parade III, Brutaler Hieb II, Diener des Lichts II, Einstecker I, Panzerung zerschmettern I, Rüstträger I, Verletzen I, Waffenkenner I","mag. Langschwert +1 (WB+3, INI+1, GA-1, Dämonen zerschmettern +II)","Kettenpanzer (PA+2, LA-0.5), mag. Metallhelm +2 (PA+3, Zauber: Giftschutz eingebettet), mag. Metallschild +1 (PA+2, Standhaft +II)",,
Josip,Das Geschenk der Eiskönigin,Elf,Elf,ATT,16,"Nachtsicht, Unsterblich, Leichtfüßig",Heroisch,10,8,8,4,10,2,4,5,0,60,40,5,19,19,13,,,10,kl,234,"Ausweichen V, Heimlichkeit V, Schnelle Reflexe V, Verletzen V, Wahrnehmung V, Handwerk III, Diener der Dunkelheit III, Meucheln III, Hinterhältiger Angriff III","mag. Dolch +3 (WB+3, INI+4, GA-3, Aderschlitzer +V)","mag. Robe +3 (PA+3, Ausweichen +IV)","Des Schnitzers Gewandt (Set) (KÖR +1, AGI +1, GEI +1), Handschuhe (Schnelle Reflexe +II), Maske (Wahrnehmung +IV), Stiefel (Schnelle Reflexe +II), Umhang (Heimlichkeit +IV)",
Jost Rotweiden,Die Goblinarena,Mensch,Mensch,PAL,15,Talentiert,,7,7,6,10,2,2,9,0,0,32,6,4,19,23,7,,,11,no,121,"Kämpfer III, Einstecker II, Brutaler Hieb II, Vernichtender Schlag I","Bihänder (2h) (WB+3, INI-2, GA-4)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)",,
Jungdrache,Dungeonslayers Basisbox,Magische Wesen,,,,,,16,12,7,4,3,2,4,3,2,225,15,12.5,24,24,19,,,37,ri,491,"Angst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen","Biss, Klaue, Odem oder Schwanzhieb (WB+4, GA-4)",Drachenschuppen (PA+4),,
Jödländer Schamanin,Slayerforum,Mensch,Mensch,Hei,1,Talentiert,,5,7,8,0,0,0,2,4,4,17,7,4.5,7,6,12,14,,1,no,53,"Fürsorger I, Jäger I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I",Speer (WB+1),,,Heilende Hand (+2)
Kaholwächter,D2GO #17,Mensch,Mensch,KRI,3,Talentiert,,8,6,6,5,1,1,4,2,1,28,7,3.5,14,17,8,,,5,no,66,"Einstecker II, Kämpfer II",Langschwert (WB+2),"Kettenpanzer (PA+2, LA-0.5)",,
Kait Jadedrache,Slayerforum,Mensch,Mensch,Zau,1,Talentiert,,8,4,8,5,0,1,1,0,4,19,6,4,10,16,4,12,,2,no,54,"Bildung I, Flink I, Kämpfer I, Parade I, Schnelle Reflexe I, Wahrnehmung I","Langschwert (WB+2), Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Magische Waffe (0)
Kait Ninja,Slayerforum,Mensch,Mensch,SPÄ,1,Talentiert,,8,8,4,5,5,0,0,0,0,18,16,6,11,15,8,,,2,no,52,"Akrobat I, Ausweichen I, Flink I, Heimlichkeit I, Parade I, Schnelle Reflexe I","Langschwert (WB+2), Dolch (INI+1)","Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)",,
Kait Schwertgelehrter,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,4,8,4,0,3,0,0,3,21,7,4,11,14,4,,,2,no,55,"Bildung I, Einstecker I, Flink I, Parade I, Schnelle Reflexe I, Wissensgebiet I","Langschwert (WB+2), Dolch (INI+1)","Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)",,
Kamp,Dungeonslayers Basisbox,Mensch,Mensch,KRI,3,Talentiert,,8,7,5,5,0,2,4,1,0,22,4,4,15,15,10,,,2,no,61,,"Langschwert (WB+2), Armbrust, leicht (2h) (WB+2, INI-2)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)",,
Kampfdämon,Dungeonslayers Basisbox,Magische Wesen,,,,,,9,8,8,4,4,4,4,4,4,46,12,5.5,15,16,12,,,8,gr,152,"Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Pranke (WB+3, GA-3)",Dämonenhaut (PA+2),,
Kampfmagier 01,Beispiele,Mensch,Mensch,Sch,1,Talentiert,,8,4,8,0,0,1,4,5,1,31,6,3,12,8,9,,14,1,no,65,"Einstecker III, Schnelle Reflexe I",,Robe (runenbestickt) (Aura +1),,Feuerstrahl (+1)
Kampfmagier 04,Beispiele,Mensch,Mensch,Sch,4,Talentiert,,8,4,8,0,0,2,4,5,3,31,6,6,12,8,12,11,16,1,no,71,"Einstecker III, Zaubermacht III, Schnelle Reflexe I",,Robe (runenbestickt) (Aura +1),"Ring (Schütze +III), Stiefel (Flink +III)","Feuerstrahl (+1), Flackern (-2), Schattenpfeil (+2)"
Kampfmagier 08,Beispiele,Mensch,Mensch,Sch,8,Talentiert,,8,4,8,0,0,3,4,5,6,31,6,6,12,8,13,14,17,2,no,86,"Einstecker III, Zaubermacht III, Wissensgebiet II, Schnelle Reflexe I, Abklingen I, Schütze I",,Robe (runenbestickt) (Aura +1),"Ring (Schütze +III), Stab (Zauber: Verteidigung als Zauberstab), Stab (Zauber: Flackern als Zauberstab), Stiefel (Flink +III)","Blitz (+3), Feuerstrahl (+1), Flackern (-2), Schattenpfeil (+2), Schutzschild (0), Verteidigung (0)"
Kampfmagier 12,Beispiele,Mensch,Mensch,Sch,12,Talentiert,,8,4,8,0,0,3,4,5,10,31,6,6,12,8,15,18,19,4,no,96,"Abklingen III, Einstecker III, Schütze III, Zaubermacht III, Wissensgebiet II, Schnelle Reflexe I",,Robe (runenbestickt) (Aura +1),"Ring (Schütze +III), Ring (Zauber: Feuerball Abklingzeit bei Träger verkürzt um 2 Runden), Stab (Zauber: Flackern als Zauberstab), Stab (Zauber: Verteidigung als Zauberstab), Stab (Zauber: Feuerball als Zauberstab), Stiefel (Flink +III)","Blitz (+3), Feuerball (+3), Feuerstrahl (+1), Flackern (-2), Magische Rüstung (0), Schattenpfeil (+2), Schutzschild (0), Verteidigung (0)"
Kavija die Uralte,Das Umbarla-Becken,Mensch,Mensch,Sch,10,Talentiert,,5,5,10,0,0,7,0,1,9,18,5,3.5,5,6,6,19,11,1,no,77,"Alchemie III, Wechsler III, Wissensgebiet III, Magieresistent I, Einstecker I, Diener der Dunkelheit I, Manipulator I, Wissensgebiet I","Keule (WB+1, Diener der Dunkelheit +III, Zauber: Wolke des Todes eingebettet)",,"bunte Feder (Kraft der Bestie +I, Adlergestalt +I), Kette (Tiergestalt +I, Kraft der Bestie +I), Umhang (Kraft der Bestie +I, Bärengestalt +I)","Fluch (-(GEI+AU)/2), Gehorche (-(GEI+VE)/2+1), Halt (-(KÖR+AU)/2), Magische Waffe (0), Spionage (0), Tarnender Nebel (-2), Terror (-(GEI+VE)/2+1), Tierbeherrschung (-LK/2+1), Totengespräch (0), Verwirren (-(GEI+AU)/2+1)"
Keiler,Dungeonslayers Basisbox,Tiere,,,,,,10,7,1,2,2,0,5,0,0,38,9,7,17,14,7,,,6,no,89,"Natürliche Waffen, Sturmangriff","Hauer (WB+2, GA-1)",Dicke Borstenhaut (PA+2),,
Kerberos,Der verdorbene Baumherr,Magische Wesen,,,,,,14,8,0,6,2,1,2,2,2,78,10,8,20,23,10,,,19,gr,180,"Mehrere Angriffe (+2), Gift, Angst, Dunkelsicht, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)",Biss (WB+3),Wolfspelz (PA+4),,
Kleine Monsterspinne,Dungeonslayers Basisbox,Tiere,,,,,,10,7,1,2,2,0,1,4,0,32,9,7,12,13,12,,,5,no,97,"Kletterläufer, Lähmungseffekt, Natürliche Waffen","Spinnenbiss (WB+1, GA-1), Netzflüssigkeit (WB+1)",Dicke Spinnenhaut (PA+1),,
Kleine Mordmücke,Wolfshatz im Wargenwald,Tiere,,,,,,8,9,1,3,4,0,2,0,0,10,13,5.5,10,13,9,,,5,kl,84,"Fliegen, Nachtsicht, Natürliche Waffen, Sturzangriff, Werteverlust",Blutsaug. Stachel (WB+2),,,
Kleiner Augenball,Schatten über Vestrach,Magische Wesen,,,,,,8,6,8,0,0,2,3,2,2,21,6,4,13,8,8,10,10,9,no,183,"Mehrere Angriffe (+4), Antimagie, Dunkelsicht, Mehrere Angriffsglieder, Schweben, Wesen der Dunkelheit (Settingoption)",,Warzenhaut (PA+2),,"Blenden (-(AGI+AU)/2), Einschläfern (-(KÖR+VE)/2), Kettenblitz (+3), Schleudern (-(KÖR+AU)/2), Schutzfeld (0), Schutzschild (0), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2)"
Kleiner Borstenwurm,Trächtige Wildsau,Tiere,,,,,,12,4,2,1,3,1,2,1,0,72,7,5,16,15,5,,,11,gr,164,"Dunkelsicht, Sonar, Verschlingen","Biss (WB+2, GA-2)",Dicke Borstenhaut (PA+2),,
Kleiner Knochengolem,Das Geheimnis des Knochenbaus,Konstrukte,,,,,,8,9,0,5,4,0,0,0,0,36,13,6,8,15,9,,,7,gr,101,"Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff",Kochenklauen (WB+2),,,
Kobold,Dungeonslayers Basisbox,Humanoide,,,,,,3,6,2,1,1,1,1,2,0,7,7,4,4,5,8,,,1,kl,25,,Keule (WB+1),,,
Komplize,Wolfshatz im Wargenwald,Mensch,Mensch,KRI,2,Talentiert,,8,8,4,4,0,0,3,3,0,21,8,5,12,15,12,,,2,no,54,"Kämpfer II, Wahrnehmung II, Jäger I, Ausweichen I, Raserei I","Axt (WB+1), Speer (WB+1)",Lederpanzer (PA+1),,
Kral der Schreckliche,Das Umbarla-Becken,Mensch,Mensch,BER,12,Talentiert,,8,6,6,7,2,3,6,1,0,30,10,4,19,22,7,,,10,no,77,"Kämpfer III, Raserei III, Brutaler Hieb II, Einstecker II, Standhaft II, Parade I, In Deckung I, Rundumschlag I, Schlachtruf I, Verletzen I","mag. Langschwert +2 (WB+4, INI+2, GA-2, Aderschlitzer +II)","Lederpanzer (PA+1), Holzschild (PA+1), mag. Metallhelm +1 (PA+2, Wahrnehmung +III)",,
Kriegsdämon,Dungeonslayers Basisbox,Magische Wesen,,,,,,15,10,10,7,5,5,7,5,5,160,15,8,24,26,15,,,23,ri,297,"Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Pranke (WB+4, GA-4)",Dämonenhaut (PA+2),,
Kriegselefant,Dungeonslayers Basisbox,Tiere,,,,,,16,6,1,5,2,0,5,0,0,93,8,6.5,23,23,6,,,16,gr,142,"Natürliche Waffen, Sturmangriff",Rammen (WB+2),Dickhäuter (PA+2),,
Kruga,Das Umbarla-Becken,Mensch,Mensch,KRZ,14,Talentiert,,7,5,8,4,0,8,2,6,0,19,7,3.5,11,18,11,8,14,2,no,110,"Feuermagier III, Wissensgebiet III, Ausweichen II, Einbetten II, Wechsler II, Kämpfer I, Gerüstet I, Arkane Explosion I, Standhaft I, Rüstzauberer I, Wissensgebiet I, Zaubermacht I, Zauberwaffe I","mag. Breitschwert +2 (WB+3, INI+2, GA-4, Zauber: Feuerball eingebettet)","Lederpanzer (PA+1, Ausweichen +III), Lederschienen (Arm & Bein) (PA+1, Kämpfer +III)",,"Blenden (-(AGI+AU)/2), Duftnote (0), Feueratem (+6), Feuerball (+6), Feuerlanze (+5), Feuerstrahl (+4), Flammenklinge (+3), Halt (-(KÖR+AU)/2), Heilbeeren (0), Netz (-(AGI+ST)/2), Rost (-Stufe), Schatten (-(AGI+AU)/2), Schleudern (-(KÖR+AU)/2), Telekinese (-1/Stufe x5 kg)"
Krötenhaut,Slay! #3,Untote,,,,,Anführer,8,10,0,4,6,2,6,2,0,48,16,6,16,16,14,,,14,no,356,"Mehrere Angriffe (+3), Dunkelsicht, Kletterläufer, Natürliche Waffen, Schwimmen, Verschlingen, Wesen der Dunkelheit (Settingoption)",Klauen/Zunge (WB+2),Warzenhaut,,
Kultist in Mautmoreen,Slayerforum,Mensch,Mensch,Sch,1,Talentiert,,7,5,8,1,1,2,1,3,3,18,6,3.5,8,10,8,,13,1,no,53,"Bildung I, Diener der Dunkelheit I, Kämpfer I, Wahrnehmung I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1), Kurzschwert (WB+1)",Robe (runenbestickt) (Aura +1),,Feuerstrahl (+1)
Lebende Rüstung,Dungeonslayers Basisbox,Konstrukte,,,,,,10,6,0,4,0,0,4,0,0,24,6,4,19,16,6,,,8,no,72,"Dunkelsicht, Geistesimmun",Langschwert (WB+2),Metallwesen (PA+5),,
Lebende Wurzel,Angriff auf das Wurzelnest,Pflanzenwesen,,,,,,9,8,0,4,2,0,2,0,0,42,10,5.5,11,15,8,,,8,gr,114,"Geistesimmun, Lähmungseffekt, Natürliche Waffen, Umschlingen",Wurzelhiebe (WB+2),,,
Lehrling in Aenk`Mator,Slayerforum,Mensch,Mensch,Zau,1,Talentiert,,6,6,8,0,0,5,1,2,3,17,6,4,7,6,8,11,,1,no,50,"Bildung II, Alchemie I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I",,Robe (runenbestickt) (Aura +1),,Magie identifizieren (0)
Leichnam,Dungeonslayers Basisbox,Untote,,,,,,7,6,9,17,0,8,21,4,8,38,6,4,31,24,10,17,13,15,no,200,"Angst, Dunkelsicht, Geistesimmun, Totenkraft, Wesen der Dunkelheit (Settingoption)",,mag. Robe +3 (PA+3),,"Arkanes Schwert (0), Ebenentor (-8), Einschläfern (-(KÖR+VE)/2), Flammeninferno (+5), Frostschock (+3), Gasgestalt (0), Gehorche (-(GEI+VE)/2), Kontrollieren (-(GEI+AU)/2), Magisches Schloss (0), Netz (-(AGI+ST)/2), Schatten (-(AGI+AU)/2), Schatten erwecken (0), Schattenlanze (+5), Skelette erwecken (0), Springen (0), Stolpern (-(AGI+AU)/2), Trugbild (-2), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2), Wandöffnung (0), Wolke des Todes (-4), Zeitstop (-5)"
Lios,SC2GO,Elf,Elf,Hei,1,"Nachtsicht, Unsterblich, Leichtfüßig",,4,8,8,0,0,2,3,0,6,17,9,5,7,6,9,15,,1,no,54,Ausweichen I,"Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)",Robe (runenbestickt) (Aura +1),,Heilende Hand (+1)
Lord Dammenhall,D2GO #20,Untote,,,,,Episch,12,8,6,16,2,2,16,2,2,380,11,5,40,38,10,,,51,no,1130,"Angst, Alterung, Geistesimmun, Totenkraft, Wesen der Dunkelheit (Settingoption)","mag. Bihänder (2h) +3 (WB+6, INI+1, GA-7)","mag. Plattenpanzer +3 (PA+6), mag. Metallhelm +1 (PA+2)",,
Lufrelementardiener,Der Turm des Sturmrufers,Magische Wesen,,,,,,5,5,2,2,0,2,2,1,0,9,5,3.5,15,8,7,,,1,kl,53,"Anfällig, Fliegen",Luftstoß (WB+1),Keine feste Gestalt (PA+8),,
Luftdämon I,Die Luftschiffe der Vestrach-Flotte,Magische Wesen,,,,,,7,8,6,5,3,3,3,3,3,20,11,5,14,14,13,,,6,no,106,"Anfällig, Dunkelsicht, Fliegen, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Klauen (WB+2, GA-1), Luftstoß (WB+2)",Keine feste Gestalt (PA+4),,
Luftdämon II,Die Luftschiffe der Vestrach-Flotte,Magische Wesen,,,,,,9,9,8,6,6,6,5,5,5,48,15,6,18,18,16,,,12,gr,153,"Anfällig, Dunkelsicht, Fliegen, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Klauen (WB+3, GA-2), Luftstoß (WB+2)",Keine feste Gestalt (PA+4),,
Luftdämon III,Die Luftschiffe der Vestrach-Flotte,Magische Wesen,,,,,,12,10,10,7,5,5,8,8,8,150,15,8,24,23,22,,,22,ri,272,"Anfällig, Dunkelsicht, Fliegen, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Klauen (WB+4, GA-3), Luftstoß (WB+4)",Keine feste Gestalt (PA+4),,
Luftelementar I,Dungeonslayers Basisbox,Magische Wesen,,,,,,6,8,1,2,0,0,3,3,0,10,8,5,17,9,12,,,4,kl,68,"Anfällig, Fliegen, Körperlos",Luftstoß (WB+1),Keine feste Gestalt (PA+8),,
Luftelementar II,Dungeonslayers Basisbox,Magische Wesen,,,,,,10,9,1,2,0,0,5,3,0,25,9,5.5,23,14,14,,,9,no,92,"Anfällig, Fliegen, Körperlos",Luftstoß (WB+2),Keine feste Gestalt (PA+8),,
Luftelementar III,Dungeonslayers Basisbox,Magische Wesen,,,,,,15,9,1,2,0,0,7,4,0,64,9,6,30,21,17,,,16,gr,143,"Anfällig, Fliegen, Körperlos",Luftstoß (WB+4),Keine feste Gestalt (PA+8),,
Luftelementarbote,Valen Coladris,Magische Wesen,,,,,,2,5,1,0,3,0,2,1,0,4,8,3.5,12,2,6,,,1,wi,41,"Anfällig, Fliegen",Luftstoß,Keine feste Gestalt (PA+8),,
Lydenia,Das Volk der Sturmelfen,Elf,Elf,Zau,1,"Nachtsicht, Unsterblich, Zielsicher",,6,6,8,0,0,3,2,3,2,18,6,4,8,7,10,,14,1,no,52,"Blitzmacher I, Wissensgebiet I, Wissensgebiet I, Zaubermacht I","Kampfstab (2h) (WB+1, Zielzauber +1)",,,Schock (+1)
Mammut,Das Umbarla-Becken,Tiere,,,,,,17,7,1,6,1,0,5,0,0,96,8,7.5,24,26,7,,,19,gr,168,"Natürliche Waffen, Sturmangriff, Umschlingen","Stoßzähne (WB+3, GA-1)",Fell (PA+2),,
Mardossani Kavalier,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,6,6,3,2,2,1,0,2,19,10,4,11,13,6,,,1,no,51,"Charmant I, Kämpfer I, Parade I, Schlitzohr I, Waffenkenner I, Wissensgebiet I","Degen (WB+1, INI+2)",Lederpanzer (PA+1),Maske (Glückspilz +I),
Maskentänzerin,Slayerforum,Mensch,Mensch,Zau,1,Talentiert,,4,8,8,0,2,2,0,2,4,14,12,6,4,4,10,12,,1,no,46,"Akrobat I, Charmant I, Flink I, Schnelle Reflexe I, Wissensgebiet I, Wissensgebiet I",Wurfmesser,,,Zaubertrick (0)
Medusa,Dungeonslayers Basisbox,Magische Wesen,,,,,,11,6,7,3,0,2,3,2,2,36,6,6,15,16,8,,,18,no,205,"Mehrere Angriffe (+5), Blickangriff, Schleudern, Versteinern",Klauen/Schlangen (WB+2),Schuppen (PA+1),,
Mega-Skelett,Die Pyramide des Eck Wan,Untote,,,,,Episch,10,6,4,8,2,0,2,2,4,440,8,4.5,18,23,8,,,34,gr,1088,"Mehrere Angriffe (+3), Geistesimmun, Mehrere Angriffsglieder (+3), Wesen der Dunkelheit (Settingoption), Zerstampfen",Fäulnispranke (WB+1),Merkt nichts (PA+2),,
Meister Schnarkel,Der Kult des Snarrk'Izz,Rattling,Rattling,Zau,5,"Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen",,6,6,8,0,0,2,1,2,6,17,8,4,7,9,8,14,12,1,no,55,"Bildung III, Runenkunde II, Wissensgebiet II, Heimlichkeit I, Wahrnehmung I, Wissensgebiet I","mag. Kampfstab (2h) +2 (WB+3, INI+2, GA-2, Zielzauber +1, Zielzauber +1)",Robe,Amulett (Wahrnehmung +II),"Blenden (-(AGI+AU)/2), Flackern (-2), Lauschen (-1/10m), Magie entdecken (0), Magie identifizieren (0), Magisches Schloss (0), Öffnen (-SW)"
Menschensklave,Trächtige Wildsau,Mensch,Mensch,SPÄ,1,Talentiert,,7,7,6,2,2,1,2,2,1,19,6,4.5,9,10,9,,,1,no,50,,"Werkzeug (WB+1, INI-3)",Lumpen,,
Minderer Leichnam,Slay! #3,Untote,,,,,,6,6,9,0,0,6,2,4,7,18,6,4,10,11,10,16,18,9,no,153,"Dunkelsicht, Geistesimmun, Lähmungseffekt, Magische Aufladung, Wesen der Dunkelheit (Settingoption)",Lähmende Berührung (WB+5),mag. Robe +2 (PA+2),,"Arkanes Schwert (0), Botschaft (0), Durchlässig (-4), Dämonen beschwören (-(KÖR+AU)+BB), Feuerball (+3), Feuerwand (-2), Flackern (-2), Fliegen (0), Gehorche (-(GEI+VE)/2), Kettenblitz (+3), Kontrollieren (-(GEI+AU)/2), Magie bannen (-Stufe od. -LK/2), Magie entdecken (0), Magie identifizieren (0), Schatten erwecken (0), Schattenlanze (+5), Spionage (0), Telekinese (-1/Stufe x5 kg), Teleport (-1/Begleiter), Terror (-(GEI+VE)/2), Totengespräch (0), Unsichtbarkeit (0), Volksgestalt (-4), Zombies erwecken (0)"
Minotaurus,Dungeonslayers Basisbox,Humanoide,,,,,,14,6,4,4,2,1,3,1,1,54,8,4.5,18,20,7,,,12,gr,138,"Sturmangriff, Zerstampfen","Massive Keule, Horn oder Huf (WB+2, GA-2)",Fell (PA+1),,
Mokaner Fährtenleser,Slayerforum,Mensch,Mensch,SPÄ,1,Talentiert,,7,8,5,1,2,1,2,4,0,19,11,5,10,9,14,,,1,no,52,"Heimlichkeit I, Jäger I, Sattelschütze I, Schütze I, Wahrnehmung I","Kurzbogen (2h) (WB+1, INI+1), Speer (WB+1)",Lederpanzer (PA+1),,
Monsterspinne,Dungeonslayers Basisbox,Tiere,,,,,,12,9,1,3,2,0,2,4,0,72,11,9,15,17,15,,,11,gr,145,"Kletterläufer, Lähmungseffekt, Natürliche Waffen","Spinnenbiss (WB+2, GA-2), Netzflüssigkeit (WB+2)",Dicke Spinnenhaut (PA+1),,
Morg Bulgash,Das Umbarla-Becken,Mensch,Mensch,KRI,13,Talentiert,,8,7,5,8,1,1,8,1,0,26,12,5,27,23,8,,,15,no,98,"Ausweichen III, Brutaler Hieb III, Kämpfer III, Verletzen III, Sensenspötter II, Magieresistent I, Waffenkenner I, Wissensgebiet I","mag. Breitschwert +2 (WB+3, INI+2, GA-4)","mag. Plattenpanzer +1 (PA+4, LA-0.5, Parade +I), mag. Plattenbeinschienen +1 (PA+2, Flink +I), mag. Plattenarmschienen +1 (PA+2, Kämpfer +I), mag. Metallhelm +1 (PA+2, Schnelle Reflexe +I)",,
"Mudaks, die Grünhaut",Slay! #1,Humanoide,,,,,,5,7,3,3,2,2,1,2,0,8,11,4.5,8,9,9,,,1,kl,45,"Ausweichen I, Kämpfer I, Nachtsicht, Wesen der Dunkelheit (Settingoption)","Mudaks Schlitzer (INI+1, Glückspilz +I)","Mudaks Schuppen (PA+1, Schnelle Reflexe +I), Mudaks Schädel (PA+1, INI-1)",,
Mumie,Dungeonslayers Basisbox,Untote,,,,,,12,4,4,10,0,0,10,0,2,32,4,3,23,23,4,,,18,no,133,"Angst, Anfällig, Dunkelsicht, Geistesimmun, Natürliche Waffen, Totenkraft, Werteverlust, Wesen der Dunkelheit (Settingoption)",Fäulnispranke (WB+1),Bandagen (PA+1),,
Mutierte Riesenratte,D2GO #5,Tiere,,,,,,12,18,2,3,9,1,3,0,0,50,27,10.5,15,19,18,,,7,gr,102,,Spitze Zähne (WB+4),,,
Nafuri Söldner,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,5,3,0,2,0,0,20,11,5,12,15,8,,,2,no,53,"Zwei Waffen III, Parade I, Wahrnehmung I","Krummschwert (WB+2), Krummschwert (WB+2)",Lederpanzer (PA+1),,
Nancor der Bärenwüter,Das Umbarla-Becken,Mensch,Mensch,KRI,9,Talentiert,,8,6,6,8,1,0,7,0,2,34,1,4,18,23,6,,,11,no,119,"Brutaler Hieb III, Einstecker III, Kämpfer III, Jäger I, Prügler I, Standhaft I, Wissensgebiet I","Schlachtbeil (2h) (WB+4, INI-6, GA-4, Raserei +I, Schlachtruf +I, Rundumschlag +I)",mag. Kettenpanzer +1 (PA+3),,
Narrländer Alchemist,Slayerforum,Gnom,Gnom,Zau,1,"Dunkelsicht, Klein, Langlebig, Magisch begabt, Zäh, Zäher als sie aussehen",,5,7,8,0,0,3,0,4,4,15,7,4.5,6,6,11,13,,1,kl,49,"Alchemie I, Glückspilz I, Runenkunde I, Wahrnehmung I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Magie entdecken (0)
Nekrolyth,Slay! #3,Untote,,,,,,6,6,8,0,1,5,2,5,6,18,7,4,8,7,11,14,16,3,no,94,"Dunkelsicht, Geistesimmun, Wesen der Dunkelheit (Settingoption)","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,"Flackern (-2), Fluch (-(GEI+AU)/2), Kleiner Terror (-(GEI+VE)/2), Kontrollieren (-(GEI+AU)/2), Magie entdecken (0), Magische Waffe (0), Schatten (-(AGI+AU)/2), Schattenpfeil (+2), Schweben (0), Skelette erwecken (0), Spionage (0), Volksgestalt (-4), Öffnen (-SW)"
Nico Mavelli,Das Geschenk der Eiskönigin,Mensch,Mensch,BLU,17,Talentiert,Heroisch,7,5,8,3,0,5,6,5,10,130,8,4.5,18,16,10,18,17,11,no,436,"Einstecker III, Blutschild II, Einbetten II, Diener der Dunkelheit II, Kämpfer II, Ritual der Narben II, Zaubermacht II, Feuermagier I, Alchemie I, Blutige Heilung I, Macht des Blutes I, Flink I, Wechsler I, Wissensgebiet I","mag. Keule +3 (WB+4, INI+3, GA-3)","mag. Robe (runenbestickt) +1 (PA+1, Aura +1)","Halskrause des Leids (Aura +2, Zauberqual +III), Kette des Leids (Zielzauber +2, Einstecker +II), Mantel der Leids (Verstand +1, Schmerzhafter Wechsel +I), Ring (Abklingzeit aller Zauber des Trägers verkürzt um 1 Runden), Ring (Abwehr +2), Scherpe des Leid (Körperexplosion +2, Stärke +2, Zauber: Körperexplosion eingebettet), Stab (Zauber: Schattenpfeil als Zauberstab)","Blut kochen (-(KÖR+AU)/2), Erdspalt (-4), Feueratem (+4), Feuerstrahl (+2), Flackern (-2), Fluch (-(GEI+AU)/2), Gehorche (-(GEI+VE)/2), Halt (-(KÖR+AU)/2), Lauschen (-1/10m), Magische Waffe (0), Magisches Schloss (0), Schatten (-(AGI+AU)/2), Schattenpfeil (+2), Schutzschild (0), Schweig (-(GEI+AU)/2), Tarnender Nebel (-2), Terror (-(GEI+VE)/2), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2), Volksgestalt (-4), Wahnsinn (-(GEI+AU)/2), Wolke des Todes (-4)"
Niederer Dämon,Dungeonslayers Basisbox,Magische Wesen,,,,,,5,5,5,2,2,2,2,2,2,9,7,3.5,9,8,7,,,1,kl,71,"Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Pranke (WB+1, GA-1)",Dämonenhaut (PA+2),,
Nordeker Ritter,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,6,6,5,0,0,3,0,2,21,6,4,15,16,6,,,5,no,75,"Kämpfer II, Brutaler Hieb I, Parade I, Wahrnehmung I","Breitschwert (WB+1, GA-2)","Holzschild (PA+1), Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)",,
Oger,Dungeonslayers Basisbox,Humanoide,,,,,,12,4,2,3,2,1,3,0,0,50,6,3.5,16,17,4,,,9,gr,120,"Nachtsicht, Umschlingen, Wesen der Dunkelheit (Settingoption)","Massive Keule (WB+2, GA-2)",Felle (PA+1),,
Ork,Dungeonslayers Basisbox,Humanoide,,,,,,10,6,2,2,0,1,3,3,0,23,6,4,14,13,10,,,2,no,63,"Nachtsicht, Wesen der Dunkelheit (Settingoption)",Speer (WB+1),Lederpanzer (PA+1),,
Orkräuber,Dungeonslayers Basisbox,Humanoide,,,,,,12,6,2,3,0,1,3,3,0,25,7,4,17,17,10,,,5,no,70,"Nachtsicht, Wesen der Dunkelheit (Settingoption)","Krummschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)","Lederpanzer (PA+1), Holzschild (PA+1)",,
Pfeilsporenpilz,Trächtige Wildsau,Pflanzenwesen,,,,,,2,3,1,0,0,0,2,5,0,4,3,2.5,4,2,9,,,1,wi,38,"Gift, Sonar",Pfeilsporen (WB+1),,,
Pferd,Dungeonslayers Basisbox,Tiere,,,,,,10,11,1,2,7,0,2,0,0,66,18,10.5,12,14,11,,,4,gr,101,Natürliche Waffen,Huf (WB+2),,,
Phantomhexer,Slay! #3,Untote,,,,,,6,6,9,0,3,6,0,6,7,16,9,4,14,8,12,16,20,9,no,177,"Alterung, Dunkelsicht, Fliegen, Geistesimmun, Wesen der Dunkelheit (Settingoption)","Geisterklaue (WB+2, GA-2)",Körperlos (PA+8),,"Arkanes Schwert (0), Blitz (+3), Blut kochen (-(KÖR+AU)/2), Fluch (-(GEI+AU)/2), Kettenblitz (+3), Magie bannen (-Stufe od. -LK/2), Magie entdecken (0), Netz (-(AGI+ST)/2), Schatten (-(AGI+AU)/2), Schattenlanze (+5), Telekinese (-1/Stufe x5 kg), Teleport (-1/Begleiter), Terror (-(GEI+VE)/2), Trugbild (-2), Unsichtbares sehen (0), Versetzen (0)"
Pony,Dungeonslayers Basisbox,Tiere,,,,,,9,8,1,2,5,0,2,0,0,63,13,8,11,13,8,,,3,gr,92,Natürliche Waffen,Huf (WB+2),,,
Ratte,Dungeonslayers Basisbox,Tiere,,,,,,2,4,1,1,2,0,0,0,0,3,6,3,2,4,4,,,1,wi,26,"Dunkelsicht, Natürliche Waffen, Schwimmen",Spitze Zähne (WB+1),,,
Rattenkönig,Slay! #2,Magische Wesen,,,,,,12,6,10,3,2,5,4,2,8,78,8,6.5,18,17,8,,,25,gr,296,"Mehrere Angriffe (+9), Bezaubern, Dunkelsicht, Natürliche Waffen, Regeneration, Schwimmen, Wesen der Dunkelheit (Settingoption)",Spitze Zähne (WB+2),Dicke Borstenhaut (PA+2),,
Rattenkönig Schnabbler,Der Kult des Snarrk'Izz,Mensch,Mensch,KRI,7,Talentiert,,8,7,5,11,2,0,6,0,0,30,9,4,16,23,7,,,9,no,92,"Kämpfer III, Brutaler Hieb II, Einstecker II, Raserei I, Reiten I, Schwimmen I, Wissensgebiet I","Breitschwert (WB+1, GA-2)","Kettenpanzer (PA+2, LA-0.5)",Gürtel (Stärke +3),
Rattenoger,Slay! #2,Humanoide,,,,,,11,6,3,5,2,1,3,1,0,48,8,4.5,15,18,7,,,11,gr,142,"Mehrere Angriffe (+1), Dunkelsicht, Natürliche Waffen, Schwimmen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Krallen (WB+2, GA-2), Spitze Zähne (WB+2, GA-2)",Fell (PA+1),,
Rattling,Slay! #2,Rattling,Rattling,SPÄ,1,"Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen",,6,8,6,0,4,1,2,3,0,18,13,6,9,6,11,,,1,kl,49,"Fieser Schuss I, Flink I, Heimlichkeit I, Schwimmen I, Wahrnehmung I","Schleuder, Dolch (INI+1)",Lumpen (PA+1),,
Rattling Giftzauberer,Slay! #2,Rattling,Rattling,Sch,6,"Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen",,5,7,8,0,1,3,1,6,5,19,8,4.5,6,6,13,13,15,1,kl,71,"Alchemie II, Feuermagier II, Ausweichen I, Einstecker I, Heimlichkeit I, Schwimmen I, Wahrnehmung I, Zaubermacht I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,"Feuerstrahl (+3), Kontrollieren (-(GEI+AU)/2), Schatten (-(AGI+AU)/2), Skelette erwecken (0), Tarnender Nebel (-2), Verwirren (-(GEI+AU)/2)"
Rattling Kriegshäuptling,Slay! #2,Rattling,Rattling,KRI,10,"Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen",,7,8,5,5,3,1,6,1,0,32,11,6.5,19,17,10,,,5,kl,75,"Einstecker III, Kämpfer III, Ausweichen II, Flink II, Brutaler Hieb II, Parade II, Wissensgebiet II, Heimlichkeit I, Hinterhältiger Angriff I, Schwimmen I, Wahrnehmung I","Kurzbogen (2h) (WB+1, INI+1), mag. Krummsäbel +1 (WB+2, INI+1, GA-1)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Lederschienen (Arm & Bein) (PA+1)",,
Rattling Seuchenpriester,Slay! #2,Rattling,Rattling,Hei,6,"Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen",,7,5,8,0,0,4,2,1,8,25,5,3.5,9,8,6,16,10,1,kl,73,"Alchemie II, Einstecker II, Wissensgebiet II, Fürsorger I, Ausweichen I, Schwimmen I, Heimlichkeit I, Wahrnehmung I, Zaubermacht I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,"Blenden (-(AGI+AU)/2), Einschläfern (-(KÖR+VE)/2), Giftbann (0), Giftschutz (+1), Heilende Hand (+2), Magie entdecken (0), Netz (-(AGI+ST)/2), Rost (-Stufe), Segen (0), Tiere besänftigen (-LK/5), Vertreiben (-(KÖR+AU)/2)"
Raubkatze,Dungeonslayers Basisbox,Tiere,,,,,,7,10,1,3,5,0,1,0,0,27,15,9,9,12,10,,,3,no,84,"Mehrere Angriffe (+1), Nachtsicht, Natürliche Waffen","Pranke/Biss (WB+2, GA-1)",Fell (PA+1),,
Reitkeiler,Dungeonslayers Basisbox,Tiere,,,,,,9,9,1,2,2,0,4,0,0,35,11,8.5,15,13,9,,,5,no,86,"Natürliche Waffen, Sturmangriff","Hauer (WB+2, GA-1)",Dicke Borstenhaut (PA+2),,
Rekrut der Reiter der Morgenröte,Slayerforum,Halbling,Halbling,KRI,1,"Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen",,8,8,4,6,2,0,2,0,0,20,12,5,11,16,8,,,3,kl,51,"Reiten II, Parade I, Kämpfer I, Waffenkenner I",Krummsäbel (WB+1),,,
Remnaton,D2GO #7,Untote,,,,,Episch,12,12,12,3,3,3,3,3,3,250,15,7,19,25,20,,,33,no,852,"Mehrere Angriffe (+1), Anfällig, Geistesimmun, Odem, Totenkraft, Werteverlust","Fäulnispranke (WB+6, GA-6), Sandstrahlodem (WB+5)",,,
Riese,Dungeonslayers Basisbox,Humanoide,,,,,,27,6,2,7,3,1,7,0,0,220,9,6,35,38,10,,,29,ri,347,"Umschlingen, Zerstampfen","Baumstamm (WB+4, GA-4), Geworf. Fels (WB+4, GA-4)",Felle (PA+1),,
Riesenaffe,D2GO #4,Tiere,,,,,,12,12,0,4,4,0,2,2,0,48,16,7.5,15,18,14,,,8,gr,97,Kletterläufer,Pranke (WB+2),Dickhäuter (PA+1),,
Riesenechse,Dungeonslayers Basisbox,Tiere,,,,,,15,12,1,5,5,0,4,0,0,218,17,12.5,21,24,12,,,25,ri,316,"Kletterläufer, Nachtsicht, Natürliche Waffen, Sturmangriff, Verschlingen",Grausamer Biss (WB+4),Schuppenpanzer (PA+2),,
Riesenkrake,Dungeonslayers Basisbox,Tiere,,,,,,22,10,1,5,8,0,4,0,0,270,18,11,26,29,10,,,35,ri,397,"Mehrere Angriffe (+5), Mehrere Angriffsglieder, Natürliche Waffen, Schwimmen, Umschlingen",Fangarme (WB+2),,,
Riesenpterodactylus,Die Insel der Stürme,Tiere,,,,,,14,16,2,3,6,0,4,3,0,140,22,11,20,21,19,,,22,ri,264,"Angst, Anfällig, Fliegen, Natürliche Waffen, Sturzangriff, Verschlingen",Grausamer Schnabel (WB+4),Schuppenpanzer (PA+2),,
Riesenratte,Dungeonslayers Basisbox,Tiere,,,,,,4,6,1,2,2,0,1,0,0,11,8,6,5,8,6,,,1,kl,41,"Dunkelsicht, Natürliche Waffen, Schwimmen",Spitze Zähne (WB+2),,,
Riesenschlange,Dungeonslayers Basisbox,Tiere,,,,,,9,12,1,5,3,0,3,0,0,66,15,11,14,16,12,,,8,gr,143,"Gift, Natürliche Waffen, Umschlingen","Großer Biss (WB+2, GA-2)",Schuppenpanzer (PA+2),,
Riesensumpfotter,Das Umbarla-Becken,Tiere,,,,,,12,10,1,6,2,0,3,0,0,188,12,11,17,20,10,,,20,ri,291,"Gift, Lähmungseffekt, Natürliche Waffen, Umschlingen","Biss (WB+2, GA-2)",Schuppenpanzer (PA+2),,
Ritter 01,Beispiele,Mensch,Mensch,KRI,1,Talentiert,,8,6,6,2,0,0,4,0,4,22,7,1,21,13,6,,,6,no,62,"Kämpfer I, Parade I, Reiten I, Schnelle Reflexe I","Langschwert (WB+2), Lanze (WB+1)","Plattenpanzer (PA+3, LA-1), Turmschild (PA+2, LA-1), Plattenbeinschienen (PA+1, LA-0.5), Plattenarmschienen (PA+1, LA-0.5), Metallhelm (PA+1, INI-1)",,
Ritter 04,Beispiele,Mensch,Mensch,KRI,4,Talentiert,,8,6,6,5,0,0,4,0,4,22,9,4,21,18,6,,,8,no,65,"Kämpfer III, Charmant I, Parade I, Reiten I, Schnelle Reflexe I","Langschwert (WB+2), Lanze (WB+1)","Plattenpanzer (PA+3, LA-1), Turmschild (PA+2, LA-1), Plattenbeinschienen (PA+1, LA-0.5), Plattenarmschienen (PA+1, LA-0.5), Metallhelm (PA+1, INI-1, Schnelle Reflexe +I)",Stiefel (Flink +III),
Ritter 08,Beispiele,Mensch,Mensch,KRI,8,Talentiert,,8,6,6,7,0,0,6,0,4,33,12,4,25,23,6,,,13,no,83,"Kämpfer III, Parade III, Reiten II, Charmant I, Brutaler Hieb I, Schnelle Reflexe I","mag. Langschwert +3 (WB+5, INI+3, GA-3), Lanze (WB+1)","Plattenpanzer (PA+3, LA-1, Einstecker +III), Turmschild (PA+2, LA-1), Plattenbeinschienen (PA+1, LA-0.5), Plattenarmschienen (PA+1, LA-0.5), Metallhelm (PA+1, INI-1, Schnelle Reflexe +I)",Stiefel (Flink +III),
Ritter 12,Beispiele,Mensch,Mensch,KRI,12,Talentiert,,8,6,6,9,0,0,8,0,7,35,12,4,27,25,6,,,16,no,92,"Brutaler Hieb III, Kämpfer III, Parade III, Reiten III, Charmant II, Schnelle Reflexe I","mag. Langschwert +3 (WB+5, INI+3, GA-3), Lanze (WB+1)","Plattenpanzer (PA+3, LA-1, Einstecker +III), Turmschild (PA+2, LA-1), Plattenarmschienen (PA+1, LA-0.5), Metallhelm (PA+1, INI-1, Schnelle Reflexe +I), Plattenbeinschienen (PA+1, LA-0.5)","Diadem (Aura +3), Stiefel (Flink +III)",
Ritter Gungart,Slay! #3,Untote,,,,,Heroisch,7,6,9,17,0,8,21,4,8,190,6,4,33,24,10,17,20,23,no,690,"Angst, Geistesimmun, Totenkraft, Wesen der Dunkelheit (Settingoption)",,mag. Robe +3 (PA+3),,"Arkanes Schwert (0), Ebenentor (-8), Einschläfern (-(KÖR+VE)/2), Flammeninferno (+5), Frostschock (+3), Gasgestalt (0), Gehorche (-(GEI+VE)/2), Kontrollieren (-(GEI+AU)/2), Magisches Schloss (0), Netz (-(AGI+ST)/2), Schatten (-(AGI+AU)/2), Schatten erwecken (0), Schattenlanze (+5), Skelette erwecken (0), Springen (0), Stolpern (-(AGI+AU)/2), Trugbild (-2), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2), Wandöffnung (0), Wolke des Todes (-4), Zeitstop (-5)"
Ritter Wilbert,Dungeonslayers Basisbox,Mensch,Mensch,KRI,3,Talentiert,,8,6,6,6,0,0,6,0,0,24,3,3,18,17,6,,,8,no,103,,"Bihänder (2h) (WB+3, INI-2, GA-4)","Plattenpanzer (PA+3, LA-1), Metallhelm (PA+1, INI-1)",,
Rogg (Umbar-Barbar),Avakars Runde,Mensch,Mensch,KRI,6,Talentiert,,8,7,5,8,2,0,5,0,0,32,9,4.5,17,22,7,,,10,no,114,"Brutaler Hieb III, Einstecker III, Magieresistent II, Kämpfer I, Schnelle Reflexe I","mag. Bihänder (2h) +2 (WB+5, GA-6, 1x aktionsfrei Aufstehen), mag. Streithammer (2h) +2 (WB+5, INI-2, GA-2, Brutaler Hieb +III)","Lederpanzer (PA+1, Abwehr +1), Lederschienen (Arm & Bein) (PA+1)",Ring (Abwehr +1),
Rostassel,Dungeonslayers Basisbox,Tiere,,,,,,8,7,1,4,0,0,4,0,0,33,7,7,15,13,7,,,8,no,111,"Mehrere Angriffe (+3), Dunkelsicht, Mehrere Angriffsglieder, Natürliche Waffen, Rost",Tentakelfühler (WB+1),Chitinpanzer (PA+3),,
Ryan Dougal,Slay! #2,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,5,0,0,0,5,0,18,8,5,11,13,13,,,1,no,50,"Brutaler Hieb I, Fieser Schuss I, Parade I, Prügler I","Schlagring, Wurfmesser","Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)",,
Räuber,D2GO #1,Mensch,Mensch,KRI,1,Talentiert,,8,8,2,2,2,1,2,2,0,20,11,5,11,12,11,,,1,no,51,,"Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)",Lederpanzer (PA+1),,
Sanuriel,Valen Coladris,Elf,Elf,Zau,1,"Nachtsicht, Unsterblich, Zielsicher",,6,6,8,0,0,2,2,4,3,18,6,4,8,7,11,,15,1,no,53,"Blitzmacher I, Glückspilz I, Wahrnehmung I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Schock (+1)
Schatten,Dungeonslayers Basisbox,Untote,,,,,,11,11,0,5,0,0,4,2,0,25,11,6.5,23,18,13,,,15,no,136,"Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Wesen der Dunkelheit (Settingoption)","Geisterklaue (WB+2, GA-2)",Körperlos (PA+8),,
Schattenkultist,Die Kinder der Schatten,Mensch,Mensch,KRI,1,Talentiert,,7,7,6,3,1,0,2,2,0,19,8,4.5,9,11,9,,,1,no,48,,Kurzschwert (WB+1),Robe,,
Schattenpriester,Die Kinder der Schatten,Mensch,Mensch,Sch,5,Talentiert,,5,8,7,0,0,5,0,6,2,15,9,5,5,5,14,9,13,1,no,62,,Dolch (INI+1),Robe (runenbestickt) (Aura +1),,"Niesanfall (-(KÖR+AU)/2), Schatten (-(AGI+AU)/2), Schattenpfeil (+2), Skelette erwecken (0), Verwirren (-(GEI+AU)/2)"
Schattenwolf,Wolfshatz im Wargenwald,Tiere,,,,,,9,7,1,3,4,0,2,0,0,32,11,7,14,14,7,,,5,no,88,"Anfällig, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Kräftiger Biss (WB+2, GA-1)",Schattenpelz (PA+3),,
Schimmerross,Dungeonslayers Basisbox,Tiere,,,,,,9,12,1,2,6,0,3,0,0,66,18,11,12,13,12,,,4,gr,106,"Nachtsicht, Natürliche Waffen",Huf (WB+2),,,
Schlachtross,Dungeonslayers Basisbox,Tiere,,,,,,12,10,1,4,4,0,3,0,0,75,14,9.5,15,18,10,,,9,gr,121,"Natürliche Waffen, Sturmangriff",Huf/Rammen (WB+2),,,
Schlingwurzelbusch,Dungeonslayers Basisbox,Pflanzenwesen,,,,,,6,8,0,3,0,0,4,0,0,30,8,7.5,11,11,8,,,8,no,122,"Mehrere Angriffe (+4), Geistesimmun, Natürliche Waffen, Umschlingen",Wurzelhiebe (WB+2),Gehölz (PA+1),,
Schlächter,Slay! #3,Untote,,,,,,10,6,5,8,4,0,8,4,0,28,10,4,21,20,12,,,11,no,124,"Auferstehung, Dunkelsicht, Geistesimmun, Regeneration, Resistenz, Wesen der Dunkelheit (Settingoption)","Machete (WB+2), Langbogen (2h) (WB+2, INI+1)","Merkt nichts (PA+2), Metallhelm (PA+1, INI-1)",,
Schnappaal,Das Geheimnis des Knochenbaus,Tiere,,,,,,9,8,0,4,0,0,4,2,0,12,8,5,13,14,10,,,3,kl,52,"Dunkelsicht, Natürliche Waffen, Schwimmen",Biss (WB+1),,,
Schneeriese,Ein Riesenproblem,Humanoide,,,,,,20,6,2,6,3,1,6,0,0,180,9,6,27,29,9,,,20,ri,276,"Umschlingen, Zerstampfen","Axt (WB+3, GA-2), Geworf. Fels (WB+3, GA-2)",Felle (PA+1),,
Schreckensdachs,Ein Riesenproblem,Tiere,,,,,,14,6,1,4,3,0,3,0,0,41,9,6,18,20,6,,,10,no,100,Nachtsicht,"Pranke (WB+2, GA-2)",Fell (PA+1),,
Sensenmann,Slay! #3,Untote,,,,,,10,7,8,20,3,4,20,5,6,40,9,4.5,38,37,12,14,13,36,no,430,"Angst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Nur durch Magie verletzbar, Resistenz, Totenkraft, Vernichtender Schlag, Wesen der Dunkelheit (Settingoption)","Sense (WB+7, INI-1, GA-7)",Körperlos (PA+8),,"Ebenentor (-8), Geben und Nehmen (0), Halt (-(KÖR+AU)/2), Kontrollieren (-(GEI+AU)/2), Schatten erwecken (0), Skelette erwecken (0), Teleport (-1/Begleiter), Totengespräch (0), Unsichtbares sehen (0), Unsichtbarkeit (0), Verborgenes sehen (0), Verlangsamen (-(KÖR+AU)/2), Versetzen (0), Wiederbelebung (0), Zombies erwecken (0)"
Shekz,Dungeonslayers Basisbox,Humanoide,,,,,,3,5,7,0,0,4,1,2,4,7,5,3.5,5,3,7,11,9,1,kl,49,"Nachtsicht, Wesen der Dunkelheit (Settingoption)",Wurfmesser,Felle (PA+1),,"Einschläfern (-(KÖR+VE)/2), Feuerstrahl (+1)"
Sinda,SC2GO,Mensch,Mensch,SPÄ,1,Talentiert,,7,8,5,3,0,0,2,5,0,22,9,5,10,11,14,,,1,no,55,"Ausweichen I, Einstecker I","Kurzbogen (2h) (WB+1, INI+1), Kurzschwert (WB+1)",Lederpanzer (PA+1),,
Skelett,Dungeonslayers Basisbox,Untote,,,,,,10,8,0,3,2,0,2,2,0,22,10,5,12,14,10,,,4,no,72,"Dunkelsicht, Geistesimmun, Wesen der Dunkelheit (Settingoption)",Kochenklauen (WB+1),,,
Skelettdrache,Slay! #3,Untote,,,,,,15,12,3,8,9,1,7,7,2,480,21,15.5,25,26,19,,,46,ge,685,"Angst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Geistesimmun, Natürliche Waffen, Schleudern, Sturzangriff, Totenkraft, Wesen der Dunkelheit (Settingoption), Zerstampfen","Biss, Klaue oder Schwanzhieb (WB+3, GA-2)",Skelettpanzer (PA+3),,
Skelettkrieger,Slay! #3,Untote,,,,,,8,7,5,6,2,0,4,4,3,22,9,4,15,17,13,,,9,no,115,"Mehrere Angriffe (+1), Dunkelsicht, Geistesimmun, Bezaubern, Resistenz, Wesen der Dunkelheit (Settingoption)","mag. Langschwert +1 (WB+3, INI+1, GA-1), Knochenbogen (WB+2, INI+1)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)",,
Skelettmagier,Slay! #3,Untote,,,,,,6,6,8,2,2,4,2,7,5,18,8,4,9,9,13,13,19,4,no,109,"Dunkelsicht, Geistesimmun, Resistenz, Wesen der Dunkelheit (Settingoption)","Kampfstab (2h) (WB+1, Zielzauber +1)","mag. Robe (runenbestickt) +1 (PA+1, Aura +1)",,"Arkanes Schwert (0), Blitz (+3), Feuerball (+3), Feuerlanze (+2), Flackern (-2), Flammenklinge (0), Halt (-(KÖR+AU)/2), Magische Rüstung (0), Schutzschild (0), Spurt (-2)"
Skelettschütze,Slay! #3,Untote,,,,,,7,8,5,3,4,4,3,6,0,20,15,4.5,13,12,18,,,7,no,103,"Dunkelsicht, Geistesimmun, Resistenz, Wesen der Dunkelheit (Settingoption), Zielen","Knochenbogen (WB+4, INI+3, GA-2), Kochenklauen (WB+2)","Kettenpanzer (PA+2, LA-0.5), Lederschienen (Arm & Bein) (PA+1)",,
Stadtwache in den Freien Landen,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,5,0,0,5,0,0,26,6,5,14,16,8,,,4,no,59,"Einstecker I, Kämpfer I, Verletzen I, Wissensgebiet I","Hellebarde (2h) (WB+2, INI-2)",Lederpanzer (PA+1),,
Sternheider Forscher,Slayerforum,Elf,Elf,SPÄ,1,"Nachtsicht, Unsterblich, Leichtfüßig",,4,8,8,0,1,4,1,4,0,15,10,5,6,4,13,,,1,no,47,"Jäger I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I, Zauber auslösen I","Kurzbogen (2h) (WB+1, INI+1), Dolch (INI+1)",Lederpanzer (PA+1),,
Stig,Ein Riesenproblem,Mensch,Mensch,Hei,5,Talentiert,,6,6,8,0,0,4,4,0,6,20,6,4,12,7,7,14,8,1,no,71,"Fürsorger II, Ausweichen I, Alchemie I, Rüstzauberer I, Zaubermacht I",Speer (WB+1),"Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)",,"Federgleich (0), Giftbann (0), Heilbeeren (+2), Heilende Aura (+2), Heilende Hand (+3), Lichtpfeil (+2), Magische Waffe (0), Schutzschild (+2)"
Stolpervogel,Das Umbarla-Becken,Tiere,,,,,,4,6,3,1,3,0,2,6,3,8,9,4,7,6,12,,9,1,kl,44,,Schnabel (WB+1),Federkleid (PA+1),,Stolpern (-(AGI+AU)/2)
Sturmmeerkatze,Die Insel der Stürme,Tiere,,,,,,2,8,3,0,5,0,0,4,0,9,13,7.5,2,3,13,,,1,kl,43,"Kletterläufer, Natürliche Waffen","Biss (WB+1), Stein (WB+1)",,,
Sturmsegler,Die Insel der Stürme,Tiere,,,,,,3,8,1,1,3,0,0,1,1,7,11,5,4,5,9,,,1,kl,52,"Fliegen, Natürliche Waffen, Sturzangriff",Krallen (WB+1),Federkleid (PA+1),,
Sumpfechse,Das Umbarla-Becken,Tiere,,,,,,9,8,1,3,5,0,4,1,0,69,13,8,15,14,9,,,9,gr,156,"Mehrere Angriffe (+1), Natürliche Waffen, Schleudern, Sturmangriff","Biss (WB+2, GA-2)",Schuppenpanzer (PA+2),,
Säbelzahntiger,Das Umbarla-Becken,Tiere,,,,,,10,10,1,3,6,0,3,0,0,69,16,9.5,14,15,10,,,8,gr,142,"Mehrere Angriffe (+1), Nachtsicht, Natürliche Waffen, Sturmangriff","Pranke/Biss (WB+2, GA-1)",Fell (PA+1),,
Tarc Trepios,Das Umbarla-Becken,Magische Wesen,,,,,,8,7,3,5,3,3,4,0,2,44,10,5,14,15,7,5,,5,gr,159,"Mehrere Angriffe (+1), Geistesimmun, Natürliche Waffen, Sturmangriff","Hörner (WB+2, GA-2), Klauen (WB+1, GA-1)",Schuppenpanzer (PA+2),,Unsichtbarkeit (0)
Tarr-Novize,Wolfshatz im Wargenwald,Mensch,Mensch,KRI,8,Talentiert,,8,8,4,7,1,0,6,0,0,30,4,4,18,20,8,,,9,no,111,"Brutaler Hieb II, Einstecker II, Kämpfer II, Schlachtruf I, Wahrnehmung I, Wissensgebiet I","Schlachtgeißel (WB+3, INI-4, GA-4)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)",,
Tentakelhirn,Dungeonslayers Basisbox,Magische Wesen,,,,,,4,6,1,2,2,0,1,0,0,11,8,6,5,6,6,1,,1,kl,59,"Dunkelsicht, Schweben, Werteverlust",,,,Gedankenzehrerstrahl (nicht sichtbar; verursacht mental Schaden und führt zu Werteverlust) (undefined)
Tigerskelett,Die Goblinarena,Untote,,,,,,8,8,0,4,4,0,2,0,0,30,12,7.5,10,14,8,,,6,no,100,"Mehrere Angriffe (+1), Geistesimmun, Nachtsicht, Wesen der Dunkelheit (Settingoption)","Pranke/Biss (WB+2, GA-1)",,,
Tintenkraken,D2GO #4,Tiere,,,,,,12,6,0,3,3,0,3,0,0,50,9,4.5,15,17,6,,,12,gr,139,Mehrere Angriffe (+5),Fangarme (WB+2),,,
Todesfee,Dungeonslayers Basisbox,Untote,,,,,,6,9,10,19,0,3,19,0,9,35,9,5.5,33,27,9,19,,31,no,287,"Angst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit (Settingoption)","Geisterklaue (WB+2, GA-2)",Körperlos (PA+8),,Wehklagen (ZB: -(KÖR+AU)/2 des Ziels; Abklingzeit: 10 Kampfrunden; Jeder in Umkreis von 9m um die Todesfee erleidet nicht abwehrbaren Schaden in Höhe des Probenergebnisses) (undefined)
Tonkriegergolem,D2GO #17,Konstrukte,,,,,,11,6,3,4,0,2,5,3,0,26,6,4,16,18,9,,,10,no,100,"Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff",Pranke (WB+3),,,
Troll,Dungeonslayers Basisbox,Humanoide,,,,,,16,6,2,4,0,1,4,3,0,60,6,4.5,22,22,13,,,14,gr,182,"Anfällig, Dunkelsicht, Regeneration, Umschlingen, Wesen der Dunkelheit (Settingoption)","Geworf. Fels (WB+4, GA-4), Massive Keule (WB+2, GA-2)",Warzenhaut (PA+2),,
Umbar Barbar,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,6,2,0,2,0,0,23,8,5,12,18,8,,,4,no,58,"Brutaler Hieb I, Einstecker I, Kämpfer I, Rundumschlag I","Streitaxt (2h) (WB+3, INI-2)","Lederschienen (Arm & Bein) (PA+1), Lederpanzer (PA+1)",,
Umbarlageier,Das Umbarla-Becken,Tiere,,,,,,6,9,3,4,3,2,2,3,2,36,12,6,9,12,12,,9,3,gr,131,"Fliegen, Natürliche Waffen, Sturzangriff","Schnabel (WB+2, GA-1)",Federkleid (PA+1),,Kettenblitz (+3)
Untote Mannshand,Slay! #3,Untote,,,,,,4,10,0,2,3,0,2,1,0,4,13,6,6,8,11,,,4,wi,83,"Bodenkampf, Geistesimmun, Kletterläufer, Sonar, Umklammern, Wesen der Dunkelheit (Settingoption)",Kochenklauen (WB+2),,,
Untote Werratte,Das Geheimnis des Knochenbaus,Untote,,,,,,9,9,0,5,2,0,4,2,0,23,11,5.5,13,16,11,,,5,no,73,"Dunkelsicht, Geistesimmun, Natürliche Waffen",Krallen (WB+2),,,
Untoter Goblin,Untote Goblinoide,Untote,,,,,,5,7,0,4,0,0,2,0,0,9,7,4.5,9,11,7,,,1,kl,46,"Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)",Knochenpranke (WB+2),Merkt nichts (PA+2),,
Untoter Oger,Untote Goblinoide,Untote,,,,,,12,4,0,5,0,0,4,0,0,52,4,3.5,18,19,4,,,11,gr,106,"Geistesimmun, Natürliche Waffen, Umschlingen, Wesen der Dunkelheit (Settingoption)",Knochenpranke (WB+2),Merkt nichts (PA+2),,
Untoter Ork,Untote Goblinoide,Untote,,,,,,10,6,0,4,0,0,4,0,0,24,6,4,16,16,6,,,7,no,67,"Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)",Knochenpranke (WB+2),Merkt nichts (PA+2),,
Untoter Priester,Die Pyramide des Eck Wan,Untote,,,,,,4,8,8,0,2,0,2,4,4,16,10,5,8,5,12,12,12,1,no,89,"Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)",Fäulnispranke (WB+1),Merkt nichts (PA+2),,"Kettenblitz (+3), Kleiner Terror (-(GEI+VE)/2), Schattenpfeil (+2)"
Untoter Wächter,Lockruf aus der Finsternis,Untote,,,,,,13,5,0,5,0,0,5,0,0,28,2,3,23,21,5,,,13,no,79,"Geistesimmun, Wesen der Dunkelheit (Settingoption)","Streitaxt (2h) (WB+3, INI-2)","Kettenpanzer (PA+2, LA-0.5), Merkt nichts (PA+2), Metallhelm (PA+1, INI-1)",,
Unwolf,Dungeonslayers Basisbox,Magische Wesen,,,,,,11,8,1,4,2,0,2,2,0,35,10,7.5,14,16,12,,,7,no,104,"Anfällig, Natürliche Waffen, Odem, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Feuerodem (WB+2), Biss (WB+1)",Brennendes Fell (PA+1),,
Vampirfledermaus,Dungeonslayers Basisbox,Tiere,,,,,,5,4,1,3,0,0,2,0,0,4,4,3,7,9,4,,,2,wi,55,"Fliegen, Natürliche Waffen, Sonar, Sturzangriff",Krallen (WB+1),,,
Vandrianischer Minnesänger,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,6,6,4,0,0,3,0,3,21,6,4,13,15,6,,,3,no,54,"Charmant I, Instrument I, Kämpfer I, Parade I, Reiten I, Wissensgebiet I","Langschwert (WB+2), Lanze (WB+1)",Lederpanzer (PA+1),,
Vandrianischer Ordensheiler,Slayerforum,Mensch,Mensch,Hei,1,Talentiert,,8,4,8,0,0,0,4,0,6,22,4,3,16,10,4,15,,3,no,61,"Blocker II, Fürsorger I, Parade I, Rüstzauberer I",Langschwert (WB+2),"Lederpanzer (PA+1), Holzschild (PA+1), Lederschienen (Arm & Bein) (PA+1)",,Heilende Hand (+2)
Vandrianischer Ordensritter,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,4,8,3,0,0,3,0,4,21,3,3.5,16,13,4,,,4,no,67,"Brutaler Hieb I, Diener des Lichts I, Flink I, Parade I, Waffenkenner I","Langschwert (WB+2), Streitkolben (WB+1, GA-1)","Kettenpanzer (PA+2, LA-0.5), Holzschild (PA+1), Metallhelm (PA+1, INI-1)",,
Vandrianischer Waffenknecht,Der schwarze Ritter,Mensch,Mensch,KRI,2,Talentiert,,8,6,6,6,0,0,5,0,0,26,5,3,17,18,6,,,7,no,63,"Kämpfer II, Einstecker I",Langschwert (WB+2),"Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)",,
Vandrianischer Waffenknecht,Der schwarze Ritter,Mensch,Mensch,SPÄ,2,Talentiert,,7,8,5,2,0,0,3,6,0,23,8,4,14,9,19,,,4,no,81,"Schütze II, Einstecker I","Armbrust, schwer (2h) (WB+3, INI-4, GA-2), Dolch (INI+1)","Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)",,
Varissa,Valen Coladris,Elf,Elf,Hei,1,"Nachtsicht, Unsterblich, Magisch begabt",,6,6,8,0,2,3,1,0,5,17,9,4,7,6,6,16,,1,no,52,"Bildung I, Fürsorger I, Instrument I, Wissensgebiet I, Wissensgebiet I",Dolch (INI+1),Robe (runenbestickt) (Aura +1),,Heilende Hand (+2)
Verzauberter Besen,Die Insel der Stürme,Konstrukte,,,,,,3,3,0,2,1,0,0,2,1,7,4,2.5,3,6,5,1,2,1,kl,53,"Dunkelsicht, Geistesimmun, Schweben",Besenstiel (WB+1),,,"Niesanfall (-(KÖR+AU)/2), Reinigen (0), Stolpern (-(AGI+AU)/2), Wolke der Reue (-2)"
Vestracher Einbrecher,Slayerforum,Mensch,Mensch,SPÄ,1,Talentiert,,7,8,5,2,2,1,1,4,0,18,11,5,9,10,13,,,1,no,51,"Akrobat I, Diebeskunst I, Fieser Schuss I, Heimlichkeit I, Schlitzohr I, Wissensgebiet I","Kurzbogen (2h) (WB+1, INI+1), Kurzschwert (WB+1), Wurfmesser",Lederpanzer (PA+1),,
Virgil,Trächtige Wildsau,Zwerg,Zwerg,SPÄ,6,"Dunkelsicht, Langlebig, Zäh",,6,8,6,0,6,2,2,5,0,18,14,5,9,6,16,,,1,no,53,"Heimlichkeit III, Schütze III",Schleuder,Lumpen,,
Vladek Crumm,Avakars Runde,Mensch,Mensch,KRI,6,Talentiert,,8,8,4,8,3,0,4,0,0,22,16,4.5,21,26,8,,,13,no,110,"Kämpfer III, Schnelle Reflexe II, Zwei Waffen II, Brutaler Hieb I, Ausweichen I","mag. Bihänder (2h) +2 (WB+5, GA-6, Kämpfer +II), mag. Kurzschwert +1 (WB+2, INI+1, GA-1)","mag. Plattenpanzer +1 (PA+4, LA-0.5), mag. Metallhelm +1 (PA+2), mag. Lederschienen (Arm & Bein) +1 (PA+2)",Kette (Abwehr +1),
Walküre von Wyndstett,Slayerforum,Mensch,Mensch,KRI,1,Talentiert,,8,8,4,5,3,0,2,0,0,20,12,5,14,15,9,,,2,no,75,"Kämpfer I, Parade I, Schlachtruf I, Schnelle Reflexe I, Wissensgebiet I","Speer (WB+1), Breitschwert (WB+1, GA-2)","Lederpanzer (PA+1), Holzschild (PA+1), Metallhelm (PA+1, INI-1)",,
Wasserelementar I,Dungeonslayers Basisbox,Magische Wesen,,,,,,6,8,1,3,0,0,3,2,0,10,8,5,17,11,12,,,3,kl,60,"Anfällig, Körperlos, Schwimmen",Wasserstrahl (WB+2),Keine feste Gestalt (PA+8),,
Wasserelementar II,Dungeonslayers Basisbox,Magische Wesen,,,,,,11,8,1,4,0,0,3,3,0,24,8,5,22,18,14,,,9,no,83,"Anfällig, Körperlos, Schwimmen",Wasserstrahl (WB+3),Keine feste Gestalt (PA+8),,
Wasserelementar III,Dungeonslayers Basisbox,Magische Wesen,,,,,,15,9,1,5,0,0,6,4,0,62,9,6,29,24,17,,,16,gr,133,"Anfällig, Körperlos, Schwimmen",Wasserstrahl (WB+4),Keine feste Gestalt (PA+8),,
Wegelagerer,Dungeonslayers Basisbox,Mensch,Mensch,KRI,2,Talentiert,,8,8,4,5,0,0,3,3,0,21,9,5,12,14,12,,,2,no,55,,"Kurzschwert (WB+1), Kurzbogen (2h) (WB+1, INI+1)",Lederpanzer (PA+1),,
Werkzeug,Die Pyramide des Eck Wan,Konstrukte,,,,,,10,5,0,4,0,0,4,2,0,12,5,3.5,19,16,7,,,9,kl,69,"Fliegen, Umschlingen",Werkzeug (WB+2),Metallwesen (PA+5),,
Wilder Rattling,Slay! #2,Humanoide,,,,,,7,10,3,3,5,0,4,3,0,21,15,6,12,12,13,,,4,no,86,"Gift, Dunkelsicht, Kletterläufer, Natürliche Waffen","Krallen (WB+2), Biss (WB+2)",Fell (PA+1),,
Wilfried von Eibenhöh,Der schwarze Ritter,Mensch,Mensch,KRI,7,Talentiert,,8,6,6,7,0,0,5,0,4,29,7,1.5,21,20,6,,,10,no,74,"Kämpfer III, Einstecker II, Parade I, Reiten I, Schnelle Reflexe I","Langschwert (WB+2), Lanze (WB+1)","Plattenpanzer (PA+3, LA-1), Metallschild (PA+1, LA-0.5), Metallhelm (PA+1, INI-1), Plattenarmschienen (PA+1, LA-0.5), Plattenbeinschienen (PA+1, LA-0.5)",,
Wolf,Dungeonslayers Basisbox,Tiere,,,,,,8,7,1,3,4,0,1,0,0,29,11,7,10,13,7,,,4,no,81,"Nachtsicht, Natürliche Waffen, Sturmangriff","Großer Biss (WB+2, GA-1)",Wolfspelz (PA+1),,
Wolfbart,Das Geschenk der Eiskönigin,Zwerg,Zwerg,WAM,18,"Dunkelsicht, Langlebig, Zäh",Heroisch,9,4,8,10,2,0,12,5,0,164,12,4,35,26,9,,,26,no,460,"Brutaler Hieb V, Raserei III, Ausweichen II, Schnelle Reflexe II, Rundumschlag I","mag. Streithammer (2h) +2 (WB+5, INI-2, GA-2, Stärke +2, Rundumschlag +I, Zauber: Schleudern eingebettet, Abklingzeit permanent ignorieren)","mag. Plattenpanzer +2 (PA+5, Härte +2, Diener der Dunkelheit +II), mag. Plattenbeinschienen +1 (PA+2), mag. Plattenarmschienen +1 (PA+2), mag. Metallhelm +1 (PA+2)","Fluch des Berserkers (Brutaler Hieb +II, Diener der Dunkelheit +II, Raserei +II, Standhaft +II), Handschuhe der Hammerkunst (Perfektion +III, Schnelle Reflexe +II), Haut des Eiswyrms (Einstecker +III, Diener der Dunkelheit +I), Knochenfußkette (Ausweichen +II, Flink +I)",
Wollnashorn,Das Umbarla-Becken,Tiere,,,,,,11,12,1,6,7,0,4,0,0,75,19,11,16,19,12,,,12,gr,154,"Sturmangriff, Zerstampfen","Horn oder Hufe (WB+2, GA-1)",Fell (PA+1),,
Wyndländischer Schwarzmagier,Slayerforum,Mensch,Mensch,Sch,1,Talentiert,,7,5,8,0,0,2,1,5,3,18,6,3.5,8,7,10,,16,1,no,54,"Feuermagier II, Heimlichkeit I, Tiergestalt I, Wahrnehmung I",Dolch (INI+1),Robe (runenbestickt) (Aura +1),,Feuerstrahl (+3)
Ynnari (Schwester des Waldes),Slayerforum,Elf,Elf,Hei,1,"Nachtsicht, Unsterblich, Leichtfüßig",,8,4,8,0,0,4,2,0,5,20,4,3,10,9,5,13,,1,no,55,"Instrument I, Jäger I, Wahrnehmung I, Wissensgebiet I",Speer (WB+1),Robe (runenbestickt) (Aura +1),,Tiere besänftigen (-LK/5)
Zasarischer Feuermagier,Slayerforum,Mensch,Mensch,Zau,1,Talentiert,,6,6,8,0,0,1,2,4,4,21,6,4,8,7,10,,15,1,no,57,"Bildung I, Einstecker I, Feuermagier I, Zaubermacht I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Feuerstrahl (+2)
Zasarischer Kauffahrer,Slayerforum,Mensch,Mensch,SPÄ,1,Talentiert,,6,8,6,2,2,2,0,4,0,19,11,5,7,8,14,,,1,no,51,"Charmant I, Einstecker I, Schlitzohr I, Schwimmen I, Schütze I, Wissensgebiet I","Kurzbogen (2h) (WB+1, INI+1)",Lederpanzer (PA+1),,
Zasarischer Märchenerzähler,Slayerforum,Mensch,Mensch,Zau,1,Talentiert,,6,6,8,0,0,2,2,0,7,21,6,4,8,7,6,15,,1,no,55,"Charmant I, Einstecker I, Instrument I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I","Kampfstab (2h) (WB+1, Zielzauber +1)",Robe (runenbestickt) (Aura +1),,Zaubertrick (0)
Zombie,Dungeonslayers Basisbox,Untote,,,,,,13,3,0,3,0,0,5,0,0,28,3,2.5,20,18,3,,,10,no,78,"Dunkelsicht, Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)",Fäulnispranke (WB+2),Merkt nichts (PA+2),,
Zombie Sekretärin,Die Kinder der Schatten,Untote,,,,,,13,3,0,3,0,0,5,0,0,28,3,2.5,20,18,3,,,8,no,56,,Fäulnispranke (WB+2),Merkt nichts (PA+2),,
Zombiebär,Slay! #3,Untote,,,,,,14,7,0,4,4,0,4,0,0,84,11,7.5,19,20,7,,,14,gr,165,"Geistesimmun, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Pranke (WB+2, GA-2)",Fell (PA+1),,
Zombiedrache,Slay! #3,Untote,,,,,,20,8,1,8,5,1,10,5,1,600,13,12.5,34,32,17,,,64,ge,907,"Angst, Mehrere Angriffe (+1), Geistesimmun, Dunkelsicht, Natürliche Waffen, Odem, Regeneration, Totenkraft, Verdorrende Aura, Verschlingen, Wesen der Dunkelheit (Settingoption), Zerstampfen","Biss, Klaue, Odem oder Schwanzhieb (WB+4, GA-2)",Verrottender Körper (PA+4),,
Zombiegoblin,Slay! #3,Untote,,,,,,5,7,0,4,0,0,2,0,0,9,7,4.5,9,11,7,,,1,kl,46,"Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)",Knochenpranke (WB+2),Merkt nichts (PA+2),,
Zombiekeiler,Slay! #3,Untote,,,,,,11,7,0,4,2,0,5,0,0,39,9,7,18,17,7,,,10,no,107,"Geistesimmun, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Hauer (WB+2, GA-1)",Dicke Borstenhaut (PA+2),,
Zombieoger,Slay! #3,Untote,,,,,,12,4,0,5,0,0,4,0,0,52,4,3.5,18,19,4,,,11,gr,106,"Geistesimmun, Natürliche Waffen, Umschlingen, Wesen der Dunkelheit (Settingoption)",Knochenpranke (WB+2),Merkt nichts (PA+2),,
Zombieork,Slay! #3,Untote,,,,,,10,6,0,4,0,0,4,0,0,24,6,4,16,16,6,,,7,no,67,"Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)",Knochenpranke (WB+2),Merkt nichts (PA+2),,
Zombieriesenratte,Slay! #3,Untote,,,,,,6,4,0,2,2,0,1,1,0,13,6,4.5,9,10,5,,,2,kl,60,"Dunkelsicht, Geistesimmun, Natürliche Waffen, Schwimmen, Wesen der Dunkelheit (Settingoption)",Spitze Zähne (WB+2),Merkt nichts (PA+2),,
Zombietroll,Slay! #3,Untote,,,,,,16,6,0,6,0,0,5,0,0,62,6,4.5,23,24,6,,,18,gr,157,"Anfällig, Dunkelsicht, Geistesimmun, Natürliche Waffen, Regeneration, Wesen der Dunkelheit (Settingoption)","Knochenpranke (WB+2, GA-2)",Merkt nichts (PA+2),,
Zombiewolf,Slay! #3,Untote,,,,,,10,6,0,4,3,0,1,0,0,32,9,6,12,16,6,,,7,no,99,"Geistesimmun, Nachtsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)","Kräftiger Biss (WB+2, GA-1)",Wolfspelz (PA+1),,
Zwergensklave,Trächtige Wildsau,Zwerg,Zwerg,KRI,1,"Dunkelsicht, Langlebig, Zäh",,8,6,6,2,2,1,2,2,1,20,5,4,11,11,8,,,1,no,51,,"Werkzeug (WB+1, INI-3)",Lumpen,,
Zwergischer Minenarbeiter,Slayerforum,Zwerg,Zwerg,KRI,1,"Dunkelsicht, Langlebig, Zäh",,8,6,6,5,1,0,2,2,0,20,7,4,11,14,8,,,2,no,61,"Handwerk I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I","Hammer (WB+1, GA-1)",,,
1 Name Quelle Gruppe Volk Klasse Stufe Fähigkeiten Upgrade KÖR AGI GEI ST BE VE GE AU Lebenskraft Initiative Laufen Abwehr Schlagen Schiessen Zauber Zielzauber GH GK EP Talente Waffen Panzerung Ausrüstung Zaubersprüche
2 Adler Dungeonslayers Basisbox Tiere 3 8 1 1 3 0 0 1 1 7 11 5 4 5 9 1 kl 52 Fliegen, Natürliche Waffen, Sturzangriff Krallen (WB+1) Federkleid (PA+1)
3 Aensteiner Soldat Slayerforum Mensch Mensch KRI 1 Talentiert 8 8 4 2 2 0 2 4 0 20 11 5 14 12 14 2 no 55 Fieser Schuss I, Kämpfer I, Parade I, Schütze I, Wahrnehmung I Kurzbogen (2h) (WB+1, INI+1), Speer (WB+1) Lederpanzer (PA+1), Holzschild (PA+1), Lederschienen (Arm & Bein) (PA+1)
4 Aensteiner Wilderer Slayerforum Mensch Mensch SPÄ 1 Talentiert 6 8 6 2 1 1 1 5 0 17 10 5 7 8 15 1 no 49 Fieser Schuss I, Heimlichkeit I, Jäger I, Wahrnehmung I, Wissensgebiet I Langbogen (2h) (WB+2, INI+1)
5 Airigh Das Umbarla-Becken Mensch Mensch Zau 7 Talentiert 6 6 8 0 0 6 0 4 6 16 6 4 6 7 10 14 13 1 no 72 Magieresistent III, Feuermagier II, Bildung II, Wechsler II, Zaubermacht II, Runenkunde I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1, Zauber: Teleport eingebettet) Robe (runenbestickt) (Aura +1) Feuerlanze (+4), Feuerstrahl (+3), Flammenklinge (+2), Giftbann (0), Giftschutz (0), Licht (+5), Magie entdecken (0), Magie identifizieren (0), Tiere besänftigen (-LK/5)
6 Akyna SC2GO Mensch Mensch Zau 1 Talentiert 6 6 8 0 0 3 2 3 3 21 6 4 8 7 9 13 1 no 56 Bildung I, Einstecker I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Feuerstrahl (+1)
7 Al-Nuzzran Der verdorbene Baumherr Mensch Mensch DÄM Talentiert 6 6 9 2 8 5 0 0 7 19 14 4 6 8 6 16 9 1 no 100 Diener der Dunkelheit V, Beschwörer III, Zaubermacht III, Verheerer II, Einstecker I, Bändiger I, Meister seiner Klasse I, Feuermagier I Blut kochen (-(KÖR+AU)/2), Dämonen beschwören (-(KÖR+AU)+BB), Ebenentor (-8), Erdspalt (-4), Feuerstrahl (+2), Flammeninferno (+6), Halt (-(KÖR+AU)/2), Kontrollieren (-(GEI+AU)/2), Schattenlanze (+5), Schattenpfeil (+2), Trugbild (-2), Versetzte Stimme (-1/10m), Wächter (0), Zaubertrick (0), Zombies erwecken (0)
8 Alligator Dungeonslayers Basisbox Tiere 12 10 1 2 5 0 4 0 0 78 15 9.5 18 16 10 10 gr 151 Natürliche Waffen, Schwimmen, Sturmangriff Großer Biss (WB+2, GA-2) Schuppenpanzer (PA+2)
9 Anarioth 'Der Sturmrufer' Das Volk der Sturmelfen Elf Elf Zau 1 Nachtsicht, Unsterblich, Zielsicher 5 7 8 0 0 2 0 5 4 15 7 4.5 5 6 13 16 1 no 50 Blitzmacher I, Freie Talentpunkte I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Schock (+1)
10 Angischer Clanskrieger Slayerforum Mensch Mensch KRI 1 Talentiert 8 8 4 5 2 0 3 0 0 21 8 5 12 17 8 4 no 94 Brutaler Hieb I, Kämpfer I, Parade I, Prügler I, Standhaft I Bihänder (2h) (WB+3, INI-2, GA-4)
11 Ankmatur Dungeonslayers Basisbox Mensch Mensch NEK 10 Talentiert 4 8 8 0 0 6 4 2 5 18 9 5 10 7 10 13 10 1 no 83 mag. Langschwert +1 (WB+3, INI+1, GA-1) mag. Robe +2 (PA+2) Feuerball (+3), Kontrollieren (-(GEI+AU)/2), Schattenpfeil (+2), Skelette erwecken (0), Terror (-(GEI+VE)/2), Totengespräch (0), Verwirren (-(GEI+AU)/2), Zombies erwecken (0), Öffnen (-SW)
12 Apokalpytischer Reiter der Pestilenz Slay! #3 Untote Anführer 12 15 10 5 7 5 5 7 5 108 22 9 22 23 22 17 gr 462 Wesen der Dunkelheit (Settingoption) Peitsche (WB+4, GA-4) Umhang (PA+3)
13 Apokalpytischer Reiter des Hungers Slay! #3 Untote Anführer 15 10 10 7 5 5 7 5 5 128 15 6.5 26 28 15 22 gr 476 Wesen der Dunkelheit (Settingoption) Flegel (WB+4, GA-3) Dicke Haut (PA+2)
14 Apokalpytischer Reiter des Kriegs Slay! #3 Untote Anführer 20 8 10 7 5 5 10 3 5 160 12 4 37 33 11 32 gr 654 Wesen der Dunkelheit (Settingoption) Kriegsaxt (WB+4, GA-8) Plattenpanzer (PA+3, LA-1), Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)
15 Apokalpytischer Reiter des Todes Slay! #3 Untote Anführer 12 12 12 6 6 6 6 6 6 112 18 7.5 22 25 18 18 gr 452 Wesen der Dunkelheit (Settingoption) Sense (WB+5, GA-3) Dicke Haut (PA+2)
16 Apokalpytisches Ross Slay! #3 Tiere 12 10 2 4 4 0 3 0 0 75 14 9.5 15 18 10 13 gr 162 Angst, Fliegen, Geistesimmun, Wesen der Dunkelheit (Settingoption) Huf (WB+2)
17 Arbeiter Lockruf aus der Finsternis Mensch Mensch KRI 1 Talentiert 8 7 5 5 1 0 3 1 0 21 8 4.5 11 15 8 2 no 53 Werkzeug (WB+2)
18 Arcuna Das Umbarla-Becken Mensch Mensch Hei 2 Talentiert 5 7 8 0 0 3 0 4 5 15 7 4.5 5 5 11 13 1 no 50 Alchemie II, Fürsorger I, Magieresistent I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I Kette (Gift trotzen +3), Stab (Aura +1, Zauber: Wolke der Reue eingebettet) Giftschutz (+1), Heilbeeren (+1), Tiere besänftigen (-LK/5)
19 Arken Beijl D2GO #6 Mensch Mensch DÄM 15 Talentiert 4 6 8 0 1 7 4 4 8 27 8 4 10 6 10 16 14 1 no 108 Einstecker III, Zaubermacht III, Verheerer II, Abklingen I mag. Kampfstab (2h) +1 (WB+2, INI+1, GA-1, Zielzauber +1, Zielzauber +1) mag. Robe (runenbestickt) +2 (PA+2, Verstand +1, Aura +1) Ring (Zauber: Versetzen eingebettet, Abklingzeit 3x täglich ignorieren), Stab (Zauber: Feuerball als Zauberstab) Feuerball (+3), Feuerlanze (+2), Flammeninferno (+5), Fliegen (0), Glühender Glaube (-2), Niesanfall (-(KÖR+AU)/2), Schutzschild (0), Terror (-(GEI+VE)/2)
20 Ascheelf Krieger Slayerforum Elf Elf KRI 1 Nachtsicht, Unsterblich, Leichtfüßig 8 6 6 2 2 2 2 2 0 20 9 3 12 13 8 1 no 54 Diener der Dunkelheit II, Wissensgebiet II, Kämpfer I Langschwert (WB+2), Dolch (INI+1) Plattenarmschienen (PA+1, LA-0.5), Plattenbeinschienen (PA+1, LA-0.5)
21 Ascheelf Rächer Slayerforum Elf Elf Sch 1 Nachtsicht, Unsterblich, Leichtfüßig 6 6 8 2 2 2 2 2 1 18 9 4 8 9 8 12 1 no 53 Diener der Dunkelheit II, Wissensgebiet II, Manipulator I, Zaubermacht I Kampfstab (2h) (WB+1, Zielzauber +1), Dolch (INI+1) Robe Feuerstrahl (+1)
22 Ascheelf Späher Slayerforum Elf Elf SPÄ 1 Nachtsicht, Unsterblich, Leichtfüßig 6 8 6 2 2 2 2 2 0 18 11 5 9 8 12 1 no 51 Diener der Dunkelheit II, Wissensgebiet II, Akrobat I, Heimlichkeit I Langbogen (2h) (WB+2, INI+1), Dolch (INI+1) Lederschienen (Arm & Bein) (PA+1)
23 Asphyx Slay! #3 Untote 4 11 0 3 3 0 1 1 0 4 14 6.5 13 9 12 11 wi 169 Dunkelsicht, Fliegen, Geistesimmun, Natürliche Waffen, Nur durch Magie verletzbar, Umschlingen, Werteverlust, Wesen der Dunkelheit (Settingoption) Geisterklaue (WB+2, GA-2) Körperlos (PA+8)
24 Augenball Dungeonslayers Basisbox Magische Wesen 8 4 10 0 0 2 4 2 3 44 4 3.5 14 8 6 13 12 13 gr 218 Mehrere Angriffe (+4), Antimagie, Dunkelsicht, Mehrere Angriffsglieder, Schweben, Wesen der Dunkelheit (Settingoption) Warzenhaut (PA+2) Blenden (-(AGI+AU)/2), Einschläfern (-(KÖR+VE)/2), Gehorche (-(GEI+VE)/2), Kettenblitz (+3), Schleudern (-(KÖR+AU)/2), Schutzfeld (0), Schutzschild (0), Telekinese (-1/Stufe x5 kg), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2)
25 Baby Monsterspinne Trächtige Wildsau Tiere 6 6 1 2 4 0 1 3 0 13 10 6 8 9 11 3 kl 75 Kletterläufer, Lähmungseffekt, Natürliche Waffen Netzflüssigkeit (WB+2), Spinnenbiss (WB+1) Chitinpanzer (PA+1)
26 Barex SC2GO Zwerg Zwerg KRI 1 Dunkelsicht, Langlebig, Zäh 8 8 4 3 0 0 5 2 0 26 5 4.5 17 14 12 3 no 64 Einstecker I Streitaxt (2h) (WB+3, INI-2), Armbrust, leicht (2h) (WB+2, INI-2) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)
27 Basilisk Dungeonslayers Basisbox Magische Wesen 14 7 1 3 3 0 4 0 1 84 10 7.5 20 19 7 18 gr 206 Blickangriff, Nachtsicht, Natürliche Waffen, Versteinern Großer Biss (WB+2, GA-2) Schuppenpanzer (PA+2)
28 Baumgolem Der verdorbene Baumherr Konstrukte 10 4 4 6 0 0 2 0 0 44 4 3.5 16 18 4 9 gr 98 Mehrere Angriffe (+1), Anfällig, Geistesimmun Asthiebe (WB+2) Dicke Rinde (PA+4)
29 Baumherr Dungeonslayers Basisbox Pflanzenwesen 20 1 1 5 0 0 5 0 0 70 1 2 27 27 1 23 gr 157 Mehrere Angriffe (+3), Anfällig, Nachtsicht, Natürliche Waffen, Schleudern Asthiebe (WB+2) Dicke Rinde (PA+2)
30 Belgor D2GO #1 Mensch Mensch KRI 1 Talentiert 8 8 2 4 2 1 2 2 0 20 11 4.5 12 14 11 1 no 54 Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1) Kettenpanzer (PA+2, LA-0.5)
31 Bergzwergischer Söldner Slayerforum Zwerg Zwerg KRI 1 Dunkelsicht, Langlebig, Zäh 8 8 4 4 1 0 5 0 0 26 4 5 16 16 8 5 no 61 Einstecker I, Kämpfer I, Schlachtruf I, Waffenkenner I Streithammer (2h) (WB+3, INI-4) Lederpanzer (PA+1), Metallhelm (PA+1, INI-1)
32 Berna-Priesterin Slayerforum Halbling Halbling SPÄ 1 Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen 5 8 7 0 0 2 1 3 4 16 11 5 7 5 13 1 kl 48 Diener des Lichts I, Magieresistent I, Schütze I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1)
33 Billiger Söldner Trächtige Wildsau Mensch Mensch KRI 1 Talentiert 8 8 4 4 2 0 2 2 0 20 9 5 13 14 11 2 no 54 Kämpfer I, Parade I Speer (WB+1) Lederpanzer (PA+1), Metallhelm (PA+1, INI-1)
34 Blasaminator Die Pyramide des Eck Wan Konstrukte 18 4 4 4 0 0 5 2 0 66 4 3.5 28 26 6 26 gr 191 Mehrere Angriffe (+3), Dunkelsicht, Geistesimmun, Mehrere Angriffsglieder (+3), Schleudern, Sturmangriff Werkzeug (WB+4) Steinwesen (PA+5)
35 Blob Die Hallen der Reinigung Magische Wesen 10 8 1 0 0 0 4 4 0 36 8 7.5 14 12 16 7 no 99 Gift, Anfällig, Kletterläufer, Regeneration Säurestrahl (WB+4), Säurestoß (WB+2, GA-2)
36 Bosker Sturmkrähe (Söldner) Slayerforum Mensch Mensch KRI 1 Talentiert 8 8 4 4 1 0 4 1 0 22 9 5 15 14 10 2 no 56 Diebeskunst I, Kämpfer I, Parade I, Schlitzohr I, Wissensgebiet I, Wissensgebiet I Speer (WB+1), Kurzschwert (WB+1) Lederpanzer (PA+1), Holzschild (PA+1)
37 Brambel Der Kult des Snarrk'Izz Mensch Mensch SPÄ 0 Talentiert 6 8 6 0 3 1 2 10 0 18 9 5 10 6 20 1 no 58 Ausweichen III, Heimlichkeit III, Schlitzohr III, Wissensgebiet II, Handwerk I Armbrust, leicht (2h) (WB+2, INI-2) mag. Lederpanzer +1 (PA+2)
38 Brasko Das Umbarla-Becken Mensch Mensch KRI 3 Talentiert 7 6 7 4 0 2 4 0 4 21 6 4 16 13 6 3 no 59 Parade III, Ausweichen I, Schlachtruf I, Wissensgebiet I, Wissensgebiet I Krummschwert (WB+2, Sehnenschneider +I, Verletzen +I) mag. Holzschild +1 (PA+2, Zauber: Flackern eingebettet) Stirnreif (Aura +2, Charmant +I, Schlitzohr +I)
39 Brutac SC2GO Mensch Mensch KRI 1 Talentiert 8 7 5 4 0 0 4 2 0 22 7 4 15 15 9 4 no 57 Kämpfer I Langschwert (WB+2) Kettenpanzer (PA+2, LA-0.5), Holzschild (PA+1)
40 Bulegor Das Umbarla-Becken Zwerg Zwerg KRI 8 Dunkelsicht, Langlebig, Zäh 8 6 6 2 0 2 9 1 0 27 7 3.5 27 14 7 10 no 79 Ausweichen III, Blocker III, Parade III, Wissensgebiet III, Handwerk II, Kämpfer II, Wissensgebiet II mag. Hammer +1 (WB+2, INI+1, GA-2) Kettenpanzer (PA+2, LA-0.5), mag. Metallschild +1 (PA+2), mag. Metallhelm +1 (PA+2)
41 Bär Dungeonslayers Basisbox Tiere 12 8 1 3 4 0 3 0 0 75 12 8 16 17 8 9 gr 139 Natürliche Waffen, Sturmangriff Pranke (WB+2, GA-2) Fell (PA+1)
42 Caerner Freibeuter Slayerforum Mensch Mensch KRI 1 Talentiert 8 7 5 3 2 0 4 1 0 25 9 5.5 13 13 8 2 no 57 Akrobat I, Einstecker I, Flink I, Kämpfer I, Schwimmen I, Wissensgebiet I Kurzschwert (WB+1) Lederpanzer (PA+1)
43 Casius SC2GO Mensch Mensch Hei 1 Talentiert 6 6 8 1 0 3 2 0 5 18 6 4 8 8 6 14 1 no 63 Ausweichen I, Bildung I Streitkolben (WB+1, GA-1) Robe (runenbestickt) (Aura +1) Heilende Hand (+1)
44 Chalog Omesch Chalog Omesch Elf Elf SPÄ 14 Nachtsicht, Unsterblich, Leichtfüßig 5 7 8 0 3 4 2 8 0 17 14 4.5 10 5 21 1 no 61 Wahrnehmung V, Heimlichkeit III, Jäger III, Bildung III, Diebeskunst II, Fieser Schuss II, Schütze II, Schnelle Reflexe II, Runenkunde I, In Deckung I, Diener des Lichts I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I mag. Armbrust, leicht (2h) +2 (WB+4, GA-2, Verletzen +II) mag. Lederpanzer +2 (PA+3, Zauber: Balancieren eingebettet) Kompass (Zauber: Magie entdecken eingebettet, Zauber: Verborgenes sehen eingebettet)
45 Chien Kwan D2GO #17 Mensch Mensch Zau 5 Talentiert 8 4 8 1 0 3 1 5 4 28 4 3 10 10 9 12 14 1 no 76 Einstecker III, Zaubermacht III Kampfstab (2h) (WB+1, Zielzauber +1) mag. Robe (runenbestickt) +1 (PA+1, Aura +1) Feuerlanze (+2), Feuerstrahl (+1), Verteidigung (0), Zaubertrick (0), Öffnen (-SW)
46 Chio-Puan Wandermönch Slayerforum Mensch Mensch Hei 1 Talentiert 7 5 8 3 0 2 1 1 4 18 5 3.5 8 11 6 14 1 no 54 Bildung I, Fürsorger I, Waffenloser Meister I, Wahrnehmung I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Heilende Hand (+2)
47 Copperntaler Milizionär Slayerforum Halbling Halbling KRI 1 Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen 8 7 5 4 2 1 2 1 0 20 12 4.5 13 14 9 1 kl 54 Instrument I, Kämpfer I, Parade I, Schlitzohr I, Wissensgebiet I, Wissensgebiet I Speer (WB+1), Dolch (INI+1) Lederpanzer (PA+1), Holzschild (PA+1)
48 Cranag der Wanderer Das Umbarla-Becken Mensch Mensch WAM 12 Talentiert 8 6 6 11 1 0 7 0 2 34 7 4 21 27 6 14 no 126 Einstecker III, Kämpfer III, Jäger I, Brutaler Hieb I, Perfektion I, Prügler I, Sensenspötter I, Standhaft I, Tod entrinnen I, Waffenkenner I, Wissensgebiet I, Wissensgebiet I mag. Bihänder (2h) +2 (WB+5, GA-6, Panzerung zerschmettern +II, Verletzen +II) mag. Lederschienen (Arm & Bein) +2 (PA+3), mag. Lederpanzer +2 (PA+3)
49 Dampfkutsche Der König von Gnommewahn Konstrukte 15 14 0 6 3 0 6 0 0 93 17 12.5 23 21 14 16 gr 159 Schleudern, Sturmangriff Rammen Metallwesen (PA+2)
50 Deformierter Drachenwelpe Der Turm des Sturmrufers Magische Wesen 5 5 2 1 1 1 2 2 2 51 6 6 10 9 10 4 gr 126 Mehrere Angriffe (+1), Elementare Aufzehrung, Elementare Freisetzung, Dunkelsicht, Natürliche Waffen, Wesen der Dunkelheit (Settingoption) Biss, Klaue, Odem oder Schwanzhieb (WB+3, GA-2) Drachenschuppen (PA+3)
51 Der Ketzer Die Hallen der Reinigung Untote 4 6 9 13 0 4 17 5 4 31 6 4 21 17 11 13 17 9 no 141 Geistesimmun, Natürliche Waffen, Totenkraft, Wesen der Dunkelheit (Settingoption) Klauen/Schlangen Feuerball (+3), Feuerlanze (+2), Flackern (-2), Fluch (-(GEI+AU)/2), Kontrollieren (-(GEI+AU)/2), Magie entdecken (0), Schatten (-(AGI+AU)/2), Skelette erwecken (0), Terror (-(GEI+VE)/2), Versetzen (0), Zombies erwecken (0)
52 Der Weltenfresser Weltenfresser Magische Wesen Episch 32 12 4 12 5 1 10 0 10 5200 17 12 50 52 14 261 ge 10812 Anfällig, Geistesimmun, Schleudern, Sturmangriff, Verschlingen, Zerstampfen Steinpranke (WB+4, GA-4), Felsen (WB+2, GA-2) Steinwesen (PA+4)
53 Dermot Madal Die Goblinarena Mensch Mensch NEK 12 Talentiert 7 5 8 1 0 7 0 3 9 17 9 3.5 7 11 8 17 11 1 no 84 Diener der Dunkelheit V, Beschwörer II, Genesung II, Feuermagier I mag. Dolch +3 (WB+3, INI+4, GA-3) Feuerball (+4), Flammenklinge (+1), Fluch (-(GEI+AU)/2), Kontrollieren (-(GEI+AU)/2), Netz (-(AGI+ST)/2), Schattenpfeil (+2), Skelette erwecken (0), Tarnender Nebel (-2), Terror (-(GEI+VE)/2), Totengespräch (0), Verteidigung (0), Verwirren (-(GEI+AU)/2), Öffnen (-SW)
54 Die Eiskönigin Das Geschenk der Eiskönigin Mensch Mensch ELE 20 Talentiert Episch 6 6 8 0 0 10 4 4 14 209 9 4 17 10 10 22 17 14 no 628 Diener der Dunkelheit III, Einstecker III, Elementen trotzen III, Magieresistent III, Schutz vor Elementen III, Verheerer III, Wissensgebiet III, Zaubermacht III mag. Kampfstab (2h) +3 (WB+4, INI+3, GA-3, Zielzauber +1, Eismagier +V) mag. Robe +3 (PA+3, Bändiger +I, Elementare bündeln +I, Herausforderer der Elemente +I, Herr der Elemente +I, Knechtschaft +I, Mächtige Herbeirufung +I) Diadem (Diener der Dunkelheit +II, Zauber: Halt eingebettet), Ring (Aura +3, Zauber: Gehorche eingebettet, Zauber: Freund eingebettet) Bannen (-(KÖR+AU)/2), Ebenentor (-8), Eisbombe (+9), Eishauch (+9), Elementar herbeirufen (-Stufe x5), Elementar herbeirufen (-Stufe x5), Fliegen (0), Frostschock (+9), Frostwaffe (+5), Gasgestalt (0), Kältefront (+4), Kältekegel (+8), Kältestrahl (+7), Schatten (-(AGI+AU)/2), Schutzfeld (0), Schutzschild (0), Tarnender Nebel (-2), Tierbeherrschung (-LK/2), Wasserwandeln (+5), Zeitstop (-5)
55 Dirion Valen Coladris Elf Elf KRI 1 Nachtsicht, Unsterblich, Zielsicher 8 8 4 4 0 0 3 3 0 21 8 5 14 13 13 2 no 56 Blocker I, Jäger I, Wissensgebiet I, Wissensgebiet I Speer (WB+1) Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1), Holzschild (PA+1)
56 Donnerechse Die Insel der Stürme Magische Wesen 8 7 3 4 1 0 5 3 0 69 8 7.5 15 14 10 9 5 gr 151 Natürliche Waffen, Sturmangriff Großer Biss (WB+2, GA-2) Schuppenpanzer (PA+2) Blitz (+3)
57 Donnervogel Die Insel der Stürme Tiere 8 9 1 4 6 0 1 2 0 38 15 6 10 14 11 4 gr 82 Natürliche Waffen, Sturmangriff Großer Schnabel (WB+2) Federkleid (PA+1)
58 Drac SC2GO Mensch Mensch KRI 1 Talentiert 8 6 6 5 0 0 5 0 0 26 4 3.5 15 17 6 6 no 101 Einstecker I, Kämpfer I Bihänder (2h) (WB+3, INI-2, GA-4) Kettenpanzer (PA+2, LA-0.5)
59 Drachenwelpe Dungeonslayers Basisbox Magische Wesen 9 11 5 2 3 1 2 3 2 63 14 10.5 14 14 17 20 gr 270 Angst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen Biss, Klaue, Odem oder Schwanzhieb (WB+3, GA-2) Drachenschuppen (PA+3)
60 Drazuul die Verderberin Lockruf aus der Finsternis Tiere Heroisch 10 9 9 10 5 5 10 5 5 150 14 5.5 25 25 14 27 no 588 Mehrere Angriffe (+1), Dunkelsicht, Geistesimmun, Bezaubern, Sturmangriff, Wesen der Dunkelheit (Settingoption) Schattenklaue (WB+3) Schattenkörper (PA+3)
61 Duldgnomischer Zaubertechniker Slayerforum Gnom Gnom Zau 1 Dunkelsicht, Klein, Langlebig, Magisch begabt, Zäh, Zäher als sie aussehen 6 6 8 2 0 2 0 4 3 16 6 4 7 9 10 12 1 kl 60 Handwerk II, Diebeskunst I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I Hammer (WB+1, GA-1) Robe (runenbestickt) (Aura +1) Magisches Schloss (0)
62 Dunkler Krieger Die Goblinarena Mensch Mensch KRI Talentiert 8 6 6 6 0 1 5 2 0 26 5 4 15 17 8 5 no 64 Diener der Dunkelheit II, Einstecker I, Kämpfer I Langschwert (WB+2) Lederpanzer (PA+1), Metallhelm (PA+1, INI-1)
63 Dämonenfürst Dungeonslayers Basisbox Magische Wesen 20 20 10 10 10 5 10 10 5 400 30 16 32 35 30 42 ge 579 Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Pranke (WB+5, GA-5) Dämonenhaut (PA+2)
64 Echsenmensch Dungeonslayers Basisbox Humanoide 9 8 3 4 0 2 2 2 0 21 8 5 12 14 11 3 no 69 Nachtsicht, Schleudern Speer (WB+1) Schuppenpanzer (PA+1)
65 Einbrecher Slayerforum Halbling Halbling SPÄ 1 Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen 6 8 6 2 2 0 1 5 0 17 13 6 8 8 15 1 kl 49 Akrobat I, Diebeskunst I, Flink I, Heimlichkeit I, Schütze I, Wahrnehmung I Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1)
66 Einhorn Dungeonslayers Basisbox Magische Wesen 9 13 1 2 6 1 2 0 1 63 19 12 11 12 13 0 5 gr 194 Angst, Mehrere Angriffe (+1), Geistesimmun, Nachtsicht, Schleudern, Sturmangriff, Wesen des Lichts (Settingoption) Horn oder Hufe (WB+1, GA-2) Spurt (-2)
67 Eiselementar III Ein Riesenproblem Magische Wesen 15 9 1 5 0 0 6 4 0 62 9 6 29 24 17 15 gr 128 Anfällig, Körperlos Eisstrahl (WB+4) Keine feste Gestalt (PA+8)
68 Eisenhaller Armbrustschütze Slayerforum Zwerg Zwerg SPÄ 1 Dunkelsicht, Langlebig, Zäh 8 8 4 0 0 0 4 6 0 25 8 4.5 15 8 17 2 no 59 Einstecker I, Schlachtruf I, Schütze I Armbrust, leicht (2h) (WB+2, INI-2), Dolch (INI+1) Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)
69 Eiswolf Ein Riesenproblem Tiere 11 8 1 4 2 0 2 2 0 17 10 7.5 14 16 12 6 kl 86 Anfällig, Natürliche Waffen, Odem, Sturmangriff, Wesen der Dunkelheit (Settingoption) Eisodem (WB+2), Biss (WB+1) Frostfell (PA+1)
70 Eiszwerg Ein Riesenproblem Humanoide 10 6 2 2 0 1 3 3 0 23 7 4 14 13 10 2 no 58 Nachtsicht Kurzbogen (2h) (WB+1, INI+1), Kurzschwert (WB+1) Lederpanzer (PA+1)
71 Eldvyn Slay! #1 Elf Elf KRI 3 Nachtsicht, Unsterblich, Leichtfüßig 7 7 6 4 1 1 3 1 0 20 8 4.5 13 14 8 2 no 51 Parade III, Kämpfer II, Wissensgebiet II Kurzschwert (WB+1)
72 Emrich Dungeonslayers Basisbox Mensch Mensch KRI 3 Talentiert 8 7 5 5 0 2 4 1 0 22 4 4 15 15 10 2 no 61 Langschwert (WB+2), Armbrust, leicht (2h) (WB+2, INI-2) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)
73 Engel der Apokalypse Slay! #3 Humanoide 20 20 10 10 10 5 10 10 5 200 30 13 32 35 30 33 ri 377 Fliegen, Wesen der Dunkelheit (Settingoption) Schattenklinge (WB+5, GA-5) Umhang (PA+2)
74 Enural Valen Coladris Elf Elf KRI 1 Nachtsicht, Unsterblich, Zielsicher 8 6 6 4 0 1 4 0 1 22 8 4 13 13 7 2 no 54 Glückspilz I, Schnelle Reflexe I, Wissensgebiet I, Wissensgebiet I Kurzschwert (WB+1) Lederpanzer (PA+1)
75 Erald Valen Coladris Elf Elf SPÄ 1 Nachtsicht, Unsterblich, Zielsicher 6 8 6 0 1 1 2 6 0 18 10 5 9 6 17 1 no 50 Bildung I, Glückspilz I, Schütze I, Wissensgebiet I Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1)
76 Erdelementar I Dungeonslayers Basisbox Magische Wesen 12 2 1 3 1 0 4 0 0 13 3 2 20 19 2 8 kl 44 Anfällig Steinpranke (WB+4) Steinwesen (PA+4)
77 Erdelementar II Dungeonslayers Basisbox Magische Wesen 17 2 1 4 1 0 5 0 0 32 3 2 26 25 2 15 no 70 Anfällig Steinpranke (WB+4) Steinwesen (PA+4)
78 Erdelementar III Dungeonslayers Basisbox Magische Wesen 22 2 1 5 1 0 7 0 0 78 3 2.5 33 31 2 23 gr 124 Anfällig Steinpranke (WB+4) Steinwesen (PA+4)
79 Erfahrener Rattling Slay! #2 Rattling Rattling SPÄ 5 Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen 6 8 6 0 4 1 3 6 0 22 12 6 12 7 17 1 kl 61 Schütze II, Einstecker I, Fieser Schuss I, Flink I, Ausweichen I, Schwimmen I, Heimlichkeit I, Wahrnehmung I Kurzbogen (2h) (WB+1, INI+1), Kurzschwert (WB+1) Metallhelm (PA+1, INI-1), Lederschienen (Arm & Bein) (PA+1), Lederpanzer (PA+1)
80 Erindor Valen Coladris Elf Elf Zau 1 Nachtsicht, Unsterblich, Zielsicher 5 7 8 0 0 3 1 5 2 16 7 4.5 6 6 13 16 1 no 51 Bildung I, Blitzmacher I, Wissensgebiet I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Schock (+1)
81 Erwachsener Drache Dungeonslayers Basisbox Magische Wesen 24 16 10 6 4 2 6 4 3 600 20 18.5 35 35 25 65 ge 922 Angst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen Biss, Klaue, Odem oder Schwanzhieb (WB+5, GA-5) Drachenschuppen (PA+5)
82 Ettin Slay! #1 Humanoide 18 4 5 5 2 3 6 0 0 68 6 3.5 25 26 4 22 gr 168 Angst, Gift, Mehrere Angriffe (+1), Nachtsicht, Wesen der Dunkelheit (Settingoption) Steinkeule (WB+3, GA+3) Felle (PA+1)
83 Eulerich Dungeonslayers Basisbox Magische Wesen 14 6 1 4 3 0 3 0 0 54 9 4.5 18 20 6 11 gr 115 Dunkelsicht Pranke (WB+2, GA-2) Federkleid (PA+1)
84 Fahlstepper Grenzwächter Slayerforum Mensch Mensch KRI 1 Talentiert 8 7 5 4 0 0 3 2 0 24 8 4.5 13 13 10 1 no 57 Einstecker I, Jäger I, Schlachtruf I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I Speer (WB+1), Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1), Holzschild (PA+1)
85 Falschspieler Slayerforum Halbling Halbling SPÄ 1 Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen 6 8 6 1 1 2 1 4 1 17 14 5 8 7 12 1 kl 48 Charmant I, Glückspilz I, Schlitzohr I, Schnelle Reflexe I, Wahrnehmung I, Wissensgebiet I Dolch (INI+1), Wurfmesser Lederpanzer (PA+1)
86 Faria (Feuermagierin) Avakars Runde Mensch Mensch Zau 6 Talentiert 8 4 8 0 0 4 4 4 5 22 4 4 12 9 8 13 13 1 no 81 Feuermagier III, Wechsler II, Flink I, Ausweichen I, Wissensgebiet I, Zaubermacht I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Armband (Verstand +1), Gürtel (1x aktionsfrei Zauber wechseln), Krähenfuß (Feuerzauber +1) Duftnote (0), Feuerlanze (+6), Flammenklinge (+4), Licht (+5), Niesanfall (-(KÖR+AU)/2), Öffnen (-SW)
87 Faulbauch Dungeonslayers Basisbox Untote 16 6 0 6 0 0 5 0 0 62 6 4.5 23 24 6 17 gr 131 Dunkelsicht, Geistesimmun, Schleudern, Wesen der Dunkelheit (Settingoption) Knochenpranke (WB+2) Merkt nichts (PA+2)
88 Faulbauchmade Dungeonslayers Basisbox Untote 6 6 0 2 0 0 4 0 0 10 6 4 10 10 6 1 kl 47 Dunkelsicht, Geistesimmun, Natürliche Waffen Zahnschlund (WB+2)
89 Fenya Das Volk der Sturmelfen Elf Elf SPÄ 1 Nachtsicht, Unsterblich, Zielsicher 4 8 8 0 3 2 2 3 0 16 12 5 7 4 13 1 no 47 Akrobat I, Heimlichkeit I, Schütze I, Wissensgebiet I Dolch (INI+1), Schleuder Lederpanzer (PA+1)
90 Fetter Goblin-Aufseher Trächtige Wildsau Humanoide 6 7 2 3 2 1 4 2 0 20 10 4.5 14 10 9 1 kl 69 Parade II, Kämpfer I Peitsche (WB-1, INI+1, GA-2) Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)
91 Feuerelementar I Dungeonslayers Basisbox Magische Wesen 9 5 1 3 0 0 5 0 0 12 5 3.5 22 14 5 9 kl 70 Anfällig, Fliegen, Körperlos Flammenhieb (WB+2) Keine feste Gestalt (PA+8)
92 Feuerelementar II Dungeonslayers Basisbox Magische Wesen 13 6 1 4 0 0 6 0 0 29 6 4 27 20 6 15 no 95 Anfällig, Fliegen, Körperlos Flammenhieb (WB+3) Keine feste Gestalt (PA+8)
93 Feuerelementar III Dungeonslayers Basisbox Magische Wesen 18 6 1 6 0 0 7 0 0 70 6 4.5 33 28 6 24 gr 145 Anfällig, Fliegen, Körperlos Flammenhieb (WB+4) Keine feste Gestalt (PA+8)
94 Fjordinger Wikinger Slayerforum Mensch Mensch KRI 1 Talentiert 8 8 4 4 2 0 4 0 0 25 9 5 14 14 8 4 no 78 Einstecker I, Kämpfer I, Schlachtruf I, Schwimmen I, Wissensgebiet I Breitschwert (WB+1, GA-2) Lederpanzer (PA+1), Metallhelm (PA+1, INI-1)
95 Fjordorzwergischer Kaperfahrer Slayerforum Zwerg Zwerg KRI 1 Dunkelsicht, Langlebig, Zäh 8 8 4 6 0 0 4 0 0 22 7 5 17 15 9 3 no 58 Prügler I, Raserei I, Schlachtruf I, Wissensgebiet I Axt (WB+1) Lederpanzer (PA+1), Holzschild (PA+1), Lederschienen (Arm & Bein) (PA+1), Metallhelm (PA+1, INI-1)
96 Fliegender Schädel Slay! #3 Untote 5 8 8 1 2 4 3 0 4 5 10 5 8 7 8 12 4 wi 93 Dunkelsicht, Fliegen, Geistesimmun, Werteverlust, Wesen der Dunkelheit (Settingoption) Biss (WB+1) Totenlachen (-GEI+AU auf VE Ziele im Umkreis von VEx2 Metern, sofern diese das Lachen hören können; Erfolg führt zu Werteverlust.) (undefined)
97 Fliegendes Schwert Dungeonslayers Basisbox Konstrukte 10 5 0 4 0 0 4 0 0 12 5 3.5 19 16 5 8 kl 57 Fliegen Langschwert (WB+2) Metallwesen (PA+5)
98 Floragon Valen Coladris Elf Elf SPÄ 1 Nachtsicht, Unsterblich, Zielsicher 5 8 7 0 2 0 3 3 2 18 11 5 8 5 14 1 no 49 Jäger I, Schütze I, Wissensgebiet I, Wissensgebiet I Kurzbogen (2h) (WB+1, INI+1), Dolch (INI+1)
99 Freiländer Dämonenjäger Slayerforum Mensch Mensch Hei 1 Talentiert 6 6 8 0 0 1 2 5 2 18 8 4 9 7 14 9 1 no 54 Diener des Lichts I, Fieser Schuss I, Schnelle Reflexe I, Schütze I, Wahrnehmung I Armbrust, leicht (2h) (WB+2, INI-2), Kurzschwert (WB+1) Lederpanzer (PA+1) Wasser weihen (0)
100 Funkenfieper Die verlassene Hütte im Spinnensumpf Magische Wesen 3 6 4 0 4 0 0 5 0 7 10 4 3 5 11 12 1 kl 71 Dunkelsicht, Geladen, Kletterläufer, Natürliche Waffen Spitze Zähne (WB+2) Blitz (+3), Kettenblitz (+3)
101 Galen Slay! #2 Mensch Mensch Zau 2 Talentiert 5 7 8 0 0 2 0 5 5 15 9 4.5 5 6 12 13 1 no 52 Bildung I, Charmant I, Diebeskunst I, Heimlichkeit I, Schlitzohr I, Schnelle Reflexe I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Versetzte Stimme (-1/10m), Zaubertrick (0)
102 Gargyl Dungeonslayers Basisbox Magische Wesen 7 7 1 2 1 0 2 2 1 10 8 4.5 13 11 9 6 kl 91 Anfällig, Dunkelsicht, Fliegen, Geistesimmun, Kletterläufer, Natürliche Waffen, Sturzangriff Steinpranke (WB+2) Steinwesen (PA+4)
103 Geist Dungeonslayers Basisbox Untote 1 11 10 16 0 3 16 2 6 27 11 6.5 25 19 13 16 24 no 279 Angst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit / Wesen des Lichts (Settingoption) Geisterklaue (WB+2, GA-2) Körperlos (PA+8) Terror (-(GEI+VE)/2)
104 Geistpeiniger Geistpeiniger Magische Wesen 14 11 19 3 0 5 4 4 6 28 11 6.5 20 19 22 25 29 no 323 Mehrere Angriffe (+3), Gedankensturm, Antimagie, Natürliche Waffen, Werteverlust Gedankensturm (WB+7), Tentakel (WB+2) Lederhaut (PA+2) Ebenentor (-8), Fliegen (0), Freund (-(GEI+VE)/2), Gehorche (-(GEI+VE)/2), Kleiner Terror (-(GEI+VE)/2), Verwirren (-(GEI+AU)/2)
105 Getreuer Dammenhalls D2GO #20 Untote Heroisch 10 8 0 8 2 0 8 2 0 140 11 5 27 23 10 22 no 428 Angst, Alterung, Geistesimmun, Wesen der Dunkelheit (Settingoption) mag. Langschwert +1 (WB+3, INI+1, GA-1) mag. Kettenpanzer +1 (PA+3), mag. Metallhelm +1 (PA+2), mag. Metallschild +1 (PA+2)
106 Gisamor Die Hallen der Reinigung Magische Wesen Anführer 12 7 7 5 4 4 5 4 4 54 11 4.5 23 22 13 11 13 10 no 382 Dunkelsicht, Sturmangriff, Wesen der Dunkelheit (Settingoption) Schattenklinge (WB+3, GA-4), Feuerlanze (WB+2) Schattenrüstung (PA+4) Feuerlanze (+2), Skelette erwecken (0)
107 Glitzerhand (Dieb) Avakars Runde Elf Elf SPÄ 6 Nachtsicht, Unsterblich, Leichtfüßig 6 8 6 0 2 4 2 7 0 18 12 5 10 7 18 1 no 58 Diebeskunst III, Wahrnehmung III, Genesung I, Fieser Schuss I, Jäger I, Schütze I Langbogen (2h) (WB+2, INI+1), mag. Dolch +1 (WB+1, INI+2, GA-1) Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)
108 Gloriel 'Die Kräuterhexe' Valen Coladris Elf Elf Sch 1 Nachtsicht, Unsterblich, Zielsicher 7 5 8 0 0 3 2 3 3 19 6 3.5 9 7 9 14 1 no 54 Alchemie I, Feuermagier I, Wissensgebiet I, Zaubermacht I Dolch (INI+1) Robe (runenbestickt) (Aura +1) Feuerstrahl (+2)
109 Gnomischer Illusionist Slayerforum Gnom Gnom Zau 1 Dunkelsicht, Klein, Langlebig, Magisch begabt, Zäh, Zäher als sie aussehen 6 6 8 0 0 2 0 4 5 16 6 4 7 7 10 14 1 kl 50 Bildung I, Charmant I, Schlitzohr I, Wahrnehmung I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Zaubertrick (0)
110 Goblin Dungeonslayers Basisbox Humanoide 5 7 3 2 2 1 1 2 0 8 9 4.5 7 7 9 1 kl 42 Nachtsicht, Wesen der Dunkelheit (Settingoption) Wurfmesser Felle (PA+1)
111 Goblin Berserker Slay! #1 Humanoide 6 7 2 4 2 0 2 1 0 9 9 4.5 8 11 8 2 kl 64 Nachtsicht, Sturmangriff, Wesen der Dunkelheit (Settingoption) Hammer (WB+1, GA-1) Fellschurz
112 Goblin Bomber Slay! #1 Humanoide 4 8 3 0 2 1 3 3 0 9 10 5 8 4 14 1 kl 47 Nachtsicht, Wesen der Dunkelheit (Settingoption) Brandbombe (WB+3) Felle (PA+1)
113 Goblin Giftmörder Slay! #1 Humanoide 6 7 2 4 2 0 1 2 0 9 9 4.5 7 10 9 2 kl 63 Gift, Mehrere Angriffe (+1), Nachtsicht, Wesen der Dunkelheit (Settingoption) Dolch Dunkler Lumpenumhang
114 Goblin Häuptling Slay! #1 Humanoide Anführer 5 7 3 3 2 2 3 2 1 18 9 4 12 11 9 2 kl 140 Mehrere Angriffe (+1), Nachtsicht, Wesen der Dunkelheit (Settingoption) Kurzschwert (WB+1) Kettenpanzer (PA+2, LA-0.5)
115 Goblin Krieger Slay! #1 Humanoide 6 7 2 3 2 1 2 1 0 9 9 4.5 9 10 8 1 kl 45 Nachtsicht, Wesen der Dunkelheit (Settingoption) Keule (WB+1) Lederpanzer (PA+1)
116 Goblin Schamane Slay! #1 Humanoide Anführer 4 6 5 0 1 2 1 3 5 15 7 4 7 5 9 10 11 1 kl 112 Nachtsicht, Wesen der Dunkelheit (Settingoption) Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Blenden (-(AGI+AU)/2), Heilende Hand (+1), Niesanfall (-(KÖR+AU)/2), Verteidigung (0)
117 Goblin Späher Slay! #1 Humanoide 4 8 3 1 2 1 1 4 0 8 11 5 6 5 13 1 kl 44 Nachtsicht, Wesen der Dunkelheit (Settingoption) Kurzbogen (2h) (WB+1, INI+1) Felle (PA+1)
118 Goblin Stadtratte Slay! #1 Humanoide 5 7 3 0 1 3 1 2 2 8 9 4.5 6 6 9 1 kl 43 Nachtsicht, Wesen der Dunkelheit (Settingoption) Dolch (WB+1, INI+1) Lumpen
119 Goblinrächer Die Goblinarena Humanoide 5 7 3 2 2 1 1 2 0 8 9 4.5 7 8 10 1 kl 34 Diener der Dunkelheit V, Vergeltung I, Vernichtender Schlag I Axt (WB+1) Felle (PA+1)
120 Golem, Eisen- Dungeonslayers Basisbox Konstrukte 20 5 0 5 2 0 6 0 0 72 7 4 31 31 5 27 gr 173 Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff, Zerstampfen Eisenpranke (WB+6) Metallwesen (PA+5)
121 Golem, Knochen- Dungeonslayers Basisbox Konstrukte 10 12 0 5 6 0 0 0 0 40 18 7.5 10 17 12 12 gr 148 Mehrere Angriffe (+3), Dunkelsicht, Geistesimmun, Mehrere Angriffsglieder, Schleudern, Sturmangriff Knochenpranke (WB+2)
122 Golem, Kristall- Dungeonslayers Basisbox Konstrukte 8 10 4 3 0 0 3 5 0 42 10 6.5 14 13 15 12 7 gr 134 Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff Kristallpranke (WB+2) Kristallwesen (PA+3) Blitz (+3)
123 Golem, Lehm- Dungeonslayers Basisbox Konstrukte 10 6 4 3 2 0 3 0 0 46 8 4.5 13 16 6 8 gr 114 Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff Lehmpranke (WB+3)
124 Golem, Stein- Dungeonslayers Basisbox Konstrukte 18 4 4 4 0 0 5 2 0 66 4 3.5 27 26 6 23 gr 163 Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff, Zerstampfen Steinpranke (WB+4) Steinwesen (PA+4)
125 Gralbor Weißauge Das Umbarla-Becken Mensch Mensch Hei 9 Talentiert 6 6 9 0 0 7 0 0 9 16 6 4 6 6 6 18 1 no 73 Fürsorger III, Magieresistent III, Wechsler III, Diener des Lichts II, Wissensgebiet II, Wissensgebiet II, Zaubermacht II, Wissensgebiet I Stab (Arkane Explosion +III), Umhang (GEI +1) Bannen (-(KÖR+AU)/2), Flackern (+1), Giftbann (0), Glühender Glaube (-2), Heilbeeren (+3), Heilende Aura (+3), Heilende Hand (+4), Schutzfeld (+3), Schutzkuppel (+3), Schutzschild (+3), Segen (0), Stossgebet (-(KÖR+AU)/2)
126 Grottenschrat Lockruf aus der Finsternis Humanoide 11 6 3 3 2 1 4 1 0 25 8 4 18 18 7 8 no 70 Dunkelsicht, Natürliche Waffen Biss (WB+4) Dicke Haut (PA+3)
127 Großmutter Gorla Der Kult des Snarrk'Izz Mensch Mensch Hei 8 Talentiert 8 4 9 0 0 4 0 5 9 18 4 3 11 9 9 18 15 2 no 75 Wissensgebiet III, Fürsorger II, Manipulator II, Heimlichkeit I, Alchemie I, Bildung I, Wahrnehmung I, Wechsler I, Zaubermacht I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (Geschick +3) Amulett (Abwehr +3), Kapuzenumhang (Magieresistent +III) Einschläfern (-(KÖR+VE)/2+2), Flackern (0), Freund (-(GEI+VE)/2+2), Giftbann (0), Halt (-(KÖR+AU)/2), Heilbeeren (+2), Heilende Aura (+2), Heilende Hand (+3), Licht (+5), Schutzschild (+2), Schweben (0), Segen (0), Wächter (0)
128 Grufthauptmann Das Geheimnis der heiligen Quelle Mensch Mensch KRI 9 Talentiert 8 7 5 10 1 1 5 2 0 23 8 3.5 22 24 9 13 no 111 Kämpfer III, Parade III, Brutaler Hieb II, Magieresistent II Bihänder (2h) (WB+3, INI-2, GA-4), mag. Langschwert +1 (WB+3, INI+1, GA-1) mag. Kettenpanzer +1 (PA+3), Metallhelm (PA+1, INI-1), Plattenarmschienen (PA+1, LA-0.5), Plattenbeinschienen (PA+1, LA-0.5)
129 Gruftplünderer Slay! #3 Untote 6 8 6 2 5 4 1 5 0 17 14 5 9 9 14 4 no 94 Diebeskunst, Dunkelsicht, Geistesimmun, Kletterläufer, Wesen der Dunkelheit (Settingoption) Kurzschwert (WB+1), Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)
130 Gruftritter Das Geheimnis der heiligen Quelle Mensch Mensch KRI 3 Talentiert 8 7 5 6 1 1 2 2 0 20 7 4 16 19 9 6 no 59 Kämpfer III, Parade I Langschwert (WB+2) Kettenpanzer (PA+2, LA-0.5), Holzschild (PA+1), Lederschienen (Arm & Bein) (PA+1), Metallhelm (PA+1, INI-1)
131 Gärtner Slayerforum Halbling Halbling SPÄ 1 Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen 6 8 6 0 2 2 2 4 0 18 12 5 9 7 14 1 kl 51 Jäger I, Schütze I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I Speer (WB+1) Lederpanzer (PA+1)
132 Hai Dungeonslayers Basisbox Tiere 13 6 1 4 3 0 3 0 0 39 9 6 16 19 6 9 no 106 Natürliche Waffen, Schwimmen, Sturmangriff Großer Biss (WB+2, GA-2)
133 Halblingskelett Die Pyramide des Eck Wan Untote 10 8 0 3 2 0 2 2 4 11 10 5 12 14 10 3 kl 58 Geistesimmun, Wesen der Dunkelheit (Settingoption) Kochenklauen (WB+1)
134 Harpyie Dungeonslayers Basisbox Magische Wesen 8 6 6 2 2 1 2 1 2 20 8 4 11 12 7 8 5 no 108 Bezaubern, Fliegen, Nachtsicht, Natürliche Waffen, Sturzangriff Krallenklaue (WB+2) Federkleid (PA+1) Lockruf (funktioniert wie der Zauberspruch Gehorche; Abklingzeit des Lockrufs: 10 Kampfrunden) (undefined)
135 Harringer Dungeonslayers Basisbox Mensch Mensch KRI 4 Talentiert 7 6 7 4 0 3 5 0 0 22 6 3.5 14 13 6 2 no 58 Langschwert (WB+2) Kettenpanzer (PA+2, LA-0.5)
136 Hartmund Der schwarze Ritter Mensch Mensch Hei 10 Talentiert 6 6 8 0 0 6 2 5 7 18 6 4 8 7 11 15 14 1 no 88 Fürsorger III, Manipulator III, Zaubermacht III, Bildung I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Allheilung (+3), Blenden (-(AGI+AU)/2), Einschläfern (-(KÖR+VE)/2+3), Freund (-(GEI+VE)/2+3), Giftbann (0), Heilende Hand (+4), Heilendes Licht (+5), Kleiner Terror (-(GEI+VE)/2+3), Schutzschild (+3), Verlangsamen (-(KÖR+AU)/2), Verwirren (-(GEI+AU)/2+3)
137 Heiler/Schütze 01 Beispiele Mensch Mensch Hei 1 Talentiert 5 7 8 0 0 1 4 5 1 19 8 4.5 10 5 13 13 1 no 58 Fürsorger III, Rüstzauberer I Kurzbogen (2h) (WB+1, INI+1) Lederschienen (Arm & Bein) (PA+1), Robe (runenbestickt) (Aura +1) Heilende Hand (+4)
138 Heiler/Schütze 04 Beispiele Mensch Mensch Hei 4 Talentiert 5 7 8 0 0 2 4 5 3 25 8 4.5 10 5 17 11 16 1 no 79 Fürsorger III, Einstecker II, Abklingen I, Rüstzauberer I Langbogen (2h) (WB+2, INI+1) Lederschienen (Arm & Bein) (PA+1, Schütze +III), Robe (runenbestickt) (Aura +1) Flackern (+1), Heilende Hand (+4), Heilendes Licht (+5), Magische Waffe (0), Segen (0)
139 Heiler/Schütze 08 Beispiele Mensch Mensch Hei 8 Talentiert 5 7 8 0 0 3 4 5 6 25 10 4.5 13 5 18 15 17 3 no 87 Fürsorger III, Abklingen II, Einstecker II, Rüstzauberer I, Schnelle Reflexe I, Schütze I, Vertrauter I Langbogen (2h) (WB+2, INI+1) Lederschienen (Arm & Bein) (PA+1, Schütze +III), Robe (runenbestickt) (Aura +1) Ring (Abwehr +3), Vertrauter (Zaubern +1) Flackern (+1), Glühender Glaube (-2), Heilbeeren (+3), Heilende Hand (+4), Heilendes Licht (+5), Magische Rüstung (+3), Magische Waffe (0), Schutzschild (+3), Segen (0)
140 Heiler/Schütze 12 Beispiele Mensch Mensch Hei 12 Talentiert 5 7 8 0 0 5 4 5 8 25 10 4.5 13 5 21 17 19 4 no 104 Fürsorger III, Schütze III, Abklingen II, Einstecker II, Rüstzauberer I, Schnelle Reflexe I, Scharfschütze I, Vertrauter I, Wissensgebiet I Elfenbogen (2h) (WB+3, INI+1) Lederschienen (Arm & Bein) (PA+1, Schütze +III), Robe (runenbestickt) (Aura +1) Ring (Abwehr +3), Ring (Wechsler +V), Vertrauter (Zaubern +1) Flackern (+1), Glühender Glaube (-2), Heilbeeren (+3), Heilende Hand (+4), Heilende Strahlen (+3), Heilendes Licht (+5), Magische Rüstung (+3), Magische Waffe (0), Schutzschild (+3), Segen (0)
141 Heimsucher Slay! #3 Untote 5 9 7 8 6 5 8 7 1 23 15 5.5 21 13 17 14 no 180 Angst, Dunkelsicht, Fliegen, Geistesimmun, Totenkraft, Werteverlust, Wesen der Dunkelheit (Settingoption) Schattenpfeil (WB+1, GA-2) Körperlos (PA+8)
142 Hellweiter Diplomat Slayerforum Mensch Mensch SPÄ 1 Talentiert 6 6 8 0 0 4 0 1 5 16 7 4 7 6 7 1 no 47 Bildung I, Charmant I, Schlitzohr I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I Dolch (INI+1) Lederpanzer (PA+1)
143 Heob (Ordensheiler) Avakars Runde Mensch Mensch Hei 6 Talentiert 8 5 7 4 0 3 4 0 4 22 5 3.5 16 13 5 11 3 no 84 Fürsorger III, Diener des Lichts II, Wechsler II, Wissensgebiet II, Charmant I, Rüstzauberer I Streitkolben (WB+1, GA-1) Lederpanzer (PA+1, Parade +II, 1x aktionsfrei Waffe ziehen, Zauber: Bannen mit 12 Ladungen), Holzschild (PA+1, Blocker +III) Krug (Zauber: Segen eingebettet) Flackern (+1), Heilende Hand (+4), Schutzschild (+3), Stossgebet (-(KÖR+AU)/2), Vertreiben (-(KÖR+AU)/2), Wasser weihen (0)
144 Hilaner Priester Slayerforum Mensch Mensch Hei 1 Talentiert 6 6 8 0 0 5 1 0 4 17 6 4 7 6 6 13 1 no 50 Bildung II, Wissensgebiet II, Diener des Lichts I, Wissensgebiet I Heilende Hand (+1)
145 Hilanischer Peltast Slayerforum Mensch Mensch SPÄ 1 Talentiert 7 8 5 1 1 0 2 6 0 19 11 6 12 9 16 1 no 53 Ausweichen I, Flink I, Parade I, Schnelle Reflexe I, Schütze I Speer (WB+1) Lederpanzer (PA+1), Holzschild (PA+1)
146 Hobgoblin Dungeonslayers Basisbox Humanoide 11 6 3 2 0 2 3 3 0 24 6 3.5 18 15 10 4 no 71 Nachtsicht, Wesen der Dunkelheit (Settingoption) Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Holzschild (PA+1)
147 Hoher Dämon Dungeonslayers Basisbox Magische Wesen 7 7 6 3 3 3 3 3 3 20 10 4.5 12 12 10 4 no 104 Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Pranke (WB+2, GA-2) Dämonenhaut (PA+2)
148 Hund Dungeonslayers Basisbox Tiere 5 6 1 3 3 0 0 0 0 11 9 6 6 9 6 1 kl 31 Natürliche Waffen Biss (WB+1) Fell (PA+1)
149 Hydra Dungeonslayers Basisbox Magische Wesen 14 10 1 5 2 0 6 0 0 90 12 9.5 22 21 10 23 gr 246 Mehrere Angriffe (+5), Mehrere Angriffsglieder, Nachtsicht, Natürliche Waffen, Regeneration, Schleudern, Schwimmen Großer Biss (WB+2, GA-2) Schuppenpanzer (PA+2)
150 Iglorion Das Volk der Sturmelfen Elf Elf KRI 1 Nachtsicht, Unsterblich, Zielsicher 8 6 6 5 0 0 4 1 0 25 6 4 12 16 8 3 no 58 Einstecker I, Schnelle Reflexe I, Wissensgebiet I, Wissensgebiet I Streitaxt (2h) (WB+3, INI-2)
151 Irrlicht Wolfshatz im Wargenwald Magische Wesen 4 6 1 0 2 0 2 3 0 8 8 4 14 4 10 9 kl 185 Angst, Antimagie, Körperlos, Schweben, Sonar Blitzstrahl (WB+1, GA-5) Keine feste Gestalt (PA+8)
152 Jok von Walderson Chalog Omesch Mensch Mensch KRI 8 Talentiert 8 7 5 9 2 0 4 0 0 25 10 4 22 23 7 12 no 70 Kämpfer III, Parade III, Brutaler Hieb II, Diener des Lichts II, Einstecker I, Panzerung zerschmettern I, Rüstträger I, Verletzen I, Waffenkenner I mag. Langschwert +1 (WB+3, INI+1, GA-1, Dämonen zerschmettern +II) Kettenpanzer (PA+2, LA-0.5), mag. Metallhelm +2 (PA+3, Zauber: Giftschutz eingebettet), mag. Metallschild +1 (PA+2, Standhaft +II)
153 Josip Das Geschenk der Eiskönigin Elf Elf ATT 16 Nachtsicht, Unsterblich, Leichtfüßig Heroisch 10 8 8 4 10 2 4 5 0 60 40 5 19 19 13 10 kl 234 Ausweichen V, Heimlichkeit V, Schnelle Reflexe V, Verletzen V, Wahrnehmung V, Handwerk III, Diener der Dunkelheit III, Meucheln III, Hinterhältiger Angriff III mag. Dolch +3 (WB+3, INI+4, GA-3, Aderschlitzer +V) mag. Robe +3 (PA+3, Ausweichen +IV) Des Schnitzers Gewandt (Set) (KÖR +1, AGI +1, GEI +1), Handschuhe (Schnelle Reflexe +II), Maske (Wahrnehmung +IV), Stiefel (Schnelle Reflexe +II), Umhang (Heimlichkeit +IV)
154 Jost Rotweiden Die Goblinarena Mensch Mensch PAL 15 Talentiert 7 7 6 10 2 2 9 0 0 32 6 4 19 23 7 11 no 121 Kämpfer III, Einstecker II, Brutaler Hieb II, Vernichtender Schlag I Bihänder (2h) (WB+3, INI-2, GA-4) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)
155 Jungdrache Dungeonslayers Basisbox Magische Wesen 16 12 7 4 3 2 4 3 2 225 15 12.5 24 24 19 37 ri 491 Angst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen Biss, Klaue, Odem oder Schwanzhieb (WB+4, GA-4) Drachenschuppen (PA+4)
156 Jödländer Schamanin Slayerforum Mensch Mensch Hei 1 Talentiert 5 7 8 0 0 0 2 4 4 17 7 4.5 7 6 12 14 1 no 53 Fürsorger I, Jäger I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I Speer (WB+1) Heilende Hand (+2)
157 Kaholwächter D2GO #17 Mensch Mensch KRI 3 Talentiert 8 6 6 5 1 1 4 2 1 28 7 3.5 14 17 8 5 no 66 Einstecker II, Kämpfer II Langschwert (WB+2) Kettenpanzer (PA+2, LA-0.5)
158 Kait Jadedrache Slayerforum Mensch Mensch Zau 1 Talentiert 8 4 8 5 0 1 1 0 4 19 6 4 10 16 4 12 2 no 54 Bildung I, Flink I, Kämpfer I, Parade I, Schnelle Reflexe I, Wahrnehmung I Langschwert (WB+2), Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Magische Waffe (0)
159 Kait Ninja Slayerforum Mensch Mensch SPÄ 1 Talentiert 8 8 4 5 5 0 0 0 0 18 16 6 11 15 8 2 no 52 Akrobat I, Ausweichen I, Flink I, Heimlichkeit I, Parade I, Schnelle Reflexe I Langschwert (WB+2), Dolch (INI+1) Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)
160 Kait Schwertgelehrter Slayerforum Mensch Mensch KRI 1 Talentiert 8 4 8 4 0 3 0 0 3 21 7 4 11 14 4 2 no 55 Bildung I, Einstecker I, Flink I, Parade I, Schnelle Reflexe I, Wissensgebiet I Langschwert (WB+2), Dolch (INI+1) Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)
161 Kamp Dungeonslayers Basisbox Mensch Mensch KRI 3 Talentiert 8 7 5 5 0 2 4 1 0 22 4 4 15 15 10 2 no 61 Langschwert (WB+2), Armbrust, leicht (2h) (WB+2, INI-2) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)
162 Kampfdämon Dungeonslayers Basisbox Magische Wesen 9 8 8 4 4 4 4 4 4 46 12 5.5 15 16 12 8 gr 152 Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Pranke (WB+3, GA-3) Dämonenhaut (PA+2)
163 Kampfmagier 01 Beispiele Mensch Mensch Sch 1 Talentiert 8 4 8 0 0 1 4 5 1 31 6 3 12 8 9 14 1 no 65 Einstecker III, Schnelle Reflexe I Robe (runenbestickt) (Aura +1) Feuerstrahl (+1)
164 Kampfmagier 04 Beispiele Mensch Mensch Sch 4 Talentiert 8 4 8 0 0 2 4 5 3 31 6 6 12 8 12 11 16 1 no 71 Einstecker III, Zaubermacht III, Schnelle Reflexe I Robe (runenbestickt) (Aura +1) Ring (Schütze +III), Stiefel (Flink +III) Feuerstrahl (+1), Flackern (-2), Schattenpfeil (+2)
165 Kampfmagier 08 Beispiele Mensch Mensch Sch 8 Talentiert 8 4 8 0 0 3 4 5 6 31 6 6 12 8 13 14 17 2 no 86 Einstecker III, Zaubermacht III, Wissensgebiet II, Schnelle Reflexe I, Abklingen I, Schütze I Robe (runenbestickt) (Aura +1) Ring (Schütze +III), Stab (Zauber: Verteidigung als Zauberstab), Stab (Zauber: Flackern als Zauberstab), Stiefel (Flink +III) Blitz (+3), Feuerstrahl (+1), Flackern (-2), Schattenpfeil (+2), Schutzschild (0), Verteidigung (0)
166 Kampfmagier 12 Beispiele Mensch Mensch Sch 12 Talentiert 8 4 8 0 0 3 4 5 10 31 6 6 12 8 15 18 19 4 no 96 Abklingen III, Einstecker III, Schütze III, Zaubermacht III, Wissensgebiet II, Schnelle Reflexe I Robe (runenbestickt) (Aura +1) Ring (Schütze +III), Ring (Zauber: Feuerball Abklingzeit bei Träger verkürzt um 2 Runden), Stab (Zauber: Flackern als Zauberstab), Stab (Zauber: Verteidigung als Zauberstab), Stab (Zauber: Feuerball als Zauberstab), Stiefel (Flink +III) Blitz (+3), Feuerball (+3), Feuerstrahl (+1), Flackern (-2), Magische Rüstung (0), Schattenpfeil (+2), Schutzschild (0), Verteidigung (0)
167 Kavija die Uralte Das Umbarla-Becken Mensch Mensch Sch 10 Talentiert 5 5 10 0 0 7 0 1 9 18 5 3.5 5 6 6 19 11 1 no 77 Alchemie III, Wechsler III, Wissensgebiet III, Magieresistent I, Einstecker I, Diener der Dunkelheit I, Manipulator I, Wissensgebiet I Keule (WB+1, Diener der Dunkelheit +III, Zauber: Wolke des Todes eingebettet) bunte Feder (Kraft der Bestie +I, Adlergestalt +I), Kette (Tiergestalt +I, Kraft der Bestie +I), Umhang (Kraft der Bestie +I, Bärengestalt +I) Fluch (-(GEI+AU)/2), Gehorche (-(GEI+VE)/2+1), Halt (-(KÖR+AU)/2), Magische Waffe (0), Spionage (0), Tarnender Nebel (-2), Terror (-(GEI+VE)/2+1), Tierbeherrschung (-LK/2+1), Totengespräch (0), Verwirren (-(GEI+AU)/2+1)
168 Keiler Dungeonslayers Basisbox Tiere 10 7 1 2 2 0 5 0 0 38 9 7 17 14 7 6 no 89 Natürliche Waffen, Sturmangriff Hauer (WB+2, GA-1) Dicke Borstenhaut (PA+2)
169 Kerberos Der verdorbene Baumherr Magische Wesen 14 8 0 6 2 1 2 2 2 78 10 8 20 23 10 19 gr 180 Mehrere Angriffe (+2), Gift, Angst, Dunkelsicht, Natürliche Waffen, Wesen der Dunkelheit (Settingoption) Biss (WB+3) Wolfspelz (PA+4)
170 Kleine Monsterspinne Dungeonslayers Basisbox Tiere 10 7 1 2 2 0 1 4 0 32 9 7 12 13 12 5 no 97 Kletterläufer, Lähmungseffekt, Natürliche Waffen Spinnenbiss (WB+1, GA-1), Netzflüssigkeit (WB+1) Dicke Spinnenhaut (PA+1)
171 Kleine Mordmücke Wolfshatz im Wargenwald Tiere 8 9 1 3 4 0 2 0 0 10 13 5.5 10 13 9 5 kl 84 Fliegen, Nachtsicht, Natürliche Waffen, Sturzangriff, Werteverlust Blutsaug. Stachel (WB+2)
172 Kleiner Augenball Schatten über Vestrach Magische Wesen 8 6 8 0 0 2 3 2 2 21 6 4 13 8 8 10 10 9 no 183 Mehrere Angriffe (+4), Antimagie, Dunkelsicht, Mehrere Angriffsglieder, Schweben, Wesen der Dunkelheit (Settingoption) Warzenhaut (PA+2) Blenden (-(AGI+AU)/2), Einschläfern (-(KÖR+VE)/2), Kettenblitz (+3), Schleudern (-(KÖR+AU)/2), Schutzfeld (0), Schutzschild (0), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2)
173 Kleiner Borstenwurm Trächtige Wildsau Tiere 12 4 2 1 3 1 2 1 0 72 7 5 16 15 5 11 gr 164 Dunkelsicht, Sonar, Verschlingen Biss (WB+2, GA-2) Dicke Borstenhaut (PA+2)
174 Kleiner Knochengolem Das Geheimnis des Knochenbaus Konstrukte 8 9 0 5 4 0 0 0 0 36 13 6 8 15 9 7 gr 101 Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff Kochenklauen (WB+2)
175 Kobold Dungeonslayers Basisbox Humanoide 3 6 2 1 1 1 1 2 0 7 7 4 4 5 8 1 kl 25 Keule (WB+1)
176 Komplize Wolfshatz im Wargenwald Mensch Mensch KRI 2 Talentiert 8 8 4 4 0 0 3 3 0 21 8 5 12 15 12 2 no 54 Kämpfer II, Wahrnehmung II, Jäger I, Ausweichen I, Raserei I Axt (WB+1), Speer (WB+1) Lederpanzer (PA+1)
177 Kral der Schreckliche Das Umbarla-Becken Mensch Mensch BER 12 Talentiert 8 6 6 7 2 3 6 1 0 30 10 4 19 22 7 10 no 77 Kämpfer III, Raserei III, Brutaler Hieb II, Einstecker II, Standhaft II, Parade I, In Deckung I, Rundumschlag I, Schlachtruf I, Verletzen I mag. Langschwert +2 (WB+4, INI+2, GA-2, Aderschlitzer +II) Lederpanzer (PA+1), Holzschild (PA+1), mag. Metallhelm +1 (PA+2, Wahrnehmung +III)
178 Kriegsdämon Dungeonslayers Basisbox Magische Wesen 15 10 10 7 5 5 7 5 5 160 15 8 24 26 15 23 ri 297 Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Pranke (WB+4, GA-4) Dämonenhaut (PA+2)
179 Kriegselefant Dungeonslayers Basisbox Tiere 16 6 1 5 2 0 5 0 0 93 8 6.5 23 23 6 16 gr 142 Natürliche Waffen, Sturmangriff Rammen (WB+2) Dickhäuter (PA+2)
180 Kruga Das Umbarla-Becken Mensch Mensch KRZ 14 Talentiert 7 5 8 4 0 8 2 6 0 19 7 3.5 11 18 11 8 14 2 no 110 Feuermagier III, Wissensgebiet III, Ausweichen II, Einbetten II, Wechsler II, Kämpfer I, Gerüstet I, Arkane Explosion I, Standhaft I, Rüstzauberer I, Wissensgebiet I, Zaubermacht I, Zauberwaffe I mag. Breitschwert +2 (WB+3, INI+2, GA-4, Zauber: Feuerball eingebettet) Lederpanzer (PA+1, Ausweichen +III), Lederschienen (Arm & Bein) (PA+1, Kämpfer +III) Blenden (-(AGI+AU)/2), Duftnote (0), Feueratem (+6), Feuerball (+6), Feuerlanze (+5), Feuerstrahl (+4), Flammenklinge (+3), Halt (-(KÖR+AU)/2), Heilbeeren (0), Netz (-(AGI+ST)/2), Rost (-Stufe), Schatten (-(AGI+AU)/2), Schleudern (-(KÖR+AU)/2), Telekinese (-1/Stufe x5 kg)
181 Krötenhaut Slay! #3 Untote Anführer 8 10 0 4 6 2 6 2 0 48 16 6 16 16 14 14 no 356 Mehrere Angriffe (+3), Dunkelsicht, Kletterläufer, Natürliche Waffen, Schwimmen, Verschlingen, Wesen der Dunkelheit (Settingoption) Klauen/Zunge (WB+2) Warzenhaut
182 Kultist in Mautmoreen Slayerforum Mensch Mensch Sch 1 Talentiert 7 5 8 1 1 2 1 3 3 18 6 3.5 8 10 8 13 1 no 53 Bildung I, Diener der Dunkelheit I, Kämpfer I, Wahrnehmung I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1), Kurzschwert (WB+1) Robe (runenbestickt) (Aura +1) Feuerstrahl (+1)
183 Lebende Rüstung Dungeonslayers Basisbox Konstrukte 10 6 0 4 0 0 4 0 0 24 6 4 19 16 6 8 no 72 Dunkelsicht, Geistesimmun Langschwert (WB+2) Metallwesen (PA+5)
184 Lebende Wurzel Angriff auf das Wurzelnest Pflanzenwesen 9 8 0 4 2 0 2 0 0 42 10 5.5 11 15 8 8 gr 114 Geistesimmun, Lähmungseffekt, Natürliche Waffen, Umschlingen Wurzelhiebe (WB+2)
185 Lehrling in Aenk`Mator Slayerforum Mensch Mensch Zau 1 Talentiert 6 6 8 0 0 5 1 2 3 17 6 4 7 6 8 11 1 no 50 Bildung II, Alchemie I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I Robe (runenbestickt) (Aura +1) Magie identifizieren (0)
186 Leichnam Dungeonslayers Basisbox Untote 7 6 9 17 0 8 21 4 8 38 6 4 31 24 10 17 13 15 no 200 Angst, Dunkelsicht, Geistesimmun, Totenkraft, Wesen der Dunkelheit (Settingoption) mag. Robe +3 (PA+3) Arkanes Schwert (0), Ebenentor (-8), Einschläfern (-(KÖR+VE)/2), Flammeninferno (+5), Frostschock (+3), Gasgestalt (0), Gehorche (-(GEI+VE)/2), Kontrollieren (-(GEI+AU)/2), Magisches Schloss (0), Netz (-(AGI+ST)/2), Schatten (-(AGI+AU)/2), Schatten erwecken (0), Schattenlanze (+5), Skelette erwecken (0), Springen (0), Stolpern (-(AGI+AU)/2), Trugbild (-2), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2), Wandöffnung (0), Wolke des Todes (-4), Zeitstop (-5)
187 Lios SC2GO Elf Elf Hei 1 Nachtsicht, Unsterblich, Leichtfüßig 4 8 8 0 0 2 3 0 6 17 9 5 7 6 9 15 1 no 54 Ausweichen I Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1) Robe (runenbestickt) (Aura +1) Heilende Hand (+1)
188 Lord Dammenhall D2GO #20 Untote Episch 12 8 6 16 2 2 16 2 2 380 11 5 40 38 10 51 no 1130 Angst, Alterung, Geistesimmun, Totenkraft, Wesen der Dunkelheit (Settingoption) mag. Bihänder (2h) +3 (WB+6, INI+1, GA-7) mag. Plattenpanzer +3 (PA+6), mag. Metallhelm +1 (PA+2)
189 Lufrelementardiener Der Turm des Sturmrufers Magische Wesen 5 5 2 2 0 2 2 1 0 9 5 3.5 15 8 7 1 kl 53 Anfällig, Fliegen Luftstoß (WB+1) Keine feste Gestalt (PA+8)
190 Luftdämon I Die Luftschiffe der Vestrach-Flotte Magische Wesen 7 8 6 5 3 3 3 3 3 20 11 5 14 14 13 6 no 106 Anfällig, Dunkelsicht, Fliegen, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Klauen (WB+2, GA-1), Luftstoß (WB+2) Keine feste Gestalt (PA+4)
191 Luftdämon II Die Luftschiffe der Vestrach-Flotte Magische Wesen 9 9 8 6 6 6 5 5 5 48 15 6 18 18 16 12 gr 153 Anfällig, Dunkelsicht, Fliegen, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Klauen (WB+3, GA-2), Luftstoß (WB+2) Keine feste Gestalt (PA+4)
192 Luftdämon III Die Luftschiffe der Vestrach-Flotte Magische Wesen 12 10 10 7 5 5 8 8 8 150 15 8 24 23 22 22 ri 272 Anfällig, Dunkelsicht, Fliegen, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Klauen (WB+4, GA-3), Luftstoß (WB+4) Keine feste Gestalt (PA+4)
193 Luftelementar I Dungeonslayers Basisbox Magische Wesen 6 8 1 2 0 0 3 3 0 10 8 5 17 9 12 4 kl 68 Anfällig, Fliegen, Körperlos Luftstoß (WB+1) Keine feste Gestalt (PA+8)
194 Luftelementar II Dungeonslayers Basisbox Magische Wesen 10 9 1 2 0 0 5 3 0 25 9 5.5 23 14 14 9 no 92 Anfällig, Fliegen, Körperlos Luftstoß (WB+2) Keine feste Gestalt (PA+8)
195 Luftelementar III Dungeonslayers Basisbox Magische Wesen 15 9 1 2 0 0 7 4 0 64 9 6 30 21 17 16 gr 143 Anfällig, Fliegen, Körperlos Luftstoß (WB+4) Keine feste Gestalt (PA+8)
196 Luftelementarbote Valen Coladris Magische Wesen 2 5 1 0 3 0 2 1 0 4 8 3.5 12 2 6 1 wi 41 Anfällig, Fliegen Luftstoß Keine feste Gestalt (PA+8)
197 Lydenia Das Volk der Sturmelfen Elf Elf Zau 1 Nachtsicht, Unsterblich, Zielsicher 6 6 8 0 0 3 2 3 2 18 6 4 8 7 10 14 1 no 52 Blitzmacher I, Wissensgebiet I, Wissensgebiet I, Zaubermacht I Kampfstab (2h) (WB+1, Zielzauber +1) Schock (+1)
198 Mammut Das Umbarla-Becken Tiere 17 7 1 6 1 0 5 0 0 96 8 7.5 24 26 7 19 gr 168 Natürliche Waffen, Sturmangriff, Umschlingen Stoßzähne (WB+3, GA-1) Fell (PA+2)
199 Mardossani Kavalier Slayerforum Mensch Mensch KRI 1 Talentiert 8 6 6 3 2 2 1 0 2 19 10 4 11 13 6 1 no 51 Charmant I, Kämpfer I, Parade I, Schlitzohr I, Waffenkenner I, Wissensgebiet I Degen (WB+1, INI+2) Lederpanzer (PA+1) Maske (Glückspilz +I)
200 Maskentänzerin Slayerforum Mensch Mensch Zau 1 Talentiert 4 8 8 0 2 2 0 2 4 14 12 6 4 4 10 12 1 no 46 Akrobat I, Charmant I, Flink I, Schnelle Reflexe I, Wissensgebiet I, Wissensgebiet I Wurfmesser Zaubertrick (0)
201 Medusa Dungeonslayers Basisbox Magische Wesen 11 6 7 3 0 2 3 2 2 36 6 6 15 16 8 18 no 205 Mehrere Angriffe (+5), Blickangriff, Schleudern, Versteinern Klauen/Schlangen (WB+2) Schuppen (PA+1)
202 Mega-Skelett Die Pyramide des Eck Wan Untote Episch 10 6 4 8 2 0 2 2 4 440 8 4.5 18 23 8 34 gr 1088 Mehrere Angriffe (+3), Geistesimmun, Mehrere Angriffsglieder (+3), Wesen der Dunkelheit (Settingoption), Zerstampfen Fäulnispranke (WB+1) Merkt nichts (PA+2)
203 Meister Schnarkel Der Kult des Snarrk'Izz Rattling Rattling Zau 5 Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen 6 6 8 0 0 2 1 2 6 17 8 4 7 9 8 14 12 1 no 55 Bildung III, Runenkunde II, Wissensgebiet II, Heimlichkeit I, Wahrnehmung I, Wissensgebiet I mag. Kampfstab (2h) +2 (WB+3, INI+2, GA-2, Zielzauber +1, Zielzauber +1) Robe Amulett (Wahrnehmung +II) Blenden (-(AGI+AU)/2), Flackern (-2), Lauschen (-1/10m), Magie entdecken (0), Magie identifizieren (0), Magisches Schloss (0), Öffnen (-SW)
204 Menschensklave Trächtige Wildsau Mensch Mensch SPÄ 1 Talentiert 7 7 6 2 2 1 2 2 1 19 6 4.5 9 10 9 1 no 50 Werkzeug (WB+1, INI-3) Lumpen
205 Minderer Leichnam Slay! #3 Untote 6 6 9 0 0 6 2 4 7 18 6 4 10 11 10 16 18 9 no 153 Dunkelsicht, Geistesimmun, Lähmungseffekt, Magische Aufladung, Wesen der Dunkelheit (Settingoption) Lähmende Berührung (WB+5) mag. Robe +2 (PA+2) Arkanes Schwert (0), Botschaft (0), Durchlässig (-4), Dämonen beschwören (-(KÖR+AU)+BB), Feuerball (+3), Feuerwand (-2), Flackern (-2), Fliegen (0), Gehorche (-(GEI+VE)/2), Kettenblitz (+3), Kontrollieren (-(GEI+AU)/2), Magie bannen (-Stufe od. -LK/2), Magie entdecken (0), Magie identifizieren (0), Schatten erwecken (0), Schattenlanze (+5), Spionage (0), Telekinese (-1/Stufe x5 kg), Teleport (-1/Begleiter), Terror (-(GEI+VE)/2), Totengespräch (0), Unsichtbarkeit (0), Volksgestalt (-4), Zombies erwecken (0)
206 Minotaurus Dungeonslayers Basisbox Humanoide 14 6 4 4 2 1 3 1 1 54 8 4.5 18 20 7 12 gr 138 Sturmangriff, Zerstampfen Massive Keule, Horn oder Huf (WB+2, GA-2) Fell (PA+1)
207 Mokaner Fährtenleser Slayerforum Mensch Mensch SPÄ 1 Talentiert 7 8 5 1 2 1 2 4 0 19 11 5 10 9 14 1 no 52 Heimlichkeit I, Jäger I, Sattelschütze I, Schütze I, Wahrnehmung I Kurzbogen (2h) (WB+1, INI+1), Speer (WB+1) Lederpanzer (PA+1)
208 Monsterspinne Dungeonslayers Basisbox Tiere 12 9 1 3 2 0 2 4 0 72 11 9 15 17 15 11 gr 145 Kletterläufer, Lähmungseffekt, Natürliche Waffen Spinnenbiss (WB+2, GA-2), Netzflüssigkeit (WB+2) Dicke Spinnenhaut (PA+1)
209 Morg Bulgash Das Umbarla-Becken Mensch Mensch KRI 13 Talentiert 8 7 5 8 1 1 8 1 0 26 12 5 27 23 8 15 no 98 Ausweichen III, Brutaler Hieb III, Kämpfer III, Verletzen III, Sensenspötter II, Magieresistent I, Waffenkenner I, Wissensgebiet I mag. Breitschwert +2 (WB+3, INI+2, GA-4) mag. Plattenpanzer +1 (PA+4, LA-0.5, Parade +I), mag. Plattenbeinschienen +1 (PA+2, Flink +I), mag. Plattenarmschienen +1 (PA+2, Kämpfer +I), mag. Metallhelm +1 (PA+2, Schnelle Reflexe +I)
210 Mudaks, die Grünhaut Slay! #1 Humanoide 5 7 3 3 2 2 1 2 0 8 11 4.5 8 9 9 1 kl 45 Ausweichen I, Kämpfer I, Nachtsicht, Wesen der Dunkelheit (Settingoption) Mudaks Schlitzer (INI+1, Glückspilz +I) Mudaks Schuppen (PA+1, Schnelle Reflexe +I), Mudaks Schädel (PA+1, INI-1)
211 Mumie Dungeonslayers Basisbox Untote 12 4 4 10 0 0 10 0 2 32 4 3 23 23 4 18 no 133 Angst, Anfällig, Dunkelsicht, Geistesimmun, Natürliche Waffen, Totenkraft, Werteverlust, Wesen der Dunkelheit (Settingoption) Fäulnispranke (WB+1) Bandagen (PA+1)
212 Mutierte Riesenratte D2GO #5 Tiere 12 18 2 3 9 1 3 0 0 50 27 10.5 15 19 18 7 gr 102 Spitze Zähne (WB+4)
213 Nafuri Söldner Slayerforum Mensch Mensch KRI 1 Talentiert 8 8 4 5 3 0 2 0 0 20 11 5 12 15 8 2 no 53 Zwei Waffen III, Parade I, Wahrnehmung I Krummschwert (WB+2), Krummschwert (WB+2) Lederpanzer (PA+1)
214 Nancor der Bärenwüter Das Umbarla-Becken Mensch Mensch KRI 9 Talentiert 8 6 6 8 1 0 7 0 2 34 1 4 18 23 6 11 no 119 Brutaler Hieb III, Einstecker III, Kämpfer III, Jäger I, Prügler I, Standhaft I, Wissensgebiet I Schlachtbeil (2h) (WB+4, INI-6, GA-4, Raserei +I, Schlachtruf +I, Rundumschlag +I) mag. Kettenpanzer +1 (PA+3)
215 Narrländer Alchemist Slayerforum Gnom Gnom Zau 1 Dunkelsicht, Klein, Langlebig, Magisch begabt, Zäh, Zäher als sie aussehen 5 7 8 0 0 3 0 4 4 15 7 4.5 6 6 11 13 1 kl 49 Alchemie I, Glückspilz I, Runenkunde I, Wahrnehmung I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Magie entdecken (0)
216 Nekrolyth Slay! #3 Untote 6 6 8 0 1 5 2 5 6 18 7 4 8 7 11 14 16 3 no 94 Dunkelsicht, Geistesimmun, Wesen der Dunkelheit (Settingoption) Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Flackern (-2), Fluch (-(GEI+AU)/2), Kleiner Terror (-(GEI+VE)/2), Kontrollieren (-(GEI+AU)/2), Magie entdecken (0), Magische Waffe (0), Schatten (-(AGI+AU)/2), Schattenpfeil (+2), Schweben (0), Skelette erwecken (0), Spionage (0), Volksgestalt (-4), Öffnen (-SW)
217 Nico Mavelli Das Geschenk der Eiskönigin Mensch Mensch BLU 17 Talentiert Heroisch 7 5 8 3 0 5 6 5 10 130 8 4.5 18 16 10 18 17 11 no 436 Einstecker III, Blutschild II, Einbetten II, Diener der Dunkelheit II, Kämpfer II, Ritual der Narben II, Zaubermacht II, Feuermagier I, Alchemie I, Blutige Heilung I, Macht des Blutes I, Flink I, Wechsler I, Wissensgebiet I mag. Keule +3 (WB+4, INI+3, GA-3) mag. Robe (runenbestickt) +1 (PA+1, Aura +1) Halskrause des Leids (Aura +2, Zauberqual +III), Kette des Leids (Zielzauber +2, Einstecker +II), Mantel der Leids (Verstand +1, Schmerzhafter Wechsel +I), Ring (Abklingzeit aller Zauber des Trägers verkürzt um 1 Runden), Ring (Abwehr +2), Scherpe des Leid (Körperexplosion +2, Stärke +2, Zauber: Körperexplosion eingebettet), Stab (Zauber: Schattenpfeil als Zauberstab) Blut kochen (-(KÖR+AU)/2), Erdspalt (-4), Feueratem (+4), Feuerstrahl (+2), Flackern (-2), Fluch (-(GEI+AU)/2), Gehorche (-(GEI+VE)/2), Halt (-(KÖR+AU)/2), Lauschen (-1/10m), Magische Waffe (0), Magisches Schloss (0), Schatten (-(AGI+AU)/2), Schattenpfeil (+2), Schutzschild (0), Schweig (-(GEI+AU)/2), Tarnender Nebel (-2), Terror (-(GEI+VE)/2), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2), Volksgestalt (-4), Wahnsinn (-(GEI+AU)/2), Wolke des Todes (-4)
218 Niederer Dämon Dungeonslayers Basisbox Magische Wesen 5 5 5 2 2 2 2 2 2 9 7 3.5 9 8 7 1 kl 71 Dunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Pranke (WB+1, GA-1) Dämonenhaut (PA+2)
219 Nordeker Ritter Slayerforum Mensch Mensch KRI 1 Talentiert 8 6 6 5 0 0 3 0 2 21 6 4 15 16 6 5 no 75 Kämpfer II, Brutaler Hieb I, Parade I, Wahrnehmung I Breitschwert (WB+1, GA-2) Holzschild (PA+1), Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)
220 Oger Dungeonslayers Basisbox Humanoide 12 4 2 3 2 1 3 0 0 50 6 3.5 16 17 4 9 gr 120 Nachtsicht, Umschlingen, Wesen der Dunkelheit (Settingoption) Massive Keule (WB+2, GA-2) Felle (PA+1)
221 Ork Dungeonslayers Basisbox Humanoide 10 6 2 2 0 1 3 3 0 23 6 4 14 13 10 2 no 63 Nachtsicht, Wesen der Dunkelheit (Settingoption) Speer (WB+1) Lederpanzer (PA+1)
222 Orkräuber Dungeonslayers Basisbox Humanoide 12 6 2 3 0 1 3 3 0 25 7 4 17 17 10 5 no 70 Nachtsicht, Wesen der Dunkelheit (Settingoption) Krummschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1), Holzschild (PA+1)
223 Pfeilsporenpilz Trächtige Wildsau Pflanzenwesen 2 3 1 0 0 0 2 5 0 4 3 2.5 4 2 9 1 wi 38 Gift, Sonar Pfeilsporen (WB+1)
224 Pferd Dungeonslayers Basisbox Tiere 10 11 1 2 7 0 2 0 0 66 18 10.5 12 14 11 4 gr 101 Natürliche Waffen Huf (WB+2)
225 Phantomhexer Slay! #3 Untote 6 6 9 0 3 6 0 6 7 16 9 4 14 8 12 16 20 9 no 177 Alterung, Dunkelsicht, Fliegen, Geistesimmun, Wesen der Dunkelheit (Settingoption) Geisterklaue (WB+2, GA-2) Körperlos (PA+8) Arkanes Schwert (0), Blitz (+3), Blut kochen (-(KÖR+AU)/2), Fluch (-(GEI+AU)/2), Kettenblitz (+3), Magie bannen (-Stufe od. -LK/2), Magie entdecken (0), Netz (-(AGI+ST)/2), Schatten (-(AGI+AU)/2), Schattenlanze (+5), Telekinese (-1/Stufe x5 kg), Teleport (-1/Begleiter), Terror (-(GEI+VE)/2), Trugbild (-2), Unsichtbares sehen (0), Versetzen (0)
226 Pony Dungeonslayers Basisbox Tiere 9 8 1 2 5 0 2 0 0 63 13 8 11 13 8 3 gr 92 Natürliche Waffen Huf (WB+2)
227 Ratte Dungeonslayers Basisbox Tiere 2 4 1 1 2 0 0 0 0 3 6 3 2 4 4 1 wi 26 Dunkelsicht, Natürliche Waffen, Schwimmen Spitze Zähne (WB+1)
228 Rattenkönig Slay! #2 Magische Wesen 12 6 10 3 2 5 4 2 8 78 8 6.5 18 17 8 25 gr 296 Mehrere Angriffe (+9), Bezaubern, Dunkelsicht, Natürliche Waffen, Regeneration, Schwimmen, Wesen der Dunkelheit (Settingoption) Spitze Zähne (WB+2) Dicke Borstenhaut (PA+2)
229 Rattenkönig Schnabbler Der Kult des Snarrk'Izz Mensch Mensch KRI 7 Talentiert 8 7 5 11 2 0 6 0 0 30 9 4 16 23 7 9 no 92 Kämpfer III, Brutaler Hieb II, Einstecker II, Raserei I, Reiten I, Schwimmen I, Wissensgebiet I Breitschwert (WB+1, GA-2) Kettenpanzer (PA+2, LA-0.5) Gürtel (Stärke +3)
230 Rattenoger Slay! #2 Humanoide 11 6 3 5 2 1 3 1 0 48 8 4.5 15 18 7 11 gr 142 Mehrere Angriffe (+1), Dunkelsicht, Natürliche Waffen, Schwimmen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Krallen (WB+2, GA-2), Spitze Zähne (WB+2, GA-2) Fell (PA+1)
231 Rattling Slay! #2 Rattling Rattling SPÄ 1 Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen 6 8 6 0 4 1 2 3 0 18 13 6 9 6 11 1 kl 49 Fieser Schuss I, Flink I, Heimlichkeit I, Schwimmen I, Wahrnehmung I Schleuder, Dolch (INI+1) Lumpen (PA+1)
232 Rattling Giftzauberer Slay! #2 Rattling Rattling Sch 6 Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen 5 7 8 0 1 3 1 6 5 19 8 4.5 6 6 13 13 15 1 kl 71 Alchemie II, Feuermagier II, Ausweichen I, Einstecker I, Heimlichkeit I, Schwimmen I, Wahrnehmung I, Zaubermacht I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Feuerstrahl (+3), Kontrollieren (-(GEI+AU)/2), Schatten (-(AGI+AU)/2), Skelette erwecken (0), Tarnender Nebel (-2), Verwirren (-(GEI+AU)/2)
233 Rattling Kriegshäuptling Slay! #2 Rattling Rattling KRI 10 Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen 7 8 5 5 3 1 6 1 0 32 11 6.5 19 17 10 5 kl 75 Einstecker III, Kämpfer III, Ausweichen II, Flink II, Brutaler Hieb II, Parade II, Wissensgebiet II, Heimlichkeit I, Hinterhältiger Angriff I, Schwimmen I, Wahrnehmung I Kurzbogen (2h) (WB+1, INI+1), mag. Krummsäbel +1 (WB+2, INI+1, GA-1) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Lederschienen (Arm & Bein) (PA+1)
234 Rattling Seuchenpriester Slay! #2 Rattling Rattling Hei 6 Dunkelsicht, Klein, Leichtfüßig, Lichtempfindlich, Resistenz gegen Krankheiten und Gifte, Zäher als sie aussehen 7 5 8 0 0 4 2 1 8 25 5 3.5 9 8 6 16 10 1 kl 73 Alchemie II, Einstecker II, Wissensgebiet II, Fürsorger I, Ausweichen I, Schwimmen I, Heimlichkeit I, Wahrnehmung I, Zaubermacht I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Blenden (-(AGI+AU)/2), Einschläfern (-(KÖR+VE)/2), Giftbann (0), Giftschutz (+1), Heilende Hand (+2), Magie entdecken (0), Netz (-(AGI+ST)/2), Rost (-Stufe), Segen (0), Tiere besänftigen (-LK/5), Vertreiben (-(KÖR+AU)/2)
235 Raubkatze Dungeonslayers Basisbox Tiere 7 10 1 3 5 0 1 0 0 27 15 9 9 12 10 3 no 84 Mehrere Angriffe (+1), Nachtsicht, Natürliche Waffen Pranke/Biss (WB+2, GA-1) Fell (PA+1)
236 Reitkeiler Dungeonslayers Basisbox Tiere 9 9 1 2 2 0 4 0 0 35 11 8.5 15 13 9 5 no 86 Natürliche Waffen, Sturmangriff Hauer (WB+2, GA-1) Dicke Borstenhaut (PA+2)
237 Rekrut der Reiter der Morgenröte Slayerforum Halbling Halbling KRI 1 Geschwind, Klein, Leichtfüßig, Magisch unbegabt, Talentiert, Zäher als sie aussehen 8 8 4 6 2 0 2 0 0 20 12 5 11 16 8 3 kl 51 Reiten II, Parade I, Kämpfer I, Waffenkenner I Krummsäbel (WB+1)
238 Remnaton D2GO #7 Untote Episch 12 12 12 3 3 3 3 3 3 250 15 7 19 25 20 33 no 852 Mehrere Angriffe (+1), Anfällig, Geistesimmun, Odem, Totenkraft, Werteverlust Fäulnispranke (WB+6, GA-6), Sandstrahlodem (WB+5)
239 Riese Dungeonslayers Basisbox Humanoide 27 6 2 7 3 1 7 0 0 220 9 6 35 38 10 29 ri 347 Umschlingen, Zerstampfen Baumstamm (WB+4, GA-4), Geworf. Fels (WB+4, GA-4) Felle (PA+1)
240 Riesenaffe D2GO #4 Tiere 12 12 0 4 4 0 2 2 0 48 16 7.5 15 18 14 8 gr 97 Kletterläufer Pranke (WB+2) Dickhäuter (PA+1)
241 Riesenechse Dungeonslayers Basisbox Tiere 15 12 1 5 5 0 4 0 0 218 17 12.5 21 24 12 25 ri 316 Kletterläufer, Nachtsicht, Natürliche Waffen, Sturmangriff, Verschlingen Grausamer Biss (WB+4) Schuppenpanzer (PA+2)
242 Riesenkrake Dungeonslayers Basisbox Tiere 22 10 1 5 8 0 4 0 0 270 18 11 26 29 10 35 ri 397 Mehrere Angriffe (+5), Mehrere Angriffsglieder, Natürliche Waffen, Schwimmen, Umschlingen Fangarme (WB+2)
243 Riesenpterodactylus Die Insel der Stürme Tiere 14 16 2 3 6 0 4 3 0 140 22 11 20 21 19 22 ri 264 Angst, Anfällig, Fliegen, Natürliche Waffen, Sturzangriff, Verschlingen Grausamer Schnabel (WB+4) Schuppenpanzer (PA+2)
244 Riesenratte Dungeonslayers Basisbox Tiere 4 6 1 2 2 0 1 0 0 11 8 6 5 8 6 1 kl 41 Dunkelsicht, Natürliche Waffen, Schwimmen Spitze Zähne (WB+2)
245 Riesenschlange Dungeonslayers Basisbox Tiere 9 12 1 5 3 0 3 0 0 66 15 11 14 16 12 8 gr 143 Gift, Natürliche Waffen, Umschlingen Großer Biss (WB+2, GA-2) Schuppenpanzer (PA+2)
246 Riesensumpfotter Das Umbarla-Becken Tiere 12 10 1 6 2 0 3 0 0 188 12 11 17 20 10 20 ri 291 Gift, Lähmungseffekt, Natürliche Waffen, Umschlingen Biss (WB+2, GA-2) Schuppenpanzer (PA+2)
247 Ritter 01 Beispiele Mensch Mensch KRI 1 Talentiert 8 6 6 2 0 0 4 0 4 22 7 1 21 13 6 6 no 62 Kämpfer I, Parade I, Reiten I, Schnelle Reflexe I Langschwert (WB+2), Lanze (WB+1) Plattenpanzer (PA+3, LA-1), Turmschild (PA+2, LA-1), Plattenbeinschienen (PA+1, LA-0.5), Plattenarmschienen (PA+1, LA-0.5), Metallhelm (PA+1, INI-1)
248 Ritter 04 Beispiele Mensch Mensch KRI 4 Talentiert 8 6 6 5 0 0 4 0 4 22 9 4 21 18 6 8 no 65 Kämpfer III, Charmant I, Parade I, Reiten I, Schnelle Reflexe I Langschwert (WB+2), Lanze (WB+1) Plattenpanzer (PA+3, LA-1), Turmschild (PA+2, LA-1), Plattenbeinschienen (PA+1, LA-0.5), Plattenarmschienen (PA+1, LA-0.5), Metallhelm (PA+1, INI-1, Schnelle Reflexe +I) Stiefel (Flink +III)
249 Ritter 08 Beispiele Mensch Mensch KRI 8 Talentiert 8 6 6 7 0 0 6 0 4 33 12 4 25 23 6 13 no 83 Kämpfer III, Parade III, Reiten II, Charmant I, Brutaler Hieb I, Schnelle Reflexe I mag. Langschwert +3 (WB+5, INI+3, GA-3), Lanze (WB+1) Plattenpanzer (PA+3, LA-1, Einstecker +III), Turmschild (PA+2, LA-1), Plattenbeinschienen (PA+1, LA-0.5), Plattenarmschienen (PA+1, LA-0.5), Metallhelm (PA+1, INI-1, Schnelle Reflexe +I) Stiefel (Flink +III)
250 Ritter 12 Beispiele Mensch Mensch KRI 12 Talentiert 8 6 6 9 0 0 8 0 7 35 12 4 27 25 6 16 no 92 Brutaler Hieb III, Kämpfer III, Parade III, Reiten III, Charmant II, Schnelle Reflexe I mag. Langschwert +3 (WB+5, INI+3, GA-3), Lanze (WB+1) Plattenpanzer (PA+3, LA-1, Einstecker +III), Turmschild (PA+2, LA-1), Plattenarmschienen (PA+1, LA-0.5), Metallhelm (PA+1, INI-1, Schnelle Reflexe +I), Plattenbeinschienen (PA+1, LA-0.5) Diadem (Aura +3), Stiefel (Flink +III)
251 Ritter Gungart Slay! #3 Untote Heroisch 7 6 9 17 0 8 21 4 8 190 6 4 33 24 10 17 20 23 no 690 Angst, Geistesimmun, Totenkraft, Wesen der Dunkelheit (Settingoption) mag. Robe +3 (PA+3) Arkanes Schwert (0), Ebenentor (-8), Einschläfern (-(KÖR+VE)/2), Flammeninferno (+5), Frostschock (+3), Gasgestalt (0), Gehorche (-(GEI+VE)/2), Kontrollieren (-(GEI+AU)/2), Magisches Schloss (0), Netz (-(AGI+ST)/2), Schatten (-(AGI+AU)/2), Schatten erwecken (0), Schattenlanze (+5), Skelette erwecken (0), Springen (0), Stolpern (-(AGI+AU)/2), Trugbild (-2), Unsichtbarkeit (0), Verwirren (-(GEI+AU)/2), Wandöffnung (0), Wolke des Todes (-4), Zeitstop (-5)
252 Ritter Wilbert Dungeonslayers Basisbox Mensch Mensch KRI 3 Talentiert 8 6 6 6 0 0 6 0 0 24 3 3 18 17 6 8 no 103 Bihänder (2h) (WB+3, INI-2, GA-4) Plattenpanzer (PA+3, LA-1), Metallhelm (PA+1, INI-1)
253 Rogg (Umbar-Barbar) Avakars Runde Mensch Mensch KRI 6 Talentiert 8 7 5 8 2 0 5 0 0 32 9 4.5 17 22 7 10 no 114 Brutaler Hieb III, Einstecker III, Magieresistent II, Kämpfer I, Schnelle Reflexe I mag. Bihänder (2h) +2 (WB+5, GA-6, 1x aktionsfrei Aufstehen), mag. Streithammer (2h) +2 (WB+5, INI-2, GA-2, Brutaler Hieb +III) Lederpanzer (PA+1, Abwehr +1), Lederschienen (Arm & Bein) (PA+1) Ring (Abwehr +1)
254 Rostassel Dungeonslayers Basisbox Tiere 8 7 1 4 0 0 4 0 0 33 7 7 15 13 7 8 no 111 Mehrere Angriffe (+3), Dunkelsicht, Mehrere Angriffsglieder, Natürliche Waffen, Rost Tentakelfühler (WB+1) Chitinpanzer (PA+3)
255 Ryan Dougal Slay! #2 Mensch Mensch KRI 1 Talentiert 8 8 4 5 0 0 0 5 0 18 8 5 11 13 13 1 no 50 Brutaler Hieb I, Fieser Schuss I, Parade I, Prügler I Schlagring, Wurfmesser Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1)
256 Räuber D2GO #1 Mensch Mensch KRI 1 Talentiert 8 8 2 2 2 1 2 2 0 20 11 5 11 12 11 1 no 51 Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1)
257 Sanuriel Valen Coladris Elf Elf Zau 1 Nachtsicht, Unsterblich, Zielsicher 6 6 8 0 0 2 2 4 3 18 6 4 8 7 11 15 1 no 53 Blitzmacher I, Glückspilz I, Wahrnehmung I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Schock (+1)
258 Schatten Dungeonslayers Basisbox Untote 11 11 0 5 0 0 4 2 0 25 11 6.5 23 18 13 15 no 136 Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Wesen der Dunkelheit (Settingoption) Geisterklaue (WB+2, GA-2) Körperlos (PA+8)
259 Schattenkultist Die Kinder der Schatten Mensch Mensch KRI 1 Talentiert 7 7 6 3 1 0 2 2 0 19 8 4.5 9 11 9 1 no 48 Kurzschwert (WB+1) Robe
260 Schattenpriester Die Kinder der Schatten Mensch Mensch Sch 5 Talentiert 5 8 7 0 0 5 0 6 2 15 9 5 5 5 14 9 13 1 no 62 Dolch (INI+1) Robe (runenbestickt) (Aura +1) Niesanfall (-(KÖR+AU)/2), Schatten (-(AGI+AU)/2), Schattenpfeil (+2), Skelette erwecken (0), Verwirren (-(GEI+AU)/2)
261 Schattenwolf Wolfshatz im Wargenwald Tiere 9 7 1 3 4 0 2 0 0 32 11 7 14 14 7 5 no 88 Anfällig, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Kräftiger Biss (WB+2, GA-1) Schattenpelz (PA+3)
262 Schimmerross Dungeonslayers Basisbox Tiere 9 12 1 2 6 0 3 0 0 66 18 11 12 13 12 4 gr 106 Nachtsicht, Natürliche Waffen Huf (WB+2)
263 Schlachtross Dungeonslayers Basisbox Tiere 12 10 1 4 4 0 3 0 0 75 14 9.5 15 18 10 9 gr 121 Natürliche Waffen, Sturmangriff Huf/Rammen (WB+2)
264 Schlingwurzelbusch Dungeonslayers Basisbox Pflanzenwesen 6 8 0 3 0 0 4 0 0 30 8 7.5 11 11 8 8 no 122 Mehrere Angriffe (+4), Geistesimmun, Natürliche Waffen, Umschlingen Wurzelhiebe (WB+2) Gehölz (PA+1)
265 Schlächter Slay! #3 Untote 10 6 5 8 4 0 8 4 0 28 10 4 21 20 12 11 no 124 Auferstehung, Dunkelsicht, Geistesimmun, Regeneration, Resistenz, Wesen der Dunkelheit (Settingoption) Machete (WB+2), Langbogen (2h) (WB+2, INI+1) Merkt nichts (PA+2), Metallhelm (PA+1, INI-1)
266 Schnappaal Das Geheimnis des Knochenbaus Tiere 9 8 0 4 0 0 4 2 0 12 8 5 13 14 10 3 kl 52 Dunkelsicht, Natürliche Waffen, Schwimmen Biss (WB+1)
267 Schneeriese Ein Riesenproblem Humanoide 20 6 2 6 3 1 6 0 0 180 9 6 27 29 9 20 ri 276 Umschlingen, Zerstampfen Axt (WB+3, GA-2), Geworf. Fels (WB+3, GA-2) Felle (PA+1)
268 Schreckensdachs Ein Riesenproblem Tiere 14 6 1 4 3 0 3 0 0 41 9 6 18 20 6 10 no 100 Nachtsicht Pranke (WB+2, GA-2) Fell (PA+1)
269 Sensenmann Slay! #3 Untote 10 7 8 20 3 4 20 5 6 40 9 4.5 38 37 12 14 13 36 no 430 Angst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Nur durch Magie verletzbar, Resistenz, Totenkraft, Vernichtender Schlag, Wesen der Dunkelheit (Settingoption) Sense (WB+7, INI-1, GA-7) Körperlos (PA+8) Ebenentor (-8), Geben und Nehmen (0), Halt (-(KÖR+AU)/2), Kontrollieren (-(GEI+AU)/2), Schatten erwecken (0), Skelette erwecken (0), Teleport (-1/Begleiter), Totengespräch (0), Unsichtbares sehen (0), Unsichtbarkeit (0), Verborgenes sehen (0), Verlangsamen (-(KÖR+AU)/2), Versetzen (0), Wiederbelebung (0), Zombies erwecken (0)
270 Shekz Dungeonslayers Basisbox Humanoide 3 5 7 0 0 4 1 2 4 7 5 3.5 5 3 7 11 9 1 kl 49 Nachtsicht, Wesen der Dunkelheit (Settingoption) Wurfmesser Felle (PA+1) Einschläfern (-(KÖR+VE)/2), Feuerstrahl (+1)
271 Sinda SC2GO Mensch Mensch SPÄ 1 Talentiert 7 8 5 3 0 0 2 5 0 22 9 5 10 11 14 1 no 55 Ausweichen I, Einstecker I Kurzbogen (2h) (WB+1, INI+1), Kurzschwert (WB+1) Lederpanzer (PA+1)
272 Skelett Dungeonslayers Basisbox Untote 10 8 0 3 2 0 2 2 0 22 10 5 12 14 10 4 no 72 Dunkelsicht, Geistesimmun, Wesen der Dunkelheit (Settingoption) Kochenklauen (WB+1)
273 Skelettdrache Slay! #3 Untote 15 12 3 8 9 1 7 7 2 480 21 15.5 25 26 19 46 ge 685 Angst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Geistesimmun, Natürliche Waffen, Schleudern, Sturzangriff, Totenkraft, Wesen der Dunkelheit (Settingoption), Zerstampfen Biss, Klaue oder Schwanzhieb (WB+3, GA-2) Skelettpanzer (PA+3)
274 Skelettkrieger Slay! #3 Untote 8 7 5 6 2 0 4 4 3 22 9 4 15 17 13 9 no 115 Mehrere Angriffe (+1), Dunkelsicht, Geistesimmun, Bezaubern, Resistenz, Wesen der Dunkelheit (Settingoption) mag. Langschwert +1 (WB+3, INI+1, GA-1), Knochenbogen (WB+2, INI+1) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1)
275 Skelettmagier Slay! #3 Untote 6 6 8 2 2 4 2 7 5 18 8 4 9 9 13 13 19 4 no 109 Dunkelsicht, Geistesimmun, Resistenz, Wesen der Dunkelheit (Settingoption) Kampfstab (2h) (WB+1, Zielzauber +1) mag. Robe (runenbestickt) +1 (PA+1, Aura +1) Arkanes Schwert (0), Blitz (+3), Feuerball (+3), Feuerlanze (+2), Flackern (-2), Flammenklinge (0), Halt (-(KÖR+AU)/2), Magische Rüstung (0), Schutzschild (0), Spurt (-2)
276 Skelettschütze Slay! #3 Untote 7 8 5 3 4 4 3 6 0 20 15 4.5 13 12 18 7 no 103 Dunkelsicht, Geistesimmun, Resistenz, Wesen der Dunkelheit (Settingoption), Zielen Knochenbogen (WB+4, INI+3, GA-2), Kochenklauen (WB+2) Kettenpanzer (PA+2, LA-0.5), Lederschienen (Arm & Bein) (PA+1)
277 Stadtwache in den Freien Landen Slayerforum Mensch Mensch KRI 1 Talentiert 8 8 4 5 0 0 5 0 0 26 6 5 14 16 8 4 no 59 Einstecker I, Kämpfer I, Verletzen I, Wissensgebiet I Hellebarde (2h) (WB+2, INI-2) Lederpanzer (PA+1)
278 Sternheider Forscher Slayerforum Elf Elf SPÄ 1 Nachtsicht, Unsterblich, Leichtfüßig 4 8 8 0 1 4 1 4 0 15 10 5 6 4 13 1 no 47 Jäger I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I, Zauber auslösen I Kurzbogen (2h) (WB+1, INI+1), Dolch (INI+1) Lederpanzer (PA+1)
279 Stig Ein Riesenproblem Mensch Mensch Hei 5 Talentiert 6 6 8 0 0 4 4 0 6 20 6 4 12 7 7 14 8 1 no 71 Fürsorger II, Ausweichen I, Alchemie I, Rüstzauberer I, Zaubermacht I Speer (WB+1) Lederpanzer (PA+1), Lederschienen (Arm & Bein) (PA+1) Federgleich (0), Giftbann (0), Heilbeeren (+2), Heilende Aura (+2), Heilende Hand (+3), Lichtpfeil (+2), Magische Waffe (0), Schutzschild (+2)
280 Stolpervogel Das Umbarla-Becken Tiere 4 6 3 1 3 0 2 6 3 8 9 4 7 6 12 9 1 kl 44 Schnabel (WB+1) Federkleid (PA+1) Stolpern (-(AGI+AU)/2)
281 Sturmmeerkatze Die Insel der Stürme Tiere 2 8 3 0 5 0 0 4 0 9 13 7.5 2 3 13 1 kl 43 Kletterläufer, Natürliche Waffen Biss (WB+1), Stein (WB+1)
282 Sturmsegler Die Insel der Stürme Tiere 3 8 1 1 3 0 0 1 1 7 11 5 4 5 9 1 kl 52 Fliegen, Natürliche Waffen, Sturzangriff Krallen (WB+1) Federkleid (PA+1)
283 Sumpfechse Das Umbarla-Becken Tiere 9 8 1 3 5 0 4 1 0 69 13 8 15 14 9 9 gr 156 Mehrere Angriffe (+1), Natürliche Waffen, Schleudern, Sturmangriff Biss (WB+2, GA-2) Schuppenpanzer (PA+2)
284 Säbelzahntiger Das Umbarla-Becken Tiere 10 10 1 3 6 0 3 0 0 69 16 9.5 14 15 10 8 gr 142 Mehrere Angriffe (+1), Nachtsicht, Natürliche Waffen, Sturmangriff Pranke/Biss (WB+2, GA-1) Fell (PA+1)
285 Tarc Trepios Das Umbarla-Becken Magische Wesen 8 7 3 5 3 3 4 0 2 44 10 5 14 15 7 5 5 gr 159 Mehrere Angriffe (+1), Geistesimmun, Natürliche Waffen, Sturmangriff Hörner (WB+2, GA-2), Klauen (WB+1, GA-1) Schuppenpanzer (PA+2) Unsichtbarkeit (0)
286 Tarr-Novize Wolfshatz im Wargenwald Mensch Mensch KRI 8 Talentiert 8 8 4 7 1 0 6 0 0 30 4 4 18 20 8 9 no 111 Brutaler Hieb II, Einstecker II, Kämpfer II, Schlachtruf I, Wahrnehmung I, Wissensgebiet I Schlachtgeißel (WB+3, INI-4, GA-4) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)
287 Tentakelhirn Dungeonslayers Basisbox Magische Wesen 4 6 1 2 2 0 1 0 0 11 8 6 5 6 6 1 1 kl 59 Dunkelsicht, Schweben, Werteverlust Gedankenzehrerstrahl (nicht sichtbar; verursacht mental Schaden und führt zu Werteverlust) (undefined)
288 Tigerskelett Die Goblinarena Untote 8 8 0 4 4 0 2 0 0 30 12 7.5 10 14 8 6 no 100 Mehrere Angriffe (+1), Geistesimmun, Nachtsicht, Wesen der Dunkelheit (Settingoption) Pranke/Biss (WB+2, GA-1)
289 Tintenkraken D2GO #4 Tiere 12 6 0 3 3 0 3 0 0 50 9 4.5 15 17 6 12 gr 139 Mehrere Angriffe (+5) Fangarme (WB+2)
290 Todesfee Dungeonslayers Basisbox Untote 6 9 10 19 0 3 19 0 9 35 9 5.5 33 27 9 19 31 no 287 Angst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit (Settingoption) Geisterklaue (WB+2, GA-2) Körperlos (PA+8) Wehklagen (ZB: -(KÖR+AU)/2 des Ziels; Abklingzeit: 10 Kampfrunden; Jeder in Umkreis von 9m um die Todesfee erleidet nicht abwehrbaren Schaden in Höhe des Probenergebnisses) (undefined)
291 Tonkriegergolem D2GO #17 Konstrukte 11 6 3 4 0 2 5 3 0 26 6 4 16 18 9 10 no 100 Dunkelsicht, Geistesimmun, Schleudern, Sturmangriff Pranke (WB+3)
292 Troll Dungeonslayers Basisbox Humanoide 16 6 2 4 0 1 4 3 0 60 6 4.5 22 22 13 14 gr 182 Anfällig, Dunkelsicht, Regeneration, Umschlingen, Wesen der Dunkelheit (Settingoption) Geworf. Fels (WB+4, GA-4), Massive Keule (WB+2, GA-2) Warzenhaut (PA+2)
293 Umbar Barbar Slayerforum Mensch Mensch KRI 1 Talentiert 8 8 4 6 2 0 2 0 0 23 8 5 12 18 8 4 no 58 Brutaler Hieb I, Einstecker I, Kämpfer I, Rundumschlag I Streitaxt (2h) (WB+3, INI-2) Lederschienen (Arm & Bein) (PA+1), Lederpanzer (PA+1)
294 Umbarlageier Das Umbarla-Becken Tiere 6 9 3 4 3 2 2 3 2 36 12 6 9 12 12 9 3 gr 131 Fliegen, Natürliche Waffen, Sturzangriff Schnabel (WB+2, GA-1) Federkleid (PA+1) Kettenblitz (+3)
295 Untote Mannshand Slay! #3 Untote 4 10 0 2 3 0 2 1 0 4 13 6 6 8 11 4 wi 83 Bodenkampf, Geistesimmun, Kletterläufer, Sonar, Umklammern, Wesen der Dunkelheit (Settingoption) Kochenklauen (WB+2)
296 Untote Werratte Das Geheimnis des Knochenbaus Untote 9 9 0 5 2 0 4 2 0 23 11 5.5 13 16 11 5 no 73 Dunkelsicht, Geistesimmun, Natürliche Waffen Krallen (WB+2)
297 Untoter Goblin Untote Goblinoide Untote 5 7 0 4 0 0 2 0 0 9 7 4.5 9 11 7 1 kl 46 Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption) Knochenpranke (WB+2) Merkt nichts (PA+2)
298 Untoter Oger Untote Goblinoide Untote 12 4 0 5 0 0 4 0 0 52 4 3.5 18 19 4 11 gr 106 Geistesimmun, Natürliche Waffen, Umschlingen, Wesen der Dunkelheit (Settingoption) Knochenpranke (WB+2) Merkt nichts (PA+2)
299 Untoter Ork Untote Goblinoide Untote 10 6 0 4 0 0 4 0 0 24 6 4 16 16 6 7 no 67 Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption) Knochenpranke (WB+2) Merkt nichts (PA+2)
300 Untoter Priester Die Pyramide des Eck Wan Untote 4 8 8 0 2 0 2 4 4 16 10 5 8 5 12 12 12 1 no 89 Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption) Fäulnispranke (WB+1) Merkt nichts (PA+2) Kettenblitz (+3), Kleiner Terror (-(GEI+VE)/2), Schattenpfeil (+2)
301 Untoter Wächter Lockruf aus der Finsternis Untote 13 5 0 5 0 0 5 0 0 28 2 3 23 21 5 13 no 79 Geistesimmun, Wesen der Dunkelheit (Settingoption) Streitaxt (2h) (WB+3, INI-2) Kettenpanzer (PA+2, LA-0.5), Merkt nichts (PA+2), Metallhelm (PA+1, INI-1)
302 Unwolf Dungeonslayers Basisbox Magische Wesen 11 8 1 4 2 0 2 2 0 35 10 7.5 14 16 12 7 no 104 Anfällig, Natürliche Waffen, Odem, Sturmangriff, Wesen der Dunkelheit (Settingoption) Feuerodem (WB+2), Biss (WB+1) Brennendes Fell (PA+1)
303 Vampirfledermaus Dungeonslayers Basisbox Tiere 5 4 1 3 0 0 2 0 0 4 4 3 7 9 4 2 wi 55 Fliegen, Natürliche Waffen, Sonar, Sturzangriff Krallen (WB+1)
304 Vandrianischer Minnesänger Slayerforum Mensch Mensch KRI 1 Talentiert 8 6 6 4 0 0 3 0 3 21 6 4 13 15 6 3 no 54 Charmant I, Instrument I, Kämpfer I, Parade I, Reiten I, Wissensgebiet I Langschwert (WB+2), Lanze (WB+1) Lederpanzer (PA+1)
305 Vandrianischer Ordensheiler Slayerforum Mensch Mensch Hei 1 Talentiert 8 4 8 0 0 0 4 0 6 22 4 3 16 10 4 15 3 no 61 Blocker II, Fürsorger I, Parade I, Rüstzauberer I Langschwert (WB+2) Lederpanzer (PA+1), Holzschild (PA+1), Lederschienen (Arm & Bein) (PA+1) Heilende Hand (+2)
306 Vandrianischer Ordensritter Slayerforum Mensch Mensch KRI 1 Talentiert 8 4 8 3 0 0 3 0 4 21 3 3.5 16 13 4 4 no 67 Brutaler Hieb I, Diener des Lichts I, Flink I, Parade I, Waffenkenner I Langschwert (WB+2), Streitkolben (WB+1, GA-1) Kettenpanzer (PA+2, LA-0.5), Holzschild (PA+1), Metallhelm (PA+1, INI-1)
307 Vandrianischer Waffenknecht Der schwarze Ritter Mensch Mensch KRI 2 Talentiert 8 6 6 6 0 0 5 0 0 26 5 3 17 18 6 7 no 63 Kämpfer II, Einstecker I Langschwert (WB+2) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)
308 Vandrianischer Waffenknecht Der schwarze Ritter Mensch Mensch SPÄ 2 Talentiert 7 8 5 2 0 0 3 6 0 23 8 4 14 9 19 4 no 81 Schütze II, Einstecker I Armbrust, schwer (2h) (WB+3, INI-4, GA-2), Dolch (INI+1) Kettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Metallschild (PA+1, LA-0.5)
309 Varissa Valen Coladris Elf Elf Hei 1 Nachtsicht, Unsterblich, Magisch begabt 6 6 8 0 2 3 1 0 5 17 9 4 7 6 6 16 1 no 52 Bildung I, Fürsorger I, Instrument I, Wissensgebiet I, Wissensgebiet I Dolch (INI+1) Robe (runenbestickt) (Aura +1) Heilende Hand (+2)
310 Verzauberter Besen Die Insel der Stürme Konstrukte 3 3 0 2 1 0 0 2 1 7 4 2.5 3 6 5 1 2 1 kl 53 Dunkelsicht, Geistesimmun, Schweben Besenstiel (WB+1) Niesanfall (-(KÖR+AU)/2), Reinigen (0), Stolpern (-(AGI+AU)/2), Wolke der Reue (-2)
311 Vestracher Einbrecher Slayerforum Mensch Mensch SPÄ 1 Talentiert 7 8 5 2 2 1 1 4 0 18 11 5 9 10 13 1 no 51 Akrobat I, Diebeskunst I, Fieser Schuss I, Heimlichkeit I, Schlitzohr I, Wissensgebiet I Kurzbogen (2h) (WB+1, INI+1), Kurzschwert (WB+1), Wurfmesser Lederpanzer (PA+1)
312 Virgil Trächtige Wildsau Zwerg Zwerg SPÄ 6 Dunkelsicht, Langlebig, Zäh 6 8 6 0 6 2 2 5 0 18 14 5 9 6 16 1 no 53 Heimlichkeit III, Schütze III Schleuder Lumpen
313 Vladek Crumm Avakars Runde Mensch Mensch KRI 6 Talentiert 8 8 4 8 3 0 4 0 0 22 16 4.5 21 26 8 13 no 110 Kämpfer III, Schnelle Reflexe II, Zwei Waffen II, Brutaler Hieb I, Ausweichen I mag. Bihänder (2h) +2 (WB+5, GA-6, Kämpfer +II), mag. Kurzschwert +1 (WB+2, INI+1, GA-1) mag. Plattenpanzer +1 (PA+4, LA-0.5), mag. Metallhelm +1 (PA+2), mag. Lederschienen (Arm & Bein) +1 (PA+2) Kette (Abwehr +1)
314 Walküre von Wyndstett Slayerforum Mensch Mensch KRI 1 Talentiert 8 8 4 5 3 0 2 0 0 20 12 5 14 15 9 2 no 75 Kämpfer I, Parade I, Schlachtruf I, Schnelle Reflexe I, Wissensgebiet I Speer (WB+1), Breitschwert (WB+1, GA-2) Lederpanzer (PA+1), Holzschild (PA+1), Metallhelm (PA+1, INI-1)
315 Wasserelementar I Dungeonslayers Basisbox Magische Wesen 6 8 1 3 0 0 3 2 0 10 8 5 17 11 12 3 kl 60 Anfällig, Körperlos, Schwimmen Wasserstrahl (WB+2) Keine feste Gestalt (PA+8)
316 Wasserelementar II Dungeonslayers Basisbox Magische Wesen 11 8 1 4 0 0 3 3 0 24 8 5 22 18 14 9 no 83 Anfällig, Körperlos, Schwimmen Wasserstrahl (WB+3) Keine feste Gestalt (PA+8)
317 Wasserelementar III Dungeonslayers Basisbox Magische Wesen 15 9 1 5 0 0 6 4 0 62 9 6 29 24 17 16 gr 133 Anfällig, Körperlos, Schwimmen Wasserstrahl (WB+4) Keine feste Gestalt (PA+8)
318 Wegelagerer Dungeonslayers Basisbox Mensch Mensch KRI 2 Talentiert 8 8 4 5 0 0 3 3 0 21 9 5 12 14 12 2 no 55 Kurzschwert (WB+1), Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1)
319 Werkzeug Die Pyramide des Eck Wan Konstrukte 10 5 0 4 0 0 4 2 0 12 5 3.5 19 16 7 9 kl 69 Fliegen, Umschlingen Werkzeug (WB+2) Metallwesen (PA+5)
320 Wilder Rattling Slay! #2 Humanoide 7 10 3 3 5 0 4 3 0 21 15 6 12 12 13 4 no 86 Gift, Dunkelsicht, Kletterläufer, Natürliche Waffen Krallen (WB+2), Biss (WB+2) Fell (PA+1)
321 Wilfried von Eibenhöh Der schwarze Ritter Mensch Mensch KRI 7 Talentiert 8 6 6 7 0 0 5 0 4 29 7 1.5 21 20 6 10 no 74 Kämpfer III, Einstecker II, Parade I, Reiten I, Schnelle Reflexe I Langschwert (WB+2), Lanze (WB+1) Plattenpanzer (PA+3, LA-1), Metallschild (PA+1, LA-0.5), Metallhelm (PA+1, INI-1), Plattenarmschienen (PA+1, LA-0.5), Plattenbeinschienen (PA+1, LA-0.5)
322 Wolf Dungeonslayers Basisbox Tiere 8 7 1 3 4 0 1 0 0 29 11 7 10 13 7 4 no 81 Nachtsicht, Natürliche Waffen, Sturmangriff Großer Biss (WB+2, GA-1) Wolfspelz (PA+1)
323 Wolfbart Das Geschenk der Eiskönigin Zwerg Zwerg WAM 18 Dunkelsicht, Langlebig, Zäh Heroisch 9 4 8 10 2 0 12 5 0 164 12 4 35 26 9 26 no 460 Brutaler Hieb V, Raserei III, Ausweichen II, Schnelle Reflexe II, Rundumschlag I mag. Streithammer (2h) +2 (WB+5, INI-2, GA-2, Stärke +2, Rundumschlag +I, Zauber: Schleudern eingebettet, Abklingzeit permanent ignorieren) mag. Plattenpanzer +2 (PA+5, Härte +2, Diener der Dunkelheit +II), mag. Plattenbeinschienen +1 (PA+2), mag. Plattenarmschienen +1 (PA+2), mag. Metallhelm +1 (PA+2) Fluch des Berserkers (Brutaler Hieb +II, Diener der Dunkelheit +II, Raserei +II, Standhaft +II), Handschuhe der Hammerkunst (Perfektion +III, Schnelle Reflexe +II), Haut des Eiswyrms (Einstecker +III, Diener der Dunkelheit +I), Knochenfußkette (Ausweichen +II, Flink +I)
324 Wollnashorn Das Umbarla-Becken Tiere 11 12 1 6 7 0 4 0 0 75 19 11 16 19 12 12 gr 154 Sturmangriff, Zerstampfen Horn oder Hufe (WB+2, GA-1) Fell (PA+1)
325 Wyndländischer Schwarzmagier Slayerforum Mensch Mensch Sch 1 Talentiert 7 5 8 0 0 2 1 5 3 18 6 3.5 8 7 10 16 1 no 54 Feuermagier II, Heimlichkeit I, Tiergestalt I, Wahrnehmung I Dolch (INI+1) Robe (runenbestickt) (Aura +1) Feuerstrahl (+3)
326 Ynnari (Schwester des Waldes) Slayerforum Elf Elf Hei 1 Nachtsicht, Unsterblich, Leichtfüßig 8 4 8 0 0 4 2 0 5 20 4 3 10 9 5 13 1 no 55 Instrument I, Jäger I, Wahrnehmung I, Wissensgebiet I Speer (WB+1) Robe (runenbestickt) (Aura +1) Tiere besänftigen (-LK/5)
327 Zasarischer Feuermagier Slayerforum Mensch Mensch Zau 1 Talentiert 6 6 8 0 0 1 2 4 4 21 6 4 8 7 10 15 1 no 57 Bildung I, Einstecker I, Feuermagier I, Zaubermacht I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Feuerstrahl (+2)
328 Zasarischer Kauffahrer Slayerforum Mensch Mensch SPÄ 1 Talentiert 6 8 6 2 2 2 0 4 0 19 11 5 7 8 14 1 no 51 Charmant I, Einstecker I, Schlitzohr I, Schwimmen I, Schütze I, Wissensgebiet I Kurzbogen (2h) (WB+1, INI+1) Lederpanzer (PA+1)
329 Zasarischer Märchenerzähler Slayerforum Mensch Mensch Zau 1 Talentiert 6 6 8 0 0 2 2 0 7 21 6 4 8 7 6 15 1 no 55 Charmant I, Einstecker I, Instrument I, Wahrnehmung I, Wissensgebiet I, Wissensgebiet I Kampfstab (2h) (WB+1, Zielzauber +1) Robe (runenbestickt) (Aura +1) Zaubertrick (0)
330 Zombie Dungeonslayers Basisbox Untote 13 3 0 3 0 0 5 0 0 28 3 2.5 20 18 3 10 no 78 Dunkelsicht, Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption) Fäulnispranke (WB+2) Merkt nichts (PA+2)
331 Zombie Sekretärin Die Kinder der Schatten Untote 13 3 0 3 0 0 5 0 0 28 3 2.5 20 18 3 8 no 56 Fäulnispranke (WB+2) Merkt nichts (PA+2)
332 Zombiebär Slay! #3 Untote 14 7 0 4 4 0 4 0 0 84 11 7.5 19 20 7 14 gr 165 Geistesimmun, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Pranke (WB+2, GA-2) Fell (PA+1)
333 Zombiedrache Slay! #3 Untote 20 8 1 8 5 1 10 5 1 600 13 12.5 34 32 17 64 ge 907 Angst, Mehrere Angriffe (+1), Geistesimmun, Dunkelsicht, Natürliche Waffen, Odem, Regeneration, Totenkraft, Verdorrende Aura, Verschlingen, Wesen der Dunkelheit (Settingoption), Zerstampfen Biss, Klaue, Odem oder Schwanzhieb (WB+4, GA-2) Verrottender Körper (PA+4)
334 Zombiegoblin Slay! #3 Untote 5 7 0 4 0 0 2 0 0 9 7 4.5 9 11 7 1 kl 46 Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption) Knochenpranke (WB+2) Merkt nichts (PA+2)
335 Zombiekeiler Slay! #3 Untote 11 7 0 4 2 0 5 0 0 39 9 7 18 17 7 10 no 107 Geistesimmun, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Hauer (WB+2, GA-1) Dicke Borstenhaut (PA+2)
336 Zombieoger Slay! #3 Untote 12 4 0 5 0 0 4 0 0 52 4 3.5 18 19 4 11 gr 106 Geistesimmun, Natürliche Waffen, Umschlingen, Wesen der Dunkelheit (Settingoption) Knochenpranke (WB+2) Merkt nichts (PA+2)
337 Zombieork Slay! #3 Untote 10 6 0 4 0 0 4 0 0 24 6 4 16 16 6 7 no 67 Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption) Knochenpranke (WB+2) Merkt nichts (PA+2)
338 Zombieriesenratte Slay! #3 Untote 6 4 0 2 2 0 1 1 0 13 6 4.5 9 10 5 2 kl 60 Dunkelsicht, Geistesimmun, Natürliche Waffen, Schwimmen, Wesen der Dunkelheit (Settingoption) Spitze Zähne (WB+2) Merkt nichts (PA+2)
339 Zombietroll Slay! #3 Untote 16 6 0 6 0 0 5 0 0 62 6 4.5 23 24 6 18 gr 157 Anfällig, Dunkelsicht, Geistesimmun, Natürliche Waffen, Regeneration, Wesen der Dunkelheit (Settingoption) Knochenpranke (WB+2, GA-2) Merkt nichts (PA+2)
340 Zombiewolf Slay! #3 Untote 10 6 0 4 3 0 1 0 0 32 9 6 12 16 6 7 no 99 Geistesimmun, Nachtsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption) Kräftiger Biss (WB+2, GA-1) Wolfspelz (PA+1)
341 Zwergensklave Trächtige Wildsau Zwerg Zwerg KRI 1 Dunkelsicht, Langlebig, Zäh 8 6 6 2 2 1 2 2 1 20 5 4 11 11 8 1 no 51 Werkzeug (WB+1, INI-3) Lumpen
342 Zwergischer Minenarbeiter Slayerforum Zwerg Zwerg KRI 1 Dunkelsicht, Langlebig, Zäh 8 6 6 5 1 0 2 2 0 20 7 4 11 14 8 2 no 61 Handwerk I, Wissensgebiet I, Wissensgebiet I, Wissensgebiet I Hammer (WB+1, GA-1)

File diff suppressed because it is too large Load diff

14
BeastImporter/Readme.md Normal file
View file

@ -0,0 +1,14 @@
# How to use this tool
The Bestiarium.csv file is an export from [Slayer's Pit](https://www.f-space.de/ds4/tools-creatures.html#!/list).
In order to create a new Version of the pack (Compendium):
- `python extractCreatures.py` (tested with python 3.9)
- Then, create a new World in your foundryVTT instance (with DS4 as system).
- Create an 'Actor' compendium in the tab
- Open the dev console (F12)
- Type `const creatures = ` and then paste the content of `Bestiarium.json`. Press Enter
- Copy lines 5-9 one after another from `addCreatures.js`
- Download bestiarium.db from foundryVTTs filesystem

View file

@ -0,0 +1,11 @@
// This file just contains code intended to be executed in the dev console of a running foundry world with DS4 as system
import creatures from "./Bestiarium.json";
creatures.forEach((creature) => Actor.create(creature));
let beasts = game.packs.get("world.bestiarium");
beasts.importAll(game.actors.entities); //This won't import them, but creates the db-file so the next command works
game.actors.forEach((creature) => beasts.importEntity(creature));

View file

@ -0,0 +1,83 @@
{"_id":"00J2mgPzC1F9oSZr","name":"Hydra","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":14,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":90,"mod":0,"value":0},"defense":{"base":22,"mod":0},"initiative":{"base":12,"mod":0},"movement":{"base":9.5,"mod":0},"meleeAttack":{"base":21,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":246,"description":"Großer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nMehrere Angriffe (+5), Mehrere Angriffsglieder, Nachtsicht, Natürliche Waffen, Regeneration, Schleudern, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hydra","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"00J2mgPzC1F9oSZr","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"0SkgHk4kkiXIVhE2","name":"Orkräuber","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":25,"mod":0,"value":0},"defense":{"base":17,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"humanoid","sizeCategory":"normal","experiencePoints":70,"description":"Krummschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)\nLederpanzer (PA+1), Holzschild (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Orkräuber","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"0SkgHk4kkiXIVhE2","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"0cprzE1tRVw1cmbR","name":"Basilisk","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":14,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":84,"mod":0,"value":0},"defense":{"base":20,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":19,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":18,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":206,"description":"Großer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nBlickangriff, Nachtsicht, Natürliche Waffen, Versteinern"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Basilisk","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"0cprzE1tRVw1cmbR","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"16XkUomRFLtJMc8N","name":"Erdelementar II","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":17,"mod":0},"mobility":{"base":2,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":32,"mod":0,"value":0},"defense":{"base":26,"mod":0},"initiative":{"base":3,"mod":0},"movement":{"base":2,"mod":0},"meleeAttack":{"base":25,"mod":0},"rangedAttack":{"base":2,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":15,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":70,"description":"Steinpranke (WB+4)\nSteinwesen (PA+4)\nAnfällig"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Erdelementar II","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"16XkUomRFLtJMc8N","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"2oYkeaCR550YQ04P","name":"Golem, Eisen-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":20,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":72,"mod":0,"value":0},"defense":{"base":31,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":31,"mod":0},"rangedAttack":{"base":5,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":27,"creatureType":"construct","sizeCategory":"large","experiencePoints":173,"description":"Eisenpranke (WB+6)\nMetallwesen (PA+5)\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff, Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Eisen-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"2oYkeaCR550YQ04P","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"3Y9jwaivkqzuEGcz","name":"Drachenwelpe","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":11,"mod":0},"mind":{"base":5,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":63,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":14,"mod":0},"movement":{"base":10.5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":17,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":20,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":270,"description":"Biss, Klaue, Odem oder Schwanzhieb (WB+3, GA-2)\nDrachenschuppen (PA+3)\nAngst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Drachenwelpe","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"3Y9jwaivkqzuEGcz","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"3miM2e5gKUmIserh","name":"Schlachtross","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":75,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":14,"mod":0},"movement":{"base":9.5,"mod":0},"meleeAttack":{"base":18,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"animal","sizeCategory":"large","experiencePoints":121,"description":"Huf/Rammen (WB+2)\n\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Schlachtross","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"3miM2e5gKUmIserh","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"3qVTsEgNS4xzwbGW","name":"Troll","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":16,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":60,"mod":0,"value":0},"defense":{"base":22,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":22,"mod":0},"rangedAttack":{"base":13,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":14,"creatureType":"humanoid","sizeCategory":"large","experiencePoints":182,"description":"Geworf. Fels (WB+4, GA-4), Massive Keule (WB+2, GA-2)\nWarzenhaut (PA+2)\nAnfällig, Dunkelsicht, Regeneration, Umschlingen, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Troll","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"3qVTsEgNS4xzwbGW","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"46ytmUJOqt0Ho3Z7","name":"Leichnam","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":7,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":9,"mod":0}},"traits":{"strength":{"base":17,"mod":0},"constitution":{"base":21,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":8,"mod":0},"aura":{"base":8,"mod":0}},"combatValues":{"hitPoints":{"base":38,"mod":0,"value":0},"defense":{"base":31,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":17,"mod":0},"targetedSpellcasting":{"base":13,"mod":0}},"baseInfo":{"loot":"","foeFactor":15,"creatureType":"undead","sizeCategory":"normal","experiencePoints":200,"description":"\nmag. Robe +3 (PA+3)\nAngst, Dunkelsicht, Geistesimmun, Totenkraft, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Leichnam","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"46ytmUJOqt0Ho3Z7","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"4Kimfse2MrRiNwkL","name":"Baumherr","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":20,"mod":0},"mobility":{"base":1,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":70,"mod":0,"value":0},"defense":{"base":27,"mod":0},"initiative":{"base":1,"mod":0},"movement":{"base":2,"mod":0},"meleeAttack":{"base":27,"mod":0},"rangedAttack":{"base":1,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"plantBeing","sizeCategory":"large","experiencePoints":157,"description":"Asthiebe (WB+2)\nDicke Rinde (PA+2)\nMehrere Angriffe (+3), Anfällig, Nachtsicht, Natürliche Waffen, Schleudern"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Baumherr","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"4Kimfse2MrRiNwkL","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"4q1GtGOYjiJGrNQA","name":"Pferd","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":11,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":7,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":66,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":18,"mod":0},"movement":{"base":10.5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":11,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"animal","sizeCategory":"large","experiencePoints":101,"description":"Huf (WB+2)\n\nNatürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Pferd","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"4q1GtGOYjiJGrNQA","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"6RWeTpQkuA0cS0Q8","name":"Wasserelementar II","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":24,"mod":0,"value":0},"defense":{"base":22,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":18,"mod":0},"rangedAttack":{"base":14,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":83,"description":"Wasserstrahl (WB+3)\nKeine feste Gestalt (PA+8)\nAnfällig, Körperlos, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Wasserelementar II","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"6RWeTpQkuA0cS0Q8","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"7E9nc5XwkqlZ9P6Y","name":"Golem, Lehm-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":46,"mod":0,"value":0},"defense":{"base":13,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"construct","sizeCategory":"large","experiencePoints":114,"description":"Lehmpranke (WB+3)\n\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Lehm-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"7E9nc5XwkqlZ9P6Y","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"7vNQuIqe98wwq3kY","name":"Augenball","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":0,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":3,"mod":0}},"combatValues":{"hitPoints":{"base":44,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":4,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":8,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":13,"mod":0},"targetedSpellcasting":{"base":12,"mod":0}},"baseInfo":{"loot":"","foeFactor":13,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":218,"description":"\nWarzenhaut (PA+2)\nMehrere Angriffe (+4), Antimagie, Dunkelsicht, Mehrere Angriffsglieder, Schweben, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Augenball","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"7vNQuIqe98wwq3kY","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"8ExT0kxkIkfZNe0s","name":"Bär","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":75,"mod":0,"value":0},"defense":{"base":16,"mod":0},"initiative":{"base":12,"mod":0},"movement":{"base":8,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"animal","sizeCategory":"large","experiencePoints":139,"description":"Pranke (WB+2, GA-2)\nFell (PA+1)\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Bär","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"8ExT0kxkIkfZNe0s","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"8IhZTIv6D47oyO9n","name":"Kobold","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":3,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":1,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":7,"mod":0,"value":0},"defense":{"base":4,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":5,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"humanoid","sizeCategory":"small","experiencePoints":25,"description":"Keule (WB+1)\n\n"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kobold","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"8IhZTIv6D47oyO9n","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"8bsH7FPINt1vXfix","name":"Todesfee","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":19,"mod":0},"constitution":{"base":19,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":3,"mod":0},"aura":{"base":9,"mod":0}},"combatValues":{"hitPoints":{"base":35,"mod":0,"value":0},"defense":{"base":33,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":5.5,"mod":0},"meleeAttack":{"base":27,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":19,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":31,"creatureType":"undead","sizeCategory":"normal","experiencePoints":287,"description":"Geisterklaue (WB+2, GA-2)\nKörperlos (PA+8)\nAngst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Todesfee","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"8bsH7FPINt1vXfix","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"8dl5s8quzxg2v3Q7","name":"Tentakelhirn","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":4,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":11,"mod":0,"value":0},"defense":{"base":5,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":6,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":1,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":59,"description":"\n\nDunkelsicht, Schweben, Werteverlust"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Tentakelhirn","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"8dl5s8quzxg2v3Q7","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"AcntwsJso82Vf07j","name":"Eulerich","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":14,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":54,"mod":0,"value":0},"defense":{"base":18,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":20,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":11,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":115,"description":"Pranke (WB+2, GA-2)\nFederkleid (PA+1)\nDunkelsicht"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Eulerich","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"AcntwsJso82Vf07j","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"C9IoXnCS1mzIduGz","name":"Feuerelementar III","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":18,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":6,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":70,"mod":0,"value":0},"defense":{"base":33,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":28,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":24,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":145,"description":"Flammenhieb (WB+4)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Feuerelementar III","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"C9IoXnCS1mzIduGz","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"DQsipM2An6FnFjpy","name":"Pony","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":63,"mod":0,"value":0},"defense":{"base":11,"mod":0},"initiative":{"base":13,"mod":0},"movement":{"base":8,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":3,"creatureType":"animal","sizeCategory":"large","experiencePoints":92,"description":"Huf (WB+2)\n\nNatürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Pony","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"DQsipM2An6FnFjpy","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"DRpyo46ULilcKjep","name":"Schlingwurzelbusch","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":30,"mod":0,"value":0},"defense":{"base":11,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":11,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"plantBeing","sizeCategory":"normal","experiencePoints":122,"description":"Wurzelhiebe (WB+2)\nGehölz (PA+1)\nMehrere Angriffe (+4), Geistesimmun, Natürliche Waffen, Umschlingen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Schlingwurzelbusch","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"DRpyo46ULilcKjep","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"DzFha6Qc74OjIngw","name":"Niederer Dämon","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":5,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":5,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":9,"mod":0,"value":0},"defense":{"base":9,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":8,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":71,"description":"Pranke (WB+1, GA-1)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Niederer Dämon","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"DzFha6Qc74OjIngw","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"FIVvpHgFUCDDVHAw","name":"Wasserelementar III","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":15,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":62,"mod":0,"value":0},"defense":{"base":29,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":17,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":16,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":133,"description":"Wasserstrahl (WB+4)\nKeine feste Gestalt (PA+8)\nAnfällig, Körperlos, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Wasserelementar III","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"FIVvpHgFUCDDVHAw","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"FdoJa7GYEUZyFwdG","name":"Monsterspinne","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":72,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":9,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":15,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":11,"creatureType":"animal","sizeCategory":"large","experiencePoints":145,"description":"Spinnenbiss (WB+2, GA-2), Netzflüssigkeit (WB+2)\nDicke Spinnenhaut (PA+1)\nKletterläufer, Lähmungseffekt, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Monsterspinne","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"FdoJa7GYEUZyFwdG","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"G3lo0GREF5D0waHh","name":"Fliegendes Schwert","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":12,"mod":0,"value":0},"defense":{"base":19,"mod":0},"initiative":{"base":5,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":5,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"construct","sizeCategory":"small","experiencePoints":57,"description":"Langschwert (WB+2)\nMetallwesen (PA+5)\nFliegen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Fliegendes Schwert","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"G3lo0GREF5D0waHh","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"G4hZ1nHgw4EjxIDL","name":"Kampfdämon","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":8,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":4,"mod":0},"aura":{"base":4,"mod":0}},"combatValues":{"hitPoints":{"base":46,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":12,"mod":0},"movement":{"base":5.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":152,"description":"Pranke (WB+3, GA-3)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kampfdämon","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"G4hZ1nHgw4EjxIDL","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"GCIydXUyBQPOtFuX","name":"Golem, Stein-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":18,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":66,"mod":0,"value":0},"defense":{"base":27,"mod":0},"initiative":{"base":4,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":26,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"construct","sizeCategory":"large","experiencePoints":163,"description":"Steinpranke (WB+4)\nSteinwesen (PA+4)\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff, Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Stein-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"GCIydXUyBQPOtFuX","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"GKyIIlW7dlyDkFO7","name":"Kriegselefant","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":16,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":93,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":6.5,"mod":0},"meleeAttack":{"base":23,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":16,"creatureType":"animal","sizeCategory":"large","experiencePoints":142,"description":"Rammen (WB+2)\nDickhäuter (PA+2)\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kriegselefant","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"GKyIIlW7dlyDkFO7","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Hm0SRHkPuXj5C683","name":"Alligator","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":78,"mod":0,"value":0},"defense":{"base":18,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":9.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":10,"creatureType":"animal","sizeCategory":"large","experiencePoints":151,"description":"Großer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nNatürliche Waffen, Schwimmen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Alligator","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Hm0SRHkPuXj5C683","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"HzCRELbJpqm3S4D9","name":"Hobgoblin","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":3,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":24,"mod":0,"value":0},"defense":{"base":18,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":15,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"humanoid","sizeCategory":"normal","experiencePoints":71,"description":"Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)\nKettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Holzschild (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hobgoblin","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"HzCRELbJpqm3S4D9","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"JsLDyvhhNlrWM1jP","name":"Riesenkrake","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":22,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":8,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":270,"mod":0,"value":0},"defense":{"base":26,"mod":0},"initiative":{"base":18,"mod":0},"movement":{"base":11,"mod":0},"meleeAttack":{"base":29,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":35,"creatureType":"animal","sizeCategory":"huge","experiencePoints":397,"description":"Fangarme (WB+2)\n\nMehrere Angriffe (+5), Mehrere Angriffsglieder, Natürliche Waffen, Schwimmen, Umschlingen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riesenkrake","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"JsLDyvhhNlrWM1jP","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"KqHmJBEjVuReXeSh","name":"Mumie","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":10,"mod":0},"constitution":{"base":10,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":32,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":4,"mod":0},"movement":{"base":3,"mod":0},"meleeAttack":{"base":23,"mod":0},"rangedAttack":{"base":4,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":18,"creatureType":"undead","sizeCategory":"normal","experiencePoints":133,"description":"Fäulnispranke (WB+1)\nBandagen (PA+1)\nAngst, Anfällig, Dunkelsicht, Geistesimmun, Natürliche Waffen, Totenkraft, Werteverlust, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Mumie","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"KqHmJBEjVuReXeSh","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"LYupJ5sGyrvAG9zj","name":"Kleine Monsterspinne","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":32,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":7,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"animal","sizeCategory":"normal","experiencePoints":97,"description":"Spinnenbiss (WB+1, GA-1), Netzflüssigkeit (WB+1)\nDicke Spinnenhaut (PA+1)\nKletterläufer, Lähmungseffekt, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kleine Monsterspinne","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"LYupJ5sGyrvAG9zj","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"MHhY7djLWNipCL5d","name":"Wasserelementar I","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":10,"mod":0,"value":0},"defense":{"base":17,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":11,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":3,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":60,"description":"Wasserstrahl (WB+2)\nKeine feste Gestalt (PA+8)\nAnfällig, Körperlos, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Wasserelementar I","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"MHhY7djLWNipCL5d","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Mn1fPcMEgYHxweZa","name":"Keiler","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":38,"mod":0,"value":0},"defense":{"base":17,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":7,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":6,"creatureType":"animal","sizeCategory":"normal","experiencePoints":89,"description":"Hauer (WB+2, GA-1)\nDicke Borstenhaut (PA+2)\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Keiler","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Mn1fPcMEgYHxweZa","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"MuWU6xsjtjFqeb84","name":"Geist","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":1,"mod":0},"mobility":{"base":11,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":16,"mod":0},"constitution":{"base":16,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":3,"mod":0},"aura":{"base":6,"mod":0}},"combatValues":{"hitPoints":{"base":27,"mod":0,"value":0},"defense":{"base":25,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":6.5,"mod":0},"meleeAttack":{"base":19,"mod":0},"rangedAttack":{"base":13,"mod":0},"spellcasting":{"base":16,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":24,"creatureType":"undead","sizeCategory":"normal","experiencePoints":279,"description":"Geisterklaue (WB+2, GA-2)\nKörperlos (PA+8)\nAngst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit / Wesen des Lichts (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Geist","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"MuWU6xsjtjFqeb84","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"NsbWUdW7CbT2P1Ak","name":"Erdelementar I","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":2,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":13,"mod":0,"value":0},"defense":{"base":20,"mod":0},"initiative":{"base":3,"mod":0},"movement":{"base":2,"mod":0},"meleeAttack":{"base":19,"mod":0},"rangedAttack":{"base":2,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":44,"description":"Steinpranke (WB+4)\nSteinwesen (PA+4)\nAnfällig"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Erdelementar I","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"NsbWUdW7CbT2P1Ak","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"O10L24NmfxzcvWoG","name":"Wolf","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":29,"mod":0,"value":0},"defense":{"base":10,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":7,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"animal","sizeCategory":"normal","experiencePoints":81,"description":"Großer Biss (WB+2, GA-1)\nWolfspelz (PA+1)\nNachtsicht, Natürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Wolf","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"O10L24NmfxzcvWoG","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"OIPbQ1EDmFvdmf0J","name":"Hund","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":5,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":0,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":11,"mod":0,"value":0},"defense":{"base":6,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":9,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"animal","sizeCategory":"small","experiencePoints":31,"description":"Biss (WB+1)\nFell (PA+1)\nNatürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hund","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"OIPbQ1EDmFvdmf0J","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"OREFbDBfaxsJkTIt","name":"Vampirfledermaus","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":5,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":4,"mod":0,"value":0},"defense":{"base":7,"mod":0},"initiative":{"base":4,"mod":0},"movement":{"base":3,"mod":0},"meleeAttack":{"base":9,"mod":0},"rangedAttack":{"base":4,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":2,"creatureType":"animal","sizeCategory":"tiny","experiencePoints":55,"description":"Krallen (WB+1)\n\nFliegen, Natürliche Waffen, Sonar, Sturzangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Vampirfledermaus","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"OREFbDBfaxsJkTIt","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"PJmmRT5ADaJt8OXd","name":"Erdelementar III","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":22,"mod":0},"mobility":{"base":2,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":78,"mod":0,"value":0},"defense":{"base":33,"mod":0},"initiative":{"base":3,"mod":0},"movement":{"base":2.5,"mod":0},"meleeAttack":{"base":31,"mod":0},"rangedAttack":{"base":2,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":124,"description":"Steinpranke (WB+4)\nSteinwesen (PA+4)\nAnfällig"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Erdelementar III","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"PJmmRT5ADaJt8OXd","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"QguGTWbHyJ7qeJBB","name":"Reitkeiler","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":35,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":8.5,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"animal","sizeCategory":"normal","experiencePoints":86,"description":"Hauer (WB+2, GA-1)\nDicke Borstenhaut (PA+2)\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Reitkeiler","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"QguGTWbHyJ7qeJBB","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"R87b8fTnbRkcViy2","name":"Skelett","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":22,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"undead","sizeCategory":"normal","experiencePoints":72,"description":"Kochenklauen (WB+1)\n\nDunkelsicht, Geistesimmun, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Skelett","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"R87b8fTnbRkcViy2","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"TcL3FwsfrMFN2pOo","name":"Hoher Dämon","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":7,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":6,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":3,"mod":0},"aura":{"base":3,"mod":0}},"combatValues":{"hitPoints":{"base":20,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":12,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":104,"description":"Pranke (WB+2, GA-2)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hoher Dämon","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"TcL3FwsfrMFN2pOo","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Uam0M1N63FrQOwpM","name":"Jungdrache","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":16,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":7,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":225,"mod":0,"value":0},"defense":{"base":24,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":12.5,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":19,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":37,"creatureType":"magicalEntity","sizeCategory":"huge","experiencePoints":491,"description":"Biss, Klaue, Odem oder Schwanzhieb (WB+4, GA-4)\nDrachenschuppen (PA+4)\nAngst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Jungdrache","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Uam0M1N63FrQOwpM","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"W4mB4dNE0pcbDgh3","name":"Einhorn","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":13,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":6,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":63,"mod":0,"value":0},"defense":{"base":11,"mod":0},"initiative":{"base":19,"mod":0},"movement":{"base":12,"mod":0},"meleeAttack":{"base":12,"mod":0},"rangedAttack":{"base":13,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":194,"description":"Horn oder Hufe (WB+1, GA-2)\n\nAngst, Mehrere Angriffe (+1), Geistesimmun, Nachtsicht, Schleudern, Sturmangriff, Wesen des Lichts (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Einhorn","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"W4mB4dNE0pcbDgh3","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Y8RqkxTyGhz7VtJu","name":"Minotaurus","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":14,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":1,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":54,"mod":0,"value":0},"defense":{"base":18,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":20,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":12,"creatureType":"humanoid","sizeCategory":"large","experiencePoints":138,"description":"Massive Keule, Horn oder Huf (WB+2, GA-2)\nFell (PA+1)\nSturmangriff, Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Minotaurus","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Y8RqkxTyGhz7VtJu","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"YkCW5sZmYl5KaoPB","name":"Lebende Rüstung","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":24,"mod":0,"value":0},"defense":{"base":19,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"construct","sizeCategory":"normal","experiencePoints":72,"description":"Langschwert (WB+2)\nMetallwesen (PA+5)\nDunkelsicht, Geistesimmun"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Lebende Rüstung","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"YkCW5sZmYl5KaoPB","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Z4Esl90JPN6vboeU","name":"Schatten","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":11,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":25,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":6.5,"mod":0},"meleeAttack":{"base":18,"mod":0},"rangedAttack":{"base":13,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":15,"creatureType":"undead","sizeCategory":"normal","experiencePoints":136,"description":"Geisterklaue (WB+2, GA-2)\nKörperlos (PA+8)\nAlterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Schatten","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Z4Esl90JPN6vboeU","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"a32rOmnjnYq8KzoY","name":"Medusa","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":7,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":36,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":18,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":205,"description":"Klauen/Schlangen (WB+2)\nSchuppen (PA+1)\nMehrere Angriffe (+5), Blickangriff, Schleudern, Versteinern"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Medusa","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"a32rOmnjnYq8KzoY","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"aN9ZlWQrWZkE5zjq","name":"Zombie","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":13,"mod":0},"mobility":{"base":3,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":28,"mod":0,"value":0},"defense":{"base":20,"mod":0},"initiative":{"base":3,"mod":0},"movement":{"base":2.5,"mod":0},"meleeAttack":{"base":18,"mod":0},"rangedAttack":{"base":3,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":10,"creatureType":"undead","sizeCategory":"normal","experiencePoints":78,"description":"Fäulnispranke (WB+2)\nMerkt nichts (PA+2)\nDunkelsicht, Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Zombie","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"aN9ZlWQrWZkE5zjq","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"aoYZwygh5JkFboMW","name":"Luftelementar II","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":25,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":5.5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":14,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":92,"description":"Luftstoß (WB+2)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Luftelementar II","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"aoYZwygh5JkFboMW","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"bDwbu28S20BzQ0O9","name":"Dämonenfürst","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":20,"mod":0},"mobility":{"base":20,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":10,"mod":0},"constitution":{"base":10,"mod":0},"agility":{"base":10,"mod":0},"dexterity":{"base":10,"mod":0},"intellect":{"base":5,"mod":0},"aura":{"base":5,"mod":0}},"combatValues":{"hitPoints":{"base":400,"mod":0,"value":0},"defense":{"base":32,"mod":0},"initiative":{"base":30,"mod":0},"movement":{"base":16,"mod":0},"meleeAttack":{"base":35,"mod":0},"rangedAttack":{"base":30,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":42,"creatureType":"magicalEntity","sizeCategory":"colossal","experiencePoints":579,"description":"Pranke (WB+5, GA-5)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Dämonenfürst","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"bDwbu28S20BzQ0O9","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"clKFXfvee1B2puOU","name":"Hai","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":13,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":39,"mod":0,"value":0},"defense":{"base":16,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":19,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"animal","sizeCategory":"normal","experiencePoints":106,"description":"Großer Biss (WB+2, GA-2)\n\nNatürliche Waffen, Schwimmen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hai","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"clKFXfvee1B2puOU","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"dcdpvc9ENQPShHDK","name":"Luftelementar III","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":15,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":64,"mod":0,"value":0},"defense":{"base":30,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":21,"mod":0},"rangedAttack":{"base":17,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":16,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":143,"description":"Luftstoß (WB+4)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Luftelementar III","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"dcdpvc9ENQPShHDK","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"eRtJGt8uGZuALrmy","name":"Riesenechse","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":15,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":218,"mod":0,"value":0},"defense":{"base":21,"mod":0},"initiative":{"base":17,"mod":0},"movement":{"base":12.5,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":25,"creatureType":"animal","sizeCategory":"huge","experiencePoints":316,"description":"Grausamer Biss (WB+4)\nSchuppenpanzer (PA+2)\nKletterläufer, Nachtsicht, Natürliche Waffen, Sturmangriff, Verschlingen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riesenechse","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"eRtJGt8uGZuALrmy","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"f2f5D2k8Al7jyZ5C","name":"Echsenmensch","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":3,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":21,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":11,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":3,"creatureType":"humanoid","sizeCategory":"normal","experiencePoints":69,"description":"Speer (WB+1)\nSchuppenpanzer (PA+1)\nNachtsicht, Schleudern"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Echsenmensch","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"f2f5D2k8Al7jyZ5C","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"ftgebW200hakGEPY","name":"Unwolf","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":35,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":7,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":104,"description":"Feuerodem (WB+2), Biss (WB+1)\nBrennendes Fell (PA+1)\nAnfällig, Natürliche Waffen, Odem, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Unwolf","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"ftgebW200hakGEPY","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"gFn9NmrQhkxti8eR","name":"Faulbauchmade","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":10,"mod":0,"value":0},"defense":{"base":10,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":10,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"undead","sizeCategory":"small","experiencePoints":47,"description":"Zahnschlund (WB+2)\n\nDunkelsicht, Geistesimmun, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Faulbauchmade","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"gFn9NmrQhkxti8eR","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"hWsAJhsVWgEsMNGw","name":"Adler","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":3,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":1,"mod":0},"constitution":{"base":0,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":1,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":7,"mod":0,"value":0},"defense":{"base":4,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":5,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"animal","sizeCategory":"small","experiencePoints":52,"description":"Krallen (WB+1)\nFederkleid (PA+1)\nFliegen, Natürliche Waffen, Sturzangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Adler","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"hWsAJhsVWgEsMNGw","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"iyiRNSdWfkokS7iR","name":"Ratte","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":2,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":1,"mod":0},"constitution":{"base":0,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":3,"mod":0,"value":0},"defense":{"base":2,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":3,"mod":0},"meleeAttack":{"base":4,"mod":0},"rangedAttack":{"base":4,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"animal","sizeCategory":"tiny","experiencePoints":26,"description":"Spitze Zähne (WB+1)\n\nDunkelsicht, Natürliche Waffen, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Ratte","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"iyiRNSdWfkokS7iR","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"jrXK3LvhQgMsqDCk","name":"Faulbauch","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":16,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":6,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":62,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":17,"creatureType":"undead","sizeCategory":"large","experiencePoints":131,"description":"Knochenpranke (WB+2)\nMerkt nichts (PA+2)\nDunkelsicht, Geistesimmun, Schleudern, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Faulbauch","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"jrXK3LvhQgMsqDCk","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"kGGHFziw1n1x799k","name":"Golem, Knochen-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":0,"mod":0},"agility":{"base":6,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":40,"mod":0,"value":0},"defense":{"base":10,"mod":0},"initiative":{"base":18,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":12,"creatureType":"construct","sizeCategory":"large","experiencePoints":148,"description":"Knochenpranke (WB+2)\n\nMehrere Angriffe (+3), Dunkelsicht, Geistesimmun, Mehrere Angriffsglieder, Schleudern, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Knochen-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"kGGHFziw1n1x799k","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"kWO2ojEvo9BhEuKE","name":"Rostassel","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":33,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":7,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"animal","sizeCategory":"normal","experiencePoints":111,"description":"Tentakelfühler (WB+1)\nChitinpanzer (PA+3)\nMehrere Angriffe (+3), Dunkelsicht, Mehrere Angriffsglieder, Natürliche Waffen, Rost"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Rostassel","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"kWO2ojEvo9BhEuKE","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"kvKePF11D5zuL1pn","name":"Luftelementar I","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":10,"mod":0,"value":0},"defense":{"base":17,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":9,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":68,"description":"Luftstoß (WB+1)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Luftelementar I","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"kvKePF11D5zuL1pn","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"lT0njpbCDoX8LXlj","name":"Oger","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":50,"mod":0,"value":0},"defense":{"base":16,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":4,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"humanoid","sizeCategory":"large","experiencePoints":120,"description":"Massive Keule (WB+2, GA-2)\nFelle (PA+1)\nNachtsicht, Umschlingen, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Oger","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"lT0njpbCDoX8LXlj","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"ms4qz2DlC9XEUoOc","name":"Shekz","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":3,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":7,"mod":0}},"traits":{"strength":{"base":0,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":4,"mod":0},"aura":{"base":4,"mod":0}},"combatValues":{"hitPoints":{"base":7,"mod":0,"value":0},"defense":{"base":5,"mod":0},"initiative":{"base":5,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":3,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":11,"mod":0},"targetedSpellcasting":{"base":9,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"humanoid","sizeCategory":"small","experiencePoints":49,"description":"Wurfmesser\nFelle (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Shekz","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"ms4qz2DlC9XEUoOc","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"owJajWFY38sPJkG9","name":"Kriegsdämon","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":15,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":7,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":5,"mod":0},"intellect":{"base":5,"mod":0},"aura":{"base":5,"mod":0}},"combatValues":{"hitPoints":{"base":160,"mod":0,"value":0},"defense":{"base":24,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":8,"mod":0},"meleeAttack":{"base":26,"mod":0},"rangedAttack":{"base":15,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"magicalEntity","sizeCategory":"huge","experiencePoints":297,"description":"Pranke (WB+4, GA-4)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kriegsdämon","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"owJajWFY38sPJkG9","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"pDualhT4LBrn2j6o","name":"Ork","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":23,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":2,"creatureType":"humanoid","sizeCategory":"normal","experiencePoints":63,"description":"Speer (WB+1)\nLederpanzer (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Ork","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"pDualhT4LBrn2j6o","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"pXISlWeEetZonxJ1","name":"Gargyl","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":7,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":10,"mod":0,"value":0},"defense":{"base":13,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":11,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":6,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":91,"description":"Steinpranke (WB+2)\nSteinwesen (PA+4)\nAnfällig, Dunkelsicht, Fliegen, Geistesimmun, Kletterläufer, Natürliche Waffen, Sturzangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Gargyl","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"pXISlWeEetZonxJ1","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"s4MXQpHRxV6PFn7I","name":"Riese","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":27,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":7,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":220,"mod":0,"value":0},"defense":{"base":35,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":38,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":29,"creatureType":"humanoid","sizeCategory":"huge","experiencePoints":347,"description":"Baumstamm (WB+4, GA-4), Geworf. Fels (WB+4, GA-4)\nFelle (PA+1)\nUmschlingen, Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riese","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"s4MXQpHRxV6PFn7I","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"sPnX7al3xyaCSQwP","name":"Riesenschlange","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":66,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":11,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"animal","sizeCategory":"large","experiencePoints":143,"description":"Großer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nGift, Natürliche Waffen, Umschlingen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riesenschlange","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"sPnX7al3xyaCSQwP","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"slL6Y2twksAgYU21","name":"Erwachsener Drache","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":24,"mod":0},"mobility":{"base":16,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":6,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":3,"mod":0}},"combatValues":{"hitPoints":{"base":600,"mod":0,"value":0},"defense":{"base":35,"mod":0},"initiative":{"base":20,"mod":0},"movement":{"base":18.5,"mod":0},"meleeAttack":{"base":35,"mod":0},"rangedAttack":{"base":25,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":65,"creatureType":"magicalEntity","sizeCategory":"colossal","experiencePoints":922,"description":"Biss, Klaue, Odem oder Schwanzhieb (WB+5, GA-5)\nDrachenschuppen (PA+5)\nAngst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Erwachsener Drache","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"slL6Y2twksAgYU21","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"srkD07FSsmD8mwCg","name":"Raubkatze","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":7,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":27,"mod":0,"value":0},"defense":{"base":9,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":9,"mod":0},"meleeAttack":{"base":12,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":3,"creatureType":"animal","sizeCategory":"normal","experiencePoints":84,"description":"Pranke/Biss (WB+2, GA-1)\nFell (PA+1)\nMehrere Angriffe (+1), Nachtsicht, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Raubkatze","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"srkD07FSsmD8mwCg","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"uUkJSYOHVDzGA0OH","name":"Goblin","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":5,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":3,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":8,"mod":0,"value":0},"defense":{"base":7,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":7,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"humanoid","sizeCategory":"small","experiencePoints":42,"description":"Wurfmesser\nFelle (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Goblin","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"uUkJSYOHVDzGA0OH","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"uaJMoD9N55MuWEWr","name":"Feuerelementar I","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":12,"mod":0,"value":0},"defense":{"base":22,"mod":0},"initiative":{"base":5,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":5,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":70,"description":"Flammenhieb (WB+2)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Feuerelementar I","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"uaJMoD9N55MuWEWr","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"wFMNkrgaLhsj3cou","name":"Golem, Kristall-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":5,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":42,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":6.5,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":15,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":12,"mod":0}},"baseInfo":{"loot":"","foeFactor":7,"creatureType":"construct","sizeCategory":"large","experiencePoints":134,"description":"Kristallpranke (WB+2)\nKristallwesen (PA+3)\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Kristall-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"wFMNkrgaLhsj3cou","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"wacvMqN9pYB1aQQm","name":"Feuerelementar II","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":13,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":29,"mod":0,"value":0},"defense":{"base":27,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":20,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":15,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":95,"description":"Flammenhieb (WB+3)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Feuerelementar II","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"wacvMqN9pYB1aQQm","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"xiv9518QVtktwGpE","name":"Riesenratte","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":4,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":11,"mod":0,"value":0},"defense":{"base":5,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":8,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"animal","sizeCategory":"small","experiencePoints":41,"description":"Spitze Zähne (WB+2)\n\nDunkelsicht, Natürliche Waffen, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riesenratte","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"xiv9518QVtktwGpE","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"yk5TPynARdbyWnA3","name":"Schimmerross","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":6,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":66,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":18,"mod":0},"movement":{"base":11,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"animal","sizeCategory":"large","experiencePoints":106,"description":"Huf (WB+2)\n\nNachtsicht, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Schimmerross","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"yk5TPynARdbyWnA3","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"ypFMaqfu04oKlnYP","name":"Harpyie","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":6,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":1,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":20,"mod":0,"value":0},"defense":{"base":11,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":12,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":8,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":108,"description":"Krallenklaue (WB+2)\nFederkleid (PA+1)\nBezaubern, Fliegen, Nachtsicht, Natürliche Waffen, Sturzangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Harpyie","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"ypFMaqfu04oKlnYP","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"ftgebW200hakGEPY","name":"Unwolf","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":35,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":7,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":104,"description":"Feuerodem (WB+2), Biss (WB+1)\nBrennendes Fell (PA+1)\nAnfällig, Natürliche Waffen, Odem, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Unwolf","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"ftgebW200hakGEPY","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}

View file

@ -0,0 +1,19 @@
{
"name": "dungeonslayers-beasts",
"title": "Dungeonslayers Beasts",
"description": "The creatures from Dungeonslayers Core book",
"author": "Max Tharr",
"version": "1.0.0",
"minimumCoreVersion": "0.6.0",
"compatibleCoreVersion": "0.7.0",
"packs": [
{
"name": "bestiarium",
"label": "Bestiarum",
"path": "packs/bestiarium.db",
"system": "ds4",
"entity": "Actor",
"module": "Dungeonslayers"
}
]
}

View file

@ -0,0 +1,82 @@
{"_id":"00J2mgPzC1F9oSZr","name":"Hydra","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":14,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":90,"mod":0,"value":0},"defense":{"base":22,"mod":0},"initiative":{"base":12,"mod":0},"movement":{"base":9.5,"mod":0},"meleeAttack":{"base":21,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":246,"description":"Großer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nMehrere Angriffe (+5), Mehrere Angriffsglieder, Nachtsicht, Natürliche Waffen, Regeneration, Schleudern, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hydra","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"00J2mgPzC1F9oSZr","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"0SkgHk4kkiXIVhE2","name":"Orkräuber","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":25,"mod":0,"value":0},"defense":{"base":17,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"humanoid","sizeCategory":"normal","experiencePoints":70,"description":"Krummschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)\nLederpanzer (PA+1), Holzschild (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Orkräuber","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"0SkgHk4kkiXIVhE2","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"0cprzE1tRVw1cmbR","name":"Basilisk","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":14,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":84,"mod":0,"value":0},"defense":{"base":20,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":19,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":18,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":206,"description":"Großer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nBlickangriff, Nachtsicht, Natürliche Waffen, Versteinern"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Basilisk","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"0cprzE1tRVw1cmbR","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"16XkUomRFLtJMc8N","name":"Erdelementar II","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":17,"mod":0},"mobility":{"base":2,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":32,"mod":0,"value":0},"defense":{"base":26,"mod":0},"initiative":{"base":3,"mod":0},"movement":{"base":2,"mod":0},"meleeAttack":{"base":25,"mod":0},"rangedAttack":{"base":2,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":15,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":70,"description":"Steinpranke (WB+4)\nSteinwesen (PA+4)\nAnfällig"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Erdelementar II","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"16XkUomRFLtJMc8N","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"2oYkeaCR550YQ04P","name":"Golem, Eisen-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":20,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":72,"mod":0,"value":0},"defense":{"base":31,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":31,"mod":0},"rangedAttack":{"base":5,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":27,"creatureType":"construct","sizeCategory":"large","experiencePoints":173,"description":"Eisenpranke (WB+6)\nMetallwesen (PA+5)\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff, Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Eisen-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"2oYkeaCR550YQ04P","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"3Y9jwaivkqzuEGcz","name":"Drachenwelpe","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":11,"mod":0},"mind":{"base":5,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":63,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":14,"mod":0},"movement":{"base":10.5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":17,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":20,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":270,"description":"Biss, Klaue, Odem oder Schwanzhieb (WB+3, GA-2)\nDrachenschuppen (PA+3)\nAngst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Drachenwelpe","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"3Y9jwaivkqzuEGcz","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"3miM2e5gKUmIserh","name":"Schlachtross","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":75,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":14,"mod":0},"movement":{"base":9.5,"mod":0},"meleeAttack":{"base":18,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"animal","sizeCategory":"large","experiencePoints":121,"description":"Huf/Rammen (WB+2)\n\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Schlachtross","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"3miM2e5gKUmIserh","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"3qVTsEgNS4xzwbGW","name":"Troll","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":16,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":60,"mod":0,"value":0},"defense":{"base":22,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":22,"mod":0},"rangedAttack":{"base":13,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":14,"creatureType":"humanoid","sizeCategory":"large","experiencePoints":182,"description":"Geworf. Fels (WB+4, GA-4), Massive Keule (WB+2, GA-2)\nWarzenhaut (PA+2)\nAnfällig, Dunkelsicht, Regeneration, Umschlingen, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Troll","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"3qVTsEgNS4xzwbGW","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"46ytmUJOqt0Ho3Z7","name":"Leichnam","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":7,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":9,"mod":0}},"traits":{"strength":{"base":17,"mod":0},"constitution":{"base":21,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":8,"mod":0},"aura":{"base":8,"mod":0}},"combatValues":{"hitPoints":{"base":38,"mod":0,"value":0},"defense":{"base":31,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":17,"mod":0},"targetedSpellcasting":{"base":13,"mod":0}},"baseInfo":{"loot":"","foeFactor":15,"creatureType":"undead","sizeCategory":"normal","experiencePoints":200,"description":"\nmag. Robe +3 (PA+3)\nAngst, Dunkelsicht, Geistesimmun, Totenkraft, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Leichnam","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"46ytmUJOqt0Ho3Z7","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"4Kimfse2MrRiNwkL","name":"Baumherr","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":20,"mod":0},"mobility":{"base":1,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":70,"mod":0,"value":0},"defense":{"base":27,"mod":0},"initiative":{"base":1,"mod":0},"movement":{"base":2,"mod":0},"meleeAttack":{"base":27,"mod":0},"rangedAttack":{"base":1,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"plantBeing","sizeCategory":"large","experiencePoints":157,"description":"Asthiebe (WB+2)\nDicke Rinde (PA+2)\nMehrere Angriffe (+3), Anfällig, Nachtsicht, Natürliche Waffen, Schleudern"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Baumherr","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"4Kimfse2MrRiNwkL","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"4q1GtGOYjiJGrNQA","name":"Pferd","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":11,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":7,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":66,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":18,"mod":0},"movement":{"base":10.5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":11,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"animal","sizeCategory":"large","experiencePoints":101,"description":"Huf (WB+2)\n\nNatürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Pferd","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"4q1GtGOYjiJGrNQA","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"6RWeTpQkuA0cS0Q8","name":"Wasserelementar II","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":24,"mod":0,"value":0},"defense":{"base":22,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":18,"mod":0},"rangedAttack":{"base":14,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":83,"description":"Wasserstrahl (WB+3)\nKeine feste Gestalt (PA+8)\nAnfällig, Körperlos, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Wasserelementar II","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"6RWeTpQkuA0cS0Q8","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"7E9nc5XwkqlZ9P6Y","name":"Golem, Lehm-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":46,"mod":0,"value":0},"defense":{"base":13,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"construct","sizeCategory":"large","experiencePoints":114,"description":"Lehmpranke (WB+3)\n\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Lehm-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"7E9nc5XwkqlZ9P6Y","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"7vNQuIqe98wwq3kY","name":"Augenball","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":0,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":3,"mod":0}},"combatValues":{"hitPoints":{"base":44,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":4,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":8,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":13,"mod":0},"targetedSpellcasting":{"base":12,"mod":0}},"baseInfo":{"loot":"","foeFactor":13,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":218,"description":"\nWarzenhaut (PA+2)\nMehrere Angriffe (+4), Antimagie, Dunkelsicht, Mehrere Angriffsglieder, Schweben, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Augenball","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"7vNQuIqe98wwq3kY","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"8ExT0kxkIkfZNe0s","name":"Bär","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":75,"mod":0,"value":0},"defense":{"base":16,"mod":0},"initiative":{"base":12,"mod":0},"movement":{"base":8,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"animal","sizeCategory":"large","experiencePoints":139,"description":"Pranke (WB+2, GA-2)\nFell (PA+1)\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Bär","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"8ExT0kxkIkfZNe0s","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"8IhZTIv6D47oyO9n","name":"Kobold","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":3,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":1,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":7,"mod":0,"value":0},"defense":{"base":4,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":5,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"humanoid","sizeCategory":"small","experiencePoints":25,"description":"Keule (WB+1)\n\n"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kobold","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"8IhZTIv6D47oyO9n","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"8bsH7FPINt1vXfix","name":"Todesfee","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":19,"mod":0},"constitution":{"base":19,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":3,"mod":0},"aura":{"base":9,"mod":0}},"combatValues":{"hitPoints":{"base":35,"mod":0,"value":0},"defense":{"base":33,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":5.5,"mod":0},"meleeAttack":{"base":27,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":19,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":31,"creatureType":"undead","sizeCategory":"normal","experiencePoints":287,"description":"Geisterklaue (WB+2, GA-2)\nKörperlos (PA+8)\nAngst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Todesfee","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"8bsH7FPINt1vXfix","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"8dl5s8quzxg2v3Q7","name":"Tentakelhirn","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":4,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":11,"mod":0,"value":0},"defense":{"base":5,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":6,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":1,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":59,"description":"\n\nDunkelsicht, Schweben, Werteverlust"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Tentakelhirn","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"8dl5s8quzxg2v3Q7","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"AcntwsJso82Vf07j","name":"Eulerich","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":14,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":54,"mod":0,"value":0},"defense":{"base":18,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":20,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":11,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":115,"description":"Pranke (WB+2, GA-2)\nFederkleid (PA+1)\nDunkelsicht"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Eulerich","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"AcntwsJso82Vf07j","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"C9IoXnCS1mzIduGz","name":"Feuerelementar III","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":18,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":6,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":70,"mod":0,"value":0},"defense":{"base":33,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":28,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":24,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":145,"description":"Flammenhieb (WB+4)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Feuerelementar III","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"C9IoXnCS1mzIduGz","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"DQsipM2An6FnFjpy","name":"Pony","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":63,"mod":0,"value":0},"defense":{"base":11,"mod":0},"initiative":{"base":13,"mod":0},"movement":{"base":8,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":3,"creatureType":"animal","sizeCategory":"large","experiencePoints":92,"description":"Huf (WB+2)\n\nNatürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Pony","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"DQsipM2An6FnFjpy","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"DRpyo46ULilcKjep","name":"Schlingwurzelbusch","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":30,"mod":0,"value":0},"defense":{"base":11,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":11,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"plantBeing","sizeCategory":"normal","experiencePoints":122,"description":"Wurzelhiebe (WB+2)\nGehölz (PA+1)\nMehrere Angriffe (+4), Geistesimmun, Natürliche Waffen, Umschlingen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Schlingwurzelbusch","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"DRpyo46ULilcKjep","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"DzFha6Qc74OjIngw","name":"Niederer Dämon","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":5,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":5,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":9,"mod":0,"value":0},"defense":{"base":9,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":8,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":71,"description":"Pranke (WB+1, GA-1)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Niederer Dämon","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"DzFha6Qc74OjIngw","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"FIVvpHgFUCDDVHAw","name":"Wasserelementar III","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":15,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":62,"mod":0,"value":0},"defense":{"base":29,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":17,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":16,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":133,"description":"Wasserstrahl (WB+4)\nKeine feste Gestalt (PA+8)\nAnfällig, Körperlos, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Wasserelementar III","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"FIVvpHgFUCDDVHAw","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"FdoJa7GYEUZyFwdG","name":"Monsterspinne","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":72,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":9,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":15,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":11,"creatureType":"animal","sizeCategory":"large","experiencePoints":145,"description":"Spinnenbiss (WB+2, GA-2), Netzflüssigkeit (WB+2)\nDicke Spinnenhaut (PA+1)\nKletterläufer, Lähmungseffekt, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Monsterspinne","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"FdoJa7GYEUZyFwdG","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"G3lo0GREF5D0waHh","name":"Fliegendes Schwert","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":12,"mod":0,"value":0},"defense":{"base":19,"mod":0},"initiative":{"base":5,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":5,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"construct","sizeCategory":"small","experiencePoints":57,"description":"Langschwert (WB+2)\nMetallwesen (PA+5)\nFliegen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Fliegendes Schwert","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"G3lo0GREF5D0waHh","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"G4hZ1nHgw4EjxIDL","name":"Kampfdämon","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":8,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":4,"mod":0},"aura":{"base":4,"mod":0}},"combatValues":{"hitPoints":{"base":46,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":12,"mod":0},"movement":{"base":5.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":152,"description":"Pranke (WB+3, GA-3)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kampfdämon","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"G4hZ1nHgw4EjxIDL","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"GCIydXUyBQPOtFuX","name":"Golem, Stein-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":18,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":66,"mod":0,"value":0},"defense":{"base":27,"mod":0},"initiative":{"base":4,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":26,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"construct","sizeCategory":"large","experiencePoints":163,"description":"Steinpranke (WB+4)\nSteinwesen (PA+4)\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff, Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Stein-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"GCIydXUyBQPOtFuX","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"GKyIIlW7dlyDkFO7","name":"Kriegselefant","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":16,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":93,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":6.5,"mod":0},"meleeAttack":{"base":23,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":16,"creatureType":"animal","sizeCategory":"large","experiencePoints":142,"description":"Rammen (WB+2)\nDickhäuter (PA+2)\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kriegselefant","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"GKyIIlW7dlyDkFO7","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Hm0SRHkPuXj5C683","name":"Alligator","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":78,"mod":0,"value":0},"defense":{"base":18,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":9.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":10,"creatureType":"animal","sizeCategory":"large","experiencePoints":151,"description":"Großer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nNatürliche Waffen, Schwimmen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Alligator","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Hm0SRHkPuXj5C683","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"HzCRELbJpqm3S4D9","name":"Hobgoblin","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":3,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":24,"mod":0,"value":0},"defense":{"base":18,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":15,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"humanoid","sizeCategory":"normal","experiencePoints":71,"description":"Langschwert (WB+2), Kurzbogen (2h) (WB+1, INI+1)\nKettenpanzer (PA+2, LA-0.5), Metallhelm (PA+1, INI-1), Holzschild (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hobgoblin","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"HzCRELbJpqm3S4D9","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"JsLDyvhhNlrWM1jP","name":"Riesenkrake","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":22,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":8,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":270,"mod":0,"value":0},"defense":{"base":26,"mod":0},"initiative":{"base":18,"mod":0},"movement":{"base":11,"mod":0},"meleeAttack":{"base":29,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":35,"creatureType":"animal","sizeCategory":"huge","experiencePoints":397,"description":"Fangarme (WB+2)\n\nMehrere Angriffe (+5), Mehrere Angriffsglieder, Natürliche Waffen, Schwimmen, Umschlingen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riesenkrake","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"JsLDyvhhNlrWM1jP","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"KqHmJBEjVuReXeSh","name":"Mumie","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":10,"mod":0},"constitution":{"base":10,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":32,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":4,"mod":0},"movement":{"base":3,"mod":0},"meleeAttack":{"base":23,"mod":0},"rangedAttack":{"base":4,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":18,"creatureType":"undead","sizeCategory":"normal","experiencePoints":133,"description":"Fäulnispranke (WB+1)\nBandagen (PA+1)\nAngst, Anfällig, Dunkelsicht, Geistesimmun, Natürliche Waffen, Totenkraft, Werteverlust, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Mumie","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"KqHmJBEjVuReXeSh","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"LYupJ5sGyrvAG9zj","name":"Kleine Monsterspinne","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":32,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":7,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"animal","sizeCategory":"normal","experiencePoints":97,"description":"Spinnenbiss (WB+1, GA-1), Netzflüssigkeit (WB+1)\nDicke Spinnenhaut (PA+1)\nKletterläufer, Lähmungseffekt, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kleine Monsterspinne","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"LYupJ5sGyrvAG9zj","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"MHhY7djLWNipCL5d","name":"Wasserelementar I","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":10,"mod":0,"value":0},"defense":{"base":17,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":11,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":3,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":60,"description":"Wasserstrahl (WB+2)\nKeine feste Gestalt (PA+8)\nAnfällig, Körperlos, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Wasserelementar I","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"MHhY7djLWNipCL5d","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Mn1fPcMEgYHxweZa","name":"Keiler","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":38,"mod":0,"value":0},"defense":{"base":17,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":7,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":6,"creatureType":"animal","sizeCategory":"normal","experiencePoints":89,"description":"Hauer (WB+2, GA-1)\nDicke Borstenhaut (PA+2)\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Keiler","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Mn1fPcMEgYHxweZa","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"MuWU6xsjtjFqeb84","name":"Geist","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":1,"mod":0},"mobility":{"base":11,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":16,"mod":0},"constitution":{"base":16,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":3,"mod":0},"aura":{"base":6,"mod":0}},"combatValues":{"hitPoints":{"base":27,"mod":0,"value":0},"defense":{"base":25,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":6.5,"mod":0},"meleeAttack":{"base":19,"mod":0},"rangedAttack":{"base":13,"mod":0},"spellcasting":{"base":16,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":24,"creatureType":"undead","sizeCategory":"normal","experiencePoints":279,"description":"Geisterklaue (WB+2, GA-2)\nKörperlos (PA+8)\nAngst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit / Wesen des Lichts (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Geist","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"MuWU6xsjtjFqeb84","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"NsbWUdW7CbT2P1Ak","name":"Erdelementar I","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":2,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":13,"mod":0,"value":0},"defense":{"base":20,"mod":0},"initiative":{"base":3,"mod":0},"movement":{"base":2,"mod":0},"meleeAttack":{"base":19,"mod":0},"rangedAttack":{"base":2,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":44,"description":"Steinpranke (WB+4)\nSteinwesen (PA+4)\nAnfällig"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Erdelementar I","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"NsbWUdW7CbT2P1Ak","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"O10L24NmfxzcvWoG","name":"Wolf","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":29,"mod":0,"value":0},"defense":{"base":10,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":7,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"animal","sizeCategory":"normal","experiencePoints":81,"description":"Großer Biss (WB+2, GA-1)\nWolfspelz (PA+1)\nNachtsicht, Natürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Wolf","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"O10L24NmfxzcvWoG","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"OIPbQ1EDmFvdmf0J","name":"Hund","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":5,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":0,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":11,"mod":0,"value":0},"defense":{"base":6,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":9,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"animal","sizeCategory":"small","experiencePoints":31,"description":"Biss (WB+1)\nFell (PA+1)\nNatürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hund","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"OIPbQ1EDmFvdmf0J","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"OREFbDBfaxsJkTIt","name":"Vampirfledermaus","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":5,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":4,"mod":0,"value":0},"defense":{"base":7,"mod":0},"initiative":{"base":4,"mod":0},"movement":{"base":3,"mod":0},"meleeAttack":{"base":9,"mod":0},"rangedAttack":{"base":4,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":2,"creatureType":"animal","sizeCategory":"tiny","experiencePoints":55,"description":"Krallen (WB+1)\n\nFliegen, Natürliche Waffen, Sonar, Sturzangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Vampirfledermaus","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"OREFbDBfaxsJkTIt","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"PJmmRT5ADaJt8OXd","name":"Erdelementar III","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":22,"mod":0},"mobility":{"base":2,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":78,"mod":0,"value":0},"defense":{"base":33,"mod":0},"initiative":{"base":3,"mod":0},"movement":{"base":2.5,"mod":0},"meleeAttack":{"base":31,"mod":0},"rangedAttack":{"base":2,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":124,"description":"Steinpranke (WB+4)\nSteinwesen (PA+4)\nAnfällig"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Erdelementar III","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"PJmmRT5ADaJt8OXd","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"QguGTWbHyJ7qeJBB","name":"Reitkeiler","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":35,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":8.5,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"animal","sizeCategory":"normal","experiencePoints":86,"description":"Hauer (WB+2, GA-1)\nDicke Borstenhaut (PA+2)\nNatürliche Waffen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Reitkeiler","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"QguGTWbHyJ7qeJBB","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"R87b8fTnbRkcViy2","name":"Skelett","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":22,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"undead","sizeCategory":"normal","experiencePoints":72,"description":"Kochenklauen (WB+1)\n\nDunkelsicht, Geistesimmun, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Skelett","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"R87b8fTnbRkcViy2","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"TcL3FwsfrMFN2pOo","name":"Hoher Dämon","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":7,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":6,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":3,"mod":0},"aura":{"base":3,"mod":0}},"combatValues":{"hitPoints":{"base":20,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":12,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":104,"description":"Pranke (WB+2, GA-2)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hoher Dämon","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"TcL3FwsfrMFN2pOo","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Uam0M1N63FrQOwpM","name":"Jungdrache","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":16,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":7,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":225,"mod":0,"value":0},"defense":{"base":24,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":12.5,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":19,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":37,"creatureType":"magicalEntity","sizeCategory":"huge","experiencePoints":491,"description":"Biss, Klaue, Odem oder Schwanzhieb (WB+4, GA-4)\nDrachenschuppen (PA+4)\nAngst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Jungdrache","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Uam0M1N63FrQOwpM","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"W4mB4dNE0pcbDgh3","name":"Einhorn","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":13,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":6,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":63,"mod":0,"value":0},"defense":{"base":11,"mod":0},"initiative":{"base":19,"mod":0},"movement":{"base":12,"mod":0},"meleeAttack":{"base":12,"mod":0},"rangedAttack":{"base":13,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":194,"description":"Horn oder Hufe (WB+1, GA-2)\n\nAngst, Mehrere Angriffe (+1), Geistesimmun, Nachtsicht, Schleudern, Sturmangriff, Wesen des Lichts (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Einhorn","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"W4mB4dNE0pcbDgh3","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Y8RqkxTyGhz7VtJu","name":"Minotaurus","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":14,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":1,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":54,"mod":0,"value":0},"defense":{"base":18,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":20,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":12,"creatureType":"humanoid","sizeCategory":"large","experiencePoints":138,"description":"Massive Keule, Horn oder Huf (WB+2, GA-2)\nFell (PA+1)\nSturmangriff, Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Minotaurus","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Y8RqkxTyGhz7VtJu","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"YkCW5sZmYl5KaoPB","name":"Lebende Rüstung","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":24,"mod":0,"value":0},"defense":{"base":19,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"construct","sizeCategory":"normal","experiencePoints":72,"description":"Langschwert (WB+2)\nMetallwesen (PA+5)\nDunkelsicht, Geistesimmun"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Lebende Rüstung","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"YkCW5sZmYl5KaoPB","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"Z4Esl90JPN6vboeU","name":"Schatten","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":11,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":25,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":6.5,"mod":0},"meleeAttack":{"base":18,"mod":0},"rangedAttack":{"base":13,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":15,"creatureType":"undead","sizeCategory":"normal","experiencePoints":136,"description":"Geisterklaue (WB+2, GA-2)\nKörperlos (PA+8)\nAlterung, Dunkelsicht, Fliegen, Geistesimmun, Körperlos, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Schatten","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"Z4Esl90JPN6vboeU","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"a32rOmnjnYq8KzoY","name":"Medusa","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":7,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":36,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":8,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":18,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":205,"description":"Klauen/Schlangen (WB+2)\nSchuppen (PA+1)\nMehrere Angriffe (+5), Blickangriff, Schleudern, Versteinern"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Medusa","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"a32rOmnjnYq8KzoY","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"aN9ZlWQrWZkE5zjq","name":"Zombie","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":13,"mod":0},"mobility":{"base":3,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":28,"mod":0,"value":0},"defense":{"base":20,"mod":0},"initiative":{"base":3,"mod":0},"movement":{"base":2.5,"mod":0},"meleeAttack":{"base":18,"mod":0},"rangedAttack":{"base":3,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":10,"creatureType":"undead","sizeCategory":"normal","experiencePoints":78,"description":"Fäulnispranke (WB+2)\nMerkt nichts (PA+2)\nDunkelsicht, Geistesimmun, Natürliche Waffen, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Zombie","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"aN9ZlWQrWZkE5zjq","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"aoYZwygh5JkFboMW","name":"Luftelementar II","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":25,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":5.5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":14,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":92,"description":"Luftstoß (WB+2)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Luftelementar II","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"aoYZwygh5JkFboMW","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"bDwbu28S20BzQ0O9","name":"Dämonenfürst","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":20,"mod":0},"mobility":{"base":20,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":10,"mod":0},"constitution":{"base":10,"mod":0},"agility":{"base":10,"mod":0},"dexterity":{"base":10,"mod":0},"intellect":{"base":5,"mod":0},"aura":{"base":5,"mod":0}},"combatValues":{"hitPoints":{"base":400,"mod":0,"value":0},"defense":{"base":32,"mod":0},"initiative":{"base":30,"mod":0},"movement":{"base":16,"mod":0},"meleeAttack":{"base":35,"mod":0},"rangedAttack":{"base":30,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":42,"creatureType":"magicalEntity","sizeCategory":"colossal","experiencePoints":579,"description":"Pranke (WB+5, GA-5)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Dämonenfürst","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"bDwbu28S20BzQ0O9","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"clKFXfvee1B2puOU","name":"Hai","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":13,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":39,"mod":0,"value":0},"defense":{"base":16,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":19,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"animal","sizeCategory":"normal","experiencePoints":106,"description":"Großer Biss (WB+2, GA-2)\n\nNatürliche Waffen, Schwimmen, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Hai","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"clKFXfvee1B2puOU","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"dcdpvc9ENQPShHDK","name":"Luftelementar III","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":15,"mod":0},"mobility":{"base":9,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":64,"mod":0,"value":0},"defense":{"base":30,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":21,"mod":0},"rangedAttack":{"base":17,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":16,"creatureType":"magicalEntity","sizeCategory":"large","experiencePoints":143,"description":"Luftstoß (WB+4)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Luftelementar III","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"dcdpvc9ENQPShHDK","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"eRtJGt8uGZuALrmy","name":"Riesenechse","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":15,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":218,"mod":0,"value":0},"defense":{"base":21,"mod":0},"initiative":{"base":17,"mod":0},"movement":{"base":12.5,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":25,"creatureType":"animal","sizeCategory":"huge","experiencePoints":316,"description":"Grausamer Biss (WB+4)\nSchuppenpanzer (PA+2)\nKletterläufer, Nachtsicht, Natürliche Waffen, Sturmangriff, Verschlingen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riesenechse","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"eRtJGt8uGZuALrmy","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"f2f5D2k8Al7jyZ5C","name":"Echsenmensch","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":3,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":21,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":11,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":3,"creatureType":"humanoid","sizeCategory":"normal","experiencePoints":69,"description":"Speer (WB+1)\nSchuppenpanzer (PA+1)\nNachtsicht, Schleudern"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Echsenmensch","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"f2f5D2k8Al7jyZ5C","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"ftgebW200hakGEPY","name":"Unwolf","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":11,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":35,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":7,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":104,"description":"Feuerodem (WB+2), Biss (WB+1)\nBrennendes Fell (PA+1)\nAnfällig, Natürliche Waffen, Odem, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Unwolf","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"ftgebW200hakGEPY","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"gFn9NmrQhkxti8eR","name":"Faulbauchmade","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":10,"mod":0,"value":0},"defense":{"base":10,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":10,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"undead","sizeCategory":"small","experiencePoints":47,"description":"Zahnschlund (WB+2)\n\nDunkelsicht, Geistesimmun, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Faulbauchmade","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"gFn9NmrQhkxti8eR","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"hWsAJhsVWgEsMNGw","name":"Adler","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":3,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":1,"mod":0},"constitution":{"base":0,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":1,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":7,"mod":0,"value":0},"defense":{"base":4,"mod":0},"initiative":{"base":11,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":5,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"animal","sizeCategory":"small","experiencePoints":52,"description":"Krallen (WB+1)\nFederkleid (PA+1)\nFliegen, Natürliche Waffen, Sturzangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Adler","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"hWsAJhsVWgEsMNGw","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"iyiRNSdWfkokS7iR","name":"Ratte","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":2,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":1,"mod":0},"constitution":{"base":0,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":3,"mod":0,"value":0},"defense":{"base":2,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":3,"mod":0},"meleeAttack":{"base":4,"mod":0},"rangedAttack":{"base":4,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"animal","sizeCategory":"tiny","experiencePoints":26,"description":"Spitze Zähne (WB+1)\n\nDunkelsicht, Natürliche Waffen, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Ratte","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"iyiRNSdWfkokS7iR","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"jrXK3LvhQgMsqDCk","name":"Faulbauch","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":16,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":6,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":62,"mod":0,"value":0},"defense":{"base":23,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":24,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":17,"creatureType":"undead","sizeCategory":"large","experiencePoints":131,"description":"Knochenpranke (WB+2)\nMerkt nichts (PA+2)\nDunkelsicht, Geistesimmun, Schleudern, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Faulbauch","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"jrXK3LvhQgMsqDCk","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"kGGHFziw1n1x799k","name":"Golem, Knochen-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":0,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":0,"mod":0},"agility":{"base":6,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":40,"mod":0,"value":0},"defense":{"base":10,"mod":0},"initiative":{"base":18,"mod":0},"movement":{"base":7.5,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":12,"creatureType":"construct","sizeCategory":"large","experiencePoints":148,"description":"Knochenpranke (WB+2)\n\nMehrere Angriffe (+3), Dunkelsicht, Geistesimmun, Mehrere Angriffsglieder, Schleudern, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Knochen-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"kGGHFziw1n1x799k","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"kWO2ojEvo9BhEuKE","name":"Rostassel","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":4,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":33,"mod":0,"value":0},"defense":{"base":15,"mod":0},"initiative":{"base":7,"mod":0},"movement":{"base":7,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"animal","sizeCategory":"normal","experiencePoints":111,"description":"Tentakelfühler (WB+1)\nChitinpanzer (PA+3)\nMehrere Angriffe (+3), Dunkelsicht, Mehrere Angriffsglieder, Natürliche Waffen, Rost"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Rostassel","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"kWO2ojEvo9BhEuKE","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"kvKePF11D5zuL1pn","name":"Luftelementar I","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":6,"mod":0},"mobility":{"base":8,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":10,"mod":0,"value":0},"defense":{"base":17,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":5,"mod":0},"meleeAttack":{"base":9,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":68,"description":"Luftstoß (WB+1)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Luftelementar I","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"kvKePF11D5zuL1pn","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"lT0njpbCDoX8LXlj","name":"Oger","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":12,"mod":0},"mobility":{"base":4,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":50,"mod":0,"value":0},"defense":{"base":16,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":17,"mod":0},"rangedAttack":{"base":4,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"humanoid","sizeCategory":"large","experiencePoints":120,"description":"Massive Keule (WB+2, GA-2)\nFelle (PA+1)\nNachtsicht, Umschlingen, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Oger","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"lT0njpbCDoX8LXlj","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"ms4qz2DlC9XEUoOc","name":"Shekz","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":3,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":7,"mod":0}},"traits":{"strength":{"base":0,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":4,"mod":0},"aura":{"base":4,"mod":0}},"combatValues":{"hitPoints":{"base":7,"mod":0,"value":0},"defense":{"base":5,"mod":0},"initiative":{"base":5,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":3,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":11,"mod":0},"targetedSpellcasting":{"base":9,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"humanoid","sizeCategory":"small","experiencePoints":49,"description":"Wurfmesser\nFelle (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Shekz","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"ms4qz2DlC9XEUoOc","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"owJajWFY38sPJkG9","name":"Kriegsdämon","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":15,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":7,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":5,"mod":0},"intellect":{"base":5,"mod":0},"aura":{"base":5,"mod":0}},"combatValues":{"hitPoints":{"base":160,"mod":0,"value":0},"defense":{"base":24,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":8,"mod":0},"meleeAttack":{"base":26,"mod":0},"rangedAttack":{"base":15,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":23,"creatureType":"magicalEntity","sizeCategory":"huge","experiencePoints":297,"description":"Pranke (WB+4, GA-4)\nDämonenhaut (PA+2)\nDunkelsicht, Natürliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Kriegsdämon","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"owJajWFY38sPJkG9","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"pDualhT4LBrn2j6o","name":"Ork","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":10,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":3,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":23,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":2,"creatureType":"humanoid","sizeCategory":"normal","experiencePoints":63,"description":"Speer (WB+1)\nLederpanzer (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Ork","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"pDualhT4LBrn2j6o","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"pXISlWeEetZonxJ1","name":"Gargyl","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":7,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":1,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":1,"mod":0}},"combatValues":{"hitPoints":{"base":10,"mod":0,"value":0},"defense":{"base":13,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":11,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":6,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":91,"description":"Steinpranke (WB+2)\nSteinwesen (PA+4)\nAnfällig, Dunkelsicht, Fliegen, Geistesimmun, Kletterläufer, Natürliche Waffen, Sturzangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Gargyl","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"pXISlWeEetZonxJ1","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"s4MXQpHRxV6PFn7I","name":"Riese","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":27,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":2,"mod":0}},"traits":{"strength":{"base":7,"mod":0},"constitution":{"base":7,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":220,"mod":0,"value":0},"defense":{"base":35,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":38,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":29,"creatureType":"humanoid","sizeCategory":"huge","experiencePoints":347,"description":"Baumstamm (WB+4, GA-4), Geworf. Fels (WB+4, GA-4)\nFelle (PA+1)\nUmschlingen, Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riese","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"s4MXQpHRxV6PFn7I","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"sPnX7al3xyaCSQwP","name":"Riesenschlange","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":5,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":3,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":66,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":11,"mod":0},"meleeAttack":{"base":16,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":8,"creatureType":"animal","sizeCategory":"large","experiencePoints":143,"description":"Großer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nGift, Natürliche Waffen, Umschlingen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riesenschlange","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"sPnX7al3xyaCSQwP","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"slL6Y2twksAgYU21","name":"Erwachsener Drache","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":24,"mod":0},"mobility":{"base":16,"mod":0},"mind":{"base":10,"mod":0}},"traits":{"strength":{"base":6,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":4,"mod":0},"dexterity":{"base":4,"mod":0},"intellect":{"base":2,"mod":0},"aura":{"base":3,"mod":0}},"combatValues":{"hitPoints":{"base":600,"mod":0,"value":0},"defense":{"base":35,"mod":0},"initiative":{"base":20,"mod":0},"movement":{"base":18.5,"mod":0},"meleeAttack":{"base":35,"mod":0},"rangedAttack":{"base":25,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":65,"creatureType":"magicalEntity","sizeCategory":"colossal","experiencePoints":922,"description":"Biss, Klaue, Odem oder Schwanzhieb (WB+5, GA-5)\nDrachenschuppen (PA+5)\nAngst, Mehrere Angriffe (+1), Dunkelsicht, Fliegen, Natürliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Erwachsener Drache","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"slL6Y2twksAgYU21","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"srkD07FSsmD8mwCg","name":"Raubkatze","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":7,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":5,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":27,"mod":0,"value":0},"defense":{"base":9,"mod":0},"initiative":{"base":15,"mod":0},"movement":{"base":9,"mod":0},"meleeAttack":{"base":12,"mod":0},"rangedAttack":{"base":10,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":3,"creatureType":"animal","sizeCategory":"normal","experiencePoints":84,"description":"Pranke/Biss (WB+2, GA-1)\nFell (PA+1)\nMehrere Angriffe (+1), Nachtsicht, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Raubkatze","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"srkD07FSsmD8mwCg","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"uUkJSYOHVDzGA0OH","name":"Goblin","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":5,"mod":0},"mobility":{"base":7,"mod":0},"mind":{"base":3,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":2,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":8,"mod":0,"value":0},"defense":{"base":7,"mod":0},"initiative":{"base":9,"mod":0},"movement":{"base":4.5,"mod":0},"meleeAttack":{"base":7,"mod":0},"rangedAttack":{"base":9,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"humanoid","sizeCategory":"small","experiencePoints":42,"description":"Wurfmesser\nFelle (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Goblin","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"uUkJSYOHVDzGA0OH","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"uaJMoD9N55MuWEWr","name":"Feuerelementar I","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":5,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":5,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":12,"mod":0,"value":0},"defense":{"base":22,"mod":0},"initiative":{"base":5,"mod":0},"movement":{"base":3.5,"mod":0},"meleeAttack":{"base":14,"mod":0},"rangedAttack":{"base":5,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":9,"creatureType":"magicalEntity","sizeCategory":"small","experiencePoints":70,"description":"Flammenhieb (WB+2)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Feuerelementar I","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"uaJMoD9N55MuWEWr","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"wFMNkrgaLhsj3cou","name":"Golem, Kristall-","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":10,"mod":0},"mind":{"base":4,"mod":0}},"traits":{"strength":{"base":3,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":5,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":42,"mod":0,"value":0},"defense":{"base":14,"mod":0},"initiative":{"base":10,"mod":0},"movement":{"base":6.5,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":15,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":12,"mod":0}},"baseInfo":{"loot":"","foeFactor":7,"creatureType":"construct","sizeCategory":"large","experiencePoints":134,"description":"Kristallpranke (WB+2)\nKristallwesen (PA+3)\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Golem, Kristall-","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"wFMNkrgaLhsj3cou","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"wacvMqN9pYB1aQQm","name":"Feuerelementar II","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":13,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":4,"mod":0},"constitution":{"base":6,"mod":0},"agility":{"base":0,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":29,"mod":0,"value":0},"defense":{"base":27,"mod":0},"initiative":{"base":6,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":20,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":15,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":95,"description":"Flammenhieb (WB+3)\nKeine feste Gestalt (PA+8)\nAnfällig, Fliegen, Körperlos"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Feuerelementar II","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"wacvMqN9pYB1aQQm","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"xiv9518QVtktwGpE","name":"Riesenratte","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":4,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":1,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":11,"mod":0,"value":0},"defense":{"base":5,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":6,"mod":0},"meleeAttack":{"base":8,"mod":0},"rangedAttack":{"base":6,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":1,"creatureType":"animal","sizeCategory":"small","experiencePoints":41,"description":"Spitze Zähne (WB+2)\n\nDunkelsicht, Natürliche Waffen, Schwimmen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Riesenratte","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"xiv9518QVtktwGpE","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"yk5TPynARdbyWnA3","name":"Schimmerross","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":9,"mod":0},"mobility":{"base":12,"mod":0},"mind":{"base":1,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":3,"mod":0},"agility":{"base":6,"mod":0},"dexterity":{"base":0,"mod":0},"intellect":{"base":0,"mod":0},"aura":{"base":0,"mod":0}},"combatValues":{"hitPoints":{"base":66,"mod":0,"value":0},"defense":{"base":12,"mod":0},"initiative":{"base":18,"mod":0},"movement":{"base":11,"mod":0},"meleeAttack":{"base":13,"mod":0},"rangedAttack":{"base":12,"mod":0},"spellcasting":{"base":0,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":4,"creatureType":"animal","sizeCategory":"large","experiencePoints":106,"description":"Huf (WB+2)\n\nNachtsicht, Natürliche Waffen"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Schimmerross","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"yk5TPynARdbyWnA3","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}
{"_id":"ypFMaqfu04oKlnYP","name":"Harpyie","permission":{"default":0,"WagunWXRXnTWC86l":3},"type":"creature","data":{"attributes":{"body":{"base":8,"mod":0},"mobility":{"base":6,"mod":0},"mind":{"base":6,"mod":0}},"traits":{"strength":{"base":2,"mod":0},"constitution":{"base":2,"mod":0},"agility":{"base":2,"mod":0},"dexterity":{"base":1,"mod":0},"intellect":{"base":1,"mod":0},"aura":{"base":2,"mod":0}},"combatValues":{"hitPoints":{"base":20,"mod":0,"value":0},"defense":{"base":11,"mod":0},"initiative":{"base":8,"mod":0},"movement":{"base":4,"mod":0},"meleeAttack":{"base":12,"mod":0},"rangedAttack":{"base":7,"mod":0},"spellcasting":{"base":8,"mod":0},"targetedSpellcasting":{"base":0,"mod":0}},"baseInfo":{"loot":"","foeFactor":5,"creatureType":"magicalEntity","sizeCategory":"normal","experiencePoints":108,"description":"Krallenklaue (WB+2)\nFederkleid (PA+1)\nBezaubern, Fliegen, Nachtsicht, Natürliche Waffen, Sturzangriff"}},"sort":100001,"flags":{},"token":{"flags":{},"name":"Harpyie","displayName":0,"img":"icons/svg/mystery-man.svg","tint":null,"width":1,"height":1,"scale":1,"lockRotation":false,"rotation":0,"vision":false,"dimSight":0,"brightSight":0,"dimLight":0,"brightLight":0,"sightAngle":360,"lightAngle":360,"lightAlpha":1,"lightAnimation":{"speed":5,"intensity":5},"actorId":"ypFMaqfu04oKlnYP","actorLink":false,"disposition":-1,"displayBars":0,"bar1":{},"bar2":{},"randomImg":false},"items":[],"effects":[]}

View file

@ -0,0 +1,139 @@
{
"_id": "x6FNsguV71THz7mI",
"name": "Luftelementar II",
"permission": {
"default": 0,
"FEvrWMradRtFUbWR": 3
},
"type": "creature",
"data": {
"attributes": {
"body": {
"base": 10,
"mod": 0
},
"mobility": {
"base": 9,
"mod": 0
},
"mind": {
"base": 1,
"mod": 0
}
},
"traits": {
"strength": {
"base": 2,
"mod": 0
},
"constitution": {
"base": 5,
"mod": 0
},
"agility": {
"base": 0,
"mod": 0
},
"dexterity": {
"base": 3,
"mod": 0
},
"intellect": {
"base": 0,
"mod": 0
},
"aura": {
"base": 0,
"mod": 0
}
},
"combatValues": {
"hitPoints": {
"base": 25,
"mod": 0,
"value": 0
},
"defense": {
"base": 23,
"mod": 0
},
"initiative": {
"base": 9,
"mod": 0
},
"movement": {
"base": 5.5,
"mod": 0
},
"meleeAttack": {
"base": 14,
"mod": 0
},
"rangedAttack": {
"base": 14,
"mod": 0
},
"spellcasting": {
"base": 0,
"mod": 0
},
"targetedSpellcasting": {
"base": 0,
"mod": 0
}
},
"baseInfo": {
"loot": "",
"foeFactor": 1,
"creatureType": "magicalEntity",
"sizeCategory": "normal",
"experiencePoints": 92,
"description": "<p>Angriff Luftsto&szlig; +2</p>\n<p>K&ouml;rperlos PA +8</p>\n<p>Fliegen</p>\n<p>Anf&auml;llig f&uuml;r Stein/Fels/Erde</p>\n<p>&nbsp;</p>"
}
},
"folder": "2AshEyLIg7MMJBpr",
"sort": 100001,
"flags": {},
"img": "systems/dnd5e/tokens/undead/Specter.png",
"token": {
"flags": {},
"name": "Luftelementar II",
"displayName": 0,
"img": "systems/dnd5e/tokens/undead/Specter.png",
"tint": "",
"width": 1,
"height": 1,
"scale": 1,
"mirrorX": false,
"mirrorY": false,
"lockRotation": false,
"rotation": 0,
"vision": false,
"dimSight": 0,
"brightSight": 0,
"dimLight": 0,
"brightLight": 0,
"sightAngle": 360,
"lightAngle": 360,
"lightColor": "",
"lightAlpha": 1,
"lightAnimation": {
"type": "",
"speed": 5,
"intensity": 5
},
"actorId": "x6FNsguV71THz7mI",
"actorLink": false,
"disposition": -1,
"displayBars": 0,
"bar1": {
"attribute": ""
},
"bar2": {
"attribute": ""
},
"randomImg": false
},
"items": [],
"effects": []
}

View file

@ -0,0 +1,182 @@
import csv
import json
def mapType(creatureType):
"""
maps the slayer's pit type to the foundry system type
"""
switcher = {
'Tiere': 'animal',
'Humanoide': 'humanoid',
'Konstrukte': 'construct',
'Magische Wesen': 'magicalEntity',
'Pflanzenwesen': 'plantBeing',
'Untote': 'undead'
}
return switcher.get(creatureType)
def mapSize(size):
"""
maps slayer's pits size to foundry system size
"""
switcher = {
'wi': 'tiny',
'kl': 'small',
'no': 'normal',
'gr': 'large',
'ri': 'huge',
'ge': 'colossal'
}
return switcher.get(size)
def getAttributes(creature):
"""
maps the attributes
"""
return {
"body": {
"base": int(creature['KÖR']),
"mod": 0
},
"mobility": {
"base": int(creature['AGI']),
"mod": 0
},
"mind": {
"base": int(creature['GEI']),
"mod": 0
}
}
def getTraits(creature):
"""
maps the traits
"""
return {
"strength": {
"base": int(creature['ST']),
"mod": 0
},
"constitution": {
"base": int(creature['']),
"mod": 0
},
"agility": {
"base": int(creature['BE']),
"mod": 0
},
"dexterity": {
"base": int(creature['GE']),
"mod": 0
},
"intellect": {
"base": int(creature['VE']),
"mod": 0
},
"aura": {
"base": int(creature['AU']),
"mod": 0
}
}
def getCombatValues(creature):
"""
maps combat values
"""
magic = 0 if (creature['Zauber'] == '') else float(creature['Zauber'])
targetMagic = 0 if creature['Zielzauber'] == '' else float(
creature['Zielzauber'])
return {
"hitPoints": {
"base": float(creature['Lebenskraft']),
"mod": 0,
},
"defense": {
"base": float(creature['Abwehr']),
"mod": 0
},
"initiative": {
"base": float(creature['Initiative']),
"mod": 0
},
"movement": {
"base": float(creature['Laufen']),
"mod": 0
},
"meleeAttack": {
"base": float(creature['Schlagen']),
"mod": 0
},
"rangedAttack": {
"base": float(creature['Schiessen']),
"mod": 0
},
"spellcasting": {
"base": magic,
"mod": 0
},
"targetedSpellcasting": {
"base": targetMagic,
"mod": 0
}
}
def reformatCreature(creature):
"""
reformats from table form into expected foundry style dict
"""
size = mapSize(creature['GK'])
creatureType = mapType(creature['Gruppe'])
attributes = getAttributes(creature)
traits = getTraits(creature)
combatValues = getCombatValues(creature)
description = creature['Waffen'] + '\n' + \
creature['Panzerung'] + '\n' + creature['Talente']
return {
'name': creature['Name'],
'type': 'creature',
'data': {
"attributes": attributes,
"traits": traits,
"combatValues": combatValues,
"baseInfo": {
"loot": "",
"foeFactor": int(creature['GH']),
"creatureType": creatureType,
"sizeCategory": size,
"experiencePoints": int(creature['EP']),
"description": description
}
}
}
def decode(filename, source):
creatures = []
npcs = []
with open(filename, newline='\n') as csvFile:
creatureReader = csv.DictReader(csvFile)
for row in creatureReader:
if row['Quelle'] == source:
if row['Volk'] == '':
creatures.append(row)
else:
npcs.append(row)
return (creatures, npcs)
creatures, npcs = decode('Bestiarium.csv', 'Dungeonslayers Basisbox')
with open('bestiarium.json', 'w') as outfile:
mappedCreatures = list(map(reformatCreature, creatures))
json.dump(mappedCreatures, outfile)

View file

@ -1,6 +1,4 @@
MIT License
Copyright (c) <year> <copyright holders>
Copyright 2020 Johannes Loher, Gesina Schwalbe, Oliver Rümpelein, Siegfried Krug
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View file

@ -1,21 +0,0 @@
<!--
SPDX-FileCopyrightText: 2022 Johannes Loher
SPDX-License-Identifier: MIT
-->
# Licensing
This project is being developed under the terms of the
[LIMITED LICENSE AGREEMENT FOR MODULE DEVELOPMENT] for Foundry Virtual Tabletop.
The project itself is licensed under multiple licenses. [REUSE] is used to
specify the licenses for the individual files. Most of the licenses are
specified either inside the source file or by an accompanying `.license` file,
but for some files, the licenses are specified in [.reuse/dep5]. Some of the
work that is being reused by this project requires attribution to the original
author(s). You can find these attributions in [ATTRIBUTION.md](ATTRIBUTION.md).
[LIMITED LICENSE AGREEMENT FOR MODULE DEVELOPMENT]: https://foundryvtt.com/article/license/
[REUSE]: https://reuse.software/
[.reuse/dep5]: .reuse/dep5

View file

@ -1,9 +0,0 @@
Copyright (c) <year> <owner> All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View file

@ -1,93 +0,0 @@
Creative Commons Attribution 3.0 Unported
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.
License
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
1. Definitions
a. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
b. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
c. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
d. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
e. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
f. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
g. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
h. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
i. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
a. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
b. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
c. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
d. to Distribute and Publicly Perform Adaptations.
e. For the avoidance of doubt:
i. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
ii. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
iii. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.
4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
a. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested.
b. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
c. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
5. Representations, Warranties and Disclaimer
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
7. Termination
a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
8. Miscellaneous
a. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
b. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You.
e. This License may not be modified without the mutual written agreement of the Licensor and You.
f. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
Creative Commons Notice
Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.
Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License.
Creative Commons may be contacted at http://creativecommons.org/.

View file

@ -1,170 +0,0 @@
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors.
Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensors permission is not necessary for any reasonfor example, because of any applicable exception or limitation to copyrightthen that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public.
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
Section 1 Definitions.
a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
c. BY-NC-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License.
d. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
e. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
f. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
g. License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution, NonCommercial, and ShareAlike.
h. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
i. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
j. Licensor means the individual(s) or entity(ies) granting rights under this Public License.
k. NonCommercial means not primarily intended for or directed towards commercial advantage or monetary compensation. For purposes of this Public License, the exchange of the Licensed Material for other material subject to Copyright and Similar Rights by digital file-sharing or similar means is NonCommercial provided there is no payment of monetary compensation in connection with the exchange.
l. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
m. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
n. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.
Section 2 Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
A. reproduce and Share the Licensed Material, in whole or in part, for NonCommercial purposes only; and
B. produce, reproduce, and Share Adapted Material for NonCommercial purposes only.
2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
3. Term. The term of this Public License is specified in Section 6(a).
4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
5. Downstream recipients.
A. Offer from the Licensor Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
B. Additional offer from the Licensor Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapters License You apply.
C. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this Public License.
3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties, including when the Licensed Material is used other than for NonCommercial purposes.
Section 3 License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified form), You must:
A. retain the following if it is supplied by the Licensor with the Licensed Material:
i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of warranties;
v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
b. ShareAlike.In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
1. The Adapters License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-NC-SA Compatible License.
2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.
3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.
Section 4 Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database for NonCommercial purposes only;
b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and
c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
Section 5 Disclaimer of Warranties and Limitation of Liability.
a. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.
b. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.
c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
Section 6 Term and Termination.
a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
Section 7 Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.
Section 8 Interpretation.
a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.
Creative Commons may be contacted at creativecommons.org.

View file

@ -1,28 +0,0 @@
Token Usage Rights
Usage Rights
I retain all rights to the artwork and tokens. You may use my tokens for personal use. You may distribute the free tokens but please do not distribute my premium token sets. After purchasing the tokens you can use them in any of your personal games. You may also share them with your regular gaming group.
Usage Rights for Streaming.
If you are planning on using my tokens in your streamed games, please add a link to my site and “Tokens by Devin Night” or “Some tokens by Devin Night” or “The really awesome tokens were made by Devin Night, hes so hot right now.” I would also like to be given a heads up, but it is not neccessary. No money is required to use them for streaming.
Token rights for use in commercial products.
You can use any number of the free tokens in your adventures. (Dark Heroes, both Pathfinder sets and the Space Opera tokens may not be used in any free or commercial product)
You can use 10-20 premium tokens (from packs 21- newest releases, excluding Tome of Beast tokens) at a cost of $10 per token.
Token packs bought from the store do not qualify for commercial use. However any token that exists in my packs may be purchased for commercial use. (with the exception of Tome of Beasts, the Pathfinder sets, Dark Heroes and Space Opera tokens)
For $25 I can make a custom token that you can use exclusively in your commercial product. If I can also sell that token on my site the price is $15. For $10 per token I can modify an existing token to make it match your needs more closely.
The above costs are for the usage of tokens in one product.
Custom tokens made specifically for you may be used in multiple products.
Tokens cannot be bundled separately and may not make up the majority of the product.
Credit to Devin Night (https://immortalnights.com/tokensite/) must appear somewhere in the credit section.
Art may not be modified without my permission. If permission is granted you have the right to alter the tokens in any manner you wish as long as it maintains my standards of work. Altering the token does not make it your work or void my ownership of the art.
I retain all rights to the art and any derivative art.
I retain the right to re-use and display all token art that I create. In general, I will not re-use a custom token exactly as it was made. In cases involving larger sets of custom tokens, I may release these tokens in token packs. I will do my best to keep all unique tokens of characters exclusive to the purchaser for one year. After that time It will probably be included in a token pack.
If posting screenshots of the tokens in action please credit Devin Night.
Please do not use the tokens or any derived work for commercial or non-commercial purposes unless you have contacted me and received permission to do so.
Thank you. Creating tokens is my main source of income and it allows me to keep my wife and children happy.

View file

@ -1,59 +0,0 @@
<<<<<<<<<<<<<<<< ENGLISH >>>>>>>>>>>>>>>>>
Freewares EULA ( the End User License Agreement )This document is a legal agreement between you, the end user, and Flat-it type foundry.
By using or installing Flat it type foundry Freewares ( Free typefaces, Free brushes and Screensavers ) , you agree to be bound by the terms of this Agreement.
Freeware means that you can download it and use it for your commercial and non-commercial works for free.
Here is a list of things you could do, Only if you want to:
* Mail me about your works
* Link http://flat-it.com/ Download our banners
* Send me a sample of the work you did using Flat it type foundry Freewares
* Mail me some print material you did using Flat it type foundry Freewares
* Credit "Flat-it"on your work
* Smile
You may not redistribute without permission.
DISCLAIMER
Flat-it's freewares are provided to you free of charge.
We give no warranty in relation to these freewares, and you use them at your own risk.
Flat-it.com will not be liable for any damage to your system, any loss or corruption of any data or software, or any other loss or damage that you may suffer as a result of downloading or using these freewares, whether it results from our negligence or in any other way.
<<<<<<<<<<<<<<<< JAPANESE >>>>>>>>>>>>>>>>>
<EFBFBD>t<EFBFBD><EFBFBD><EFBFBD>[<5B>E<EFBFBD>F<EFBFBD>A<EFBFBD>@<40><><EFBFBD>C<EFBFBD>Z<EFBFBD><5A><EFBFBD>X
Flat-it<69><74><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E882B5><EFBFBD>t<EFBFBD><74><EFBFBD>[<5B>E<EFBFBD>F<EFBFBD>A<EFBFBD>i<EFBFBD>t<EFBFBD><74><EFBFBD>[<5B>t<EFBFBD>H<EFBFBD><48><EFBFBD>g<EFBFBD>A<EFBFBD>t<EFBFBD><74><EFBFBD>[<5B>u<EFBFBD><75><EFBFBD>V<EFBFBD>A<EFBFBD>X<EFBFBD>N<EFBFBD><4E><EFBFBD>[<5B><><EFBFBD>Z<EFBFBD>C<EFBFBD>o<EFBFBD>[<5B>j<EFBFBD>̎g<CC8E>p<EFBFBD>͈ȉ<CD88><C889>Ɏ<EFBFBD><C98E><EFBFBD><EFBFBD><EFBFBD><EFBFBD>C<EFBFBD>Z<EFBFBD><5A><EFBFBD>X<EFBFBD>ɓ<EFBFBD><C993>ӂ<EFBFBD><D382><EFBFBD>K<EFBFBD>v<EFBFBD><76><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82>B
<EFBFBD>t<EFBFBD><EFBFBD><EFBFBD>[<5B>E<EFBFBD>F<EFBFBD>A<EFBFBD>͏<EFBFBD><CD8F>p<EFBFBD>A<EFBFBD>񏤗p<F18FA497>i<EFBFBD>l<C290>g<EFBFBD>p<EFBFBD>Ȃǁj<C781>Ɋւ<C98A><EFBFBD><E782B7><EFBFBD><EFBFBD><EFBFBD>ł<EFBFBD><C582><EFBFBD><EFBFBD>p<EFBFBD><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82>B<EFBFBD><42><EFBFBD><EFBFBD><EC8CA0>Flat-it(http://flat-it.com/)<29>ɂ<EFBFBD><C982><EFBFBD>܂<EFBFBD><DC82>B
<EFBFBD>g<EFBFBD>p<EFBFBD>ɍۂ<EFBFBD><EFBFBD>Ă͎<EFBFBD><EFBFBD>̃<EFBFBD><EFBFBD>X<EFBFBD>g<EFBFBD>ɏ]<5D><><EFBFBD>ĉ<EFBFBD><C489><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
*<2A>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>[<5B><><EFBFBD>ȂǂŘA<C598><41><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
*<2A>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Flat-it(http://flat-it.com/)<29>Ƀ<EFBFBD><C983><EFBFBD><EFBFBD>N<EFBFBD><4E><EFBFBD>ĉ<EFBFBD><C489><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
*<2A>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD>p<EFBFBD><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>i<EFBFBD>̃T<CC83><54><EFBFBD>v<EFBFBD><76><EFBFBD>i<EFBFBD><EFBFBD>Ȃǁj<C781><6A><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E882AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
*<2A>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>H<EFBFBD>Ɛ<EFBFBD><C690>i<EFBFBD>ȂǏ<C882><C78F>Ǝg<C68E>p<EFBFBD>̍ۂ͏<DB82><CD8F>i<EFBFBD><69><EFBFBD>ЂƂ‰<C682><C289><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
*<2A>@<40>C<EFBFBD><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"Flat-it"<22>ƃN<C683><4E><EFBFBD>W<EFBFBD>b<EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
<EFBFBD>܂<EFBFBD><EFBFBD>A<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̃t<EFBFBD><EFBFBD><EFBFBD>[<5B>E<EFBFBD>F<EFBFBD>A<EFBFBD><41><EFBFBD>Ĕz<C494>z<EFBFBD><7A><EFBFBD><EFBFBD><EFBFBD>ɂ͋<C982><CD8B>‚<EFBFBD><C282>K<EFBFBD>v<EFBFBD>ł<EFBFBD><C582>B
<EFBFBD>Ɛӎ<EFBFBD><EFBFBD><EFBFBD>
Flat-it<69>͂<EFBFBD><CD82><EFBFBD><EFBFBD>t<EFBFBD><74><EFBFBD>[<5B>E<EFBFBD>F<EFBFBD>A<EFBFBD>Ɋւ<C98A><D682>Ă<EFBFBD><C482>q<EFBFBD>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȃ鑹<C882>Q<EFBFBD>ɂ‚<C982><C282>Ă<EFBFBD><C482>A<EFBFBD><41>؂̐ӔC<D394>𕉂<EFBFBD>Ȃ<EFBFBD><C882><EFBFBD><EFBFBD>̂Ƃ<CC82><C682>܂<EFBFBD><DC82>B<EFBFBD><42><EFBFBD>q<EFBFBD>l<EFBFBD><6C><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD>̐ӔC<D394>ł<EFBFBD><C582><EFBFBD><EFBFBD>p<EFBFBD><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>B
Flat-it<69>͂<EFBFBD><CD82><EFBFBD><EFBFBD>t<EFBFBD><74><EFBFBD>[<5B>E<EFBFBD>F<EFBFBD>A<EFBFBD>̗<EFBFBD><CC97>p<EFBFBD>ɂ<EFBFBD><C982><EFBFBD>Đ<EFBFBD><C490><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȃ<EFBFBD>ۏؐӔC<D394><43><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><DC82><EFBFBD>B
info@flat-it.com

View file

@ -1,43 +0,0 @@
SIL OPEN FONT LICENSE
Version 1.1 - 26 February 2007
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.
The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the copyright statement(s).
"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting, or substituting — in part or in whole — any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.
5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.

View file

@ -1,45 +1,38 @@
<!--
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-FileCopyrightText: 2021 Siegfried Krug
SPDX-License-Identifier: MIT
-->
# DS4
An implementation of the [Dungeonslayers] 4 game system for [Foundry Virtual
Tabletop].
An implementation of the Dungeonslayers 4 game system for [Foundry Virtual
Tabletop](http://foundryvtt.com).
This system provides sheet support for Actors and Items and mechanical support
for dice and rules necessary to play games of Dungeonslayers 4.
This system provides character sheet support for Actors and Items and mechanical
support for dice and rules necessary to
play games of Dungeponslayers 4.
## Installation
To install and use the Dungeonslayers 4 system for Foundry Virtual Tabletop,
find it in the list in the **Install System** dialog on the Setup menu of the
application. Alternatively, paste the following Manifest URL in that dialog:
simply paste the following URL into the **Install System** dialog on the Setup
menu of the application.
https://git.f3l.de/api/v4/projects/dungeonslayers%2Fds4/packages/generic/ds4/latest/system.json
https://git.f3l.de/dungeonslayers/ds4/-/raw/latest/src/system.json?inline=false
## Development
### Prerequisites
In order to build this system, recent versions of `node` and `yarn` are
required. Most likely using `npm` also works but only `yarn` is officially
supported. We recommend using the latest lts version of `node`. If you use `nvm`
to manage your `node` versions, you can simply run
### Prerequisits
In order to build this system, recent versions of `node` and `npm` are required.
We recommend using the latest lts version of `node`, which is `v14.15.4` at the
time of writing. If you use `nvm` to manage your `node` versions, you can simply
run
```
nvm install
```
in the project's root directory.
You also need to install the project's dependencies. To do so, run
You also need to install the the project's dependencies. To do so, run
```
yarn install
npm install
```
### Building
@ -47,13 +40,13 @@ yarn install
You can build the project by running
```
yarn build
npm run build
```
Alternatively, you can run
```
yarn watch
npm run build:watch
```
to watch for changes and automatically build as necessary.
@ -76,7 +69,7 @@ On platforms other than Linux you need to adjust the path accordingly.
Then run
```
yarn link-package
npm run link
```
### Running the tests
@ -84,30 +77,23 @@ yarn link-package
You can run the tests with the following command:
```
yarn test
npm test
```
## Contributing
Code and content contributions are accepted. Please feel free to submit issues
to the issue tracker or submit merge requests for code changes. To create an
issue, send a mail to [git+dungeonslayers-ds4-155-issue-@git.f3l.de].
to the issue tracker or submit merge requests for code changes. To create an issue send a mail to [git+dungeonslayers-ds4-155-issue-@git.f3l.de](mailto:git+dungeonslayers-ds4-155-issue-@git.f3l.de).
## Licensing
This project is being developed under the terms of the
[LIMITED LICENSE AGREEMENT FOR MODULE DEVELOPMENT] for Foundry Virtual Tabletop.
Dungeonslayers (© Christian Kennig) is licensed under [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/de/deed.en).
The project itself is licensed under multiple licenses. [REUSE] is used to
specify the licenses for the individual files. Most of the licenses are
specified either inside the source file or by an accompanying `.license` file,
but for some files, the licenses are specified in [.reuse/dep5]. Some of the
work that is being reused by this project requires attribution to the original
author(s). You can find these attributions in [ATTRIBUTION.md](ATTRIBUTION.md).
The icons in [src/assets/official](src/assets/official) are slightly modifed
versions of original Dungeonslayers icons, which have also been published under
CC BY-NC-SA 3.0. Hence the modified icons are also published under this
license. A copy of this license can be found under
[src/assets/official/LICENSE](src/assets/official/LICENSE).
[Dungeonslayers]: https://www.dungeonslayers.net/
[Foundry Virtual Tabletop]: http://foundryvtt.com/
[git+dungeonslayers-ds4-155-issue-@git.f3l.de]: mailto:git+dungeonslayers-ds4-155-issue-@git.f3l.de
[LIMITED LICENSE AGREEMENT FOR MODULE DEVELOPMENT]: https://foundryvtt.com/article/license/
[REUSE]: https://reuse.software/
[.reuse/dep5]: .reuse/dep5
The software component of this project is licensed under the MIT License, a copy
of which can be found under [LICENSE](LICENSE).

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="m90.67 25 96.83 144.3-1.5-24.6L105.7 25zM131 25l156.2 123.1-5-41.8 121.5 129.5L435 487h51.7V25zm70.5 98.2 3.6 61.8c-5 7.4-24.1 32.5-56.9 36.8-4.1.5-7.2 4-7.2 8.2 0 0-.8 37.2 45.7 83.1l34.7-55.7c-7-7.3-14-16.5-21.5-28.7l27.6-30.1c1.8-1.9 2.5-4.4 2.1-7L218 121.4c-2.7-11.2-16.9-7.5-16.5 1.8zm-69.8 27c-9.2 0-16.9 3.8-20.8 10.3-7.1 11.8-.1 29.1 15.8 38.6s34.5 7.4 41.5-4.5-.1-29.1-15.9-38.5c-6.5-3.8-13.7-5.9-20.6-5.9zm155.5 76.2-42.6 32.7-12.1 80.1c12.4 3.1 25.4 4 38.3 2.2l22.5-3.1 45.9 50.4c1.9 2 4.6 3 7.3 2.6l29-4c11.2-3.3 7.2-16.5-1.4-16.6l-21.4.7-30.6-66.1c-1.1-2.2-3-3.8-5.3-4.5l-38.7-11.2 22.6-19.4L353 289c4.7 1.5 9.3-1.1 10.8-5.3l10.5-34c1.7-11.3-11.7-13.6-15.5-6l-8.1 17.1-53.9-34.8c-3.2-1.8-6.8-1.5-9.6.4zM223.9 285l-24.3 38.9c5.3 3.8 11 7.1 16.9 9.7zm19 74.3L274.4 487h12.8l-31.4-127.4c-4.3.1-8.6 0-12.9-.3z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1,022 B

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M137.4 26.62l-11.7 10.92 41.8 44.7 11.7-10.92zm138.7 48.32c-2.4 0-4.7 0-7 .1-27.2 1.12-48.8 10.91-65.3 30.86-22 26.7-35.2 73.4-35.4 144.7v4l-3.2 2.4c-40.9 30.3-61.8 57.6-69.74 80.8-7.94 23.1-3.72 42.4 7.64 59.8 22.6 34.8 76.3 59.2 112.3 65.6 22.9 4.1 81.5 12.9 118.5-5.8 18.5-9.4 32-24.5 35.6-52.4 3.6-27.8-3.6-69-29.7-127.3l-1.9-4.3 2.8-3.7c29-39.4 45.9-70.7 53.6-95.1 7.7-24.4 6.3-41.4-.2-54.1-6.4-12.7-18.7-22.01-35.5-29.02-16.8-7.02-37.9-11.51-60.3-14.73-7.8-1.12-15.2-1.73-22.2-1.81zM490.3 113l-62.6 23.8 5.7 15L496 128zm-258.5 19c19.9 0 36.4 16.2 36.4 36.1 0 19.9-16.5 36.1-36.4 36.1-20 0-36.5-16.2-36.5-36.1 0-19.9 16.5-36.1 36.5-36.1zm-83.1 5.3l-63.54 6 1.49 15.9 63.55-5.9-1.5-16zm83.1 10.7c-11.5 0-20.5 9-20.5 20.1 0 11.2 9 20.1 20.5 20.1 11.4 0 20.4-8.9 20.4-20.1 0-11.1-9-20.1-20.4-20.1zm85.1 8.7c19.8 0 36 16.5 36 36.5s-16.2 36.4-36 36.4c-19.9 0-36.1-16.4-36.1-36.4s16.2-36.5 36.1-36.5zm0 16c-11.2 0-20.1 9-20.1 20.5 0 11.4 8.9 20.4 20.1 20.4 11.1 0 20-9 20-20.4 0-11.5-8.9-20.5-20-20.5zm104.6 32.1l-7.4 14.2 49.7 25.8 7.4-14.2zM98.66 222.5c-7.84 15-13.18 29.9-17.45 44.6-2.85.3-5.78.7-8.79 1.3-.14-2.7-.29-5.2-.25-7.5.1-5.6.82-9.7 4.74-14.7l-12.55-9.9c-6.37 8.1-8.06 16.9-8.19 24.3-.1 6.1.47 11.3.37 15.8-8.98 11.3-21.3 29.4-23.99 45-1.68 9.7-.36 17.5 6.84 24.7 6 5.9 17.52 11.4 36.17 14.7 0-9.1 1.45-18.5 4.77-28.2 6.81-19.9 20.97-40.7 44.17-62.5 5.8-8.4 12.3-17 18.6-24.5l-12.2-10.3c-8.7 10.3-17.5 22.3-24.7 33.4-2.8-.7-5.5-1.2-8.31-1.5 3.81-12.5 8.51-25 14.91-37.3zm132.64 29.1c3.2-.1 6.4.2 9.5 1 18.8 5.2 29 27.8 22.8 50.7-6.2 22.8-26.5 37.1-45.3 32-18.9-5.1-29.1-27.8-22.8-50.6 5-18.6 19.7-32.1 35.8-33.1zM384.7 295l-15.7 3.5 5.6 25.3c10.6 34 13.6 61.2 10.8 83.3-1.8 13.3-5.8 24.7-11.5 34.3 13.7 12.5 30.7 16 44.6 12 15.3-4.4 27.1-16.8 27.3-39.1.1-12.5-1.4-23.1-4.6-32.5 5.2-9.5 10.1-24 8.9-41.7l-15.9 1.1c.5 8.3-.7 15.9-2.6 22.1-1.7-2.3-3.6-4.6-5.6-6.7-1.3-1.4-2.7-2.8-4.2-4.1.9-12.6.5-29.2-4.3-44.1l-15.3 4.9c2.8 8.4 3.8 18.6 3.9 27.8-3.9-2.4-8.2-4.6-12.8-6.7-2.9-13.1-5.8-26.2-8.6-39.4zM275 384.6c1.9 0 3.7.2 5.5.5 7.6 1.6 10.4 7.6 12.3 10.8 1.3 2.1 2.1 2.9 2.2 3.2.6 0 2.5-.7 6.2-3.1 4.1-2.7 9.9-7.4 18.3-6 7.4 1.2 11.6 5.6 15.4 9.2 3.7 3.6 6.5 7 6.5 7l-12.5 10.1s-2.2-2.7-5.1-5.5c-2.9-2.8-7.1-5.1-6.8-5-.5-.1-2.9.8-7 3.5-4.2 2.8-10.4 7.4-18.8 5.5-7.4-1.6-10.2-7.6-12.1-10.7-1.4-2.3-2.2-3.1-2.2-3.3-2.2-.1-10 1.9-16.4 5.3-6.7 3.6-12 7.4-12 7.4l-9.4-12.9s6.1-4.5 13.9-8.6c6.4-3.4 13.8-7.3 22-7.4z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M91.586 64.023c-17.218.396-33.687 17.441-35.615 40.956-1.991 24.272 12.538 42.929 30.345 43.64 17.808.711 35.295-16.667 37.286-40.94 1.99-24.272-12.54-42.929-30.348-43.64a26.499 26.499 0 0 0-1.668-.016zM258.068 76.1c-9.405.158-18.01 11.845-23.01 24.892l.696 6.26c1.245 11.204 4.651 23.755 9.37 36.406 5.293-3.092 10.786-8.202 18.888-15.033-13.309-9.137-15.913-18.185-12.74-23.736 4.188-7.328 20.63-18.915 31.165-10.215 6.612-15.429-14.963-18.732-24.369-18.574zm-38.095 46.1c-11.65 5.28-25.954 9.187-41.227 12.382a349.79 349.79 0 0 1-8.4 1.647c9.539 10 13.577 23.34 18.418 35 13.674 2.858 27.84 9.716 40.896 15.003 7.068 2.863 13.602 5.166 18.895 6.368-12.62-21.418-23.631-46.528-28.582-70.4zm165.195 2.65l-1.139 71.912-62.822-32.477-23.121 62.305 73.217 2.81-19.383 52.836-88.525 10.409-34.627 99.068c21.182 6.976 42.363 15.207 62.945 24.238 35.911 15.757 69.95 33.935 98.887 52.23l48.69-111.177-56.755-61.22 20.584-53.429 55.133 45.366 26.625-65.758-67.951-14.496 42.752-54.75zm-252.647 12.78c-10.223 17.762-27.844 29.729-47.677 28.936-10.592-.423-19.955-4.421-27.494-10.855-12.845 8.549-25.296 24.81-26.317 38.156-.4 7.003 1.209 16.542 4.658 24.836 3.45 8.294 8.702 15.175 21.883 24.973 13.181 9.798 42.489 24.578 72.865 19.265-10.735-13.308-16.892-29.792-19.658-46.058-17.607 1.062-31.09-9.737-46.008-15.834l6.663-16.72c14.212 5.823 30.135 18.059 44.183 13.616l5.149-1.716c4.538-12.323 15.877-20.829 26.804-23.26 3.975-.885 20.637 3.85 27.801 12.996-3.907-9.401-7.753-18.779-11.678-28.057-8.169-13.074-18.637-18.347-31.174-20.277zm46.112 56.12c.226 2.807-.474 5.865-2.453 9.16-9.231-9.681-27.302-5.836-33.479-.084-4.679 4.358.039 15.175 10.031 27.854-7.72 3.253-12.932 5.274-17.252 6.14 7.937 16.485 16.39 22.629 29.993 33.346l-14.684 5.709c-25.918 10.078-51.26 6.84-72.8-1.588 16.005 30.457 19.682 63.41 17.777 94.565 39.901-1.164 81.092 7.29 115.812 17.488l29.258-83.711c-28.772-33.295-46.34-71.132-62.203-108.879zM95.75 382.602c-29.553-.225-56.304 5.065-77.75 18.375v4.863l.197 16.574c85.771-42.922 236.775 9.758 340.795 71.586h38.115c-32.318-22.183-73.22-44.926-116.894-64.09-47.361-20.781-97.895-37.347-144.31-44.064-11.605-1.68-22.978-2.761-33.995-3.12-2.065-.067-4.118-.109-6.158-.124zm372.924 72.664c-18.709.056-37.46 1.514-54.559 4.088l-8.988 18.328c31.15-2.399 61.622-3.743 88.873-2.53v-19.068a350.422 350.422 0 0 0-25.326-.818z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="M296.472 22.826c-21.29.147-43.872 3.363-56.926 12.576L168.93 73.304l-39.355 53.457c-8.281 12.78-2.372 37.51 23.49 21.659l28.312-37.344c35.972-31.06 109.391-16.746 74.575 45.506-17.101 36.058-9.058 53.676 12.917 61.06l10.06-33.728c17.399-39.156 49.806-46.182 48.47-77.735 0 0 177.104 129.212 66.836 282.278-58.331 79.654-206.993 83.446-274.873 45.9C47.345 394.525 4.758 300.521 45.81 219.667c12.662-30.787 14.92-39.57-9.818-.42-45.683 81.518 16.354 220.248 86.937 250.776 99.658 43.104 265.63 8.011 311.414-51.113 21.881-28.258 47.416-72.584 54.906-123.082 7.635-51.472-3.544-97.003-24.162-140.225C428.352 78.594 348.128 29.886 348.128 29.886c-5.057-3.452-27.527-7.227-51.656-7.06zm-69.674 88.314c-12.66-.197-25.06 5.02-34.101 12.64l-28.387 37.331c7.763 6.19 15.544 2.885 23.348-4.617 9.183 4.637 16.248-2.57 22.084-16.946 2.404-9.814 5.97-16.759 17.056-28.408zm-96.586 61.522c-1.627-.013-3.2.353-4.728 1.095-3.06 1.538-6.497 5.054-9.617 11.633 14.028 9.52 29.958 20.009 42.595 35.022.94-.54 1.935-1.001 2.918-1.397.103-.022.203-.041.264-.084-2.515-16.675-10.719-32.75-19.736-40.658-4.265-3.722-8.115-5.583-11.696-5.611zm56.479 7.55c-4.934 8.328-10.222 16.926-13.367 26.669a58.653 58.653 0 0 0-2.245 9.994c.25-.02.504-.065.748-.02 3.085 0 6.247.702 9.184 2.203.312-3.102 1.038-6.077 1.936-9.056 2.664-8.2 7.47-16.237 12.488-24.588zm-88.662 7.327c-2.07-.031-4.276.531-6.692 1.623-.35.145-.682.313-.957.523-5.287 2.6-10.763 7.867-14.447 13.635-3.704 5.829-5.454 12.098-4.83 16.111.625 4.083 2.396 6.685 9.787 7.938 19.068 3.307 38.66 5.994 58.041 12.238 2.042-3.539 4.664-6.934 7.658-10.016 1.067-1.162 2.252-2.243 3.46-3.351-13.14-15.198-30.62-25.94-46.155-36.766-1.865-1.28-3.796-1.904-5.865-1.935zm122.14 18.197c-7.043-.06-13.582 1.395-19.59 4.018-5.913 2.682-11.24 6.533-16.07 11.466.354.317.723.587 1.08.922 1.998 1.749 3.789 3.993 5.328 6.64 8.933-9.873 19.548-14.033 33.21-12.68l.997-10.077a50.667 50.667 0 0 0-4.955-.289zm-48.385 21.256c-2.267.019-4.914.746-7.662 2.035-.373.21-.77.397-1.16.629-3.12 1.707-6.291 4.104-9.08 6.935-5.54 5.742-9.08 13.196-9.139 17.592 0 2.226.476 3.372 1.745 4.477.731.744 2.19 1.456 4.312 1.935 2.125-4.418 4.725-8.328 7.83-11.58 6.807-6.992 14.281-12.155 22.213-15.736.206-.125.48-.21.69-.336-.88-1.372-1.79-2.452-2.711-3.244-2.203-1.981-4.413-2.688-7.037-2.707zm40.344 9.674c-9.429.002-18.49 1.764-27.02 5.666-6.788 3.126-13.221 7.664-19.13 13.806-6.286 6.45-10.956 19.3-12.64 34.897-1.646 15.651-.557 33.887 3.333 51.107 3.87 17.155 12.802 31.705 19.239 44.512 48.312 96.12 209.412 11.679 146.525-76.113-10.5-14.66-22.464-33.69-40.617-47.389-18.216-13.574-39.686-23.569-60.145-25.916a82.067 82.067 0 0 0-9.545-.57zm-132.818.715c-.168 1.06-.336 2.12-.377 3.142-.522 6.412 1.06 11.64 3.539 14.531 2.454 2.831 5.577 4.162 11.68 2.461 12.969-3.542 29.08-5.895 40.826-7.332a9.24 9.24 0 0 0 .207-1.129c-18.07-5.741-36.83-8.362-55.875-11.673z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="M247 62.107v9.94h-28.88v18H247v39.074c-84.367 4.682-151.514 74.737-151.514 160.26 0 41.037 15.468 78.508 40.873 106.91l-36.237 36.237 12.727 12.73 36.238-36.24C177.49 434.425 214.96 449.894 256 449.894c41.04 0 78.51-15.47 106.912-40.875l36.238 36.238 12.727-12.73-36.236-36.235c25.406-28.402 40.874-65.873 40.874-106.91 0-85.523-67.147-155.578-151.514-160.26V90.048h28.88v-18H265v-9.94h-18zm-104.906 26.58c-3.583-.03-7.267.125-11.014.465C111.1 90.97 89.15 98 73.637 113.514c-15.514 15.513-22.545 37.462-24.362 57.443-.908 9.99-.488 19.54 1.184 27.898 1.67 8.36 4.315 15.662 9.784 21.13l6.363 6.365 6.366-6.364 113.5-113.502-6.366-6.363c-5.47-5.468-12.77-8.112-21.128-9.784-4.18-.836-8.658-1.358-13.34-1.56-1.17-.05-2.352-.08-3.546-.088zm227.812 0c-1.194.01-2.376.04-3.547.09-4.682.2-9.16.723-13.34 1.56-8.357 1.67-15.658 4.315-21.127 9.784l-6.366 6.364 6.366 6.366 113.5 113.5 6.363-6.364c5.47-5.47 8.113-12.772 9.785-21.13 1.673-8.36 2.093-17.908 1.185-27.9-1.817-19.98-8.848-41.93-24.362-57.442C422.85 98 400.9 90.97 380.92 89.152c-3.747-.34-7.43-.494-11.014-.465zM256 146.865c78.815 0 142.514 63.7 142.514 142.514 0 78.814-63.7 142.513-142.514 142.513-78.815 0-142.514-63.7-142.514-142.514 0-78.816 63.7-142.515 142.514-142.515zm-88.332 41.453l-12.73 12.73 82.92 82.917a18.94 18.94 0 0 0-.797 5.414A18.94 18.94 0 0 0 256 308.317a18.94 18.94 0 0 0 16.66-9.94h59.096v-18h-59.11A18.94 18.94 0 0 0 256 270.44a18.94 18.94 0 0 0-5.408.804l-82.924-82.924z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M475.7 23.5l-16.5 16.45c2.3 1.93 4.5 3.96 6.7 6.11 2.1 2.15 4.2 4.37 6.1 6.66l16.5-16.48zm-84 9.73c-19.5 0-39 6.51-55 19.54l-17.9-17.94L306 47.55 464.4 206l12.8-12.8-18-18c27.9-34.3 25.9-84.46-6-116.41-17.1-17.04-39.3-25.56-61.5-25.56zm.1 22.51a8 8 0 0 1 5.5 2.34 8 8 0 0 1 0 11.32 8 8 0 0 1-11.3 0 8 8 0 0 1 0-11.32 8 8 0 0 1 5.8-2.34zm43.9 12.59a8 8 0 0 1 5.6 2.34 8 8 0 0 1 0 11.31 8 8 0 0 1-11.3 0 8 8 0 0 1 0-11.31 8 8 0 0 1 5.7-2.34zM314.9 79.09c-13.9 25.71-13.8 56.81.1 82.51l-36.6 36.6-7.7-7.8-12.8 12.8 50.9 50.9 12.8-12.8-7.8-7.8 36.6-36.6c25.7 13.9 56.7 13.9 82.4.1zm133.3 33.21a8 8 0 0 1 .1 0 8 8 0 0 1 5.6 2.4 8 8 0 0 1 0 11.3 8 8 0 0 1-11.4 0 8 8 0 0 1 0-11.3 8 8 0 0 1 5.7-2.4zM254 224.6L100.7 359.8l51.5 51.5L287.4 258zM87.16 371.8L69.89 387c-3.53 3.6-5.82 9.8-5.82 16.3 0 5.2 1.47 10.2 3.85 13.7-3.23-1.3-6.55-2.2-9.87-2.7-9.4-1.3-19.3.9-26.3 7.9s-9.26 16.9-7.92 26.3c1.34 9.3 6.01 18.5 13.58 26.1 7.56 7.5 16.75 12.2 26.02 13.5 9.4 1.4 19.3-.9 26.3-7.9s9.26-16.9 7.92-26.3c-.48-3.3-1.4-6.6-2.72-9.8 3.61 2.4 8.67 3.9 13.77 3.9 6.5 0 12.7-2.3 16.3-5.8l15.2-17.3zm-35.18 60.1c1.08 0 2.26 0 3.53.2 4.95.8 10.89 3.6 15.84 8.5 4.95 5 7.77 10.9 8.48 15.9.71 5.1-.42 8.6-2.83 11-2.4 2.4-5.94 3.5-11.03 2.8-4.95-.7-10.89-3.5-15.84-8.5-4.95-4.9-7.77-10.8-8.48-15.8-.71-5.1.42-8.6 2.83-11 1.8-1.8 4.24-2.9 7.5-3.1z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M208.242 24.629l-52.058 95.205 95.207 52.059 17.271-31.586-42.424-23.198A143.26 143.26 0 0 1 256 114c78.638 0 142 63.362 142 142s-63.362 142-142 142-142-63.362-142-142c0-16.46 2.785-32.247 7.896-46.928l-32.32-16.16C82.106 212.535 78 233.798 78 256c0 98.093 79.907 178 178 178s178-79.907 178-178S354.093 78 256 78c-13.103 0-25.875 1.44-38.18 4.148l22.008-40.25-31.586-17.27zm104.27 130.379L247 253.275V368h18V258.725l62.488-93.733-14.976-9.984z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 650 B

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M197.6 14.67c.5 4.53 1.1 9.7 1.5 16.34 1.1 15.45 1.7 35.77.8 56.37-.8 18.22-2.7 36.52-6.8 52.22 20 6.5 40.9 15.4 58.2 24.8.3-8.8.6-17.6 1-26.2-17.5-39.52-35-79.46-43.4-123.53zm29.7.12c11.2 55.18 38 105.41 60.3 159.61 15.1-5.3 30.4-9.4 45.7-12.9l-.6-1v-2.8c.7-45.5 2.6-97.35-6.4-142.91zM187.2 156.7c-.1.2-.2.4-.3.7 8.6 7.4 18.1 16.7 28 26.8 11.9 12.3 24 25.6 34.4 38.1.6-12.5 1-25 1.3-37.4-17-10.1-41.1-20.8-63.4-28.2zm-10.9 15.5c-2.5 2.2-5.2 4-8.2 5.4-1.3 39.3 5.1 75.5 17 107.8 25.6-9.6 45.5-24.1 59.9-39.6-11.2-14.8-27.3-33-43-49-9-9.3-18-17.8-25.7-24.6zm166.8 5.5c-16.7 3.8-33 8-49 13.5l-.1 1.7c-.7 8.3-1.3 16.6-1.8 24.9 6.6 6.6 13.9 12.8 21.7 18.6l.1-.1c9.3-14.2 19-28 27.4-38.8 2.5-3.1 4.9-5.9 7.2-8.5-1.7-3.8-3.6-7.5-5.5-11.3zm-195.9 1.2c-28.7-.1-49.28 6.3-51.95 30.9-3.35 30.8 75.55 202 69.25 261.7-2.9 27.8 42.5 25.5 58.3-2.8 11.6-20.8 13.1-48.2 11.6-74.1l-8-8.5c-46.8-49.3-78.6-121.9-76.4-207.2zm208.7 29.4c-.1.2-.2.3-.3.4-8 10-17.4 23.5-26.6 37.4-.1.2-.2.3-.3.5 11.6 7.3 24.3 13.9 37.8 19.4-1.4-20.1-4.8-39.4-10.6-57.7zm22.3 13.8c9.1 39.7 8.5 82.5 4.3 126.4-3.8 38.5-74.2 55.5-97.3-.2-8.3 58.5 10.2 88.8 37.3 127 14 19.6 52.3 24 64.8 4.2 27.1-43 18.5-85.7 12.7-134-5-41.3-1.4-87.8-21.8-123.4zm-87 19.2c-.2 10.4-.2 20.7.2 31 3.9-6.5 8.2-13.5 12.7-20.7-4.4-3.3-8.8-6.7-12.9-10.3zm27.8 20.5c-5.4 8.6-10.6 17-14.8 24.3-4.4 7.5-7.9 14.1-10.2 18.5 1 8.1 2.3 16.2 4 24.2 13 62.3 65.2 32.3 66.5 17.9 2.1-21 3.2-41.4 2.9-61.1-17.5-6.5-33.7-14.5-48.4-23.8zm-72.7 7.8c-14.5 12.8-32.7 24.3-54.4 32.4 10 22.6 22.8 42.8 37.5 60.4 9.1-29 14.1-60.6 16.9-92.8z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="M211.832 39.06c-15.022 15.31-15.894 22.83-23.473 43.903 2.69 9.14 5.154 16.927 9.148 25.117 5.158.283 10.765.47 15.342.43-6.11-10.208-8.276-19.32-4.733-35.274 4.3 19.05 12.847 29.993 21.203 34.332 3.032-.334 5.957-.714 8.776-1.146-6.255-10.337-8.494-19.47-4.914-35.588 3.897 17.27 11.287 27.876 18.86 32.94 4.658-1.043 9.283-2.243 13.927-3.534-5.517-9.69-7.36-18.692-3.97-33.957 3.357 14.876 9.307 24.81 15.732 30.516 5.095-1.57 9.296-2.898 13.852-4.347-.685-5.782-.416-12.187 1.064-19.115l1.883-8.8 17.603 3.76-1.88 8.804c-3.636 17.008 1.324 24.42 7.306 28.666 5.98 4.244 14.69 3.46 16.03 2.6l7.576-4.86 9.72 15.15c-3.857 2.34-7.9 5.44-11.822 7.06 18.65 27.678 32.183 61.465 24.756 93.55-2.365 9.474-6.03 18.243-11.715 24.986 12.725 12.13 21.215 22.026 31.032 34.5-3.713-2.387-7.586-4.844-11.692-7.37-11.397-7.01-23.832-14.214-34.98-19.802-16.012-7.8-31.367-18.205-47.73-20.523-22.552-2.967-46.27 4.797-73.32 21.06 7.872 8.72 13.282 15.474 20.312 24.288-6.98-4.338-14.652-9.07-23.16-14.23-32.554-17.48-65.39-48.227-100.438-49.99-30.56-1.092-59.952 14.955-89.677 38.568L18 254.293V494h31.963c45.184-17.437 80.287-57.654 97.03-94.52l.25-.564.325-.52c9.463-15.252 11.148-29.688 16.79-44.732 5.645-15.044 16.907-29.718 41.884-38.756 4.353-2.16 5.07-1.415 8.633 1.395 30.468 24.01 57.29 32.02 83.24 32.35 32.61-1.557 58.442-9.882 85.682-19.38-3.966 3.528-8.77 7.21-13.986 10.762-15.323 10.436-34.217 19.928-46.304 24.8-14.716 2.006-28.36 2.416-41.967.616-9.96 12.09-25.574 20.358-37.35 26.673 63.92 14.023 115.88.91 167.386-22.896-9.522-1.817-19.008-3.692-27.994-5.42 31.634-4.422 64.984-3.766 94.705-3.53 4.084-.02 7.213-.453 8.7-.886 14.167-51.072-4.095-97.893-34.294-145.216-30.263-47.425-72.18-94.107-101.896-143.04-21.1-17.257-48.6-31.455-77.522-46.175-20.386 4.25-41.026 9.336-61.443 14.1zm85.385 70.49c-11.678 3.6-23.71 7.425-33.852 10.012 2.527 4.93 3.735 10.664 3.395 16.202 11.028.877 21.082-2.018 28.965-6.356 4.845-2.666 8.74-6.048 11.414-8.96-3.854-2.735-7.26-6.41-9.923-10.9zm-54.213 14.698c-11.76 1.143-24.59 2.362-35.06 2.236 2.39 4.772 3.78 12.067 8.51 14.84 11.18 1.164 20.6 1.997 29.91-1.746 5.435-3.214 1.818-15.058-3.36-15.33zm-34.98 209.332c-17.593 7.233-22.586 15.14-26.813 26.406-3.998 10.66-6.227 25.076-14.48 41.014 32.29-6.38 69.625-21.23 93.852-40.088-17.017-5.098-34.553-13.852-52.557-27.332zm9.318 71.385c-18.723 7.237-40.836 16.144-59.696 14.062C143.774 446.68 124.012 474.03 91.762 494h84.68c21.564-29.798 38.067-56.575 40.9-89.035z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(1,0)"><path d="M485.846 30l-172.967 74.424 64.283 20.32-129.627 65.186 83.637 19.414-96.996 62.219 219.133-69.7-95.29-28.326L471.192 112.8l-72.115-15.024L485.846 30zm-280.46 45.766c-28.066-.117-49.926 56.532-57.726 90.607-11.26 49.19-14.529 83.515-.828 133.059l-17.348 4.798c-15.463-55.917-8.245-94.75 2.301-142.341 10.547-47.592 14.52-70.403-4.459-74.182C85.244 79.328 82.04 178.17 79.57 222.604c-1.396 25.808.71 57.017 6.54 77.552l-16.901 6.196c-14.43-53.35-6.657-97.957-1.693-150.77 2.493-15.582-1.787-25.677-19.102-25.166-15.833.467-27.015 143.362-13.275 179.041 8.713 53.061 31.247 130.572 10.955 152.766L18 494h205.973l19.986-28.592c23.08-5.008 28.42-19.86 37.023-33.787 25.291-40.946 82.384-83.166 129.114-99.226 21.142-7.51-21.912-48.546-53.836-32.782-55.005 27.162-81.646 56.298-117.772 38.295-55.855-27.834-47.245-100.648-35.861-162.83 6.141-33.544 40.41-89.602 7.156-98.824a21.158 21.158 0 0 0-4.396-.488z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="M169 57v430h78V57h-78zM25 105v190h46V105H25zm158 23h18v320h-18V128zm128.725 7.69l-45.276 8.124 61.825 344.497 45.276-8.124-61.825-344.497zM89 153v270h62V153H89zm281.502 28.68l-27.594 11.773 5.494 12.877 27.594-11.773-5.494-12.877zm12.56 29.433l-27.597 11.772 5.494 12.877 27.593-11.772-5.492-12.877zm12.555 29.434l-27.594 11.77 99.674 233.628 27.594-11.773-99.673-233.625zM25 313v30h46v-30H25zm190 7h18v128h-18V320zM25 361v126h46V361H25zm64 80v46h62v-46H89z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 661 B

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M494 18.02l-101 .103V119h101zm-119 .12l-238 .247V119h238zm-256 .266L18 18.51V119h101zM18 137v110h229V137zm247 0v110h229V137zM18 265v110h101V265zm119 0v110h238V265zm256 0v110h101V265zM18 393v100.98l229-.236V393zm247 0v100.727l229-.237V393z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 445 B

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="M258.148 20.822c-1.112.008-2.226.026-3.343.055-39.32 1.041-81.507 15.972-123.785 50.404l-6.028 4.91-5.732-5.25c-12.644-11.578-20.276-27.633-25.653-43.716-8.974 36.98-14.631 81.385-9.232 114.523 18.065.908 45.409-2.177 73.7-7.818 17.858-3.561 36.048-8.126 53.064-13.072-13.419-2.911-25.896-6.882-38.143-12.082l-16.088-6.832 14.906-9.127c46.367-28.393 80.964-40.686 120.235-35.553 33.105 4.327 69.357 20.867 119.066 47.271-25.373-36.314-62.243-64.737-104.728-76.994-15.402-4.443-31.553-6.828-48.239-6.719zM346 116c-46.667 0-46.666 0-46.666 46.666V349.4c0 9.596.007 17.19.414 23.242a664.804 664.804 0 0 1 50.656-12.223c24.649-4.915 48.367-8.224 67.916-8.41 6.517-.062 12.571.224 18.041.912l6.31.793 1.358 6.213c2.464 11.265 3.673 23.447 3.914 36.059 38.032-.19 38.057-3.06 38.057-46.65V162.665C486 116 486 116 439.334 116a226.98 226.98 0 0 1 3.978 7.64l12.624 25.536-25.004-13.648c-13.085-7.143-25.164-13.632-36.452-19.528zm-281.943.016c-38.032.19-38.057 3.06-38.057 46.65V349.4C26 396 26 396 72.666 396a226.98 226.98 0 0 1-3.978-7.64l-12.624-25.536 25.004 13.649c13.085 7.142 25.164 13.632 36.452 19.527H166c46.667 0 46.666 0 46.666-46.666V162.666c0-9.626-.006-17.24-.416-23.304a664.811 664.811 0 0 1-50.654 12.22c-32.865 6.554-64.077 10.25-85.957 7.498l-6.31-.793-1.358-6.213c-2.464-11.265-3.673-23.446-3.914-36.058zm354.619 254.078c-17.543.25-40.826 3.206-64.75 7.977-17.859 3.56-36.05 8.125-53.065 13.072 13.419 2.91 25.896 6.881 38.143 12.082l16.088 6.832-14.906 9.127c-46.367 28.392-80.964 40.685-120.235 35.553-33.105-4.327-69.357-20.868-119.066-47.272 25.373 36.315 62.243 64.738 104.728 76.994 52.573 15.166 113.872 6.343 175.367-43.74l6.028-4.91 5.732 5.25c12.644 11.579 20.276 27.633 25.653 43.717 8.974-36.981 14.631-81.386 9.232-114.524-2.788-.14-5.748-.204-8.95-.158z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M403.425 19.299L281.232 99.354l45.166 80.685-70.531 74.764-96.022 32.947-20.248 101.426-38.095 3 1.083 58.568 86.213-6.248 24.397-106.637 55.072-13.36 21.385 74.804 55.13 34.213-19.853 31.593 52.004 27.592 50.865-75.572-81.103-52.332-12.567-49.137 46.518-54.855 13.201 31.976-40.763 41.801 33.783 41.022 78.111-66.213-31.418-88.645c16.485-5.976 30.692-19.808 39.576-32.7 14.597-23.06 18.935-49.879 2.957-70.292-18.962-19.83-39.886-19.706-61.07-7.244-13.22 7.918-24.606 19.565-32.223 32.08l-15.91-25.639 66.899-45.408zm-178.12 16.584c-.37-.01-.735-.01-1.098.004-28.11 1.002-40.308 71.436-73.14 83.677-30.314 11.304-69.61-23.941-96.845-6.476-20.375 13.065-34.59 45.303-25.826 67.865 13.478 34.7 63.441 58.38 99.758 50.203 28.439-6.403 28.177-54.969 53.728-69.002 20.05-11.011 59.002 14.364 68.313-6.529 5.336-11.973-18.796-19.335-23.39-31.611-14.24-38.045 43.357-86.468-1.5-88.131zm-64.27 7.373c-17.951-.223-50.581 42.837-29.698 51.04 17.149.037 55.673-50.718 29.698-51.04zm236.369 1.508l12.387 21.312-67.307 45.686 44.123 71.1c5.973-23.32 19.118-45.365 37.666-56.91 14.959-8.169 27.974-8.762 37.826 3.122 17.114 23.72-6.151 56.46-23.598 69.092-11.466 7.922-17.522 6.155-30.341 4.799l35.7 100.728-54.706 46.373-11.916-14.47 37.77-38.73-28.995-70.223-71.627 84.468 16.62 64.983 71.613 46.209-31.567 46.9-20.576-10.916 19.18-30.521-64.608-40.092-24.224-84.744-82.694 20.062-23.91 104.512-53.99 3.914-.418-22.629 34.772-2.736 20.886-104.635 90.44-31.031 82.652-87.608c-14.476-25.855-28.95-51.712-43.424-77.568zM251.755 182.158c.505 16.04 29.413 13.718 27.041 1.24-2.017-10.614-27.317-10.017-27.04-1.24zm-49.714-4.19c-10.263.111-19.229 3.684-18.846 11.948 1.31 28.305 48.694 24.597 47.746 2.191-.368-8.698-15.706-14.28-28.9-14.138zm28.193 49.048c9.692 11.541 28.526-5.324 20.89-14.489-9.34-4.919-24.937 8.837-20.89 14.489z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M151.22 61.008c-45.151 7.449-99.44 35.085-131.642 54.097V297.21c5.34 7.523 13.07 12.906 24.904 17.07 5.308 1.868 11.417 3.433 18.221 4.783-21.112-27.026-26.391-50.921-21.297-79.236l17.715 3.192c-6.724 34.584 13.695 64.344 34.152 77.013l7.15 4.37 2.407 3.814c9.482 17.063 28.034 25.752 51.426 41.152l9.723 6.403-8.645 7.798c-9.834 8.873-17.062 16.44-18.367 26.559l-1.592 12.342-24.098-11.545c-11.192 12.316-20.47 25.593-27.652 40.025 10.977 6.704 36.525 19.136 49.105 16.346 32.21-21.813 59.517-67.5 71.09-97.953-6.484-24.65-21.778-46.56-40.277-70.047l-4.1-5.205c4.853-7.592 11.429-14.973 18.084-19.31 26.259-20.873 35.437-38.189 37.44-53.362.675-21.155-6.159-35.841-14.106-53.04l16.34-7.55c9.207 20.935 17.712 44.638 15.611 62.947-1.68 12.732-7.198 25.876-17.857 39.399 9.34-1.382 16.555-2.574 25.883-4.121l.262 10.343c.44 17.375 1.668 24.569 15.748 49.57l1.554 2.763-8.457 51.103c7.432 10.524 20.33 11.513 30.994 10.781 25.144-26.855 42.492-57.16 57.1-89.058-8.896-1.83-15.986-6.023-20.451-11.895-5.026-6.609-6.408-14.801-5.057-22.137 2.702-14.67 16.832-27.65 34.66-25.044l-.304-.04c4.278.478 8.63.829 13.035 1.09-42.222-45.878-38.747-104.57-74.713-138.82-37.98-22.166-89.34-36.372-133.988-36.701zm299.657 133.017c-25.974 8.19-52.938 16.89-80.334 23.028a3126.23 3126.23 0 0 1 8.764 18.293c29.023-10.805 51.564-25.555 71.57-41.32zm19.978 55.053c-40.912 3.884-85.203 8.795-125.962 4.25l-.153-.017-.152-.022c-8.297-1.213-13.24 4.437-14.356 10.494-.557 3.029-.034 5.724 1.684 7.983 1.688 2.22 4.886 4.52 11.58 5.46 52.566 1.922 92.792-11.677 127.36-28.148zm-163.32 43.738c4.068-.076 9.831 6.07 9.94 9.87.123 4.33-4.278 13.351-12.106 22.978-2.335-8.081-8.27-32.478 2.166-32.848zm-13.96 64.67l-19.882 19.58s-2.011-12.095 1.621-16.068c6.037-2.969 12.016-3.867 18.26-3.512zm-44.636 38.348l-11.55 35.494s-12.831-12.815-20.018-10.535c-12.026 3.815-17.207 33.71-17.207 33.71l-23.176-9.13s3.691 28.627 14.748 34.416c15.559 8.145 51.621-10.535 51.621-10.535s1.372 21.203 9.483 23.176c15.088 3.669 35.467-30.2 35.467-30.2s36.32 34.765 51.972 23.88c14.938-10.39 2.14-52.38-4.103-54.432-7.744-2.546-16.676 17.888-16.676 17.888s-10.826-24.025-22.063-27.017c-9.81-2.613-28.445 10.885-28.445 10.885l5.393-31.528c-3.305-.031-6.567-.272-9.77-.781l-10.37 29.932 4.347-31.245c-3.373-.936-6.912-2.436-9.653-3.978zM84.4 398.047c-11.613 11.065-20.069 23.628-27.237 37.137 3.725 1.954 7.425 4.1 11.086 6.3 7.066-13.88 15.86-26.738 26.148-38.648z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M278.814 35.137c-3.87 29.372 2.21 62.917 23.563 91.277 24.7 32.807 70.077 59.506 146.49 64.467-10.864-53.306-31.943-84.387-60.87-107.415-23.07-18.367-51.784-31.734-84.02-45.96 29.838 36.785 60.63 73.392 105.382 92.694l-7.13 16.527c-55.713-24.03-90.292-70.698-123.416-111.59zM259.2 46.79c-42.613 88.792-88.927 175.71-147.975 257.08-1.967-1.61-3.77-3.225-5.454-4.725-4.98-4.436-9.11-7.99-15.42-10.407-2.338-.896-4.675-1.33-7.02-1.326-7.035.01-14.15 3.948-21.65 11.11-10 9.553-18.946 24.412-23.893 37.62-14.318 38.227 4.955 80.574 43.186 94.89 38.23 14.32 80.582-4.952 94.9-43.178 4.94-13.187 8.024-30.42 6.8-44.243-.61-6.91-2.283-12.897-4.786-17.208-2.503-4.31-5.532-7.033-10.21-8.627-4.466-1.52-10.517-1.707-17.765-1.85-6.83-.133-14.742-.297-22.97-3.064 53.342-73.767 96.236-151.695 135.23-230.99-7.14 56.593-14.18 114.543-29.91 170.29-7.03-.83-12.847-3.195-17.887-5.144-6.222-2.407-11.337-4.285-18.094-4.336-10.013-.077-17.4 6.766-23.415 19.216-5.06 10.48-8.094 24.21-8.93 36.708 3.11.388 6.3 1.027 9.544 2.132 8.872 3.023 15.68 9.234 19.973 16.627 4.293 7.394 6.374 15.88 7.15 24.662.775 8.75.267 17.862-1.156 26.727 11.08 6.646 24.062 10.47 37.967 10.47 40.825 0 73.725-32.898 73.725-73.718 0-14.08-3.156-31.3-9.15-43.817-2.997-6.257-6.663-11.276-10.52-14.435-3.856-3.16-7.648-4.648-12.59-4.5-4.713.142-10.445 2.09-17.282 4.498-3.142 1.107-6.54 2.286-10.188 3.25 11.84-43.77 18.6-88.247 24.276-131.803C263.302 95.443 258.402 70.4 259.2 46.79zm46.732 110.605c1.617 5.452 3.26 10.96 4.945 16.554 20.44 67.845 45.324 144.313 68.207 195.255-4.537.18-8.715-.204-12.46-.52-6.65-.564-12.083-.93-18.583.917-9.63 2.738-14.8 11.38-17.075 25.017-2.275 13.638-.524 30.894 3.437 44.43 11.464 39.178 52.28 61.515 91.463 50.052 39.182-11.464 61.52-52.276 50.057-91.454-3.955-13.514-11.82-29.155-21.086-39.484-4.634-5.164-9.564-8.953-14.152-10.902-2.295-.975-4.456-1.554-6.63-1.698-2.177-.143-4.368.15-6.718.915-4.485 1.458-9.44 4.937-15.324 9.168-4.337 3.118-9.218 6.61-15.076 9.29-21.51-47.232-46.358-122.123-66.762-189.375-9.007-5.556-17.075-11.646-24.242-18.168z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M96 64L64 96l48 48-48 48h128V64l-48 48-48-48zm224 0v128h128l-48-48 48-48-32-32-48 48-48-48zM64 320l48 48-48 48 32 32 48-48 48 48V320H64zm256 0v128l48-48 48 48 32-32-48-48 48-48H320z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 388 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="M415 26.08c-45.5-.55-114 109.42-124 148.32-7.9 37 71.8 92.2 85.3-22.3 4.1-34.8 55.5-120.32 43.6-125.42v-.1c-.1 0-.3-.1-.6-.1-1.4-.25-2.9-.39-4.3-.4zm57.7 21.96c-12.2-1.44-34.4 93.16-55.4 120.66-69.9 91.7 25.7 107.4 45.6 75.3 20.8-36 49.1-169.82 10.9-195.52-.1-.1-.3-.2-.5-.3-.2-.1-.4-.12-.6-.14zM130.3 202.5C84.67 203 26.14 322.6 20.16 363.1c-4.03 37.6 81.04 84.2 82.64-31 .4-35.1 42.7-125.5 30.3-129.4v-.1h-.6c-.7-.1-1.4-.1-2.2-.1zm57.6 16c-12.3-.1-24.6 96.4-42.6 125.8-60.06 98.5 36.7 104.2 53.1 70.2 17-38 31.3-174.1-9.4-195.7-.1-.1-.3-.1-.5-.2s-.4-.1-.6-.1zm116.3 11.9c-9.1-.1-16.7 3.2-19.9 9.5-5.3 10.9 3.9 26.5 20.8 35 16.8 8.4 35 6.4 40.3-4.4 5.5-10.9-3.8-26.5-20.7-34.9-1.1-.6-2.1-1-3.1-1.4-6-2.6-12-3.8-17.4-3.8zm77.4 31.7c-12 0-21.9 4.8-24.5 13.1-3.7 11.5 8 25.6 26 31.2 18 5.7 35.5.9 39.2-10.7 3.5-10.7-6.6-23.8-22.7-30l-3.3-1.2c-5-1.6-10.1-2.3-14.7-2.4zM41.81 417.2c-10.35.3-18.76 4.5-21.53 11.7-4.14 11.4 6.63 26 24.32 32.7 17.58 6.6 35.44 2.7 39.64-8.6 4.4-11.4-6.5-25.9-24.22-32.5-1.16-.5-2.19-.8-3.23-1.1-5.16-1.6-10.27-2.3-14.98-2.2zm82.39 23.6c-14.2-.1-25.85 6-27.85 15.7-2.51 11.8 10.65 24.6 29.15 28.3 18.5 3.8 35.4-2.8 37.9-14.7 2.4-11-9-23-25.7-27.5-1.1-.2-2.2-.5-3.4-.8-3.4-.7-6.9-1-10.1-1z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="M165.262 25.154c-38.376 0-73.092 6.462-97.408 16.405-12.159 4.97-21.669 10.834-27.706 16.67-6.036 5.835-8.459 11.144-8.459 16.218 0 5.075 2.423 10.384 8.46 16.219 6.036 5.835 15.546 11.699 27.705 16.67 24.316 9.942 59.032 16.404 97.408 16.404.162 0 .32-.006.482-.006l-38.95 108.504 88.065-112.265c18.283-2.87 34.592-7.232 47.81-12.637 12.16-4.971 21.671-10.835 27.708-16.67 6.037-5.836 8.459-11.144 8.459-16.219 0-5.074-2.422-10.383-8.46-16.219-6.036-5.835-15.548-11.698-27.706-16.67-24.316-9.942-59.032-16.404-97.408-16.404zm183.797 94.815c-38.377 0-73.092 6.462-97.409 16.404-12.158 4.971-21.668 10.835-27.705 16.67-6.036 5.835-8.459 11.144-8.459 16.219 0 5.074 2.423 10.385 8.46 16.22 6.036 5.836 15.546 11.697 27.704 16.668 3.106 1.27 6.387 2.481 9.819 3.631l82.965 105.764-34.2-95.274c12.3 1.47 25.327 2.284 38.825 2.284 38.376 0 73.091-6.462 97.408-16.405 12.158-4.97 21.67-10.832 27.707-16.668 6.036-5.835 8.459-11.146 8.459-16.22 0-5.075-2.423-10.384-8.46-16.219-6.036-5.835-15.548-11.699-27.706-16.67-24.317-9.942-59.032-16.404-97.408-16.404zM96 249c-25.37 0-47 23.91-47 55s21.63 55 47 55 47-23.91 47-55-21.63-55-47-55zm320 0c-25.37 0-47 23.91-47 55s21.63 55 47 55 47-23.91 47-55-21.63-55-47-55zM58.166 363.348c-7.084 8.321-13.03 19.258-17.738 31.812-10.33 27.544-14.433 62.236-15.131 91.84h141.406c-.698-29.604-4.802-64.296-15.13-91.84-4.709-12.554-10.655-23.49-17.739-31.812C123.246 371.9 110.235 377 96 377c-14.235 0-27.246-5.1-37.834-13.652zm320 0c-7.084 8.321-13.03 19.258-17.738 31.812-10.33 27.544-14.433 62.236-15.131 91.84h141.406c-.698-29.604-4.802-64.296-15.13-91.84-4.709-12.554-10.655-23.49-17.739-31.812C443.246 371.9 430.235 377 416 377c-14.235 0-27.246-5.1-37.834-13.652z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M64 64v128l48-48 48 48 32-32-48-48 48-48H64zm256 0l48 48-48 48 32 32 48-48 48 48V64H320zM64 320v128h128l-48-48 48-48-32-32-48 48-48-48zm288 0l-32 32 48 48-48 48h128V320l-48 48-48-48z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 389 B

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M194.6 18.26c25.7 28.26 20.8 70.34-14.8 81.68-49.6 15.76-89.25-16.95-126.35-40.32C63.11 95.64 87.2 146.6 132 175.6c-26.5 17.2-61.33 23.7-97.65 28.3 40.69 20.2 81.95 38.7 129.75 42.2-38.8 36.3-74.24 61.8-127.55 76.9 43.68 13.4 89.75 16.4 132.75 4.8-38 43.8-59 88.9-72.05 134.7 34.95-16.2 64.55-44 117.55-38.8-2.2 25.5 3.9 49.1 23.3 70 8.8-31.8 29-60.8 65.7-85.9 26.8 35.3 71.5 56.8 122.1 73.8-22.8-33.6-51-66.5-41.8-105.4 6.3-25.9 35.5-48.8 79.8-44.7-18.3-25.7-67.8-52.1-118.4-70.6 59.1-14.7 101.4-52 132.1-89.6-47.3 4.5-109 22.9-141.5-10.1 37-37.6 72.4-82.4 78.4-127.04-40.1 26.91-80.5 51.89-124.9 45.5-18-23.1-41-46.25-95-61.4zM309 91.24l9.5 48.96-10.7 2.1c2 17.2 1 40.1-4.4 61.8-3.1 12.8-7.9 25.2-15.1 35.3-1.7 2.4-3.7 4.7-5.7 6.9 2.7 1.1 5.3 2.5 7.8 4.1 10.5 6.6 19.5 16.2 27.2 26.9 13.2 18 22.7 38.8 27.4 55.4l10.6-2.1 9.7 48.9-161.7 32.3-7.8-40.2-1.7-8.8 10.7-2.1c-2-17.2-1-40.1 4.4-61.8 3.1-12.8 7.9-25.2 15.1-35.3 1.7-2.4 3.6-4.7 5.6-6.8-2.7-1.2-5.2-2.6-7.7-4.2-10.5-6.6-19.5-16.2-27.3-26.9-13.1-18-22.6-38.8-27.3-55.4l-10.7 2.1-7.8-40.1-1.8-8.8zm-14.2 21.16l-126.3 25.3 2.6 13.5L297.5 126zm-4.9 33.4l-104.4 20.9c4.3 14 12.7 33 24 48.4 6.8 9.4 14.6 17.4 22.3 22.3 4.7 2.9 9.2 4.8 13.7 5.5l4.1 20.7c-4 2.4-7.4 5.8-10.6 10.4-5.4 7.5-9.6 17.9-12.4 29.2-4.6 18.6-5.2 39.4-3.9 54l104.4-20.9c-4.3-14-12.7-33-24-48.4-6.8-9.4-14.6-17.4-22.3-22.3-4.7-3-9.2-4.8-13.7-5.5l-4.1-20.7c4-2.4 7.4-5.8 10.6-10.4 5.4-7.5 9.5-17.9 12.4-29.2 4.6-18.6 5.1-39.4 3.9-54zm51.6 206L215.1 377l2.7 13.6 126.3-25.3z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M293.4 23.17s-33 12.6-41.1 26.82c-8.7 15.15-2.3 52.31-2.3 52.31 9-28.63 23.2-55.07 43.4-79.13zm-172 47.78C130 140.8 87.44 197.2 95.7 251.5c-45.63-24.1-42.25-107.8-56.72-150.6-7.61 14.3-14.67 28.7-20.98 43.3V494h476V185.6c-14.6-27.9-21.9-60-16.4-99.66C419.3 118 431.2 210.8 439.6 255c-33.9-16.7-88.6-43-62.6-114.7-34.5 18.7-47.5 90.1-55.7 123.4 3.8-43.6-50-80.4-32.7-163.5-36.7 37.1-58.1 163.2-57.6 216.9-8.1-33-5.8-169.7-41.7-186.6 2.7 32-20.6 84.7-33.8 89.3 10.5-55.4-17.1-115.4-34.1-148.85z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 696 B

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M175.8 27.6c-54.4 0-160.07 32-160.07 32s24.03 7.26 54.98 14.86C52.11 76.55 22.26 91.2 22.26 91.2s34.61 17 52.52 17c17.98 0 52.72-17 52.72-17s-8.3-4.05-18.8-8.19c24.2 4.88 48.6 8.59 67.1 8.59 43.6 0 119.2-20.32 147.9-28.48 13.8 4.98 34.8 11.68 48 11.68 21.2 0 62-17 62-17s-40.8-17-62-17c-15.2 0-40.5 8.8-53.5 13.72C285.8 45.5 216.5 27.6 175.8 27.6zm145.1 57.1c-34.2 0-100.4 17-100.4 17s66.2 17 100.4 17c34.1 0 100.4-17 100.4-17s-66.3-17-100.4-17zm-167.7 57.1c-34.2 0-100.46 17-100.46 17s66.26 17 100.46 17c19.4 0 49.3-5.5 71.5-10.3-15.4 7.4-26.5 13.6-26.5 13.6s9.1 5.1 22.2 11.5c-35.1 3.9-80.9 15.7-80.9 15.7s66.2 17 100.4 17c15.1 0 36.6-3.4 55.9-7.1.9.1 1.9.1 2.8.1 23.9 0 63.4-18.2 85.1-29.1 4.2.3 8.1.5 11.7.5 34.1 0 100.4-17 100.4-17s-66.3-17-100.4-17c-11 0-25.4 1.8-39.7 4.2-19.6-8.4-41.6-16.1-57.1-16.1-14.7 0-35.4 6.9-54.1 14.8-19.1-4.6-64.8-14.8-91.3-14.8zm195.5 81.8c-46.2 0-136.1 32-136.1 32s31.7 11.3 67.2 20.5c-4-.2-7.8-.3-11.4-.3-60.1 0-176.95 25.3-176.95 25.3s116.85 25.4 176.95 25.4c21.1 0 49.2-3.1 76.8-7.2-27.5 9.1-53.1 21.1-53.1 21.1s66.2 31 100.4 31c34.1 0 100.4-31 100.4-31s-56.1-26.3-91.7-30.5c25.8-4.8 44.2-8.8 44.2-8.8s-36.1-7.8-78.5-14.8c48.2-5.9 118-30.7 118-30.7s-89.9-32-136.2-32zm-253.37 3.2c-21.1 0-61.88 25.7-61.88 25.7s40.78 25.6 61.88 25.6c21.17 0 62.07-25.6 62.07-25.6s-40.9-25.7-62.07-25.7zm81.77 119.6c-21.1 0-61.9 25.7-61.9 25.7s15 9.4 31.4 16.8c-4.8-.5-9.3-.7-13.3-.7-34.2 0-100.43 17-100.43 17s37.91 9.7 71.23 14.5c-17.97 4.4-39.56 15-39.56 15s34.61 17 52.56 17c18 0 52.7-17 52.7-17s-15.5-7.6-31.2-12.6c35.2-1.5 95.1-16.9 95.1-16.9s-19.9-5.1-43.6-9.7c21.6-6.2 49-23.4 49-23.4s-40.9-25.7-62-25.7zm238.3 75.4c-21.1 0-61.9 17-61.9 17s16.6 6.9 34 11.9c-35.6 2.2-92 16.7-92 16.7s66.2 17 100.4 17c34.1 0 100.4-17 100.4-17s-33.7-8.6-65.4-13.6c21.1-4.5 46.5-15 46.5-15s-40.9-17-62-17z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M380.7 29.4l-244.9.66c-18.2.63-25.1 16.17-25 40.81l-3.2 195.53-25.05 3.6 12.02-30.1-16.72-6.6-12 30.1-20.11-25.5-14.14 11.2 20.03 25.4-32.02 4.6 2.56 17.8 32.16-4.6-12.06 30.2 16.72 6.6 12-30.1 20.1 25.5 14.11-11.2-20.08-25.5 22.18-3.2-2.7 168c1.7 23.9 6 33.4 18 34.7l253.6 3.6c21.8 2.7 28.8-12.5 29.5-35.1l3.8-385.47c.3-19.47 1.2-39.36-28.8-40.93zm-24.4 20.77c26.3 1.35 31.9 39.46 31.6 57.13-5.6 104.2-3.9 209.5-5 314.3-.6 20.4-19.5 44.3-38.7 44.7-61.8 1.3-125.4 2.8-189.9-.8-10.7-.6-30.7-11.6-30.4-33.2l5.4-344.72c-.1-22.23 23.6-34.1 39.5-33.68 67.6 1.77 131.8 1.54 187.5-3.73zm98.4 7.4l-17 5.89 5.4 15.5-16.1-3.1-3.4 17.69 16.1 3.09L429 109l13.6 11.9 10.7-12.4 5.4 15.5 17-5.9-5.4-15.5 16.1 3.1 3.4-17.74-16.1-3.1 10.7-12.4-13.6-11.79-10.7 12.39-5.4-15.49zm-254 10.81c-15.8.12-41.6 10.71-48.8 30.02-16.2 43.3 5.1 132.8 18.6 144.5 4 3.5-3.1-100.9 39.7-159.47 7.5-10.3 1.3-15.13-9.5-15.05zm55.5 84.32c-17.2 0-32.5 18.4-32.5 42.5 0 12.4 4.1 23.4 10.3 31l6.2 7.8-9.9 1.5c-9.4 1.5-15.8 6-21.1 13.1-5.3 7.1-9.2 16.9-11.6 28.4-4.7 20.9-4.8 46.6-4.8 69h25.9l6.3 98h59.7l7.2-98h27.3c-.1-22.1-1.2-47.5-6.3-68.3-2.8-11.3-6.7-21.2-12-28.4-5.1-7.1-11.4-11.6-19.9-13.2l-9.7-1.8 6.4-7.5c6.4-7.8 10.8-18.9 10.8-31.6 0-22.7-13.7-40.4-29.1-42.5h-3.2zm104.3 189.2c-1.8.9-24.5 78.7-35.2 96.4-6.9 11.4 26 3.8 34.7-6.3 11.4-13.5 6.4-82.3.6-90.1h-.1zm95.6 32.2l-17.8 3 2.5 15.2-13.5-9.1-10 15 19.1 12.9-12.8 7.8 9.4 15.4 13.4-8.2 3.8 22.7 17.8-3-2.5-15.2 13.5 9.1 10-15-19.1-12.9 12.8-7.8-9.4-15.4-13.4 8.2-3.8-22.7z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M266.3 30.62V397.5c20.1-1.1 37.7-5.2 51.3-11.8 15.8-7.7 26.2-18.3 31-32l17.9 6.1c-6.6 19.1-21.3 33.7-40.6 42.9-16.8 8.3-37.2 12.8-59.6 13.7v64.9c43.9-3.1 83.8-26.9 113.7-64.9 31.9-40.7 52-97.5 52-160.4 0-62.9-20.1-119.7-52-160.44-29.9-38.03-69.8-61.92-113.7-64.94zm-19 .95C88.21 38.6 72.04 223.4 72.04 272.8c0 33.6 47.26 18.6 50.36 50.4l16.8 140.6c0 15.3 73.2 18.7 108.1 17.3v-40.4h-16.7v-24.1h-14.8v24.1h-18.9v-24.1h-14.6v24.1h-18.9v-24.1h-17.8v-18.9h17.8v-24.1h18.9v24.1h14.6v-24.1h18.9v24.1h14.8v-24.1h16.7v-31.3l-40.9 10.3 40.9-64.9zM173.2 226.7c25.8 0 52 4.1 54.2 12.5 8.6 32.4 4.4 57.8-16.8 67.2-63.4 27.8-88.2-16.8-88.2-67.2 0-8.4 25.2-12.5 50.8-12.5zm159.1 3c19.1 0 34.7 15.7 34.7 34.7 0 19-15.6 34.6-34.7 34.6-18.9 0-34.6-15.6-34.6-34.6s15.7-34.7 34.6-34.7zm0 19c-8.7 0-15.7 6.9-15.7 15.7 0 8.8 7 15.8 15.7 15.8 8.9 0 15.8-7 15.8-15.8s-6.9-15.7-15.8-15.7z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M442.5 24.47C378.5 120.5 186.2 308.5 42.23 340.5c-7.81 0-15.61 30.5-14.12 63.6 41.16-8.5 84.19-23.4 125.49-41.1-2.2-8.9-3.3-17.9-3.1-26.8l.2-5.8 53.7-23.5.7 13c.3 5.7 1.3 11.7 2.8 17.8 11.5-5.7 22.7-11.5 33.4-17.3-.2-1.2-.3-2.3-.4-3.4-.3-6.9.9-12.6 2.3-19 2.6-13.5 7.2-33.4 0-60.2 4.7-3.2 8.5-4.3 11.3-4.3 3 .2 5.3 1.6 7.6 4.9 4.5 5.9 7.3 17.6 8.7 30.7 7 5.4 7.2 4.2 7.3 3.9 11.3-23.7 26.1-48.4 41.2-69.8 3.2-.7 7.3.2 11 2.6 3.4 2 6.2 5.3 7.3 8.2-10.7 15.5-22.1 30.3-31 48.1 2.1 3.2 4.4 6.3 6.5 9.5 16.6-16.5 35.5-31.6 55.9-45.9 1.4.6 2.8 1.3 4 2 .4.2.9.4 1.2.7 5.1 3.4 7.6 8.5 8.9 15.8-20.9 12.7-40.5 27.8-58.7 44.9 1.5 2.6 2.9 5.4 4.4 8.1 21.1-12.3 43.6-20.8 67-26.9 2.4 1.4 4.7 4.5 6 8.6 1.3 4 1.3 8.5-.1 11.8-22.2 5.2-44.1 13.4-65.2 26.3.9 3.3 1.6 6.5 2.1 10 16.5-3.5 32-4.2 47.5-4.2 1.9 2 2.8 5.2 2.4 8.8-.2 3.6-1.7 7.3-4 10.3h-.1c-1.4 0-3.1 0-5.3.3-4.3.2-10.2.7-17.1 1.6-13.5 1.5-30.2 4-43 7.7-7.8 2.2-21.3 5.2-29.1 7.7-6 1.9-12.9.9-19.6-2.2-14.6 9.6-28.8 18.3-42.9 26.3 4.8 8.6 10.1 17 15.5 25l6.3 9.4-54.6 20.6-4.1-5.1c-5.6-7.1-11-14.7-15.9-22.6-43.6 20.1-86.53 34.7-132.76 48.1 7.23 12.5 17.69 22.1 32.39 25.8 69.37 8.6 138.77-1.2 200.27-25.6-22.7-6.8-43.6-16.9-59.3-28 58.3 3.2 100.3-.4 129.7-8.6 17.7-11.7 34.1-24.8 49.1-39.2-19.1-4.5-36.7-11.2-50.2-19 28.3-.4 53.3-3.1 74.8-7.4 24.4-29.3 43-62.6 54-99.1-25.8 4.7-52 4.9-71.8 1.6 32-10.3 58.4-22 79.4-33.9 3.6-20.9 4.7-42.8 3.2-65.3-22 18.1-49 31.7-70.1 37.2 30.9-28 51.9-54.4 64.7-76.2-2.9-13.8-6.7-27.9-11.7-42.16-15.5 17.43-33.7 31.96-49.4 40.46 17.5-25.65 29.8-49.11 38-69.39-3.8-8.43-7.9-16.91-12.4-25.44zM188.6 333.5l-19.8 8.7c1.3 23.6 14.9 51.5 32 74.6l21.1-8c-14.8-23-28.8-48.9-33.3-75.3z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M250.9 18.9c-23.9 2.99-45.3 30.65-45.3 66.99 0 19.91 6.8 37.41 16.8 49.61l12.2 14.5-18.7 3.5c-13 2.5-22.6 9.5-30.7 20.8-8.5 11.5-14.8 26.9-19.1 45.2-8 32.7-9.9 72.7-9.9 108.2h43.6l11.7 160.5c30.4 7 63.1 6.5 92.3 0l10.7-160.5H356c0-35.7-.5-76.4-7.8-109.7-3.9-17.9-10-33.7-18.2-45.1-8.2-11.1-18.5-17.8-33.3-20.1l-18.9-3 11.9-14.9c9.9-12.1 16.4-29.6 16.4-49.01 0-38.54-24-66.99-50.3-66.99h-4.9zm145 3.59v41.85h-41.8v50.16h41.8v41.6h49.9v-41.6h41.9V64.34h-41.9V22.49h-49.9zM52.92 62.89v30.58H22.39v36.63h30.53v30.4h36.4v-30.4h30.58V93.47H89.32V62.89h-36.4zM92.63 199.7v21.8H70.75v26.3h21.88v21.9h26.27v-21.9h21.8v-26.3h-21.8v-21.8H92.63zm355.07 62.4v21.8h-21.9v26.3h21.9v21.9H474v-21.9h21.8v-26.3H474v-21.8h-26.3zm-307.5 99.4v15h-15v18h15v15h18.1v-15h15v-18h-15v-15h-18.1zm230 45.8v15h-15v18h15v15h18v-15h15v-18h-15v-15h-18zM49.32 431.8v15h-15v18h15v15h18.01v-15h15v-18h-15v-15H49.32z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M54.53 118.73c-15.623 74.884 20.42 123.6 64.126 150.56-33.063-7.81-65.052-19.483-98.25-36.845 25.5 77.488 81.165 95.816 129.906 90.75-26.933 14.252-55.392 25.302-83.937 32.782 69.446 43.143 120.11 16.458 148.27-21.317a586.15 586.15 0 0 0-6.217-5.498c-5.193-3.697-10.128-7.95-14.778-12.71-5.968-5.095-12.045-10.295-18.173-15.73-33.648-29.837-67.978-65.614-69.43-112.83-.002-.05 0-.1-.002-.15-19.147-22.057-36.472-45.304-51.514-69.013zm402.94 0c-15.04 23.705-32.368 46.943-51.515 68.993 0 .026.003.05.004.078 1.388 45.967-33.476 82.66-67.968 113.386-13.87 12.355-27.86 23.824-39.904 34.44 28.298 37.26 78.683 63.125 147.54 20.35-28.543-7.48-56.98-18.53-83.91-32.78 48.737 5.056 104.38-13.28 129.876-90.75-33.197 17.363-65.187 29.036-98.25 36.845 43.705-26.962 79.75-75.675 64.125-150.56zm-132.42 3.977c-22.146.17-45.395 11.85-61.025 38.36l-7.783 13.2-7.736-13.228c-19.473-33.286-54.394-43.623-82.15-35.75h-.01c-24.486 6.947-43.386 26.957-42.307 62.048 1.187 38.61 30.602 70.852 63.38 99.918 16.39 14.533 33.36 28.123 47.412 41.52 8.357 7.968 15.777 15.842 21.332 24.142 5.568-7.718 12.923-15.143 21.217-22.86 14.382-13.384 31.856-27.363 48.64-42.314 33.567-29.9 63.045-63.115 61.95-99.398-1.118-36.974-22.723-58.38-48.618-64.127a63.71 63.71 0 0 0-14.303-1.513z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M256 151c-62.9 0-119.9 10.8-161.94 28.8-21.03 9.1-38.38 19.9-50.86 32.5C30.71 225 23 239.9 23 256s7.71 31 20.2 43.7c12.48 12.6 29.83 23.4 50.86 32.5C136.1 350.2 193.1 361 256 361c62.9 0 119.9-10.8 161.9-28.8 21.1-9.1 38.4-19.9 50.9-32.5C481.3 287 489 272.1 489 256s-7.7-31-20.2-43.7c-12.5-12.6-29.8-23.4-50.9-32.5-42-18-99-28.8-161.9-28.8zm0 43c82.7 0 165.5 21.2 215 63.6-.5 9.9-5.3 19.6-15 29.4-10.2 10.4-25.6 20.2-45.2 28.6-39 16.7-94 27.4-154.8 27.4-60.8 0-115.8-10.7-154.8-27.4-19.55-8.4-35.01-18.2-45.19-28.6-9.65-9.8-14.48-19.5-14.96-29.4C90.54 215.2 173.3 194 256 194z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 782 B

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M233 17.44v56.12h-64v46h64v56.57c7.523-1.028 15.2-1.57 23-1.57 7.8 0 15.477.542 23 1.57v-56.57h64v-46h-64V17.44h-46zm23 54.89c13.7 0 25 11.3 25 25s-11.3 25-25 25-25-11.3-25-25 11.3-25 25-25zm0 18c-3.973 0-7 3.027-7 7s3.027 7 7 7 7-3.027 7-7-3.027-7-7-7zm-7.545 102.416c-5.226.256-10.383.778-15.455 1.55v12.536c2.85-6.65 8.516-11.855 15.455-14.086zm15.09 0c6.94 2.23 12.605 7.437 15.455 14.086v-12.535c-5.072-.773-10.23-1.295-15.455-1.55zM215 198.18c-56.035 15.73-98.793 62.918-108.1 121.38H215V198.18zm82 0v121.38h108.1C395.793 261.1 353.035 213.91 297 198.18zm-41 11.38c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7s7-3.027 7-7c0-3.972-3.027-7-7-7zm-23 16.73v28.542c2.934-6.843 8.85-12.156 16.066-14.27-7.217-2.117-13.132-7.43-16.066-14.273zm46 0c-2.934 6.842-8.85 12.155-16.066 14.27 7.217 2.116 13.132 7.43 16.066 14.272V226.29zm-23 31.27c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7s7-3.027 7-7c0-3.972-3.027-7-7-7zm-23 16.73v28.542c2.934-6.843 8.85-12.156 16.066-14.27-7.217-2.117-13.132-7.43-16.066-14.273zm46 0c-2.934 6.842-8.85 12.155-16.066 14.27 7.217 2.116 13.132 7.43 16.066 14.272V274.29zm-23 31.27c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7s7-3.027 7-7c0-3.972-3.027-7-7-7zm-23 16.73v15.27h-15.27c6.842 2.934 12.155 8.85 14.27 16.067 2.395-8.173 8.894-14.67 17.066-17.066-7.217-2.115-13.132-7.428-16.066-14.27zm46 0c-2.934 6.842-8.85 12.155-16.066 14.27 8.172 2.396 14.67 8.894 17.066 17.067 2.115-7.217 7.428-13.133 14.27-16.066H279v-15.27zm-157.27 15.27c6.842 2.934 12.155 8.85 14.27 16.067 2.115-7.217 7.428-13.133 14.27-16.066h-28.54zm48 0c6.842 2.934 12.155 8.85 14.27 16.067 2.115-7.217 7.428-13.133 14.27-16.066h-28.54zm144 0c6.842 2.934 12.155 8.85 14.27 16.067 2.115-7.217 7.428-13.133 14.27-16.066h-28.54zm48 0c6.842 2.934 12.155 8.85 14.27 16.067 2.115-7.217 7.428-13.133 14.27-16.066h-28.54zm-249.73 16c-2.882 0-5.26 1.597-6.352 3.99.23 2.498.52 4.978.868 7.44 1.264 1.583 3.22 2.57 5.484 2.57 3.973 0 7-3.027 7-7 0-3.972-3.027-7-7-7zm48 0c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7s7-3.027 7-7c0-3.972-3.027-7-7-7zm48 0c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7s7-3.027 7-7c0-3.972-3.027-7-7-7zm48 0c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7s7-3.027 7-7c0-3.972-3.027-7-7-7zm48 0c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7s7-3.027 7-7c0-3.972-3.027-7-7-7zm48 0c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7s7-3.027 7-7c0-3.972-3.027-7-7-7zm48 0c-3.973 0-7 3.028-7 7 0 3.973 3.027 7 7 7 2.265 0 4.22-.987 5.484-2.57.35-2.462.64-4.942.868-7.44-1.093-2.393-3.47-3.99-6.352-3.99zm-264 13.934c-2.115 7.217-7.428 13.133-14.27 16.067h28.54c-6.842-2.933-12.155-8.85-14.27-16.066zm48 0c-2.115 7.217-7.428 13.133-14.27 16.067h28.54c-6.842-2.933-12.155-8.85-14.27-16.066zm48 0c-2.115 7.217-7.428 13.133-14.27 16.067h28.54c-6.842-2.933-12.155-8.85-14.27-16.066zm48 0c-2.115 7.217-7.428 13.133-14.27 16.067h28.54c-6.842-2.933-12.155-8.85-14.27-16.066zm48 0c-2.115 7.217-7.428 13.133-14.27 16.067h28.54c-6.842-2.933-12.155-8.85-14.27-16.066zm48 0c-2.115 7.217-7.428 13.133-14.27 16.067h28.54c-6.842-2.933-12.155-8.85-14.27-16.066zM116.518 401.56c22.702 54.647 76.542 93 139.482 93s116.78-38.353 139.482-93H116.518z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M300.56 39.29c-2.418.023-5.135 1.13-7.27 3.065-2.137 1.935-3.507 4.53-3.77 6.932-.26 2.402.174 4.782 3.033 7.94l6.037 6.67 40.35 44.56 6.042 6.672c2.86 3.156 5.184 3.824 7.6 3.802 2.416-.023 5.135-1.13 7.272-3.065 2.136-1.934 3.506-4.53 3.767-6.93.262-2.404-.17-4.783-3.03-7.94L308.16 43.09c-2.86-3.158-5.185-3.823-7.6-3.8zm-15.31 36.69l-38.604 34.952-6.04-6.672c-23.138-25.555-36.56-26.794-53.106-27.586L23.285 225.364 151.018 366.43 315.23 217.74c.85-16.544.946-30.02-22.193-55.576l-6.04-6.672 38.6-34.953-40.347-44.56zm-112.146 54.276l33.86 37.396 37.397-33.86 19.66 21.714-37.393 33.86 33.86 37.396-21.714 19.662-33.86-37.397-95.3 86.29-19.664-21.713 95.302-86.29-33.86-37.396 21.712-19.662zm197.378 4.363s-25.86 52.77-16 73.81c6.237 13.306 25.764 13.306 32 0 9.862-21.04-16-73.81-16-73.81zm2.196 103.02l-5.655 46.28c1.168-.316 2.47-.504 3.967-.504 2.408 0 4.445.504 6.23 1.307l-4.542-47.082zm-58.967 15l28.087 66.067c2.457-5.83 5.08-11.178 7.744-15.855l-35.83-50.213zm117.536 1.497l-37.244 49.48c2.66 4.666 5.212 9.943 7.568 15.662l29.676-65.143zM270.143 295.11l63.375 47.704c.57-2.11 1.164-4.208 1.8-6.275 1.07-3.48 2.227-6.874 3.446-10.17l-68.62-31.26zm203.572 2.595l-69.135 29.39c1.103 3.1 2.144 6.29 3.104 9.546.665 2.257 1.273 4.55 1.855 6.858l64.175-45.793zm-102.32 4.95c-1.514 1.696-3.56 4.516-5.706 8.193-4.528 7.762-9.47 18.968-13.167 30.984-3.697 12.016-6.155 24.906-6.185 35.992-.03 11.087 2.422 19.947 6.97 25.225 2.532 2.935 9.886 5.884 17.682 5.884 7.796 0 15.153-2.95 17.684-5.885 4.597-5.335 7.19-14.28 7.344-25.376.154-11.097-2.07-23.966-5.6-35.945-3.53-11.98-8.384-23.133-12.965-30.798-2.252-3.768-4.46-6.66-6.058-8.276zm-38.727 43.402l-79.022 7.62 75.75 9.26c.754-5.654 1.88-11.318 3.272-16.88zm77.754 1.045c1.273 5.56 2.263 11.213 2.88 16.845l75.413-7.275-78.293-9.57zm-81.756 22.716l-60.02 42.828 60.15-25.57c-.322-3.063-.467-6.175-.458-9.303.007-2.63.122-5.286.328-7.955zm85.225 1.516c.107 2.21.156 4.41.126 6.59-.05 3.527-.286 7.03-.752 10.46l58.957 26.856-58.33-43.906zm-79.935 34.746l-22.84 50.135 30-39.858c-.494-.498-.973-1.016-1.44-1.556-2.315-2.685-4.193-5.616-5.72-8.72zm73.358 1.434c-1.403 2.574-3.05 5.02-5.004 7.287-.782.907-1.615 1.737-2.474 2.526l28.816 40.385-21.34-50.196zm-42.073 19.144l4.444 46.05 5.613-45.92c-1.436.1-2.876.146-4.307.146-1.912 0-3.835-.094-5.75-.276z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M273.063 47.188c-1.974.032-3.98.123-6 .25-60.62 3.805-100.33 35.933-123.563 83.78-22.862 47.083-28.442 109.71-17.125 172.47l1.75 1.75-1.406 5.718c-3.43 14.203-1.17 31.297 4.28 45.97 5.45 14.67 14.52 26.75 20.594 30.78l5.03 3.344-.374 6c-1.355 21.968 6.887 38.96 18.438 50.688 11.55 11.726 26.687 17.447 36.593 16.843 10.25-.623 15.605-3.796 21.25-10 5.648-6.202 10.894-16.054 17.064-28.28 12.34-24.452 28.935-57.856 68.094-87.094 63.353-47.305 82.793-122.987 70-185.656-6.397-31.334-20.867-59.136-41.407-78.313-17.97-16.78-40.38-27.204-67.374-28.187-1.928-.07-3.87-.095-5.844-.063zm-6.875 54.156c1.282-.03 2.564-.024 3.843 0 26.317.48 51.695 12.228 69.314 35.437A9 9 0 1 1 325 147.657c-25.65-33.79-69.065-37.748-104.344-12.437-18.275 13.11-34.26 34.452-43.312 64.343 12.93-13.697 27.912-27.055 44.5-35.532 9.905-5.06 20.616-8.356 31.656-8.405 3.68-.016 7.393.332 11.125 1.094 14.928 3.046 29.34 12.706 42.188 29.686a9.003 9.003 0 1 1-14.375 10.844c-10.987-14.52-21.443-20.872-31.407-22.906-9.962-2.034-20.222.21-31 5.72-21.54 11.006-43.38 35.2-59.5 54.686-1.83 18.726-1.345 39.794 2.126 63.25 12.828.502 23.317 3.768 30.97 9.72 9.264 7.204 13.86 17.8 14.53 28.25 1.343 20.897-10.62 42.6-30.625 51.06a9.01 9.01 0 0 1-7.03-16.592c11.446-4.842 20.493-20.77 19.688-33.313-.403-6.27-2.644-11.314-7.625-15.188-4.982-3.873-13.416-6.82-27.22-6.062a9 9 0 0 1-9.374-7.47c-16.06-93.725 12.22-157.702 54.186-187.81 17.214-12.35 36.787-18.802 56.03-19.25z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M251.47 19.188c-38.454 1.225-74.12 17.995-102.876 44.874h143.25L251.5 19.188h-.03zM277 20.625l106.156 118.03a9.007 9.007 0 0 1 .656.814h31.625C389.93 75.593 337.993 29.355 277 20.624zM131.594 82.063c-13.968 16.764-25.626 36.19-34.344 57.406h262.406L308.03 82.062H131.595zm290.125 75.124a9 9 0 0 1-2.314.282H92.594a9 9 0 0 1-1.844-.157c-2.44 7.667-4.496 15.526-6.156 23.53 10.116-3.31 20.786-4.79 30.562-4.78 28.234.03 58.968 1.987 82.875 12.5 8.163 3.59 15.634 8.29 21.626 14.437h72.688c5.992-6.146 13.463-10.848 21.625-14.438 23.906-10.512 54.64-12.47 82.874-12.5 9.866-.01 20.644 1.5 30.844 4.875-1.6-8.103-3.596-16.038-5.97-23.75zm-303.25 36.875c-7.975.024-14.797.522-19.157 1.594-12.054 36.836-.837 77.202 8.218 112.72.656.762 11.178 4.697 19.282 4.53-7.954-23.88 13.606-98.775 35.344-115.53-13.86-2.1-30.398-3.353-43.687-3.314zm271.436.063c-21.518.234-46.257 2.96-58.812 7.28-12.053 36.837-1.15 70.11 7.906 105.626.655.765 11.052 5.23 19.156 5.064-7.954-23.882 14.262-101.213 36-117.97-1.402-.006-2.814-.015-4.25 0zm-156.375 38.78c.71 6.47.392 13.46-1.03 20.907-2.746 14.383-7.356 26.488-13.344 36.5h73.688c-5.988-10.012-10.598-22.117-13.344-36.5-1.422-7.447-1.74-14.438-1.03-20.906h-44.94zm-28.81 75.407c-3.555 3.317-7.33 6.224-11.282 8.72-18.483 11.666-40 14.714-59.844 14.343-16.54-.31-30.828-4.272-42.78-10.72 3.945 15.8 8.843 30.875 14.624 45.064h301.125c5.777-14.182 10.68-29.272 14.625-45.064-11.954 6.447-26.243 10.41-42.782 10.72-19.844.37-41.36-2.678-59.844-14.345-3.952-2.494-7.727-5.4-11.28-8.717H204.718zm-91.282 75.407c5.733 11.796 12.095 22.846 19 33.03 6.078 8.966 12.546 17.27 19.375 24.813a9 9 0 0 1 2.718-.407h202.94a9 9 0 0 1 2.717.375c6.823-7.537 13.3-15.82 19.375-24.78 6.905-10.184 13.267-21.234 19-33.03H113.438zm94.718 18.842a9 9 0 0 1 .625 0h94.44a9 9 0 1 1 0 18h-94.44a9.005 9.005 0 0 1-.624-18zM170 459.156c25.64 21.635 54.99 33.72 86 33.72 31.01 0 60.36-12.085 86-33.72H170z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(0,0)"><path d="M260.7 31.1c5.2.51 9.9 2.45 14.5 4.9l9.1-16.3c-6.4-3.81-13.9-6.07-20.7-7.3-.9 6.24-1.9 12.47-2.9 18.7zm-9.1-18.4c-7.6.51-14.1 2.52-21.1 6l8.3 16.7c5.1-1.88 9.6-3.72 14.6-4l-1.8-18.7zm-38.5 18.7c-5 5.17-9.8 11.69-12.7 17l16.3 9.1c3.1-4.71 5.9-9.09 9.6-12.8-4.3-4.46-9-8.78-13.2-13.3zm88.1 1.9l-14 12.4c3.8 3.98 6.6 8.63 9.3 13.4l16.7-8.5c-3.5-6.29-7.8-12.54-12-17.3zM192.4 67.4c-2.1 6.71-3.3 14.19-3.8 20.2l18.6 1.8c.6-6.22 1.4-10.74 3-16.5zm128.2 2.2c-6 1.86-12 3.42-18.1 4.9 1.1 5.58 2.2 11.79 2.7 16.6l18.7-1c-.8-7.04-1.8-14.28-3.3-20.5zm-113.2 36.6l-18.5 1.9c.4 7 2.6 14.3 4.3 20.1l17.8-5.7c-1.7-5.8-2.9-11-3.6-16.3zm97.2 1.7c-.8 5.7-2.4 11.2-4 16.2l17.5 6.6c2.3-6.7 4.1-14 5-20zm-86.7 29.4s-11.5 5.4-16.1 6.7c0 0 4.8 9.6 6.9 17.1 7.6-2.2 15.5-3.2 23.3-4.5-4.7-6.9-10.5-13.4-14.1-19.3zm75.3 1.7c-4.2 6.3-9.2 12-13.9 17.9 7.8 2.1 16 2.7 23.6 5.5 0 0 4.4-12.9 6.1-17.7-5.7-1.9-15.8-5.7-15.8-5.7zm-108.9 12.7c-6.6 4.4-11.1 8.1-16.1 13.4l13.5 12.9c4.6-4.5 7.8-7.5 12.6-10.5zm143.6 2.8l-10.8 15.2c4.6 3.1 8.7 6.9 12.3 11.1l13.9-12.5c-5.4-5.6-9.4-9.8-15.4-13.8zm-172.1 27.4c-3.5 5.7-6.3 11.8-8.7 18l17.4 6.9c2-5.4 4.5-10.7 7.5-15.6zm199.5 3.2l-16.2 9.2c2.8 5.1 5.4 10.4 7.6 15.8L364 203c-2.4-6.2-5.5-12.1-8.7-17.9zm-214.2 33.8c-1.6 6.2-3 12.7-3.8 19.2l18.4 2.8c.8-5.9 2.2-11.7 3.5-17.5zm229.1 3l-18.1 4.8c1.8 5.7 2.6 11.5 3.8 17.4l18.4-3.1c-1.1-6.4-2.3-12.8-4.1-19.1zm-235.1 35.5c-.5 6.8-.6 12.6-.6 19.3h18.7c.1-6.3.2-12.9.6-18zm241.6 2.9l-18.7 1.5c.5 5.8.8 12 .8 18l18.7-.1c-.1-7-.4-13.2-.8-19.4zm-223 34.6l-18.7 1c.4 6.4 1 12.7 1.7 19.1l18.6-2c-.8-6-1.2-12.1-1.6-18.1zm204.5 2.9c-.2 6-1 12-1.7 18l18.5 2.4c1-6.3 1.4-12.7 1.9-19.1zM139 329.6c.5 6.3 2 12.9 2.9 18.3h20.3v-18.7c-7.7-.2-15.4.1-23.2.4zm41.9-.4c-.1 6.4 0 12.3 0 18.7l19.2-.5c-.5-6.1-.9-12.1-1.2-18.2zm130 0c-.5 6.3-1 12.7-1.5 19l18.7 1.4-.2-20.4zm35.7 0v18.7h23.2c1.3-6.4 2.3-11.6 3.4-18-8.8-.9-17.7-.7-26.6-.7zm-145.3 36.9l-18.6 1.2 1.2 18.7 18.6-1.3zm106.7.7l-1.3 18.6 18.6 1.4 1.4-18.6zm-60.2 11.9v18.7h18.6v-18.7zm-44 24.7l-18.7 1.2 1.3 18.7L205 422zm101.5.7l-1.4 18.6 18.6 1.4 1.4-18.6zm-57.5 12v18.7h18.6v-18.7zm-41.6 24.6l-18.6 1.2 1.2 18.7 18.7-1.3zm96.3.6l-1.4 18.7 18.6 1.4 1.4-18.7zm-54.7 12.2v18.7h18.6v-18.7zM208.7 478l-18.7 1.2c.5 6.8.9 13.6 1.4 20.4h15.7zm91 .6l.8 21h16.4c.4-6.5 1-13.1 1.5-19.6zm-73.9 2.3v18.7h18.6v-18.7zm37.3 0v18.7h18.7v-18.7z" fill="#ffffff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -1 +0,0 @@
<svg style="height: 512px; width: 512px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g class="" style="" transform="translate(5,5)"><path d="M295.883 20.338c-14.656-.098-30.21 16.152-37.057 29.625-8.19 16.117-14.16 43.37-5.826 58.734l-13.63 6.483c-5.76-3.823-46.376-13.28-63.386-10.748-27.583 6.662-52.99 20.944-78.793 33.84l12.165 26.667c23.13-10.42 42.92-28.464 69.89-30.424 21.533-1.566 34.608 11.535 50.786 18.552-1.066 68.896-16.84 101.175-54.03 160.44-26.528 16.792-61.213 17.727-94.11 22.693l12.62 28.323c40.826-5.42 80.217-10.064 108.947-26.65 58.103-41.767 85.666-62.308 148.543-92.38 30.3 9.43 41.237 39.108 55.03 61.048l24.163-22.63c-12.5-27.36-44.15-61.68-79.193-84.066-22.694 7.043-44.088 17.01-64.133 30.01 6.64-24.67 6.65-44.777-1.678-69.448 18.79 6.873 36.892 10.287 54.28 10.137 27.537-20.4 42.684-46.306 62.66-70.066L384 84.564c-16.46 18.927-25.97 37.853-49.404 56.78-16.322-1.3-32.255-8.444-48.114-16.69l-2.732-7.615c15.41-6.64 30.163-24.084 35.334-38.8 6.553-18.647 1.573-50.056-17.004-56.804-2.03-.738-4.103-1.084-6.197-1.098zM18 384v110h142V384H18zm334 0v110h142V384H352z" fill="#fff" fill-opacity="1"></path></g></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Some files were not shown because too many files have changed in this diff Show more