diff --git a/.editorconfig b/.editorconfig index ba4931db..dd6173cc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,3 @@ -# SPDX-FileCopyrightText: 2021 Johannes Loher -# -# SPDX-License-Identifier: MIT - root = true [*] diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 00000000..8d021e69 --- /dev/null +++ b/.eslintrc.js @@ -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", + }, +}; diff --git a/.gitea/ISSUE_TEMPLATE/bug_report.yaml b/.gitea/ISSUE_TEMPLATE/bug_report.yaml deleted file mode 100644 index fc0fbaa0..00000000 --- a/.gitea/ISSUE_TEMPLATE/bug_report.yaml +++ /dev/null @@ -1,99 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Johannes Loher -# -# SPDX-License-Identifier: MIT - -name: Bug Report -about: File a bug report -labels: ["bug", "to be confirmed"] -body: - - type: markdown - attributes: - value: | - 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. - - Thanks for taking the time to fill out this bug report! In order to make it effective, please provide the following information. - - type: markdown - attributes: - value: | - ## Issue Description - - type: textarea - id: expected - attributes: - label: Expected Behavior - description: What is the behavior that you expected? - validations: - required: true - - type: textarea - id: current - attributes: - label: Current Behavior - description: What is the current behavior, i.e., what happens actually? - validations: - required: true - - type: textarea - id: steps - attributes: - label: Steps to Reproduce - description: What are the steps to reproduce the problem? - placeholder: | - 1. - 2. - 3. - 4. - validations: - required: true - - type: textarea - id: context - attributes: - label: Context - description: Please provide any additional context that might be helpful, e.g. log messages, screenshots, videos, or exports of problematic scenes or worlds. - validations: - required: false - - type: markdown - attributes: - value: | - ## Environment Details - - type: input - id: version - attributes: - label: Version - description: Which version(s) of DS4 are you seeing the problem on? - validations: - required: true - - type: input - id: foundry-version - attributes: - label: Foundry VTT Version - description: Which version(s) and build of Foundry VTT are you seeing the problem on? - validations: - required: true - - type: input - id: os - attributes: - label: Operating System - description: Which operating system are you using? (Windows, OS X, Linux (which distro)) - placeholder: Windows - validations: - required: true - - type: dropdown - id: browser - attributes: - label: Browser / App - description: Are you using a Browser or the native Electron application? (Select all that apply) - multiple: true - options: - - Native Electron App - - Chrome - - Firefox - - Microsoft Edge - - Safari - - Other - validations: - required: true - - type: input - id: modules - attributes: - label: Relevant Modules - description: Please list any other active modules (including their versions) that you think might be relevant. - validations: - required: false diff --git a/.gitea/ISSUE_TEMPLATE/config.yaml b/.gitea/ISSUE_TEMPLATE/config.yaml deleted file mode 100644 index f1387a8f..00000000 --- a/.gitea/ISSUE_TEMPLATE/config.yaml +++ /dev/null @@ -1,5 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Johannes Loher -# -# SPDX-License-Identifier: MIT - -blank_issues_enabled: false diff --git a/.gitea/ISSUE_TEMPLATE/feature_request.yaml b/.gitea/ISSUE_TEMPLATE/feature_request.yaml deleted file mode 100644 index 83816387..00000000 --- a/.gitea/ISSUE_TEMPLATE/feature_request.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Johannes Loher -# -# SPDX-License-Identifier: MIT - -name: Feature Request -description: Submit a feature request -labels: ["feature"] -body: - - type: markdown - attributes: - value: | - 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. - - In order to submit an effective feature request, please provide the following information. - - type: textarea - id: description - attributes: - label: Description - description: Please describe the proposal in as much detail as you feel is necessary. - validations: - required: true - - type: textarea - id: context - attributes: - label: Context - description: Is there anything else you can add about the proposal? You might want to link to related issues here if you haven't already. - validations: - required: false diff --git a/.gitignore b/.gitignore index c13ce325..f4078b46 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,3 @@ -# SPDX-FileCopyrightText: 2021 Johannes Loher -# SPDX-FileCopyrightText: 2021 Oliver Rümpelein - -# -# SPDX-License-Identifier: MIT - # IDE .idea/ .vs/ @@ -23,10 +17,3 @@ dist # Junit results results.xml -junit.xml - -# foundry -/client -/common - -.pnpm-store/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..bbc3ad05 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,97 @@ +image: node:latest + +stages: + - prepare + - test + - build + - release + +cache: &global_cache + key: + files: + - package-lock.json + policy: pull + paths: + - node_modules/ + +install-dependencies: + stage: prepare + script: + - npm install + cache: + <<: *global_cache + policy: pull-push + +lint: + stage: test + script: + - npm run lint + cache: + <<: *global_cache + +test: + stage: test + script: + - npm run test:ci + cache: + <<: *global_cache + artifacts: + when: always + reports: + junit: + - results.xml + +build: + stage: build + script: + - npm run build + - mv dist ds4 + cache: + <<: *global_cache + artifacts: + paths: + - ds4 + expire_in: 1 week + +.release-template: &release-template + stage: release + before_script: + - apt update + - apt install --yes jq + - REPOSITORY_URL=$(echo "${CI_REPOSITORY_URL}" | sed -e "s|gitlab-ci-token:.*@|${RELEASE_TOKEN}:${RELEASE_TOKEN_SECRET}@|g") + - git remote set-url origin $REPOSITORY_URL + - git config user.name $GITLAB_USER_LOGIN + - git config user.email $GITLAB_USER_EMAIL + - git branch -D ci-processing || true + - git checkout -b ci-processing + cache: + <<: *global_cache + script: | + npm run updateManifest -- --update=${RELEASE_TYPE} + RELEASE_VERSION=$(jq -r '.version' < package.json) + git add package.json package-lock.json src/system.json + git --no-pager diff + 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} + git push origin latest -f + git push origin ${RELEASE_VERSION} + only: + - master + when: manual + +release-patch: + variables: + RELEASE_TYPE: patch + <<: *release-template + +release-minor: + variables: + RELEASE_TYPE: minor + <<: *release-template + +release-major: + variables: + RELEASE_TYPE: major + <<: *release-template diff --git a/.gitlab/issue_templates/Bug Report.md b/.gitlab/issue_templates/Bug Report.md new file mode 100644 index 00000000..c209b177 --- /dev/null +++ b/.gitlab/issue_templates/Bug Report.md @@ -0,0 +1,29 @@ +# Description + +Please describe the issue. + +# Steps to Reproduce + +1. ... +2. ... +3. ... + +# Expected Behavior + +Please describe the expected behavior. + +# Actual Behavior + +Please describe the actual behavior. + +# Additional Details + +These are optional, please add them if it makes sense. + +- ![Screenshot]() +- [Logfile]() +- ... + +# Possible Solutions + +If you have any suggestions on how to solve the issue, please add them here. diff --git a/.gitlab/issue_templates/Feature Request.md b/.gitlab/issue_templates/Feature Request.md new file mode 100644 index 00000000..d6dbe30b --- /dev/null +++ b/.gitlab/issue_templates/Feature Request.md @@ -0,0 +1,13 @@ +# Story + +As a …, I want … so that … + +# Description + +Please add a more detailed description of the feature here. + +# Acceptance criteria + +1. Criterion 1 +2. Criterion 2 +3. … diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..8acb5aa3 --- /dev/null +++ b/.npmignore @@ -0,0 +1,7 @@ +# IDE +.idea/ +.vs/ + +# Node Modules +node_modules/ +npm-debug.log \ No newline at end of file diff --git a/.nvmrc b/.nvmrc index 2bd5a0a9..b009dfb9 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -22 +lts/* diff --git a/.nvmrc.license b/.nvmrc.license deleted file mode 100644 index 56430a92..00000000 --- a/.nvmrc.license +++ /dev/null @@ -1,3 +0,0 @@ -SPDX-FileCopyrightText: 2021 Johannes Loher - -SPDX-License-Identifier: MIT diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 3c545cf4..00000000 --- a/.prettierignore +++ /dev/null @@ -1,11 +0,0 @@ -# SPDX-FileCopyrightText: 2021 Johannes Loher -# -# SPDX-License-Identifier: MIT - -/dist -/package-lock.json -/node_modules/ -/.vscode/ -client -common -pnpm-lock.yaml diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 00000000..42618567 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,7 @@ +module.exports = { + semi: true, + trailingComma: "all", + singleQuote: false, + printWidth: 120, + tabWidth: 4, +}; diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 2d0f12b4..fab51eba 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,8 @@ { - "recommendations": [ - "dbaeumer.vscode-eslint", - "esbenp.prettier-vscode", - ] -} \ No newline at end of file + "recommendations": [ + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode", + "gruntfuggly.todo-tree", + "eg2.vscode-npm-script" + ] +} diff --git a/.vscode/extensions.json.license b/.vscode/extensions.json.license deleted file mode 100644 index 409f785b..00000000 --- a/.vscode/extensions.json.license +++ /dev/null @@ -1,4 +0,0 @@ -SPDX-FileCopyrightText: 2021 Johannes Loher -SPDX-FileCopyrightText: 2021 Oliver Rümpelein - -SPDX-License-Identifier: MIT diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 370f6fec..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,18 +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": "chrome", - "request": "launch", - "runtimeExecutable": "/usr/bin/chromium", - "name": "Launch Chrome against localhost", - "url": "http://localhost:30000/game", - "pathMapping": { - "/systems/ds4": "${workspaceFolder}/dist" - } - } - ] -} diff --git a/.vscode/launch.json.license b/.vscode/launch.json.license deleted file mode 100644 index 31803f36..00000000 --- a/.vscode/launch.json.license +++ /dev/null @@ -1,3 +0,0 @@ -SPDX-FileCopyrightText: 2021 Johannes Loher - -SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index bb762981..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "typescript.tsdk": "node_modules/typescript/lib", - "typescript.enablePromptUseWorkspaceTsdk": true, - "eslint.useFlatConfig": true, - "[javascript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[typescript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[json]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[jsonc]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[yaml]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, -} diff --git a/.vscode/settings.json.license b/.vscode/settings.json.license deleted file mode 100644 index 31803f36..00000000 --- a/.vscode/settings.json.license +++ /dev/null @@ -1,3 +0,0 @@ -SPDX-FileCopyrightText: 2021 Johannes Loher - -SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/.woodpecker/checks.yaml b/.woodpecker/checks.yaml deleted file mode 100644 index bf3e1cdf..00000000 --- a/.woodpecker/checks.yaml +++ /dev/null @@ -1,70 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Johannes Loher -# -# SPDX-License-Identifier: MIT - -$schema: https://raw.githubusercontent.com/woodpecker-ci/woodpecker/master/pipeline/schema/schema.json - -variables: - - &node_image node:22 - - &enable_pnpm - - corepack enable - - corepack prepare pnpm@latest --activate - -when: - - event: push - branch: ${CI_REPO_DEFAULT_BRANCH} - - event: pull_request - - event: tag - - event: manual - -steps: - install: - image: *node_image - commands: - - <<: *enable_pnpm - - pnpm install --frozen-lockfile - lint: - depends_on: install - image: *node_image - commands: - - <<: *enable_pnpm - - pnpm lint - formatcheck: - depends_on: install - image: *node_image - commands: - - <<: *enable_pnpm - - pnpm format:check - typecheck: - depends_on: install - image: *node_image - commands: - - <<: *enable_pnpm - - pnpm typecheck - test: - depends_on: install - image: *node_image - commands: - - <<: *enable_pnpm - - pnpm test - reuse: - depends_on: install - image: fsfe/reuse:latest - commands: - - reuse lint - commitlint: - depends_on: install - image: *node_image - commands: - - <<: *enable_pnpm - - git fetch origin ${CI_COMMIT_TARGET_BRANCH} - - pnpm exec commitlint --from origin/${CI_COMMIT_TARGET_BRANCH} - when: - event: pull_request - build: - depends_on: [lint, formatcheck, typecheck, test, reuse] - image: *node_image - commands: - - export APPDATA=$(pwd) - - <<: *enable_pnpm - - pnpm build diff --git a/.woodpecker/publish.yaml b/.woodpecker/publish.yaml deleted file mode 100644 index 5cdef92e..00000000 --- a/.woodpecker/publish.yaml +++ /dev/null @@ -1,132 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Johannes Loher -# -# SPDX-License-Identifier: MIT - -$schema: https://raw.githubusercontent.com/woodpecker-ci/woodpecker/master/pipeline/schema/schema.json - -variables: - - &node_image node:22 - - &enable_pnpm - - corepack enable - - corepack prepare pnpm@latest --activate - - &is_latest_channel - evaluate: CI_COMMIT_TAG matches "^[0-9]+\\\\.[0-9]+\\\\.[0-9]+$" - - &is_beta_channel - evaluate: CI_COMMIT_TAG matches "^[0-9]+\\\\.[0-9]+\\\\.[0-9]+-[0-9]+$" - - &release_plugin woodpeckerci/plugin-gitea-release - - &release_base_settings - base_url: ${CI_FORGE_URL} - title: ${CI_COMMIT_TAG} - note: CHANGELOG.md - files: - - ${CI_REPO_NAME}.zip - - ${CI_REPO_NAME}/system.json - api_key: - from_secret: forge_token - - &publish_manifest_base - image: alpine:latest - environment: - FORGE_TOKEN: - from_secret: forge_token - commands: - - apk update - - apk add curl - - export RELEASE_CHANNEL=$(cat .RELEASE_CHANNEL) - - 'curl --header "Authorization: token $${FORGE_TOKEN}" -X "DELETE" "${CI_FORGE_URL}/api/packages/${CI_REPO_OWNER}/generic/${CI_REPO_NAME}/$${RELEASE_CHANNEL}/system.json"' - - 'curl --fail --header "Authorization: token $${FORGE_TOKEN}" --upload-file ${CI_REPO_NAME}/system.json "${CI_FORGE_URL}/api/packages/${CI_REPO_OWNER}/generic/${CI_REPO_NAME}/$${RELEASE_CHANNEL}/system.json"' - -when: - event: tag - evaluate: CI_COMMIT_TAG matches "^[0-9]+\\\\.[0-9]+\\\\.[0-9]+(-[0-9]+)?$" - -depends_on: - - checks - -steps: - install: - image: *node_image - commands: - - <<: *enable_pnpm - - pnpm install --frozen-lockfile - build: - depends_on: install - image: *node_image - environment: - NODE_ENV: production - commands: - - export APPDATA=$(pwd) - - <<: *enable_pnpm - - pnpm build - package: - depends_on: build - image: alpine:latest - commands: - - apk update - - apk add zip curl - - mv dist ${CI_REPO_NAME} - - zip -r ${CI_REPO_NAME}.zip ${CI_REPO_NAME}/* - changelog: - depends_on: build - image: *node_image - commands: - - <<: *enable_pnpm - - pnpm changelog - choose-latest-channel: - depends_on: build - image: alpine:latest - commands: - - echo latest > .RELEASE_CHANNEL - when: - <<: *is_latest_channel - choose-beta-channel: - depends_on: build - image: alpine:latest - commands: - - echo beta > .RELEASE_CHANNEL - when: - <<: *is_beta_channel - release-latest: - depends_on: - - package - - changelog - - choose-latest-channel - image: *release_plugin - settings: - <<: *release_base_settings - when: - <<: *is_latest_channel - release-beta: - depends_on: - - package - - changelog - - choose-beta-channel - image: *release_plugin - settings: - <<: *release_base_settings - prerelease: true - when: - <<: *is_beta_channel - publish-manifest-latest: - <<: *publish_manifest_base - depends_on: release-latest - when: - <<: *is_latest_channel - publish-manifest-beta: - <<: *publish_manifest_base - depends_on: release-beta - when: - <<: *is_beta_channel - publish-to-foundry-admin: - depends_on: release-latest - image: johannesloher/foundry-publish:v4.0.0 - environment: - FVTT_PACKAGE_ID: - from_secret: fvtt_package_id - FVTT_TOKEN: - from_secret: fvtt_token - commands: - - export FVTT_MANIFEST_PATH=${CI_REPO_NAME}/system.json - - export FVTT_MANIFEST_URL=${CI_REPO_URL}/releases/download/${CI_COMMIT_TAG}/system.json - - foundry-publish - when: - <<: *is_latest_channel diff --git a/.woodpecker/release.yaml b/.woodpecker/release.yaml deleted file mode 100644 index 17966857..00000000 --- a/.woodpecker/release.yaml +++ /dev/null @@ -1,49 +0,0 @@ -# SPDX-FileCopyrightText: 2023 Johannes Loher -# -# SPDX-License-Identifier: MIT - -$schema: https://raw.githubusercontent.com/woodpecker-ci/woodpecker/master/pipeline/schema/schema.json - -variables: - - &node_image node:22 - - &enable_pnpm - - corepack enable - - corepack prepare pnpm@latest --activate - -when: - event: manual - branch: ${CI_REPO_DEFAULT_BRANCH} - -depends_on: - - checks - -steps: - install: - image: *node_image - commands: - - <<: *enable_pnpm - - pnpm install --frozen-lockfile - release: - image: *node_image - environment: - FORGE_TOKEN_NAME: - from_secret: forge_token_name - FORGE_TOKEN: - from_secret: forge_token - commands: - - <<: *enable_pnpm - - apt-get update - - apt-get install --yes jq - - export REPOSITORY_URL=$(echo "${CI_REPO_CLONE_URL}" | sed -e "s|://|://$${FORGE_TOKEN_NAME}:$${FORGE_TOKEN}@|g") - - git remote set-url origin $${REPOSITORY_URL} - - git config user.name woodpecker[bot] - - git config user.email woodpecker[bot]@${CI_SYSTEM_HOST} - - pnpm bump-version --release=${RELEASE_TYPE} - - pnpm exec prettier --write package.json system.json - - export RELEASE_VERSION=$(jq -r '.version' < package.json) - - git --no-pager diff - - git add package.json system.json - - 'git commit -m "chore(release): $${RELEASE_VERSION}"' - - git tag -f $${RELEASE_VERSION} - - git push origin ${CI_COMMIT_BRANCH} - - git push origin $${RELEASE_VERSION} diff --git a/ATTRIBUTION.md b/ATTRIBUTION.md deleted file mode 100644 index 53e613dd..00000000 --- a/ATTRIBUTION.md +++ /dev/null @@ -1,72 +0,0 @@ - - -# 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/ diff --git a/BeastImporter/Bestiarium.csv b/BeastImporter/Bestiarium.csv new file mode 100644 index 00000000..db593aab --- /dev/null +++ b/BeastImporter/Bestiarium.csv @@ -0,0 +1,342 @@ +Name,Quelle,Gruppe,Volk,Klasse,Stufe,Fähigkeiten,Upgrade,KÖR,AGI,GEI,ST,BE,VE,HÄ,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)",,, \ No newline at end of file diff --git a/BeastImporter/Bestiarium.json b/BeastImporter/Bestiarium.json new file mode 100644 index 00000000..dc87596a --- /dev/null +++ b/BeastImporter/Bestiarium.json @@ -0,0 +1,3036 @@ +[ + { + "name": "Adler", + "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.0, "mod": 0 }, + "defense": { "base": 4.0, "mod": 0 }, + "initiative": { "base": 11.0, "mod": 0 }, + "movement": { "base": 5.0, "mod": 0 }, + "meleeAttack": { "base": 5.0, "mod": 0 }, + "rangedAttack": { "base": 9.0, "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\u00fcrliche Waffen, Sturzangriff" + } + } + }, + { + "name": "Alligator", + "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.0, "mod": 0 }, + "defense": { "base": 18.0, "mod": 0 }, + "initiative": { "base": 15.0, "mod": 0 }, + "movement": { "base": 9.5, "mod": 0 }, + "meleeAttack": { "base": 16.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 10, + "creatureType": "animal", + "sizeCategory": "large", + "experiencePoints": 151, + "description": "Gro\u00dfer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nNat\u00fcrliche Waffen, Schwimmen, Sturmangriff" + } + } + }, + { + "name": "Augenball", + "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.0, "mod": 0 }, + "defense": { "base": 14.0, "mod": 0 }, + "initiative": { "base": 4.0, "mod": 0 }, + "movement": { "base": 3.5, "mod": 0 }, + "meleeAttack": { "base": 8.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "mod": 0 }, + "spellcasting": { "base": 13.0, "mod": 0 }, + "targetedSpellcasting": { "base": 12.0, "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)" + } + } + }, + { + "name": "Basilisk", + "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.0, "mod": 0 }, + "defense": { "base": 20.0, "mod": 0 }, + "initiative": { "base": 10.0, "mod": 0 }, + "movement": { "base": 7.5, "mod": 0 }, + "meleeAttack": { "base": 19.0, "mod": 0 }, + "rangedAttack": { "base": 7.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 18, + "creatureType": "magicalEntity", + "sizeCategory": "large", + "experiencePoints": 206, + "description": "Gro\u00dfer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nBlickangriff, Nachtsicht, Nat\u00fcrliche Waffen, Versteinern" + } + } + }, + { + "name": "Baumherr", + "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.0, "mod": 0 }, + "defense": { "base": 27.0, "mod": 0 }, + "initiative": { "base": 1.0, "mod": 0 }, + "movement": { "base": 2.0, "mod": 0 }, + "meleeAttack": { "base": 27.0, "mod": 0 }, + "rangedAttack": { "base": 1.0, "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\u00e4llig, Nachtsicht, Nat\u00fcrliche Waffen, Schleudern" + } + } + }, + { + "name": "B\u00e4r", + "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.0, "mod": 0 }, + "defense": { "base": 16.0, "mod": 0 }, + "initiative": { "base": 12.0, "mod": 0 }, + "movement": { "base": 8.0, "mod": 0 }, + "meleeAttack": { "base": 17.0, "mod": 0 }, + "rangedAttack": { "base": 8.0, "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\u00fcrliche Waffen, Sturmangriff" + } + } + }, + { + "name": "Drachenwelpe", + "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.0, "mod": 0 }, + "defense": { "base": 14.0, "mod": 0 }, + "initiative": { "base": 14.0, "mod": 0 }, + "movement": { "base": 10.5, "mod": 0 }, + "meleeAttack": { "base": 14.0, "mod": 0 }, + "rangedAttack": { "base": 17.0, "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\u00fcrliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen" + } + } + }, + { + "name": "D\u00e4monenf\u00fcrst", + "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.0, "mod": 0 }, + "defense": { "base": 32.0, "mod": 0 }, + "initiative": { "base": 30.0, "mod": 0 }, + "movement": { "base": 16.0, "mod": 0 }, + "meleeAttack": { "base": 35.0, "mod": 0 }, + "rangedAttack": { "base": 30.0, "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\u00e4monenhaut (PA+2)\nDunkelsicht, Nat\u00fcrliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Echsenmensch", + "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.0, "mod": 0 }, + "defense": { "base": 12.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 5.0, "mod": 0 }, + "meleeAttack": { "base": 14.0, "mod": 0 }, + "rangedAttack": { "base": 11.0, "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" + } + } + }, + { + "name": "Einhorn", + "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.0, "mod": 0 }, + "defense": { "base": 11.0, "mod": 0 }, + "initiative": { "base": 19.0, "mod": 0 }, + "movement": { "base": 12.0, "mod": 0 }, + "meleeAttack": { "base": 12.0, "mod": 0 }, + "rangedAttack": { "base": 13.0, "mod": 0 }, + "spellcasting": { "base": 0.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)" + } + } + }, + { + "name": "Erdelementar I", + "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.0, "mod": 0 }, + "defense": { "base": 20.0, "mod": 0 }, + "initiative": { "base": 3.0, "mod": 0 }, + "movement": { "base": 2.0, "mod": 0 }, + "meleeAttack": { "base": 19.0, "mod": 0 }, + "rangedAttack": { "base": 2.0, "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\u00e4llig" + } + } + }, + { + "name": "Erdelementar II", + "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.0, "mod": 0 }, + "defense": { "base": 26.0, "mod": 0 }, + "initiative": { "base": 3.0, "mod": 0 }, + "movement": { "base": 2.0, "mod": 0 }, + "meleeAttack": { "base": 25.0, "mod": 0 }, + "rangedAttack": { "base": 2.0, "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\u00e4llig" + } + } + }, + { + "name": "Erdelementar III", + "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.0, "mod": 0 }, + "defense": { "base": 33.0, "mod": 0 }, + "initiative": { "base": 3.0, "mod": 0 }, + "movement": { "base": 2.5, "mod": 0 }, + "meleeAttack": { "base": 31.0, "mod": 0 }, + "rangedAttack": { "base": 2.0, "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\u00e4llig" + } + } + }, + { + "name": "Erwachsener Drache", + "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.0, "mod": 0 }, + "defense": { "base": 35.0, "mod": 0 }, + "initiative": { "base": 20.0, "mod": 0 }, + "movement": { "base": 18.5, "mod": 0 }, + "meleeAttack": { "base": 35.0, "mod": 0 }, + "rangedAttack": { "base": 25.0, "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\u00fcrliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen" + } + } + }, + { + "name": "Eulerich", + "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.0, "mod": 0 }, + "defense": { "base": 18.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 20.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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" + } + } + }, + { + "name": "Faulbauch", + "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.0, "mod": 0 }, + "defense": { "base": 23.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 24.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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)" + } + } + }, + { + "name": "Faulbauchmade", + "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.0, "mod": 0 }, + "defense": { "base": 10.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 10.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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\u00fcrliche Waffen" + } + } + }, + { + "name": "Feuerelementar I", + "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.0, "mod": 0 }, + "defense": { "base": 22.0, "mod": 0 }, + "initiative": { "base": 5.0, "mod": 0 }, + "movement": { "base": 3.5, "mod": 0 }, + "meleeAttack": { "base": 14.0, "mod": 0 }, + "rangedAttack": { "base": 5.0, "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\u00e4llig, Fliegen, K\u00f6rperlos" + } + } + }, + { + "name": "Feuerelementar II", + "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.0, "mod": 0 }, + "defense": { "base": 27.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 20.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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\u00e4llig, Fliegen, K\u00f6rperlos" + } + } + }, + { + "name": "Feuerelementar III", + "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.0, "mod": 0 }, + "defense": { "base": 33.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 28.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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\u00e4llig, Fliegen, K\u00f6rperlos" + } + } + }, + { + "name": "Fliegendes Schwert", + "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.0, "mod": 0 }, + "defense": { "base": 19.0, "mod": 0 }, + "initiative": { "base": 5.0, "mod": 0 }, + "movement": { "base": 3.5, "mod": 0 }, + "meleeAttack": { "base": 16.0, "mod": 0 }, + "rangedAttack": { "base": 5.0, "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" + } + } + }, + { + "name": "Gargyl", + "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.0, "mod": 0 }, + "defense": { "base": 13.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 11.0, "mod": 0 }, + "rangedAttack": { "base": 9.0, "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\u00e4llig, Dunkelsicht, Fliegen, Geistesimmun, Kletterl\u00e4ufer, Nat\u00fcrliche Waffen, Sturzangriff" + } + } + }, + { + "name": "Geist", + "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.0, "mod": 0 }, + "defense": { "base": 25.0, "mod": 0 }, + "initiative": { "base": 11.0, "mod": 0 }, + "movement": { "base": 6.5, "mod": 0 }, + "meleeAttack": { "base": 19.0, "mod": 0 }, + "rangedAttack": { "base": 13.0, "mod": 0 }, + "spellcasting": { "base": 16.0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 24, + "creatureType": "undead", + "sizeCategory": "normal", + "experiencePoints": 279, + "description": "Geisterklaue (WB+2, GA-2)\nK\u00f6rperlos (PA+8)\nAngst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, K\u00f6rperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit / Wesen des Lichts (Settingoption)" + } + } + }, + { + "name": "Goblin", + "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.0, "mod": 0 }, + "defense": { "base": 7.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 7.0, "mod": 0 }, + "rangedAttack": { "base": 9.0, "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)" + } + } + }, + { + "name": "Golem, Eisen-", + "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.0, "mod": 0 }, + "defense": { "base": 31.0, "mod": 0 }, + "initiative": { "base": 7.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 31.0, "mod": 0 }, + "rangedAttack": { "base": 5.0, "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" + } + } + }, + { + "name": "Golem, Knochen-", + "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.0, "mod": 0 }, + "defense": { "base": 10.0, "mod": 0 }, + "initiative": { "base": 18.0, "mod": 0 }, + "movement": { "base": 7.5, "mod": 0 }, + "meleeAttack": { "base": 17.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "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" + } + } + }, + { + "name": "Golem, Kristall-", + "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.0, "mod": 0 }, + "defense": { "base": 14.0, "mod": 0 }, + "initiative": { "base": 10.0, "mod": 0 }, + "movement": { "base": 6.5, "mod": 0 }, + "meleeAttack": { "base": 13.0, "mod": 0 }, + "rangedAttack": { "base": 15.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 12.0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 7, + "creatureType": "construct", + "sizeCategory": "large", + "experiencePoints": 134, + "description": "Kristallpranke (WB+2)\nKristallwesen (PA+3)\nDunkelsicht, Geistesimmun, Schleudern, Sturmangriff" + } + } + }, + { + "name": "Golem, Lehm-", + "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.0, "mod": 0 }, + "defense": { "base": 13.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 16.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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" + } + } + }, + { + "name": "Golem, Stein-", + "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.0, "mod": 0 }, + "defense": { "base": 27.0, "mod": 0 }, + "initiative": { "base": 4.0, "mod": 0 }, + "movement": { "base": 3.5, "mod": 0 }, + "meleeAttack": { "base": 26.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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" + } + } + }, + { + "name": "Hai", + "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.0, "mod": 0 }, + "defense": { "base": 16.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 6.0, "mod": 0 }, + "meleeAttack": { "base": 19.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 9, + "creatureType": "animal", + "sizeCategory": "normal", + "experiencePoints": 106, + "description": "Gro\u00dfer Biss (WB+2, GA-2)\n\nNat\u00fcrliche Waffen, Schwimmen, Sturmangriff" + } + } + }, + { + "name": "Harpyie", + "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.0, "mod": 0 }, + "defense": { "base": 11.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 12.0, "mod": 0 }, + "rangedAttack": { "base": 7.0, "mod": 0 }, + "spellcasting": { "base": 8.0, "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\u00fcrliche Waffen, Sturzangriff" + } + } + }, + { + "name": "Hobgoblin", + "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.0, "mod": 0 }, + "defense": { "base": 18.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 3.5, "mod": 0 }, + "meleeAttack": { "base": 15.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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)" + } + } + }, + { + "name": "Hoher D\u00e4mon", + "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.0, "mod": 0 }, + "defense": { "base": 12.0, "mod": 0 }, + "initiative": { "base": 10.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 12.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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\u00e4monenhaut (PA+2)\nDunkelsicht, Nat\u00fcrliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Hund", + "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.0, "mod": 0 }, + "defense": { "base": 6.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 6.0, "mod": 0 }, + "meleeAttack": { "base": 9.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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\u00fcrliche Waffen" + } + } + }, + { + "name": "Hydra", + "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.0, "mod": 0 }, + "defense": { "base": 22.0, "mod": 0 }, + "initiative": { "base": 12.0, "mod": 0 }, + "movement": { "base": 9.5, "mod": 0 }, + "meleeAttack": { "base": 21.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 23, + "creatureType": "magicalEntity", + "sizeCategory": "large", + "experiencePoints": 246, + "description": "Gro\u00dfer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nMehrere Angriffe (+5), Mehrere Angriffsglieder, Nachtsicht, Nat\u00fcrliche Waffen, Regeneration, Schleudern, Schwimmen" + } + } + }, + { + "name": "Jungdrache", + "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.0, "mod": 0 }, + "defense": { "base": 24.0, "mod": 0 }, + "initiative": { "base": 15.0, "mod": 0 }, + "movement": { "base": 12.5, "mod": 0 }, + "meleeAttack": { "base": 24.0, "mod": 0 }, + "rangedAttack": { "base": 19.0, "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\u00fcrliche Waffen, Odem, Schleudern, Sturzangriff, Verschlingen, Wesen der Dunkelheit / Wesen des Lichts (Settingoption), Zerstampfen" + } + } + }, + { + "name": "Kampfd\u00e4mon", + "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.0, "mod": 0 }, + "defense": { "base": 15.0, "mod": 0 }, + "initiative": { "base": 12.0, "mod": 0 }, + "movement": { "base": 5.5, "mod": 0 }, + "meleeAttack": { "base": 16.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "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\u00e4monenhaut (PA+2)\nDunkelsicht, Nat\u00fcrliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Keiler", + "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.0, "mod": 0 }, + "defense": { "base": 17.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 7.0, "mod": 0 }, + "meleeAttack": { "base": 14.0, "mod": 0 }, + "rangedAttack": { "base": 7.0, "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\u00fcrliche Waffen, Sturmangriff" + } + } + }, + { + "name": "Kleine Monsterspinne", + "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.0, "mod": 0 }, + "defense": { "base": 12.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 7.0, "mod": 0 }, + "meleeAttack": { "base": 13.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "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\u00fcssigkeit (WB+1)\nDicke Spinnenhaut (PA+1)\nKletterl\u00e4ufer, L\u00e4hmungseffekt, Nat\u00fcrliche Waffen" + } + } + }, + { + "name": "Kobold", + "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.0, "mod": 0 }, + "defense": { "base": 4.0, "mod": 0 }, + "initiative": { "base": 7.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 5.0, "mod": 0 }, + "rangedAttack": { "base": 8.0, "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" + } + } + }, + { + "name": "Kriegsd\u00e4mon", + "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.0, "mod": 0 }, + "defense": { "base": 24.0, "mod": 0 }, + "initiative": { "base": 15.0, "mod": 0 }, + "movement": { "base": 8.0, "mod": 0 }, + "meleeAttack": { "base": 26.0, "mod": 0 }, + "rangedAttack": { "base": 15.0, "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\u00e4monenhaut (PA+2)\nDunkelsicht, Nat\u00fcrliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Kriegselefant", + "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.0, "mod": 0 }, + "defense": { "base": 23.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 6.5, "mod": 0 }, + "meleeAttack": { "base": 23.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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\u00e4uter (PA+2)\nNat\u00fcrliche Waffen, Sturmangriff" + } + } + }, + { + "name": "Lebende R\u00fcstung", + "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.0, "mod": 0 }, + "defense": { "base": 19.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 16.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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" + } + } + }, + { + "name": "Leichnam", + "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.0, "mod": 0 }, + "defense": { "base": 31.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 24.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "mod": 0 }, + "spellcasting": { "base": 17.0, "mod": 0 }, + "targetedSpellcasting": { "base": 13.0, "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)" + } + } + }, + { + "name": "Luftelementar I", + "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.0, "mod": 0 }, + "defense": { "base": 17.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 5.0, "mod": 0 }, + "meleeAttack": { "base": 9.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 4, + "creatureType": "magicalEntity", + "sizeCategory": "small", + "experiencePoints": 68, + "description": "Luftsto\u00df (WB+1)\nKeine feste Gestalt (PA+8)\nAnf\u00e4llig, Fliegen, K\u00f6rperlos" + } + } + }, + { + "name": "Luftelementar II", + "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.0, "mod": 0 }, + "defense": { "base": 23.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 5.5, "mod": 0 }, + "meleeAttack": { "base": 14.0, "mod": 0 }, + "rangedAttack": { "base": 14.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 9, + "creatureType": "magicalEntity", + "sizeCategory": "normal", + "experiencePoints": 92, + "description": "Luftsto\u00df (WB+2)\nKeine feste Gestalt (PA+8)\nAnf\u00e4llig, Fliegen, K\u00f6rperlos" + } + } + }, + { + "name": "Luftelementar III", + "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.0, "mod": 0 }, + "defense": { "base": 30.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 6.0, "mod": 0 }, + "meleeAttack": { "base": 21.0, "mod": 0 }, + "rangedAttack": { "base": 17.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 16, + "creatureType": "magicalEntity", + "sizeCategory": "large", + "experiencePoints": 143, + "description": "Luftsto\u00df (WB+4)\nKeine feste Gestalt (PA+8)\nAnf\u00e4llig, Fliegen, K\u00f6rperlos" + } + } + }, + { + "name": "Medusa", + "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.0, "mod": 0 }, + "defense": { "base": 15.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 6.0, "mod": 0 }, + "meleeAttack": { "base": 16.0, "mod": 0 }, + "rangedAttack": { "base": 8.0, "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" + } + } + }, + { + "name": "Minotaurus", + "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.0, "mod": 0 }, + "defense": { "base": 18.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 20.0, "mod": 0 }, + "rangedAttack": { "base": 7.0, "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" + } + } + }, + { + "name": "Monsterspinne", + "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.0, "mod": 0 }, + "defense": { "base": 15.0, "mod": 0 }, + "initiative": { "base": 11.0, "mod": 0 }, + "movement": { "base": 9.0, "mod": 0 }, + "meleeAttack": { "base": 17.0, "mod": 0 }, + "rangedAttack": { "base": 15.0, "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\u00fcssigkeit (WB+2)\nDicke Spinnenhaut (PA+1)\nKletterl\u00e4ufer, L\u00e4hmungseffekt, Nat\u00fcrliche Waffen" + } + } + }, + { + "name": "Mumie", + "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.0, "mod": 0 }, + "defense": { "base": 23.0, "mod": 0 }, + "initiative": { "base": 4.0, "mod": 0 }, + "movement": { "base": 3.0, "mod": 0 }, + "meleeAttack": { "base": 23.0, "mod": 0 }, + "rangedAttack": { "base": 4.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 18, + "creatureType": "undead", + "sizeCategory": "normal", + "experiencePoints": 133, + "description": "F\u00e4ulnispranke (WB+1)\nBandagen (PA+1)\nAngst, Anf\u00e4llig, Dunkelsicht, Geistesimmun, Nat\u00fcrliche Waffen, Totenkraft, Werteverlust, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Niederer D\u00e4mon", + "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.0, "mod": 0 }, + "defense": { "base": 9.0, "mod": 0 }, + "initiative": { "base": 7.0, "mod": 0 }, + "movement": { "base": 3.5, "mod": 0 }, + "meleeAttack": { "base": 8.0, "mod": 0 }, + "rangedAttack": { "base": 7.0, "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\u00e4monenhaut (PA+2)\nDunkelsicht, Nat\u00fcrliche Waffen, Sturmangriff, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Oger", + "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.0, "mod": 0 }, + "defense": { "base": 16.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 3.5, "mod": 0 }, + "meleeAttack": { "base": 17.0, "mod": 0 }, + "rangedAttack": { "base": 4.0, "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)" + } + } + }, + { + "name": "Ork", + "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.0, "mod": 0 }, + "defense": { "base": 14.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 13.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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)" + } + } + }, + { + "name": "Orkr\u00e4uber", + "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.0, "mod": 0 }, + "defense": { "base": 17.0, "mod": 0 }, + "initiative": { "base": 7.0, "mod": 0 }, + "movement": { "base": 4.0, "mod": 0 }, + "meleeAttack": { "base": 17.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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)" + } + } + }, + { + "name": "Pferd", + "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.0, "mod": 0 }, + "defense": { "base": 12.0, "mod": 0 }, + "initiative": { "base": 18.0, "mod": 0 }, + "movement": { "base": 10.5, "mod": 0 }, + "meleeAttack": { "base": 14.0, "mod": 0 }, + "rangedAttack": { "base": 11.0, "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\u00fcrliche Waffen" + } + } + }, + { + "name": "Pony", + "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.0, "mod": 0 }, + "defense": { "base": 11.0, "mod": 0 }, + "initiative": { "base": 13.0, "mod": 0 }, + "movement": { "base": 8.0, "mod": 0 }, + "meleeAttack": { "base": 13.0, "mod": 0 }, + "rangedAttack": { "base": 8.0, "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\u00fcrliche Waffen" + } + } + }, + { + "name": "Ratte", + "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.0, "mod": 0 }, + "defense": { "base": 2.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 3.0, "mod": 0 }, + "meleeAttack": { "base": 4.0, "mod": 0 }, + "rangedAttack": { "base": 4.0, "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\u00e4hne (WB+1)\n\nDunkelsicht, Nat\u00fcrliche Waffen, Schwimmen" + } + } + }, + { + "name": "Raubkatze", + "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.0, "mod": 0 }, + "defense": { "base": 9.0, "mod": 0 }, + "initiative": { "base": 15.0, "mod": 0 }, + "movement": { "base": 9.0, "mod": 0 }, + "meleeAttack": { "base": 12.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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\u00fcrliche Waffen" + } + } + }, + { + "name": "Reitkeiler", + "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.0, "mod": 0 }, + "defense": { "base": 15.0, "mod": 0 }, + "initiative": { "base": 11.0, "mod": 0 }, + "movement": { "base": 8.5, "mod": 0 }, + "meleeAttack": { "base": 13.0, "mod": 0 }, + "rangedAttack": { "base": 9.0, "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\u00fcrliche Waffen, Sturmangriff" + } + } + }, + { + "name": "Riese", + "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.0, "mod": 0 }, + "defense": { "base": 35.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 6.0, "mod": 0 }, + "meleeAttack": { "base": 38.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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" + } + } + }, + { + "name": "Riesenechse", + "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.0, "mod": 0 }, + "defense": { "base": 21.0, "mod": 0 }, + "initiative": { "base": 17.0, "mod": 0 }, + "movement": { "base": 12.5, "mod": 0 }, + "meleeAttack": { "base": 24.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "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\u00e4ufer, Nachtsicht, Nat\u00fcrliche Waffen, Sturmangriff, Verschlingen" + } + } + }, + { + "name": "Riesenkrake", + "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.0, "mod": 0 }, + "defense": { "base": 26.0, "mod": 0 }, + "initiative": { "base": 18.0, "mod": 0 }, + "movement": { "base": 11.0, "mod": 0 }, + "meleeAttack": { "base": 29.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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\u00fcrliche Waffen, Schwimmen, Umschlingen" + } + } + }, + { + "name": "Riesenratte", + "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.0, "mod": 0 }, + "defense": { "base": 5.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 6.0, "mod": 0 }, + "meleeAttack": { "base": 8.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "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\u00e4hne (WB+2)\n\nDunkelsicht, Nat\u00fcrliche Waffen, Schwimmen" + } + } + }, + { + "name": "Riesenschlange", + "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.0, "mod": 0 }, + "defense": { "base": 14.0, "mod": 0 }, + "initiative": { "base": 15.0, "mod": 0 }, + "movement": { "base": 11.0, "mod": 0 }, + "meleeAttack": { "base": 16.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 8, + "creatureType": "animal", + "sizeCategory": "large", + "experiencePoints": 143, + "description": "Gro\u00dfer Biss (WB+2, GA-2)\nSchuppenpanzer (PA+2)\nGift, Nat\u00fcrliche Waffen, Umschlingen" + } + } + }, + { + "name": "Rostassel", + "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.0, "mod": 0 }, + "defense": { "base": 15.0, "mod": 0 }, + "initiative": { "base": 7.0, "mod": 0 }, + "movement": { "base": 7.0, "mod": 0 }, + "meleeAttack": { "base": 13.0, "mod": 0 }, + "rangedAttack": { "base": 7.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 8, + "creatureType": "animal", + "sizeCategory": "normal", + "experiencePoints": 111, + "description": "Tentakelf\u00fchler (WB+1)\nChitinpanzer (PA+3)\nMehrere Angriffe (+3), Dunkelsicht, Mehrere Angriffsglieder, Nat\u00fcrliche Waffen, Rost" + } + } + }, + { + "name": "Schatten", + "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.0, "mod": 0 }, + "defense": { "base": 23.0, "mod": 0 }, + "initiative": { "base": 11.0, "mod": 0 }, + "movement": { "base": 6.5, "mod": 0 }, + "meleeAttack": { "base": 18.0, "mod": 0 }, + "rangedAttack": { "base": 13.0, "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\u00f6rperlos (PA+8)\nAlterung, Dunkelsicht, Fliegen, Geistesimmun, K\u00f6rperlos, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Schimmerross", + "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.0, "mod": 0 }, + "defense": { "base": 12.0, "mod": 0 }, + "initiative": { "base": 18.0, "mod": 0 }, + "movement": { "base": 11.0, "mod": 0 }, + "meleeAttack": { "base": 13.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "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\u00fcrliche Waffen" + } + } + }, + { + "name": "Schlachtross", + "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.0, "mod": 0 }, + "defense": { "base": 15.0, "mod": 0 }, + "initiative": { "base": 14.0, "mod": 0 }, + "movement": { "base": 9.5, "mod": 0 }, + "meleeAttack": { "base": 18.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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\u00fcrliche Waffen, Sturmangriff" + } + } + }, + { + "name": "Schlingwurzelbusch", + "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.0, "mod": 0 }, + "defense": { "base": 11.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 7.5, "mod": 0 }, + "meleeAttack": { "base": 11.0, "mod": 0 }, + "rangedAttack": { "base": 8.0, "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\u00f6lz (PA+1)\nMehrere Angriffe (+4), Geistesimmun, Nat\u00fcrliche Waffen, Umschlingen" + } + } + }, + { + "name": "Shekz", + "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.0, "mod": 0 }, + "defense": { "base": 5.0, "mod": 0 }, + "initiative": { "base": 5.0, "mod": 0 }, + "movement": { "base": 3.5, "mod": 0 }, + "meleeAttack": { "base": 3.0, "mod": 0 }, + "rangedAttack": { "base": 7.0, "mod": 0 }, + "spellcasting": { "base": 11.0, "mod": 0 }, + "targetedSpellcasting": { "base": 9.0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 1, + "creatureType": "humanoid", + "sizeCategory": "small", + "experiencePoints": 49, + "description": "Wurfmesser\nFelle (PA+1)\nNachtsicht, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Skelett", + "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.0, "mod": 0 }, + "defense": { "base": 12.0, "mod": 0 }, + "initiative": { "base": 10.0, "mod": 0 }, + "movement": { "base": 5.0, "mod": 0 }, + "meleeAttack": { "base": 14.0, "mod": 0 }, + "rangedAttack": { "base": 10.0, "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)" + } + } + }, + { + "name": "Tentakelhirn", + "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.0, "mod": 0 }, + "defense": { "base": 5.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 6.0, "mod": 0 }, + "meleeAttack": { "base": 6.0, "mod": 0 }, + "rangedAttack": { "base": 6.0, "mod": 0 }, + "spellcasting": { "base": 1.0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 1, + "creatureType": "magicalEntity", + "sizeCategory": "small", + "experiencePoints": 59, + "description": "\n\nDunkelsicht, Schweben, Werteverlust" + } + } + }, + { + "name": "Todesfee", + "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.0, "mod": 0 }, + "defense": { "base": 33.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 5.5, "mod": 0 }, + "meleeAttack": { "base": 27.0, "mod": 0 }, + "rangedAttack": { "base": 9.0, "mod": 0 }, + "spellcasting": { "base": 19.0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 31, + "creatureType": "undead", + "sizeCategory": "normal", + "experiencePoints": 287, + "description": "Geisterklaue (WB+2, GA-2)\nK\u00f6rperlos (PA+8)\nAngst, Alterung, Dunkelsicht, Fliegen, Geistesimmun, K\u00f6rperlos, Nur durch Magie verletzbar, Totenkraft, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Troll", + "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.0, "mod": 0 }, + "defense": { "base": 22.0, "mod": 0 }, + "initiative": { "base": 6.0, "mod": 0 }, + "movement": { "base": 4.5, "mod": 0 }, + "meleeAttack": { "base": 22.0, "mod": 0 }, + "rangedAttack": { "base": 13.0, "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\u00e4llig, Dunkelsicht, Regeneration, Umschlingen, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Unwolf", + "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.0, "mod": 0 }, + "defense": { "base": 14.0, "mod": 0 }, + "initiative": { "base": 10.0, "mod": 0 }, + "movement": { "base": 7.5, "mod": 0 }, + "meleeAttack": { "base": 16.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "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\u00e4llig, Nat\u00fcrliche Waffen, Odem, Sturmangriff, Wesen der Dunkelheit (Settingoption)" + } + } + }, + { + "name": "Vampirfledermaus", + "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.0, "mod": 0 }, + "defense": { "base": 7.0, "mod": 0 }, + "initiative": { "base": 4.0, "mod": 0 }, + "movement": { "base": 3.0, "mod": 0 }, + "meleeAttack": { "base": 9.0, "mod": 0 }, + "rangedAttack": { "base": 4.0, "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\u00fcrliche Waffen, Sonar, Sturzangriff" + } + } + }, + { + "name": "Wasserelementar I", + "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.0, "mod": 0 }, + "defense": { "base": 17.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 5.0, "mod": 0 }, + "meleeAttack": { "base": 11.0, "mod": 0 }, + "rangedAttack": { "base": 12.0, "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\u00e4llig, K\u00f6rperlos, Schwimmen" + } + } + }, + { + "name": "Wasserelementar II", + "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.0, "mod": 0 }, + "defense": { "base": 22.0, "mod": 0 }, + "initiative": { "base": 8.0, "mod": 0 }, + "movement": { "base": 5.0, "mod": 0 }, + "meleeAttack": { "base": 18.0, "mod": 0 }, + "rangedAttack": { "base": 14.0, "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\u00e4llig, K\u00f6rperlos, Schwimmen" + } + } + }, + { + "name": "Wasserelementar III", + "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.0, "mod": 0 }, + "defense": { "base": 29.0, "mod": 0 }, + "initiative": { "base": 9.0, "mod": 0 }, + "movement": { "base": 6.0, "mod": 0 }, + "meleeAttack": { "base": 24.0, "mod": 0 }, + "rangedAttack": { "base": 17.0, "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\u00e4llig, K\u00f6rperlos, Schwimmen" + } + } + }, + { + "name": "Wolf", + "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.0, "mod": 0 }, + "defense": { "base": 10.0, "mod": 0 }, + "initiative": { "base": 11.0, "mod": 0 }, + "movement": { "base": 7.0, "mod": 0 }, + "meleeAttack": { "base": 13.0, "mod": 0 }, + "rangedAttack": { "base": 7.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 4, + "creatureType": "animal", + "sizeCategory": "normal", + "experiencePoints": 81, + "description": "Gro\u00dfer Biss (WB+2, GA-1)\nWolfspelz (PA+1)\nNachtsicht, Nat\u00fcrliche Waffen, Sturmangriff" + } + } + }, + { + "name": "Zombie", + "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.0, "mod": 0 }, + "defense": { "base": 20.0, "mod": 0 }, + "initiative": { "base": 3.0, "mod": 0 }, + "movement": { "base": 2.5, "mod": 0 }, + "meleeAttack": { "base": 18.0, "mod": 0 }, + "rangedAttack": { "base": 3.0, "mod": 0 }, + "spellcasting": { "base": 0, "mod": 0 }, + "targetedSpellcasting": { "base": 0, "mod": 0 } + }, + "baseInfo": { + "loot": "", + "foeFactor": 10, + "creatureType": "undead", + "sizeCategory": "normal", + "experiencePoints": 78, + "description": "F\u00e4ulnispranke (WB+2)\nMerkt nichts (PA+2)\nDunkelsicht, Geistesimmun, Nat\u00fcrliche Waffen, Wesen der Dunkelheit (Settingoption)" + } + } + } +] diff --git a/BeastImporter/Readme.md b/BeastImporter/Readme.md new file mode 100644 index 00000000..58953631 --- /dev/null +++ b/BeastImporter/Readme.md @@ -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 diff --git a/BeastImporter/addCreatures.js b/BeastImporter/addCreatures.js new file mode 100644 index 00000000..e6a6600b --- /dev/null +++ b/BeastImporter/addCreatures.js @@ -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)); diff --git a/BeastImporter/bestiarium.db b/BeastImporter/bestiarium.db new file mode 100644 index 00000000..49b91276 --- /dev/null +++ b/BeastImporter/bestiarium.db @@ -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":[]} diff --git a/BeastImporter/dungeonslayers-beasts/module.json b/BeastImporter/dungeonslayers-beasts/module.json new file mode 100644 index 00000000..c2ff4902 --- /dev/null +++ b/BeastImporter/dungeonslayers-beasts/module.json @@ -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" + } + ] +} diff --git a/BeastImporter/dungeonslayers-beasts/packs/bestiarium.db b/BeastImporter/dungeonslayers-beasts/packs/bestiarium.db new file mode 100644 index 00000000..407b6c49 --- /dev/null +++ b/BeastImporter/dungeonslayers-beasts/packs/bestiarium.db @@ -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":[]} diff --git a/BeastImporter/exampleCreature.json b/BeastImporter/exampleCreature.json new file mode 100644 index 00000000..53b3bbab --- /dev/null +++ b/BeastImporter/exampleCreature.json @@ -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": "
Angriff Luftstoß +2
\nKörperlos PA +8
\nFliegen
\nAnfällig für Stein/Fels/Erde
\n" + } + }, + "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": [] +} diff --git a/BeastImporter/extractCreatures.py b/BeastImporter/extractCreatures.py new file mode 100644 index 00000000..d178cf46 --- /dev/null +++ b/BeastImporter/extractCreatures.py @@ -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['HÄ']), + "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) diff --git a/LICENSES/MIT.txt b/LICENSE similarity index 92% rename from LICENSES/MIT.txt rename to LICENSE index 2071b23b..5c296ab7 100644 --- a/LICENSES/MIT.txt +++ b/LICENSE @@ -1,6 +1,4 @@ -MIT License - -Copyright (c)
Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!HjpxMlpyjPr3hd3r.ysyoJA3dYTu4XXvt" - }, - { - "_id": "k9Ng7RdfvSRN5JVW", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!HjpxMlpyjPr3hd3r.k9Ng7RdfvSRN5JVW" - }, - { - "_id": "zUXT2ZkY12TAu5CU", - "name": "Sturzangriff", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/dive-attack.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird fliegend mindestens eine Distanz in Höhe von Laufen x 2 „rennend“ geflogen, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen, während der Bewegung, also nicht nur davor oder danach.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt", - "duplicateSource": null - }, - "_key": "!actors.items!HjpxMlpyjPr3hd3r.zUXT2ZkY12TAu5CU" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -6, - "value": 7 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:11)", - "foeFactor": 1, - "creatureType": "animal", - "sizeCategory": "small", - "experiencePoints": 52, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Adler", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/eagle.png", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346489, - "modifiedTime": 1740227862866, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!HjpxMlpyjPr3hd3r" -} diff --git a/packs/creatures/Alligator_ttzlBKtMWz981WF3.json b/packs/creatures/Alligator_ttzlBKtMWz981WF3.json deleted file mode 100644 index 00931fbd..00000000 --- a/packs/creatures/Alligator_ttzlBKtMWz981WF3.json +++ /dev/null @@ -1,357 +0,0 @@ -{ - "_id": "ttzlBKtMWz981WF3", - "name": "Alligator", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/alligator-green.png", - "items": [ - { - "_id": "Z4ZEuB2l0vo2dJcK", - "name": "Großer Biss", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!ttzlBKtMWz981WF3.Z4ZEuB2l0vo2dJcK" - }, - { - "_id": "ACGvtQk97Udg1rih", - "name": "Schuppenpanzer", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!ttzlBKtMWz981WF3.ACGvtQk97Udg1rih" - }, - { - "_id": "Buv9Nzqx0hpPPsew", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!ttzlBKtMWz981WF3.Buv9Nzqx0hpPPsew" - }, - { - "_id": "ree4HN3j8tv7b18k", - "name": "Schwimmen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swim.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, schwimmen. Wird die Aktion „Rennen“ schwimmend ausgeführt, erhöht sich die Geschwindigkeit ganz normal auf Laufen x 2.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN", - "duplicateSource": null - }, - "_key": "!actors.items!ttzlBKtMWz981WF3.ree4HN3j8tv7b18k" - }, - { - "_id": "8Aq23UcNNFecGbk9", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!ttzlBKtMWz981WF3.8Aq23UcNNFecGbk9" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 52, - "value": 78 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:14)", - "foeFactor": 10, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 151, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Alligator", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/alligator*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347112, - "modifiedTime": 1740227862918, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!ttzlBKtMWz981WF3" -} diff --git a/packs/creatures/Augenball_8E7Mm0LsiqFm6syY.json b/packs/creatures/Augenball_8E7Mm0LsiqFm6syY.json deleted file mode 100644 index 555f1a58..00000000 --- a/packs/creatures/Augenball_8E7Mm0LsiqFm6syY.json +++ /dev/null @@ -1,1168 +0,0 @@ -{ - "_id": "8E7Mm0LsiqFm6syY", - "name": "Augenball", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "V7Qw97Fk5MJgijNs", - "name": "Warzenhaut", - "type": "armor", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.V7Qw97Fk5MJgijNs" - }, - { - "_id": "z3o1FUNSKhEWkcpX", - "name": "Antimagie (10 Meter)", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.oUR6JglLxmJZduZz" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/anti-magic.png", - "effects": [], - "folder": null, - "system": { - "description": "Sämtliche Magie in einem Radius von 10 Metern um die Kreatur herum ist wirkungslos. Dies gilt nicht für die eigene Magie der Kreatur oder deren Zauber.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.oUR6JglLxmJZduZz", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.z3o1FUNSKhEWkcpX" - }, - { - "_id": "tKiwh730ZOGMICdg", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.tKiwh730ZOGMICdg" - }, - { - "_id": "SZ8rvHDbY67EqjDN", - "name": "Mehrere Angriffe (+4)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.1JDyMkVOlho7IuiN" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann 4 zusätzliche Zaubersprüche in jeder Runde aktionsfrei wirken, keinen einzelnen Zauberspruch jedoch mehr als einmal. Abklingzeiten müssen weiterhin berücksichtigt werden.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.1JDyMkVOlho7IuiN", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.SZ8rvHDbY67EqjDN" - }, - { - "_id": "v6ojDNs7V5QqwKgT", - "name": "Mehrere Angriffglieder (+4)", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R6jT1GYF13ZijtM0" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "system": { - "description": "Greift mit 5 von insgesamt 10 Augen gleichzeitig an, die Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen/zertrümmern, wodurch die Angriffsanzahl letztendlich sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R6jT1GYF13ZijtM0", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.v6ojDNs7V5QqwKgT" - }, - { - "_id": "coIsPp1V166g8IAm", - "name": "Schweben", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.05D4DdnbcQFoIllF" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/hover.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, auch schweben. Wird die Aktion „Rennen“ ausgeführt, erhöht sich die Geschwindigkeit wie am Boden auf Laufen x 2.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.05D4DdnbcQFoIllF", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.coIsPp1V166g8IAm" - }, - { - "_id": "kY4uQF3t99ANzx5T", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.kY4uQF3t99ANzx5T" - }, - { - "_id": "JMp5LjImHvoKsbGo", - "name": "Kettenblitz", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/willdabeast/chain-lightning.svg", - "effects": [], - "folder": null, - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.gePnhgqnsmdEbj3Z" - } - }, - "system": { - "description": "Der Zauberwirker schießt einen Blitz auf einen Feind, der auf bis zu VE weitere Gegner in seiner Nähe überspringt. Nur Gegner, die 2 oder mehr Meter von einem ihrer getroffenen Mitstreiter entfernt stehen, kann der Kettenblitz nicht erreichen.
\nGetroffene Gegner in Metallrüstung dürfen keine Abwehr gegen einen Kettenblitz würfeln.
", - "equipped": true, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 3, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": true, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": 16, - "wizard": 10, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.gePnhgqnsmdEbj3Z", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.JMp5LjImHvoKsbGo" - }, - { - "_id": "K3QPHlqz66xolbzw", - "name": "Schleudern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/heavenly-dog/catapult.svg", - "effects": [], - "folder": null, - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.bKCGwIne0uoWZiY0" - } - }, - "system": { - "description": "Dieser Zauberspruch, gegen den das Ziel keine Abwehr würfeln kann, schleudert das Ziel (Probenergebnis/3) Meter weit fort.
\nDas Ziel erhält für die Distanz, die es geschleudert wird (auch wenn eine Wand den Flug bremst) Sturzschaden (DS4 S. 85), gegen den es ganz normal Abwehr würfelt.
\nNach dem Fortschleudern liegt das Ziel immer am Boden.
", - "equipped": true, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE / 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 16, - "wizard": 12, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.bKCGwIne0uoWZiY0", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.K3QPHlqz66xolbzw" - }, - { - "_id": "16dN0fMIjJwdhvGF", - "name": "Blenden", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/laser-sparks.svg", - "effects": [], - "folder": null, - "sort": 100000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.JldAx8a91vVO2wUf" - } - }, - "system": { - "description": "Ein gleißender Lichtstrahl schießt aus der Hand des Zauberwirkers und blendet bei Erfolg das Ziel (welches dagegen keine Abwehr würfeln darf).
Ein geblendetes Ziel hat -8 auf alle Handlungen, bei denen es sehen können sollte.
Selbst augenlose Untote, wie beispielsweise Skelette, werden durch das magische Licht geblendet. Blinde Lebewesen sind dagegen nicht betroffen.
", - "equipped": true, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(AGI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": 1, - "wizard": 5, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.JldAx8a91vVO2wUf", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.16dN0fMIjJwdhvGF" - }, - { - "_id": "u3CLqxahFyF7kVpa", - "name": "Einschläfern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sleepy.svg", - "effects": [], - "folder": null, - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.CrZ8L7oaWvPjLou0" - } - }, - "system": { - "description": "Dieser Zauber schläfert eine maximale Anzahl von Zielen gleich der Stufe des Zauberwirkers ein. Es handelt sich dabei um einen natürlichen Schlaf, aus dem man durch Kampflärm u. ä. erwachen kann.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+VE)/2 des jeweiligen Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 2, - "wizard": 5, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.CrZ8L7oaWvPjLou0", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.u3CLqxahFyF7kVpa" - }, - { - "_id": "BkokuzUTP9U6LtBp", - "name": "Gehorche", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/convince.svg", - "effects": [], - "folder": null, - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.wZYElRaDmhqgzUvQ" - } - }, - "system": { - "description": "Bei Erfolg wird das Ziel dem Zauberwirker hörig und führt bedingungslos jeden seiner Befehle aus (außer Selbstmord oder -verstümmelung). Es würde sogar seine eigenen Kameraden angreifen.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+VE)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE / 2", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 12, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.wZYElRaDmhqgzUvQ", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.BkokuzUTP9U6LtBp" - }, - { - "_id": "lIchGK1m7Y7fMcKG", - "name": "Schutzschild", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/bell-shield.svg", - "effects": [], - "folder": null, - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.dpz383XbGFXEsGot" - } - }, - "system": { - "description": "Das Ziel erhält das Probenergebnis als Bonus auf seine Abwehr, bis die Dauer des Zaubers abgelaufen ist.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 4, - "wizard": 8, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.dpz383XbGFXEsGot", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.lIchGK1m7Y7fMcKG" - }, - { - "_id": "f0MedvERq1s8hy4z", - "name": "Schutzfeld", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/omega.svg", - "effects": [], - "folder": null, - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.NWPoiZHCmZ7ZJud4" - } - }, - "system": { - "description": "Ein Schutzfeld mit einem Radius von VE in Metern erscheint um den Zauberwirker herum, an dem nichtmagische Geschosse von außen her wirkungslos abprallen.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 4, - "wizard": 8, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.NWPoiZHCmZ7ZJud4", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.f0MedvERq1s8hy4z" - }, - { - "_id": "cnl7AuqByHHjW1zd", - "name": "Telekinese", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/sbed/weight-crush.svg", - "effects": [], - "folder": null, - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.VGeMfTNSKWzNGm6r" - } - }, - "system": { - "description": "Mit diesem Zauber lässt der Zauberwirker einen unbelebten Gegenstand mit einer Geschwindigkeit von 1 m pro Kampfrunde schweben, solange er sich ununterbrochen konzentriert (zählt als ganze Aktion).
", - "equipped": true, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-1 pro (Stufe x 5) kg Gewicht" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Konzentration", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": 6, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.VGeMfTNSKWzNGm6r", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.cnl7AuqByHHjW1zd" - }, - { - "_id": "D3McezCJz6afqzmR", - "name": "Unsichtbarkeit", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/invisible.svg", - "effects": [], - "folder": null, - "sort": 1000000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.EXqdD6yddQ4c0zAw" - } - }, - "system": { - "description": "Macht ein Lebewesen (samt seiner getragenen Ausrüstung) oder ein Objekt für die Dauer des Zauberspruchs unsichtbar.
Der Zauberspruch endet vorzeitig, wenn das Ziel jemanden angreift, zaubert oder selbst Schaden erhält.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "minutes" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 20, - "wizard": 12, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.EXqdD6yddQ4c0zAw", - "duplicateSource": null - }, - "_key": "!actors.items!8E7Mm0LsiqFm6syY.D3McezCJz6afqzmR" - }, - { - "_id": "bKyT6b0j4wLXbL7O", - "name": "Verwirren", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/misdirection.svg", - "effects": [], - "folder": null, - "sort": 1200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.niQVUxJHzdMDlwXc" - } - }, - "system": { - "description": "Dieser Zauberspruch verwirrt bei Erfolg das Ziel, dessen Handeln für die gesamte Zauberdauer auf folgender Tabelle jede Kampfrunde neu ermittelt wird:
\nW20 | \nDer Verwirrte… | \n
---|---|
1–5 | \n… greift die Charaktere an | \n
6–10 | \n… läuft verwirrt in eine zufällige Richtung | \n
11–15 | \n… steht verwirrt herum | \n
16+ | \n… greift die eigenen Verbündeten an | \n
Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!InLjj4RGxfkDrtXr.PKewYpkEmAWTc1j5" - }, - { - "_id": "WbEsNLQpzoWJlJyj", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!InLjj4RGxfkDrtXr.WbEsNLQpzoWJlJyj" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 50, - "value": 75 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:16)", - "foeFactor": 9, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 139, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Bär", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/bear*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346499, - "modifiedTime": 1740227862866, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!InLjj4RGxfkDrtXr" -} diff --git a/packs/creatures/Basilisk_GVLSLNSoMybeWhBP.json b/packs/creatures/Basilisk_GVLSLNSoMybeWhBP.json deleted file mode 100644 index 45ed7c2c..00000000 --- a/packs/creatures/Basilisk_GVLSLNSoMybeWhBP.json +++ /dev/null @@ -1,389 +0,0 @@ -{ - "_id": "GVLSLNSoMybeWhBP", - "name": "Basilisk", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/basilisk-green.png", - "items": [ - { - "_id": "y5i2zrZBp74DKQrQ", - "name": "Großer Biss", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!GVLSLNSoMybeWhBP.y5i2zrZBp74DKQrQ" - }, - { - "_id": "3CFakJA3eQJYSFN7", - "name": "Schuppenpanzer", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!GVLSLNSoMybeWhBP.3CFakJA3eQJYSFN7" - }, - { - "_id": "x7vdeybwnlRnlqTu", - "name": "Blickangriff", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.l4ewILWP2zbiSM97" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/gaze-attack.png", - "effects": [], - "folder": null, - "system": { - "description": "Greift mit seinem Blick aktionsfrei jeden an, dem GEI+AU misslingt. Wer gegen die Kreatur vorgeht, ohne ihr in die Augen zu sehen, erhält -4 auf alle Proben, ist aber nicht mehr Ziel ihrer Blickangriffe.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.l4ewILWP2zbiSM97", - "duplicateSource": null - }, - "_key": "!actors.items!GVLSLNSoMybeWhBP.x7vdeybwnlRnlqTu" - }, - { - "_id": "kQZnCtDlaCaKc38S", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!GVLSLNSoMybeWhBP.kQZnCtDlaCaKc38S" - }, - { - "_id": "cZa7Ms69DWYg8Pgz", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!GVLSLNSoMybeWhBP.cZa7Ms69DWYg8Pgz" - }, - { - "_id": "Hn8EIElYWelAKxiD", - "name": "Versteinern", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5eB5a0FnygbaqWPe" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/petrification.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem erfolgreichen Blickangriff versteinert das Ziel, sofern diesem KÖR+AU misslingt. Eine Versteinerung kann durch den Zauber Allheilung aufgehoben werden.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5eB5a0FnygbaqWPe", - "duplicateSource": null - }, - "_key": "!actors.items!GVLSLNSoMybeWhBP.Hn8EIElYWelAKxiD" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 140, - "value": 168 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:20)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 206, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Basilisk", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/basilisk*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346388, - "modifiedTime": 1740227862861, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!GVLSLNSoMybeWhBP" -} diff --git a/packs/creatures/Baumherr_WboyONCY2UZildi9.json b/packs/creatures/Baumherr_WboyONCY2UZildi9.json deleted file mode 100644 index 2d29a1bd..00000000 --- a/packs/creatures/Baumherr_WboyONCY2UZildi9.json +++ /dev/null @@ -1,421 +0,0 @@ -{ - "_id": "WboyONCY2UZildi9", - "name": "Baumherr", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "CM1yKVLm6mhG2eQE", - "name": "Asthiebe", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!WboyONCY2UZildi9.CM1yKVLm6mhG2eQE" - }, - { - "_id": "sZw8glq3cnPHu6yq", - "name": "Dicke Rinde", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!WboyONCY2UZildi9.sZw8glq3cnPHu6yq" - }, - { - "_id": "X9jyAzrnyxuikyg3", - "name": "Anfällig (Feuer)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.XhAfEVVoSADC880C" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Feuerangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.XhAfEVVoSADC880C", - "duplicateSource": null - }, - "_key": "!actors.items!WboyONCY2UZildi9.X9jyAzrnyxuikyg3" - }, - { - "_id": "B1Sw09kZopPZB8ys", - "name": "Mehrere Angriffe (+3)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.LM5xia0xVIlhQsLG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann 3 zusätzliche Asthiebe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.LM5xia0xVIlhQsLG", - "duplicateSource": null - }, - "_key": "!actors.items!WboyONCY2UZildi9.B1Sw09kZopPZB8ys" - }, - { - "_id": "x0mAm5abWWHlKJLz", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!WboyONCY2UZildi9.x0mAm5abWWHlKJLz" - }, - { - "_id": "2bA1MnqkTTwKtMoS", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!WboyONCY2UZildi9.2bA1MnqkTTwKtMoS" - }, - { - "_id": "fKCcOlyaebvj1HuL", - "name": "Schleudern", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flinging.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg schleudert das Ziel (sofern 1+ Größenkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet für die Distanz Sturzschaden, gegen den es normal Abwehr würfelt, und liegt am Boden.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP", - "duplicateSource": null - }, - "_key": "!actors.items!WboyONCY2UZildi9.fKCcOlyaebvj1HuL" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 35, - "value": 70 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Lediglich Brennholz", - "foeFactor": 23, - "creatureType": "plantBeing", - "sizeCategory": "large", - "experiencePoints": 158, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Baumherr", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346710, - "modifiedTime": 1740227862885, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!WboyONCY2UZildi9" -} diff --git a/packs/creatures/D_monenf_rst_PKPmkOMLDGwS9QZJ.json b/packs/creatures/D_monenf_rst_PKPmkOMLDGwS9QZJ.json deleted file mode 100644 index 0cd78b36..00000000 --- a/packs/creatures/D_monenf_rst_PKPmkOMLDGwS9QZJ.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "PKPmkOMLDGwS9QZJ", - "name": "Dämonenfürst", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 360, - "value": 400 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 42, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 579, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Dämonenfürst", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346629, - "modifiedTime": 1740227862874, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!PKPmkOMLDGwS9QZJ" -} diff --git a/packs/creatures/Drachenwelpe__Blau__US32MfI48tX5x8Kz.json b/packs/creatures/Drachenwelpe__Blau__US32MfI48tX5x8Kz.json deleted file mode 100644 index cdf26f93..00000000 --- a/packs/creatures/Drachenwelpe__Blau__US32MfI48tX5x8Kz.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "US32MfI48tX5x8Kz", - "name": "Drachenwelpe (Blau)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-blue.png", - "items": [ - { - "_id": "2lkp7kvBk98s2WcR", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!US32MfI48tX5x8Kz.2lkp7kvBk98s2WcR" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-blue.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346697, - "modifiedTime": 1740227862883, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!US32MfI48tX5x8Kz" -} diff --git a/packs/creatures/Drachenwelpe__Bronze__tchJggykZKx2ctBv.json b/packs/creatures/Drachenwelpe__Bronze__tchJggykZKx2ctBv.json deleted file mode 100644 index dccb05c5..00000000 --- a/packs/creatures/Drachenwelpe__Bronze__tchJggykZKx2ctBv.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "_id": "tchJggykZKx2ctBv", - "name": "Drachenwelpe (Bronze)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png", - "items": [ - { - "_id": "yjkoipelFXEzcy1x", - "name": "Schallwellen-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!tchJggykZKx2ctBv.yjkoipelFXEzcy1x" - }, - { - "_id": "yTFT0UXNa9s9pbM4", - "name": "Wesen des Lichts (Settingoption)", - "type": "specialCreatureAbility", - "sort": 1200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.KDDlwN9as9B4ljeA" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-light.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen des Lichts. Angewendete Regeln für Wesen des Lichts gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.KDDlwN9as9B4ljeA", - "duplicateSource": null - }, - "_key": "!actors.items!tchJggykZKx2ctBv.yTFT0UXNa9s9pbM4" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347091, - "modifiedTime": 1740227862917, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!tchJggykZKx2ctBv" -} diff --git a/packs/creatures/Drachenwelpe__Gelb__uomniEHbTAek8ERH.json b/packs/creatures/Drachenwelpe__Gelb__uomniEHbTAek8ERH.json deleted file mode 100644 index 84f980e6..00000000 --- a/packs/creatures/Drachenwelpe__Gelb__uomniEHbTAek8ERH.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "_id": "uomniEHbTAek8ERH", - "name": "Drachenwelpe (Gelb)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-yellow.png", - "items": [ - { - "_id": "yjkoipelFXEzcy1x", - "name": "Sandsturm-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!uomniEHbTAek8ERH.yjkoipelFXEzcy1x" - }, - { - "_id": "3wfMRBF49WH74mt2", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!uomniEHbTAek8ERH.3wfMRBF49WH74mt2" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-yellow.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347121, - "modifiedTime": 1740227862919, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!uomniEHbTAek8ERH" -} diff --git a/packs/creatures/Drachenwelpe__Gold__owGq4n7KX2P1o9em.json b/packs/creatures/Drachenwelpe__Gold__owGq4n7KX2P1o9em.json deleted file mode 100644 index ad3dfa1a..00000000 --- a/packs/creatures/Drachenwelpe__Gold__owGq4n7KX2P1o9em.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "owGq4n7KX2P1o9em", - "name": "Drachenwelpe (Gold)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-gold.png", - "items": [ - { - "_id": "yjkoipelFXEzcy1x", - "name": "Licht-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!owGq4n7KX2P1o9em.yjkoipelFXEzcy1x" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-gold.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346962, - "modifiedTime": 1740227862910, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!owGq4n7KX2P1o9em" -} diff --git a/packs/creatures/Drachenwelpe__Gr_n__kFieLVdVz8XittRw.json b/packs/creatures/Drachenwelpe__Gr_n__kFieLVdVz8XittRw.json deleted file mode 100644 index 000b3503..00000000 --- a/packs/creatures/Drachenwelpe__Gr_n__kFieLVdVz8XittRw.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "kFieLVdVz8XittRw", - "name": "Drachenwelpe (Grün)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-green.png", - "items": [ - { - "_id": "qYO8vFpNBw2wQLIJ", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!kFieLVdVz8XittRw.qYO8vFpNBw2wQLIJ" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-green.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346875, - "modifiedTime": 1740227862900, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!kFieLVdVz8XittRw" -} diff --git a/packs/creatures/Drachenwelpe__Rot__7CvWSMFqWHvwajP1.json b/packs/creatures/Drachenwelpe__Rot__7CvWSMFqWHvwajP1.json deleted file mode 100644 index 366fc944..00000000 --- a/packs/creatures/Drachenwelpe__Rot__7CvWSMFqWHvwajP1.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "7CvWSMFqWHvwajP1", - "name": "Drachenwelpe (Rot)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-red.png", - "items": [ - { - "_id": "F5KCKyCC8nD8lrn2", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!7CvWSMFqWHvwajP1.F5KCKyCC8nD8lrn2" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-red.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346249, - "modifiedTime": 1740227862845, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!7CvWSMFqWHvwajP1" -} diff --git a/packs/creatures/Drachenwelpe__Silber__GeUXlf57uWcGVGRH.json b/packs/creatures/Drachenwelpe__Silber__GeUXlf57uWcGVGRH.json deleted file mode 100644 index 668c0565..00000000 --- a/packs/creatures/Drachenwelpe__Silber__GeUXlf57uWcGVGRH.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "GeUXlf57uWcGVGRH", - "name": "Drachenwelpe (Silber)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-silver.png", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-silver.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346414, - "modifiedTime": 1740227862862, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!GeUXlf57uWcGVGRH" -} diff --git a/packs/creatures/Drachenwelpe__Wei___vsKKpweX6I1TQYBj.json b/packs/creatures/Drachenwelpe__Wei___vsKKpweX6I1TQYBj.json deleted file mode 100644 index a29a4868..00000000 --- a/packs/creatures/Drachenwelpe__Wei___vsKKpweX6I1TQYBj.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "_id": "vsKKpweX6I1TQYBj", - "name": "Drachenwelpe (Weiß)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-white.png", - "items": [ - { - "_id": "yjkoipelFXEzcy1x", - "name": "Frost-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!vsKKpweX6I1TQYBj.yjkoipelFXEzcy1x" - }, - { - "_id": "xUH4ga5oyxeT3mW2", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!vsKKpweX6I1TQYBj.xUH4ga5oyxeT3mW2" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-white.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347204, - "modifiedTime": 1740227862921, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!vsKKpweX6I1TQYBj" -} diff --git a/packs/creatures/Drachenwelpe__schwarz__wqgUDJc7Qb28hBBo.json b/packs/creatures/Drachenwelpe__schwarz__wqgUDJc7Qb28hBBo.json deleted file mode 100644 index 92702f04..00000000 --- a/packs/creatures/Drachenwelpe__schwarz__wqgUDJc7Qb28hBBo.json +++ /dev/null @@ -1,613 +0,0 @@ -{ - "_id": "wqgUDJc7Qb28hBBo", - "name": "Drachenwelpe (schwarz)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-black.png", - "items": [ - { - "_id": "fogg4p9NQnpcBTUp", - "name": "Mehrere Angriffe", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "meleeRanged", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.fogg4p9NQnpcBTUp" - }, - { - "_id": "BwxnkXHThNRptudp", - "name": "Panzerschuppen", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 3, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.BwxnkXHThNRptudp" - }, - { - "_id": "4JCW7iKb2e9I2ZSj", - "name": "Angst (1)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.rUA7XVCeDkREYfi8" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.rUA7XVCeDkREYfi8", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.4JCW7iKb2e9I2ZSj" - }, - { - "_id": "VFP6bNPYcASg0JWE", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.VFP6bNPYcASg0JWE" - }, - { - "_id": "o4o3thrxtXrhRWYT", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.o4o3thrxtXrhRWYT" - }, - { - "_id": "nFNJLYh2O5rOFY89", - "name": "Mehrere Angriffe (+1)", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.oDM4ImE7PrIgn22E" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann 1 zusätzlichen Angriff (Biss, Klaue, Odem oder Schwanzhieb) in jeder Runde aktionsfrei ausführen. Bis auf die Klauen dürfen alle Angriffsarten nur einmal pro Runde angewendet werden.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.oDM4ImE7PrIgn22E", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.nFNJLYh2O5rOFY89" - }, - { - "_id": "h5HdNw0r06ffdOwr", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.h5HdNw0r06ffdOwr" - }, - { - "_id": "yjkoipelFXEzcy1x", - "name": "Säure-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.yjkoipelFXEzcy1x" - }, - { - "_id": "LHdWF7tVc3uHC0LW", - "name": "Schleudern", - "type": "specialCreatureAbility", - "sort": 900000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flinging.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg schleudert das Ziel (sofern 1+ Größenkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet für die Distanz Sturzschaden, gegen den es normal Abwehr würfelt, und liegt am Boden.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.LHdWF7tVc3uHC0LW" - }, - { - "_id": "ltDNoswX7EaA2d2X", - "name": "Sturzangriff", - "type": "specialCreatureAbility", - "sort": 1000000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/dive-attack.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird fliegend mindestens eine Distanz in Höhe von Laufen x 2 „rennend“ geflogen, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen, während der Bewegung, also nicht nur davor oder danach.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.ltDNoswX7EaA2d2X" - }, - { - "_id": "lOr6f4vMoBBOEPB7", - "name": "Verschlingen", - "type": "specialCreatureAbility", - "sort": 1100000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.fY7yRpxhQTIV5G2p" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/devourer.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg (mit einem Biss-Angriff) verschlingt Ziel (sofern 2+ Größenkategorien kleiner), welches fortan einen nicht abwehrbaren Schadenspunkt pro Kampfrunde und einen Malus von -8 auf alle Proben erhält.
\nBefreien: Nur mit einem Schlagen-Immersieg, der Schaden verursacht, kann sich der Verschlungene augenblicklich aus dem Leib seines Verschlingers befreien, wenn dieser noch lebt.
", - "experiencePoints": 25 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.fY7yRpxhQTIV5G2p", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.lOr6f4vMoBBOEPB7" - }, - { - "_id": "XsKjxXO7k3vIMyfQ", - "name": "Zerstampfen", - "type": "specialCreatureAbility", - "sort": 1300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.02QMKm8MHzz8yAxL" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/crush.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einen Angriff pro Kampfrunde mit -6 ausführen, um das Ziel (sofern 1+ Größenkategorie kleiner) zu zerstampfen. Pro Größenunterschied wird der -6 Malus um 2 gemindert. Bei einem erfolgreichen Angriff wird nicht abwehrbarer Schaden verursacht.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.02QMKm8MHzz8yAxL", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.XsKjxXO7k3vIMyfQ" - }, - { - "_id": "hoqMl7N1bv8BKJA5", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!wqgUDJc7Qb28hBBo.hoqMl7N1bv8BKJA5" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:W20+10)", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 255, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Drachenwelpe", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-black.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347224, - "modifiedTime": 1740227862923, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!wqgUDJc7Qb28hBBo" -} diff --git a/packs/creatures/Echsenmensch_HgTRHAjq1YBk40sO.json b/packs/creatures/Echsenmensch_HgTRHAjq1YBk40sO.json deleted file mode 100644 index c203716b..00000000 --- a/packs/creatures/Echsenmensch_HgTRHAjq1YBk40sO.json +++ /dev/null @@ -1,329 +0,0 @@ -{ - "_id": "HgTRHAjq1YBk40sO", - "name": "Echsenmensch", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/lizard-man-green-dark.png", - "items": [ - { - "_id": "5X3YrQ6PeuexE5QD", - "name": "Speer", - "type": "weapon", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.oWvJfxEBr83QxO9Q" - } - }, - "img": "icons/weapons/polearms/spear-hooked-simple.webp", - "effects": [], - "folder": null, - "system": { - "description": "Zerbricht bei Schießen-Patzer
", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-", - "equipped": true, - "attackType": "meleeRanged", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.oWvJfxEBr83QxO9Q", - "duplicateSource": null - }, - "_key": "!actors.items!HgTRHAjq1YBk40sO.5X3YrQ6PeuexE5QD" - }, - { - "_id": "CylYyspqzzOiD3QA", - "name": "Schuppenpanzer", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!HgTRHAjq1YBk40sO.CylYyspqzzOiD3QA" - }, - { - "_id": "tOY9c09eNSqmJHki", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!HgTRHAjq1YBk40sO.tOY9c09eNSqmJHki" - }, - { - "_id": "G0avaPXmxplRB8al", - "name": "Schleudern", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flinging.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg schleudert das Ziel (sofern 1+ Größenkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet für die Distanz Sturzschaden, gegen den es normal Abwehr würfelt, und liegt am Boden.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP", - "duplicateSource": null - }, - "_key": "!actors.items!HgTRHAjq1YBk40sO.G0avaPXmxplRB8al" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 21 - }, - "defense": { - "mod": 2 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW 1B:12, #2B:17", - "foeFactor": 3, - "creatureType": "humanoid", - "sizeCategory": "normal", - "experiencePoints": 71, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Echsenmensch", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/lizard-man*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346458, - "modifiedTime": 1740227862864, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!HgTRHAjq1YBk40sO" -} diff --git a/packs/creatures/Einhorn_SQv63FQBjA5jW5xv.json b/packs/creatures/Einhorn_SQv63FQBjA5jW5xv.json deleted file mode 100644 index db0c055b..00000000 --- a/packs/creatures/Einhorn_SQv63FQBjA5jW5xv.json +++ /dev/null @@ -1,525 +0,0 @@ -{ - "_id": "SQv63FQBjA5jW5xv", - "name": "Einhorn", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "o8CRX0tj3mrixbeV", - "name": "Mehrere Angriffe", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.o8CRX0tj3mrixbeV" - }, - { - "_id": "k4syi7gvtjmG6yVt", - "name": "Angst (1)", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.rUA7XVCeDkREYfi8" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.rUA7XVCeDkREYfi8", - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.k4syi7gvtjmG6yVt" - }, - { - "_id": "ywm8DSneqBXy2Pk9", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.ywm8DSneqBXy2Pk9" - }, - { - "_id": "RWRBDrcHL1YK6MvZ", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.RWRBDrcHL1YK6MvZ" - }, - { - "_id": "m78risNOMkOZtoix", - "name": "Mehrere Angriffe (+1)", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.oDM4ImE7PrIgn22E" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann 1 zusätzlichen Angriff (Horn oder Hufe) in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.oDM4ImE7PrIgn22E", - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.m78risNOMkOZtoix" - }, - { - "_id": "WLc6j329EiSfsRj5", - "name": "Schleudern", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flinging.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg schleudert das Ziel (sofern 1+ Größenkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet für die Distanz Sturzschaden, gegen den es normal Abwehr würfelt, und liegt am Boden.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP", - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.WLc6j329EiSfsRj5" - }, - { - "_id": "ysPz3YM2HzR9rptL", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.ysPz3YM2HzR9rptL" - }, - { - "_id": "As31RtyHN8S4aN7O", - "name": "Wesen des Lichts (Settingoption)", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.KDDlwN9as9B4ljeA" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-light.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen des Lichts. Angewendete Regeln für Wesen des Lichts gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.KDDlwN9as9B4ljeA", - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.As31RtyHN8S4aN7O" - }, - { - "_id": "mwMtV9vS293KeF3Q", - "name": "Spurt", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/run.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.KUbT1gBeThcLY7vU" - } - }, - "system": { - "description": "Der Laufen-Wert des Ziels wird für die Dauer des Zaubers verdoppelt.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 7, - "wizard": 7, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.KUbT1gBeThcLY7vU", - "duplicateSource": null - }, - "_key": "!actors.items!SQv63FQBjA5jW5xv.mwMtV9vS293KeF3Q" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW 1B:12, #2B:17", - "foeFactor": 9, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 189, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Einhorn", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346679, - "modifiedTime": 1740227862881, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!SQv63FQBjA5jW5xv" -} diff --git a/packs/creatures/Erdelementar_III_mOQ21HFNisTfu7ve.json b/packs/creatures/Erdelementar_III_mOQ21HFNisTfu7ve.json deleted file mode 100644 index ebc3a4ab..00000000 --- a/packs/creatures/Erdelementar_III_mOQ21HFNisTfu7ve.json +++ /dev/null @@ -1,293 +0,0 @@ -{ - "_id": "mOQ21HFNisTfu7ve", - "name": "Erdelementar III", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "VHt6K5ArvzyfTEje", - "name": "Steinpranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!mOQ21HFNisTfu7ve.VHt6K5ArvzyfTEje" - }, - { - "_id": "fIoBfLmNCxGfGzEX", - "name": "Steinwesen", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 4, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!mOQ21HFNisTfu7ve.fIoBfLmNCxGfGzEX" - }, - { - "_id": "23wk4FP7dNTkLgB5", - "name": "Anfällig (Luft)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ImVvi7XqDvf6D2vY" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Blitz-, Sturm- und Windangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ImVvi7XqDvf6D2vY", - "duplicateSource": null - }, - "_key": "!actors.items!mOQ21HFNisTfu7ve.23wk4FP7dNTkLgB5" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 39, - "value": 78 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 23, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 124, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erdelementar III", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346894, - "modifiedTime": 1740227862904, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!mOQ21HFNisTfu7ve" -} diff --git a/packs/creatures/Erdelementar_II_S8DNL5XpmNRSNJhD.json b/packs/creatures/Erdelementar_II_S8DNL5XpmNRSNJhD.json deleted file mode 100644 index dfd9560f..00000000 --- a/packs/creatures/Erdelementar_II_S8DNL5XpmNRSNJhD.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "S8DNL5XpmNRSNJhD", - "name": "Erdelementar II", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 32 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 15, - "creatureType": "magicalEntity", - "sizeCategory": "normal", - "experiencePoints": 70, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erdelementar II", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346676, - "modifiedTime": 1740227862880, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!S8DNL5XpmNRSNJhD" -} diff --git a/packs/creatures/Erdelementar_I_1PYYg60DHC6RA3oO.json b/packs/creatures/Erdelementar_I_1PYYg60DHC6RA3oO.json deleted file mode 100644 index aabdad52..00000000 --- a/packs/creatures/Erdelementar_I_1PYYg60DHC6RA3oO.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "1PYYg60DHC6RA3oO", - "name": "Erdelementar I", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -13, - "value": 13 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 8, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 44, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erdelementar I", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346142, - "modifiedTime": 1740227862839, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!1PYYg60DHC6RA3oO" -} diff --git a/packs/creatures/Erwachsener_Drache__Blau__e1oy4levSO4VOQx8.json b/packs/creatures/Erwachsener_Drache__Blau__e1oy4levSO4VOQx8.json deleted file mode 100644 index e1af749b..00000000 --- a/packs/creatures/Erwachsener_Drache__Blau__e1oy4levSO4VOQx8.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "_id": "e1oy4levSO4VOQx8", - "name": "Erwachsener Drache (Blau)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-blue.png", - "items": [ - { - "_id": "pX6BSfPqftBLxuhf", - "name": "Angst (3)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.blDuh7uVVhaNSUVU" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -3 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 30 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.blDuh7uVVhaNSUVU", - "duplicateSource": null - }, - "_key": "!actors.items!e1oy4levSO4VOQx8.pX6BSfPqftBLxuhf" - }, - { - "_id": "6oHGA6nCXRiuAY2O", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!e1oy4levSO4VOQx8.6oHGA6nCXRiuAY2O" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erwachsener Drache", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-blue.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346843, - "modifiedTime": 1740227862898, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!e1oy4levSO4VOQx8" -} diff --git a/packs/creatures/Erwachsener_Drache__Bronze__Ko3jVM757Kr89IQr.json b/packs/creatures/Erwachsener_Drache__Bronze__Ko3jVM757Kr89IQr.json deleted file mode 100644 index 18100cc8..00000000 --- a/packs/creatures/Erwachsener_Drache__Bronze__Ko3jVM757Kr89IQr.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "Ko3jVM757Kr89IQr", - "name": "Erwachsener Drache (Bronze)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erwachsener Drache", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346542, - "modifiedTime": 1740227862868, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!Ko3jVM757Kr89IQr" -} diff --git a/packs/creatures/Erwachsener_Drache__Gelb__bEKen2GJBc6d0nix.json b/packs/creatures/Erwachsener_Drache__Gelb__bEKen2GJBc6d0nix.json deleted file mode 100644 index e0112fc6..00000000 --- a/packs/creatures/Erwachsener_Drache__Gelb__bEKen2GJBc6d0nix.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "bEKen2GJBc6d0nix", - "name": "Erwachsener Drache (Gelb)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-yellow.png", - "items": [ - { - "_id": "XdTwK8lRxVvGfKja", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!bEKen2GJBc6d0nix.XdTwK8lRxVvGfKja" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erwachsener Drache", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-yellow.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346793, - "modifiedTime": 1740227862891, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!bEKen2GJBc6d0nix" -} diff --git a/packs/creatures/Erwachsener_Drache__Gold__6Ezz8k1SB64HQ9o5.json b/packs/creatures/Erwachsener_Drache__Gold__6Ezz8k1SB64HQ9o5.json deleted file mode 100644 index 10dbf9cb..00000000 --- a/packs/creatures/Erwachsener_Drache__Gold__6Ezz8k1SB64HQ9o5.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "6Ezz8k1SB64HQ9o5", - "name": "Erwachsener Drache (Gold)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-gold.png", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erwachsener Drache", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-gold.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346215, - "modifiedTime": 1740227862843, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!6Ezz8k1SB64HQ9o5" -} diff --git a/packs/creatures/Erwachsener_Drache__Gr_n__FYpSMLagk6Qs6MWS.json b/packs/creatures/Erwachsener_Drache__Gr_n__FYpSMLagk6Qs6MWS.json deleted file mode 100644 index 777b71b2..00000000 --- a/packs/creatures/Erwachsener_Drache__Gr_n__FYpSMLagk6Qs6MWS.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "FYpSMLagk6Qs6MWS", - "name": "Erwachsener Drache (Grün)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-green.png", - "items": [ - { - "_id": "3bhEx0YT3KTgl19E", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!FYpSMLagk6Qs6MWS.3bhEx0YT3KTgl19E" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erwachsener Drache", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-green.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346356, - "modifiedTime": 1740227862857, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!FYpSMLagk6Qs6MWS" -} diff --git a/packs/creatures/Erwachsener_Drache__Rot__7B1AJKsZ9OBmj46R.json b/packs/creatures/Erwachsener_Drache__Rot__7B1AJKsZ9OBmj46R.json deleted file mode 100644 index 0d792062..00000000 --- a/packs/creatures/Erwachsener_Drache__Rot__7B1AJKsZ9OBmj46R.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "7B1AJKsZ9OBmj46R", - "name": "Erwachsener Drache (Rot)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-red.png", - "items": [ - { - "_id": "WG8AshF0brFilFXB", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!7B1AJKsZ9OBmj46R.WG8AshF0brFilFXB" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erwachsener Drache", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-red.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346243, - "modifiedTime": 1740227862845, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!7B1AJKsZ9OBmj46R" -} diff --git a/packs/creatures/Erwachsener_Drache__Schwarz__DoaYEZc7DgLJQ8yg.json b/packs/creatures/Erwachsener_Drache__Schwarz__DoaYEZc7DgLJQ8yg.json deleted file mode 100644 index fbeb37ba..00000000 --- a/packs/creatures/Erwachsener_Drache__Schwarz__DoaYEZc7DgLJQ8yg.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "DoaYEZc7DgLJQ8yg", - "name": "Erwachsener Drache (Schwarz)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-black.png", - "items": [ - { - "_id": "YH44ChGg43M1zfJV", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!DoaYEZc7DgLJQ8yg.YH44ChGg43M1zfJV" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erwachsener Drache", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-black.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346320, - "modifiedTime": 1740227862854, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!DoaYEZc7DgLJQ8yg" -} diff --git a/packs/creatures/Erwachsener_Drache__Silber__OsCyBwPcejWRSqLr.json b/packs/creatures/Erwachsener_Drache__Silber__OsCyBwPcejWRSqLr.json deleted file mode 100644 index a55b9d82..00000000 --- a/packs/creatures/Erwachsener_Drache__Silber__OsCyBwPcejWRSqLr.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "OsCyBwPcejWRSqLr", - "name": "Erwachsener Drache (Silber)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-silver.png", - "items": [ - { - "_id": "yjkoipelFXEzcy1x", - "name": "Quecksilber-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!OsCyBwPcejWRSqLr.yjkoipelFXEzcy1x" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Erwachsener Drache", - "displayName": 20, - "width": 4, - "height": 4, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-silver.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346608, - "modifiedTime": 1740227862871, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!OsCyBwPcejWRSqLr" -} diff --git a/packs/creatures/Erwachsener_Drache__Weiss__KlpfMH3L3pL82SSd.json b/packs/creatures/Erwachsener_Drache__Weiss__KlpfMH3L3pL82SSd.json deleted file mode 100644 index 733bcc64..00000000 --- a/packs/creatures/Erwachsener_Drache__Weiss__KlpfMH3L3pL82SSd.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "KlpfMH3L3pL82SSd", - "name": "Erwachsener Drache (Weiss)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-white.png", - "items": [ - { - "_id": "27WSvh2zN2Th7iAs", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!KlpfMH3L3pL82SSd.27WSvh2zN2Th7iAs" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 560, - "value": 600 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 11 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 8A:W20+10), BW #(A:W20+10)x10, #12M:20", - "foeFactor": 63, - "creatureType": "magicalEntity", - "sizeCategory": "colossal", - "experiencePoints": 907, - "description": "Farbe | \nOdem | \nWesen... | \n
Blau | \nBlitz- | \n...der Dunkelheit | \n
Bronze | \nSchallwellen- | \n...des Lichts | \n
Gelb | \nSandsturm- | \n...der Dunkelheit | \n
Gold | \nLicht- | \n...des Lichts | \n
Grün | \nGiftgas- | \n...der Dunkelheit | \n
Rot | \nFeuer- | \n...der Dunkelheit | \n
Schwarz | \nSäure- | \n...der Dunkelheit | \n
Silber | \nQuecksilber- | \n...des Lichts | \n
Weiss | \nFrost- | \n...der Dunkelheit | \n
Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!Z5eEkZjZ525N90ai.3L2HJX2p7uIpxTjJ" - }, - { - "_id": "gzsgGDcT6pGXHxIZ", - "name": "Federkleid", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!Z5eEkZjZ525N90ai.gzsgGDcT6pGXHxIZ" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 27, - "value": 54 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:14)", - "foeFactor": 11, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 115, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Eulerich", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/owldritch*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346738, - "modifiedTime": 1740227862887, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!Z5eEkZjZ525N90ai" -} diff --git a/packs/creatures/Feuerelementar_III_mPcmJ9nHpy1AbKVr.json b/packs/creatures/Feuerelementar_III_mPcmJ9nHpy1AbKVr.json deleted file mode 100644 index e9421bd4..00000000 --- a/packs/creatures/Feuerelementar_III_mPcmJ9nHpy1AbKVr.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "mPcmJ9nHpy1AbKVr", - "name": "Feuerelementar III", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 35, - "value": 70 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 24, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 145, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Feuerelementar III", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346897, - "modifiedTime": 1740227862905, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!mPcmJ9nHpy1AbKVr" -} diff --git a/packs/creatures/Feuerelementar_II_huPL6cx3RadJNhL0.json b/packs/creatures/Feuerelementar_II_huPL6cx3RadJNhL0.json deleted file mode 100644 index 3d273fce..00000000 --- a/packs/creatures/Feuerelementar_II_huPL6cx3RadJNhL0.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "huPL6cx3RadJNhL0", - "name": "Feuerelementar II", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 29 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": -2 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 15, - "creatureType": "magicalEntity", - "sizeCategory": "normal", - "experiencePoints": 95, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Feuerelementar II", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346851, - "modifiedTime": 1740227862899, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!huPL6cx3RadJNhL0" -} diff --git a/packs/creatures/Feuerelementar_I_tYcKw69Feoy3B6hG.json b/packs/creatures/Feuerelementar_I_tYcKw69Feoy3B6hG.json deleted file mode 100644 index 5de33753..00000000 --- a/packs/creatures/Feuerelementar_I_tYcKw69Feoy3B6hG.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "_id": "tYcKw69Feoy3B6hG", - "name": "Feuerelementar I", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "JI4hW2uyULt2cKs2", - "name": "Flammenhieb", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!tYcKw69Feoy3B6hG.JI4hW2uyULt2cKs2" - }, - { - "_id": "eofu8kICYeEpxUT1", - "name": "Keine feste Gestalt", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 8, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!tYcKw69Feoy3B6hG.eofu8kICYeEpxUT1" - }, - { - "_id": "c95cnrJtMG20InKV", - "name": "Anfällig (Wasser)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.E5WqX3Em2HOAkP2e" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Eis-, Frost- und Wasserangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.E5WqX3Em2HOAkP2e", - "duplicateSource": null - }, - "_key": "!actors.items!tYcKw69Feoy3B6hG.c95cnrJtMG20InKV" - }, - { - "_id": "xtwmRcp2CEGdK5C6", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!tYcKw69Feoy3B6hG.xtwmRcp2CEGdK5C6" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -12, - "value": 12 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 9, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 70, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Feuerelementar I", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347078, - "modifiedTime": 1740227862916, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!tYcKw69Feoy3B6hG" -} diff --git a/packs/creatures/Fliegendes_Schwert_ABiPZtu7q8KhWzXL.json b/packs/creatures/Fliegendes_Schwert_ABiPZtu7q8KhWzXL.json deleted file mode 100644 index 957b0533..00000000 --- a/packs/creatures/Fliegendes_Schwert_ABiPZtu7q8KhWzXL.json +++ /dev/null @@ -1,297 +0,0 @@ -{ - "_id": "ABiPZtu7q8KhWzXL", - "name": "Fliegendes Schwert", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "iVH3BR6wH35UTmmW", - "name": "Langschwert", - "type": "weapon", - "sort": 100000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.htmQWmMCQN620KrE" - } - }, - "img": "icons/weapons/swords/sword-guard-blue.webp", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.htmQWmMCQN620KrE", - "duplicateSource": null - }, - "_key": "!actors.items!ABiPZtu7q8KhWzXL.iVH3BR6wH35UTmmW" - }, - { - "_id": "r0mQXKDTdvRjlSze", - "name": "Metallwesen", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 5, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!ABiPZtu7q8KhWzXL.r0mQXKDTdvRjlSze" - }, - { - "_id": "XfgWdbwMTVhcS3A9", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!ABiPZtu7q8KhWzXL.XfgWdbwMTVhcS3A9" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -12, - "value": 12 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 8, - "creatureType": "construct", - "sizeCategory": "small", - "experiencePoints": 57, - "description": "Herstellung: 1513 GM + Waffenschmied
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Fliegendes Schwert", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346283, - "modifiedTime": 1740227862850, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!ABiPZtu7q8KhWzXL" -} diff --git a/packs/creatures/Gargyl_GnW2ELzTtLoJmUQ1.json b/packs/creatures/Gargyl_GnW2ELzTtLoJmUQ1.json deleted file mode 100644 index 4d066451..00000000 --- a/packs/creatures/Gargyl_GnW2ELzTtLoJmUQ1.json +++ /dev/null @@ -1,485 +0,0 @@ -{ - "_id": "GnW2ELzTtLoJmUQ1", - "name": "Gargyl", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/gargoyle-gray.png", - "items": [ - { - "_id": "XGrSqryhxGUlUJkC", - "name": "Steinklaue", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.XGrSqryhxGUlUJkC" - }, - { - "_id": "e28wsq9gdMv8u94N", - "name": "Steinwesen", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 4, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.e28wsq9gdMv8u94N" - }, - { - "_id": "ur7rgX6JTOwscpm5", - "name": "Anfällig (Luft)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ImVvi7XqDvf6D2vY" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Blitz-, Sturm- und Windangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ImVvi7XqDvf6D2vY", - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.ur7rgX6JTOwscpm5" - }, - { - "_id": "XSowCGPLnuUUt0gb", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.XSowCGPLnuUUt0gb" - }, - { - "_id": "IEf4b9ukDhSecShW", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.IEf4b9ukDhSecShW" - }, - { - "_id": "7x3a6bQcUXDNNjfx", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.7x3a6bQcUXDNNjfx" - }, - { - "_id": "ILpCHZ6o5GV4NakU", - "name": "Kletterläufer", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.Kbb8qlLeVahzxy5N" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/climber.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann mit normaler Laufen- Geschwindigkeit an Wänden und Decken aktionsfrei klettern.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.Kbb8qlLeVahzxy5N", - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.ILpCHZ6o5GV4NakU" - }, - { - "_id": "iZL3YxmtOHvZvYgW", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.iZL3YxmtOHvZvYgW" - }, - { - "_id": "FydhkYVuUuHNXzxS", - "name": "Sturzangriff", - "type": "specialCreatureAbility", - "sort": 900000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/dive-attack.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird fliegend mindestens eine Distanz in Höhe von Laufen x 2 „rennend“ geflogen, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen, während der Bewegung, also nicht nur davor oder danach.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt", - "duplicateSource": null - }, - "_key": "!actors.items!GnW2ELzTtLoJmUQ1.FydhkYVuUuHNXzxS" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -9, - "value": 10 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:8)", - "foeFactor": 6, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 91, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Gargyl", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/gargoyle*.png", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346440, - "modifiedTime": 1740227862863, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!GnW2ELzTtLoJmUQ1" -} diff --git a/packs/creatures/Geist_cE5kI3uqXWQrCaI5.json b/packs/creatures/Geist_cE5kI3uqXWQrCaI5.json deleted file mode 100644 index 2e373291..00000000 --- a/packs/creatures/Geist_cE5kI3uqXWQrCaI5.json +++ /dev/null @@ -1,592 +0,0 @@ -{ - "_id": "cE5kI3uqXWQrCaI5", - "name": "Geist", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/ghost-1.png", - "items": [ - { - "_id": "EGknWGHQszJHJHnV", - "name": "Geisterklaue", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.EGknWGHQszJHJHnV" - }, - { - "_id": "FR4dQPwgDCH9Ruox", - "name": "Körperlos", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 8, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.FR4dQPwgDCH9Ruox" - }, - { - "_id": "U95WXWQaKfIPiJZK", - "name": "Alterung (1 Jahr pro Schadenspunkt)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.mVs6A48mWnfV9hcL" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/aging.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Treffer altert das Ziel pro erlittenen Schadenspunkt um 1 Jahr.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.mVs6A48mWnfV9hcL", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.U95WXWQaKfIPiJZK" - }, - { - "_id": "QkZT7930qdhuLFxw", - "name": "Angst (2)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.3LGUHTPC3tbVC13X" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -2 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 20 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.3LGUHTPC3tbVC13X", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.QkZT7930qdhuLFxw" - }, - { - "_id": "I31y8QW6HoMJn5Ar", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.I31y8QW6HoMJn5Ar" - }, - { - "_id": "2VOjRedLceEPleW7", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.2VOjRedLceEPleW7" - }, - { - "_id": "2NixNLo8G3DqU3pt", - "name": "Nur durch Magie verletzbar", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.FCxjdPJ1L8EJd0IF" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/only-vulnerable-to-magic.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur Angriffe mit magischen Waffen oder durch Zauber richten Schaden an. Ausgenommen sind eventuelle Anfälligkeiten, durch die ebenfalls Schaden erlitten wird.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.FCxjdPJ1L8EJd0IF", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.2NixNLo8G3DqU3pt" - }, - { - "_id": "DNSCPQ1kOSiiyvOK", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 900000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.DNSCPQ1kOSiiyvOK" - }, - { - "_id": "jP3c9iA0GT4gwt3c", - "name": "Wesen des Lichts (Settingoption)", - "type": "specialCreatureAbility", - "sort": 1000000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.KDDlwN9as9B4ljeA" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-light.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen des Lichts. Angewendete Regeln für Wesen des Lichts gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.KDDlwN9as9B4ljeA", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.jP3c9iA0GT4gwt3c" - }, - { - "_id": "02uWHUcM8MBPKqb6", - "name": "Totenkraft", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/power-of-the-dead.png", - "effects": [], - "folder": null, - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ZkgZiFI5xy8aevG8" - } - }, - "system": { - "description": "Erhält GEI+AU als Bonus auf Stärke und Härte.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ZkgZiFI5xy8aevG8", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.02uWHUcM8MBPKqb6" - }, - { - "_id": "YZgaOumzBst1OTtb", - "name": "Terror", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/terror.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.SgDFje4OTxqPEzoA" - } - }, - "system": { - "description": "Bei Erfolg fliehen betroffene Ziele – maximal eine Anzahl gleich der Stufe des Zauberwirkers – so schnell wie möglich in panischer Angst und können erst nach Ablauf der Zauberdauer wieder umkehren.
Der Effekt endet bei jedem Fliehenden, der Schaden erleidet.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+VE)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 5", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "minutes" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 5, - "wizard": 9, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.SgDFje4OTxqPEzoA", - "duplicateSource": null - }, - "_key": "!actors.items!cE5kI3uqXWQrCaI5.YZgaOumzBst1OTtb" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 1, - "mod": 0 - }, - "mobility": { - "base": 11, - "mod": 0 - }, - "mind": { - "base": 10, - "mod": 0 - } - }, - "traits": { - "strength": { - "base": 0, - "mod": 0 - }, - "constitution": { - "base": 0, - "mod": 0 - }, - "agility": { - "base": 0, - "mod": 0 - }, - "dexterity": { - "base": 2, - "mod": 0 - }, - "intellect": { - "base": 3, - "mod": 0 - }, - "aura": { - "base": 6, - "mod": 0 - } - }, - "combatValues": { - "hitPoints": { - "mod": 0, - "value": 27 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 8 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 17, - "creatureType": "undead", - "sizeCategory": "normal", - "experiencePoints": 245, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Geist", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/ghost*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346804, - "modifiedTime": 1740227862892, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!cE5kI3uqXWQrCaI5" -} diff --git a/packs/creatures/Goblin_vXmTcBUKZkB2UBD7.json b/packs/creatures/Goblin_vXmTcBUKZkB2UBD7.json deleted file mode 100644 index f96667c2..00000000 --- a/packs/creatures/Goblin_vXmTcBUKZkB2UBD7.json +++ /dev/null @@ -1,360 +0,0 @@ -{ - "_id": "vXmTcBUKZkB2UBD7", - "name": "Goblin", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/goblin-knife.png", - "items": [ - { - "_id": "joNh3JSsqfqXk4lU", - "name": "Ast", - "type": "weapon", - "sort": 100000, - "flags": {}, - "effects": [], - "img": "icons/svg/item-bag.svg", - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 0, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!vXmTcBUKZkB2UBD7.joNh3JSsqfqXk4lU" - }, - { - "_id": "ftCrAdxpJlnc85aU", - "name": "Messer", - "type": "weapon", - "sort": 200000, - "flags": {}, - "effects": [], - "img": "icons/svg/item-bag.svg", - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 0, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!vXmTcBUKZkB2UBD7.ftCrAdxpJlnc85aU" - }, - { - "_id": "G6OoqVDTk9jwOU7r", - "name": "Fellflicken", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!vXmTcBUKZkB2UBD7.G6OoqVDTk9jwOU7r" - }, - { - "_id": "uHVUAMh8QgcoNDno", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!vXmTcBUKZkB2UBD7.uHVUAMh8QgcoNDno" - }, - { - "_id": "yW9EtSEtM40owDQt", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!vXmTcBUKZkB2UBD7.yW9EtSEtM40owDQt" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -8, - "value": 8 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW 1B:10", - "foeFactor": 1, - "creatureType": "humanoid", - "sizeCategory": "small", - "experiencePoints": 42, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Goblin", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/goblin*.png", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347151, - "modifiedTime": 1740227862919, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!vXmTcBUKZkB2UBD7" -} diff --git a/packs/creatures/Golem__Eisen__dnX0uQXQCEnGs7dM.json b/packs/creatures/Golem__Eisen__dnX0uQXQCEnGs7dM.json deleted file mode 100644 index 2f088da4..00000000 --- a/packs/creatures/Golem__Eisen__dnX0uQXQCEnGs7dM.json +++ /dev/null @@ -1,293 +0,0 @@ -{ - "_id": "dnX0uQXQCEnGs7dM", - "name": "Golem, Eisen-", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "KzEfCqb54s8Ju7x1", - "name": "Eisenpranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 6, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!dnX0uQXQCEnGs7dM.KzEfCqb54s8Ju7x1" - }, - { - "_id": "HjZd5t1xvRNoHZdX", - "name": "Metallwesen", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 5, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!dnX0uQXQCEnGs7dM.HjZd5t1xvRNoHZdX" - }, - { - "_id": "clWF2wt2WK7eWuxW", - "name": "Zerstampfen", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.02QMKm8MHzz8yAxL" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/crush.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einen Angriff pro Kampfrunde mit -6 ausführen, um das Ziel (sofern 1+ Größenkategorie kleiner) zu zerstampfen. Pro Größenunterschied wird der -6 Malus um 2 gemindert. Bei einem erfolgreichen Angriff wird nicht abwehrbarer Schaden verursacht.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.02QMKm8MHzz8yAxL", - "duplicateSource": null - }, - "_key": "!actors.items!dnX0uQXQCEnGs7dM.clWF2wt2WK7eWuxW" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 36, - "value": 72 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 27, - "creatureType": "construct", - "sizeCategory": "large", - "experiencePoints": 173, - "description": "Herstellung: 3750 GM + Rüstungsschmied
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Golem, Eisen-", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346836, - "modifiedTime": 1740227862897, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!dnX0uQXQCEnGs7dM" -} diff --git a/packs/creatures/Golem__Knochen__HSgR2FXUmsT2zfIc.json b/packs/creatures/Golem__Knochen__HSgR2FXUmsT2zfIc.json deleted file mode 100644 index 133141f1..00000000 --- a/packs/creatures/Golem__Knochen__HSgR2FXUmsT2zfIc.json +++ /dev/null @@ -1,290 +0,0 @@ -{ - "_id": "HSgR2FXUmsT2zfIc", - "name": "Golem, Knochen-", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "KzEfCqb54s8Ju7x1", - "name": "Knochenpranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!HSgR2FXUmsT2zfIc.KzEfCqb54s8Ju7x1" - }, - { - "_id": "43U10Znpq4coew6C", - "name": "Mehrere Angriffe (+3)", - "type": "specialCreatureAbility", - "sort": 550000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.LM5xia0xVIlhQsLG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann mit seinen insgesamt vier Armen 3 zusätzliche Angriffe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.LM5xia0xVIlhQsLG", - "duplicateSource": null - }, - "_key": "!actors.items!HSgR2FXUmsT2zfIc.43U10Znpq4coew6C" - }, - { - "_id": "Lu7kcH5ekEpY8YDU", - "name": "Mehrere Angriffglieder (+4)", - "type": "specialCreatureAbility", - "sort": 575000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R6jT1GYF13ZijtM0" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "system": { - "description": "Greift mit insgesamt 4 Armen an, die Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen/zertrümmern, wodurch die Angriffsanzahl sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R6jT1GYF13ZijtM0", - "duplicateSource": null - }, - "_key": "!actors.items!HSgR2FXUmsT2zfIc.Lu7kcH5ekEpY8YDU" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 20, - "value": 40 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 11, - "creatureType": "construct", - "sizeCategory": "large", - "experiencePoints": 148, - "description": "Herstellung: 2613 GM + Schreinern
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Golem, Knochen-", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346447, - "modifiedTime": 1740227862864, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!HSgR2FXUmsT2zfIc" -} diff --git a/packs/creatures/Golem__Kristall__sCBrVIDh2umWr63g.json b/packs/creatures/Golem__Kristall__sCBrVIDh2umWr63g.json deleted file mode 100644 index 1848719d..00000000 --- a/packs/creatures/Golem__Kristall__sCBrVIDh2umWr63g.json +++ /dev/null @@ -1,336 +0,0 @@ -{ - "_id": "sCBrVIDh2umWr63g", - "name": "Golem, Kristall-", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "KzEfCqb54s8Ju7x1", - "name": "Kirstallpranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!sCBrVIDh2umWr63g.KzEfCqb54s8Ju7x1" - }, - { - "_id": "mJi3ylBo7yPG5vMw", - "name": "Kristallwesen", - "type": "armor", - "sort": 800000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 3, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!sCBrVIDh2umWr63g.mJi3ylBo7yPG5vMw" - }, - { - "_id": "aa8a89EaVy8fjgLn", - "name": "Blitz", - "type": "spell", - "sort": 900000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.Senq5ub2Cx0agJgi" - } - }, - "img": "systems/ds4/assets/icons/game-icons/delapouite/bolt-spell-cast.svg", - "effects": [], - "folder": null, - "system": { - "description": "Der Zauberwirker schießt einen Blitz auf einen Feind. Gegner in Metallrüstung dürfen keine Abwehr gegen Blitze würfeln.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 3, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": true, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1r", - "minimumLevels": { - "healer": 10, - "wizard": 7, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.Senq5ub2Cx0agJgi", - "duplicateSource": null - }, - "_key": "!actors.items!sCBrVIDh2umWr63g.aa8a89EaVy8fjgLn" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 21, - "value": 42 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 6 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 10, - "creatureType": "construct", - "sizeCategory": "large", - "experiencePoints": 134, - "description": "Herstellung: 2513 GM + Steinmetz
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Golem, Kristall-", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347061, - "modifiedTime": 1740227862915, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!sCBrVIDh2umWr63g" -} diff --git a/packs/creatures/Golem__Lehm__yisaQaEFqduLmAJe.json b/packs/creatures/Golem__Lehm__yisaQaEFqduLmAJe.json deleted file mode 100644 index bf0b030e..00000000 --- a/packs/creatures/Golem__Lehm__yisaQaEFqduLmAJe.json +++ /dev/null @@ -1,354 +0,0 @@ -{ - "_id": "yisaQaEFqduLmAJe", - "name": "Golem, Lehm-", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "KzEfCqb54s8Ju7x1", - "name": "Lehmpranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!yisaQaEFqduLmAJe.KzEfCqb54s8Ju7x1" - }, - { - "_id": "lB0BTGi2Qp2IpbTp", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!yisaQaEFqduLmAJe.lB0BTGi2Qp2IpbTp" - }, - { - "_id": "QTbksMwiH60vH9lT", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!yisaQaEFqduLmAJe.QTbksMwiH60vH9lT" - }, - { - "_id": "7HsvjAKlmOXSvm6e", - "name": "Schleudern", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flinging.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg schleudert das Ziel (sofern 1+ Größenkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet für die Distanz Sturzschaden, gegen den es normal Abwehr würfelt, und liegt am Boden.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP", - "duplicateSource": null - }, - "_key": "!actors.items!yisaQaEFqduLmAJe.7HsvjAKlmOXSvm6e" - }, - { - "_id": "y8yRArJSJhHTdPXU", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!yisaQaEFqduLmAJe.y8yRArJSJhHTdPXU" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 23, - "value": 46 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 8, - "creatureType": "construct", - "sizeCategory": "large", - "experiencePoints": 110, - "description": "Herstellung: 2338 GM + Steinmetz
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Golem, Lehm-", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347232, - "modifiedTime": 1740227862924, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!yisaQaEFqduLmAJe" -} diff --git a/packs/creatures/Golem__Stein__cf8BOIAxMKvuxYYW.json b/packs/creatures/Golem__Stein__cf8BOIAxMKvuxYYW.json deleted file mode 100644 index 1699a95e..00000000 --- a/packs/creatures/Golem__Stein__cf8BOIAxMKvuxYYW.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "_id": "cf8BOIAxMKvuxYYW", - "name": "Golem, Stein-", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "KzEfCqb54s8Ju7x1", - "name": "Steinpranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!cf8BOIAxMKvuxYYW.KzEfCqb54s8Ju7x1" - }, - { - "_id": "HjZd5t1xvRNoHZdX", - "name": "Steinwesen", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 4, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!cf8BOIAxMKvuxYYW.HjZd5t1xvRNoHZdX" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 33, - "value": 66 - }, - "defense": { - "mod": 1 - }, - "initiative": { - "mod": 2 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 23, - "creatureType": "construct", - "sizeCategory": "large", - "experiencePoints": 160, - "description": "Herstellung: 3338 GM + Steinmetz
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Golem, Stein-", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346809, - "modifiedTime": 1740227862893, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!cf8BOIAxMKvuxYYW" -} diff --git a/packs/creatures/Hai_7kXHNCARsD0nZCqr.json b/packs/creatures/Hai_7kXHNCARsD0nZCqr.json deleted file mode 100644 index 0a055edc..00000000 --- a/packs/creatures/Hai_7kXHNCARsD0nZCqr.json +++ /dev/null @@ -1,322 +0,0 @@ -{ - "_id": "7kXHNCARsD0nZCqr", - "name": "Hai", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "LddIU7JRhnrzFzgr", - "name": "Großer Biss", - "type": "weapon", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!7kXHNCARsD0nZCqr.LddIU7JRhnrzFzgr" - }, - { - "_id": "4QWPtzkl6EncykP4", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!7kXHNCARsD0nZCqr.4QWPtzkl6EncykP4" - }, - { - "_id": "ncn9gc2yJOMhWGhb", - "name": "Schwimmen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swim.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN" - } - }, - "system": { - "description": "Kann, statt zu laufen, schwimmen. Wird die Aktion „Rennen“ schwimmend ausgeführt, erhöht sich die Geschwindigkeit ganz normal auf Laufen x 2.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN", - "duplicateSource": null - }, - "_key": "!actors.items!7kXHNCARsD0nZCqr.ncn9gc2yJOMhWGhb" - }, - { - "_id": "Q5TlvXVEyjer5YIG", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!7kXHNCARsD0nZCqr.Q5TlvXVEyjer5YIG" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 13, - "value": 39 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:12)", - "foeFactor": 9, - "creatureType": "animal", - "sizeCategory": "normal", - "experiencePoints": 106, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "name": "Hai", - "displayName": 20, - "actorLink": false, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "alpha": 1, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "flags": {}, - "randomImg": false, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346252, - "modifiedTime": 1740227862846, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!7kXHNCARsD0nZCqr" -} diff --git a/packs/creatures/Harpyie_s56U2LeRInrje3xh.json b/packs/creatures/Harpyie_s56U2LeRInrje3xh.json deleted file mode 100644 index b8982435..00000000 --- a/packs/creatures/Harpyie_s56U2LeRInrje3xh.json +++ /dev/null @@ -1,492 +0,0 @@ -{ - "_id": "s56U2LeRInrje3xh", - "name": "Harpyie", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/harpy-brown.png", - "items": [ - { - "_id": "lwAvXPfZk0RxGnDi", - "name": "Krallenklaue", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!s56U2LeRInrje3xh.lwAvXPfZk0RxGnDi" - }, - { - "_id": "62o19BMYU8dc4Qwa", - "name": "Federkleid", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!s56U2LeRInrje3xh.62o19BMYU8dc4Qwa" - }, - { - "_id": "nEwzPUfWSwdHPNIe", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!s56U2LeRInrje3xh.nEwzPUfWSwdHPNIe" - }, - { - "_id": "mgxKRHjfYd8eRdl4", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!s56U2LeRInrje3xh.mgxKRHjfYd8eRdl4" - }, - { - "_id": "iJ5vdPZt9tIyY3g4", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!s56U2LeRInrje3xh.iJ5vdPZt9tIyY3g4" - }, - { - "_id": "6L8whKMrzwGWDTCg", - "name": "Sturzangriff", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/dive-attack.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird fliegend mindestens eine Distanz in Höhe von Laufen x 2 „rennend“ geflogen, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen, während der Bewegung, also nicht nur davor oder danach.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt", - "duplicateSource": null - }, - "_key": "!actors.items!s56U2LeRInrje3xh.6L8whKMrzwGWDTCg" - }, - { - "_id": "GZfpSw5mnT7CLpYH", - "name": "Lockruf", - "type": "spell", - "sort": 800000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "Bei Erfolg wird das Ziel dem Zauberwirker hörig und führt bedingungslos jeden seiner Befehle aus (außer Selbstmord oder -verstümmelung). Es würde sogar seine eigenen Kameraden angreifen.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE / 2", - "unit": "rounds" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!s56U2LeRInrje3xh.GZfpSw5mnT7CLpYH" - }, - { - "_id": "VXyznv68DT2Guc0A", - "name": "Bezaubern", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charm.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.HMCFkxVzU2b3KkSA" - } - }, - "system": { - "description": "Kann Gegner mit einem „Lockruf“ bezaubern. Dieser Zauber funktioniert wie der Zauberspruch @Compendium[ds4.spells.wZYElRaDmhqgzUvQ]{Gehorche}. Abklingzeit des Lockrufs: 10 Kampfrunden
", - "experiencePoints": 25 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.HMCFkxVzU2b3KkSA", - "duplicateSource": null - }, - "_key": "!actors.items!s56U2LeRInrje3xh.VXyznv68DT2Guc0A" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 20 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:8)", - "foeFactor": 10, - "creatureType": "magicalEntity", - "sizeCategory": "normal", - "experiencePoints": 128, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Harpyie", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/harpy*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347013, - "modifiedTime": 1740227862913, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!s56U2LeRInrje3xh" -} diff --git a/packs/creatures/Hobgoblin_C4xijAwQdhRHz0Cs.json b/packs/creatures/Hobgoblin_C4xijAwQdhRHz0Cs.json deleted file mode 100644 index 8ee3f983..00000000 --- a/packs/creatures/Hobgoblin_C4xijAwQdhRHz0Cs.json +++ /dev/null @@ -1,580 +0,0 @@ -{ - "_id": "C4xijAwQdhRHz0Cs", - "name": "Hobgoblin", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/hobgoblin-sword-purple.png", - "items": [ - { - "_id": "wTcga48GOVD8cQV3", - "name": "Kettenpanzer", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-grey.webp", - "effects": [ - { - "_id": "EkJB0kpYFHRMYSgl", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "-0.5", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -0,5", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!actors.items.effects!C4xijAwQdhRHz0Cs.wTcga48GOVD8cQV3.EkJB0kpYFHRMYSgl" - } - ], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.09Hp2c2jgoXx7cV0" - } - }, - "system": { - "description": "Laufen -0,5
", - "quantity": 1, - "price": 10, - "availability": "village", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.09Hp2c2jgoXx7cV0", - "duplicateSource": null - }, - "_key": "!actors.items!C4xijAwQdhRHz0Cs.wTcga48GOVD8cQV3" - }, - { - "_id": "whLRBkMseej6C3IG", - "name": "Metallhelm", - "type": "armor", - "img": "icons/equipment/head/helm-barbute-reinforced.webp", - "effects": [ - { - "_id": "wlQWjU1kXovR5G1J", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "-1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!actors.items.effects!C4xijAwQdhRHz0Cs.whLRBkMseej6C3IG.wlQWjU1kXovR5G1J" - } - ], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.fKhTsMO4YXDYY8GX" - } - }, - "system": { - "description": "Initiative -1
", - "quantity": 1, - "price": 6, - "availability": "hamlet", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "helmet" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.fKhTsMO4YXDYY8GX", - "duplicateSource": null - }, - "_key": "!actors.items!C4xijAwQdhRHz0Cs.whLRBkMseej6C3IG" - }, - { - "_id": "n3SYaxRnVV0nTKtq", - "name": "Holzschild", - "type": "shield", - "img": "icons/equipment/shield/round-wooden-boss-steel-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.J7d2zx4kqKEdMR1j" - } - }, - "system": { - "description": "Zerbricht bei einem Abwehr-Patzer
", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-", - "equipped": true, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.J7d2zx4kqKEdMR1j", - "duplicateSource": null - }, - "_key": "!actors.items!C4xijAwQdhRHz0Cs.n3SYaxRnVV0nTKtq" - }, - { - "_id": "QXzGnyknBZaJqCIc", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!C4xijAwQdhRHz0Cs.QXzGnyknBZaJqCIc" - }, - { - "_id": "xAd7jo7Ni2KSl16I", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!C4xijAwQdhRHz0Cs.xAd7jo7Ni2KSl16I" - }, - { - "_id": "MSuVIzM2MRDSyujQ", - "name": "Langschwert", - "type": "weapon", - "img": "icons/weapons/swords/sword-guard-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.htmQWmMCQN620KrE" - } - }, - "system": { - "description": "", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.htmQWmMCQN620KrE", - "duplicateSource": null - }, - "_key": "!actors.items!C4xijAwQdhRHz0Cs.MSuVIzM2MRDSyujQ" - }, - { - "_id": "lXtH1PL4nnpzMGkI", - "name": "Kurzbogen", - "type": "weapon", - "img": "icons/weapons/bows/shortbow-leather.webp", - "effects": [ - { - "_id": "zgiIGlRMVCgAzrn7", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!actors.items.effects!C4xijAwQdhRHz0Cs.lXtH1PL4nnpzMGkI.zgiIGlRMVCgAzrn7" - } - ], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.QsnvAep80sSVJToD" - } - }, - "system": { - "description": "Zweihändig, Initiative +1
", - "quantity": 1, - "price": 6, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.QsnvAep80sSVJToD", - "duplicateSource": null - }, - "_key": "!actors.items!C4xijAwQdhRHz0Cs.lXtH1PL4nnpzMGkI" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 24 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW 1B:18", - "foeFactor": 4, - "creatureType": "humanoid", - "sizeCategory": "normal", - "experiencePoints": 71, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "name": "Hobgoblin", - "displayName": 20, - "actorLink": false, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "alpha": 1, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "flags": {}, - "randomImg": true, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/hobgoblin-*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346292, - "modifiedTime": 1740227862851, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!C4xijAwQdhRHz0Cs" -} diff --git a/packs/creatures/Hoher_D_mon_LtsbT2DHYKs9Catm.json b/packs/creatures/Hoher_D_mon_LtsbT2DHYKs9Catm.json deleted file mode 100644 index 5624094c..00000000 --- a/packs/creatures/Hoher_D_mon_LtsbT2DHYKs9Catm.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "LtsbT2DHYKs9Catm", - "name": "Hoher Dämon", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 20 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 4, - "creatureType": "magicalEntity", - "sizeCategory": "normal", - "experiencePoints": 104, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Hoher Dämon", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346576, - "modifiedTime": 1740227862870, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!LtsbT2DHYKs9Catm" -} diff --git a/packs/creatures/Hund_Qm2toXbf6EVmvRS1.json b/packs/creatures/Hund_Qm2toXbf6EVmvRS1.json deleted file mode 100644 index 8041f326..00000000 --- a/packs/creatures/Hund_Qm2toXbf6EVmvRS1.json +++ /dev/null @@ -1,293 +0,0 @@ -{ - "_id": "Qm2toXbf6EVmvRS1", - "name": "Hund", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dog-pitbull-2.png", - "items": [ - { - "_id": "j0NbwyhdJPipL7Rl", - "name": "Biss", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!Qm2toXbf6EVmvRS1.j0NbwyhdJPipL7Rl" - }, - { - "_id": "PlB4iu4DBqxypeR0", - "name": "Fell", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!Qm2toXbf6EVmvRS1.PlB4iu4DBqxypeR0" - }, - { - "_id": "lmc1Llwdx3k697VS", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!Qm2toXbf6EVmvRS1.lmc1Llwdx3k697VS" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -4, - "value": 11 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 1, - "creatureType": "animal", - "sizeCategory": "small", - "experiencePoints": 31, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Hund", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dog*.png", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346645, - "modifiedTime": 1740227862876, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!Qm2toXbf6EVmvRS1" -} diff --git a/packs/creatures/Hydra_GMUTgcbmahiwgXSj.json b/packs/creatures/Hydra_GMUTgcbmahiwgXSj.json deleted file mode 100644 index 66e2a18a..00000000 --- a/packs/creatures/Hydra_GMUTgcbmahiwgXSj.json +++ /dev/null @@ -1,453 +0,0 @@ -{ - "_id": "GMUTgcbmahiwgXSj", - "name": "Hydra", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/hydra-blue.png", - "items": [ - { - "_id": "TEjCLP10Mjf8XqCl", - "name": "Großer Biss", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!GMUTgcbmahiwgXSj.TEjCLP10Mjf8XqCl" - }, - { - "_id": "jcgmsC6XoKcSpu6a", - "name": "Schuppenpanzer", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!GMUTgcbmahiwgXSj.jcgmsC6XoKcSpu6a" - }, - { - "_id": "jtnlL78QKAyrNEey", - "name": "Mehrere Angriffe (+5)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YvkRgHyCkwhn3uzg" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann mit seinen insgesamt sechs Köpfen 5 zusätzliche Angriffe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YvkRgHyCkwhn3uzg", - "duplicateSource": null - }, - "_key": "!actors.items!GMUTgcbmahiwgXSj.jtnlL78QKAyrNEey" - }, - { - "_id": "dnGDZ0R98VlEskVv", - "name": "Mehrere Angriffglieder (+5)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.e6VuJIL8ocXQDQ2V" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "system": { - "description": "Greift mit insgesamt 6 Köpfen an, die Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen/zertrümmern, wodurch die Angriffsanzahl sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.e6VuJIL8ocXQDQ2V", - "duplicateSource": null - }, - "_key": "!actors.items!GMUTgcbmahiwgXSj.dnGDZ0R98VlEskVv" - }, - { - "_id": "KwCXBwhluHD0uHIW", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!GMUTgcbmahiwgXSj.KwCXBwhluHD0uHIW" - }, - { - "_id": "CIzNpB4GXHkdFsAI", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!GMUTgcbmahiwgXSj.CIzNpB4GXHkdFsAI" - }, - { - "_id": "HOykiW9ZmatUSUKm", - "name": "Regeneration", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.Mh6bLPD3N29ybeLq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/regeneration.png", - "effects": [], - "folder": null, - "system": { - "description": "Regeneriert jede Kampfrunde aktionsfrei LK in Höhe des Probenergebnisses der Regenerations-Probe (PW: KÖR). Durch Feuer oder Säure verlorene LK können nicht regeneriert werden.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.Mh6bLPD3N29ybeLq", - "duplicateSource": null - }, - "_key": "!actors.items!GMUTgcbmahiwgXSj.HOykiW9ZmatUSUKm" - }, - { - "_id": "YvT74RD5F3M4DMEx", - "name": "Schwimmen", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swim.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, schwimmen. Wird die Aktion „Rennen“ schwimmend ausgeführt, erhöht sich die Geschwindigkeit ganz normal auf Laufen x 2.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN", - "duplicateSource": null - }, - "_key": "!actors.items!GMUTgcbmahiwgXSj.YvT74RD5F3M4DMEx" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 60, - "value": 90 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 4 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:20)", - "foeFactor": 23, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 246, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Hydra", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/hydra*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346375, - "modifiedTime": 1740227862860, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!GMUTgcbmahiwgXSj" -} diff --git a/packs/creatures/Jungdrache__Blau__nDRdljcZzkonbU0s.json b/packs/creatures/Jungdrache__Blau__nDRdljcZzkonbU0s.json deleted file mode 100644 index 3cce7a06..00000000 --- a/packs/creatures/Jungdrache__Blau__nDRdljcZzkonbU0s.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "_id": "nDRdljcZzkonbU0s", - "name": "Jungdrache (Blau)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-blue.png", - "items": [ - { - "_id": "yjkoipelFXEzcy1x", - "name": "Blitz-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!nDRdljcZzkonbU0s.yjkoipelFXEzcy1x" - }, - { - "_id": "bH4dBG5AeJ442465", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!nDRdljcZzkonbU0s.bH4dBG5AeJ442465" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-blue.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346901, - "modifiedTime": 1740227862906, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!nDRdljcZzkonbU0s" -} diff --git a/packs/creatures/Jungdrache__Bronze__clsDFbLFEIbh6Mg4.json b/packs/creatures/Jungdrache__Bronze__clsDFbLFEIbh6Mg4.json deleted file mode 100644 index a4428cb2..00000000 --- a/packs/creatures/Jungdrache__Bronze__clsDFbLFEIbh6Mg4.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "clsDFbLFEIbh6Mg4", - "name": "Jungdrache (Bronze)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346812, - "modifiedTime": 1740227862894, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!clsDFbLFEIbh6Mg4" -} diff --git a/packs/creatures/Jungdrache__Gelb__apBf4qnMODBmEWHU.json b/packs/creatures/Jungdrache__Gelb__apBf4qnMODBmEWHU.json deleted file mode 100644 index 09237540..00000000 --- a/packs/creatures/Jungdrache__Gelb__apBf4qnMODBmEWHU.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "apBf4qnMODBmEWHU", - "name": "Jungdrache (Gelb)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-yellow.png", - "items": [ - { - "_id": "d4qTXCVuiStZW2tY", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!apBf4qnMODBmEWHU.d4qTXCVuiStZW2tY" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-yellow.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346771, - "modifiedTime": 1740227862889, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!apBf4qnMODBmEWHU" -} diff --git a/packs/creatures/Jungdrache__Gold__RWNocIHuXIWwUwJu.json b/packs/creatures/Jungdrache__Gold__RWNocIHuXIWwUwJu.json deleted file mode 100644 index f85b9bcc..00000000 --- a/packs/creatures/Jungdrache__Gold__RWNocIHuXIWwUwJu.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "RWNocIHuXIWwUwJu", - "name": "Jungdrache (Gold)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-gold.png", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-gold.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346651, - "modifiedTime": 1740227862878, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!RWNocIHuXIWwUwJu" -} diff --git a/packs/creatures/Jungdrache__Gr_n__vsIywRHMnJM7u4ts.json b/packs/creatures/Jungdrache__Gr_n__vsIywRHMnJM7u4ts.json deleted file mode 100644 index a4fb1ecf..00000000 --- a/packs/creatures/Jungdrache__Gr_n__vsIywRHMnJM7u4ts.json +++ /dev/null @@ -1,287 +0,0 @@ -{ - "_id": "vsIywRHMnJM7u4ts", - "name": "Jungdrache (Grün)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-green.png", - "items": [ - { - "_id": "yjkoipelFXEzcy1x", - "name": "Giftgas-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!vsIywRHMnJM7u4ts.yjkoipelFXEzcy1x" - }, - { - "_id": "tWwaC91MGIR4k3Uy", - "name": "Angst (2)", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.3LGUHTPC3tbVC13X" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -2 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 20 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.3LGUHTPC3tbVC13X", - "duplicateSource": null - }, - "_key": "!actors.items!vsIywRHMnJM7u4ts.tWwaC91MGIR4k3Uy" - }, - { - "_id": "CdZkMCsLB0EwUdqv", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!vsIywRHMnJM7u4ts.CdZkMCsLB0EwUdqv" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-green.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347174, - "modifiedTime": 1740227862920, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!vsIywRHMnJM7u4ts" -} diff --git a/packs/creatures/Jungdrache__Rot__htgryhd630WQgeD8.json b/packs/creatures/Jungdrache__Rot__htgryhd630WQgeD8.json deleted file mode 100644 index 6c4e31d7..00000000 --- a/packs/creatures/Jungdrache__Rot__htgryhd630WQgeD8.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "_id": "htgryhd630WQgeD8", - "name": "Jungdrache (Rot)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-red.png", - "items": [ - { - "_id": "yjkoipelFXEzcy1x", - "name": "Feuer-Odem", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!htgryhd630WQgeD8.yjkoipelFXEzcy1x" - }, - { - "_id": "HFksDdMTR1oh3gDo", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!htgryhd630WQgeD8.HFksDdMTR1oh3gDo" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-red.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346846, - "modifiedTime": 1740227862898, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!htgryhd630WQgeD8" -} diff --git a/packs/creatures/Jungdrache__Schwarz__A4zxgFGkMQpm67TR.json b/packs/creatures/Jungdrache__Schwarz__A4zxgFGkMQpm67TR.json deleted file mode 100644 index c02625f3..00000000 --- a/packs/creatures/Jungdrache__Schwarz__A4zxgFGkMQpm67TR.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "A4zxgFGkMQpm67TR", - "name": "Jungdrache (Schwarz)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-black.png", - "items": [ - { - "_id": "TVxn2FjSGirdC90w", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!A4zxgFGkMQpm67TR.TVxn2FjSGirdC90w" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-black.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346280, - "modifiedTime": 1740227862849, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!A4zxgFGkMQpm67TR" -} diff --git a/packs/creatures/Jungdrache__Silber__3iMmLEmB0NEpyFGd.json b/packs/creatures/Jungdrache__Silber__3iMmLEmB0NEpyFGd.json deleted file mode 100644 index b736f730..00000000 --- a/packs/creatures/Jungdrache__Silber__3iMmLEmB0NEpyFGd.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "3iMmLEmB0NEpyFGd", - "name": "Jungdrache (Silber)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-silver.png", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-silver.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346186, - "modifiedTime": 1740227862841, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!3iMmLEmB0NEpyFGd" -} diff --git a/packs/creatures/Jungdrache__Weiss__raKKehH8QctnDtMM.json b/packs/creatures/Jungdrache__Weiss__raKKehH8QctnDtMM.json deleted file mode 100644 index bdace5b5..00000000 --- a/packs/creatures/Jungdrache__Weiss__raKKehH8QctnDtMM.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "_id": "raKKehH8QctnDtMM", - "name": "Jungdrache (Weiss)", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/dragon-white.png", - "items": [ - { - "_id": "frBW7LCCpTlwh7hr", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 1150000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!raKKehH8QctnDtMM.frBW7LCCpTlwh7hr" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 195, - "value": 225 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 5.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 4A:W20+10), BW #(A:W20+10)x10, #8M:19", - "foeFactor": 36, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 481, - "description": null - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Jungdrache", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/dragon-white.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346999, - "modifiedTime": 1740227862912, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!raKKehH8QctnDtMM" -} diff --git a/packs/creatures/Kampfd_mon_LgtcLrKtCa496ih6.json b/packs/creatures/Kampfd_mon_LgtcLrKtCa496ih6.json deleted file mode 100644 index 0702e017..00000000 --- a/packs/creatures/Kampfd_mon_LgtcLrKtCa496ih6.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "LgtcLrKtCa496ih6", - "name": "Kampfdämon", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 23, - "value": 46 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 1 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 8, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 152, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Kampfdämon", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346560, - "modifiedTime": 1740227862869, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!LgtcLrKtCa496ih6" -} diff --git a/packs/creatures/Keiler_FxGhbznQbwd0jRUT.json b/packs/creatures/Keiler_FxGhbznQbwd0jRUT.json deleted file mode 100644 index 5988aed7..00000000 --- a/packs/creatures/Keiler_FxGhbznQbwd0jRUT.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "_id": "FxGhbznQbwd0jRUT", - "name": "Keiler", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/boar-brown-1.png", - "items": [ - { - "_id": "wQm8AMxYF0NKZhQE", - "name": "Hauer", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!FxGhbznQbwd0jRUT.wQm8AMxYF0NKZhQE" - }, - { - "_id": "DDaq3xgZrGuEl4Dc", - "name": "Dicke Borstenhaut", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!FxGhbznQbwd0jRUT.DDaq3xgZrGuEl4Dc" - }, - { - "_id": "yru5VWx93wWmOXZA", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!FxGhbznQbwd0jRUT.yru5VWx93wWmOXZA" - }, - { - "_id": "DyCGJ2kxHV5QYgWK", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!FxGhbznQbwd0jRUT.DyCGJ2kxHV5QYgWK" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 13, - "value": 38 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:10)", - "foeFactor": 6, - "creatureType": "animal", - "sizeCategory": "normal", - "experiencePoints": 79, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Keiler", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/boar*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346363, - "modifiedTime": 1740227862859, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!FxGhbznQbwd0jRUT" -} diff --git a/packs/creatures/Kobold_ojzkDbyYSlpHtGHq.json b/packs/creatures/Kobold_ojzkDbyYSlpHtGHq.json deleted file mode 100644 index 0549b907..00000000 --- a/packs/creatures/Kobold_ojzkDbyYSlpHtGHq.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "_id": "ojzkDbyYSlpHtGHq", - "name": "Kobold", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/kobold-green.png", - "items": [ - { - "_id": "hnuIJBq2btoSK88F", - "name": "Kleiner Knüppel", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!ojzkDbyYSlpHtGHq.hnuIJBq2btoSK88F" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -7, - "value": 7 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1B:8)", - "foeFactor": 1, - "creatureType": "humanoid", - "sizeCategory": "small", - "experiencePoints": 25, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Kobold", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/kobold*.png", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346953, - "modifiedTime": 1740227862909, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!ojzkDbyYSlpHtGHq" -} diff --git a/packs/creatures/Kriegsd_mon_JGpIh3oCK1Vx3NnZ.json b/packs/creatures/Kriegsd_mon_JGpIh3oCK1Vx3NnZ.json deleted file mode 100644 index 1f30f523..00000000 --- a/packs/creatures/Kriegsd_mon_JGpIh3oCK1Vx3NnZ.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "JGpIh3oCK1Vx3NnZ", - "name": "Kriegsdämon", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 128, - "value": 160 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 23, - "creatureType": "magicalEntity", - "sizeCategory": "huge", - "experiencePoints": 297, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Kriegsdämon", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346506, - "modifiedTime": 1740227862867, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!JGpIh3oCK1Vx3NnZ" -} diff --git a/packs/creatures/Kriegselefant_BIyY1wlxWtJ5FRQJ.json b/packs/creatures/Kriegselefant_BIyY1wlxWtJ5FRQJ.json deleted file mode 100644 index dae776a2..00000000 --- a/packs/creatures/Kriegselefant_BIyY1wlxWtJ5FRQJ.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "_id": "BIyY1wlxWtJ5FRQJ", - "name": "Kriegselefant", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "5qBHfTnJAXibKNWs", - "name": "Rammen", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!BIyY1wlxWtJ5FRQJ.5qBHfTnJAXibKNWs" - }, - { - "_id": "OehvVDNjDg4xbsW7", - "name": "Dickhäuter", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!BIyY1wlxWtJ5FRQJ.OehvVDNjDg4xbsW7" - }, - { - "_id": "QwtwJGcSVFimiHM0", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!BIyY1wlxWtJ5FRQJ.QwtwJGcSVFimiHM0" - }, - { - "_id": "iVORjCynScc6kVsS", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!BIyY1wlxWtJ5FRQJ.iVORjCynScc6kVsS" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 62, - "value": 93 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2.5 - }, - "meleeAttack": { - "mod": -1 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:20)", - "foeFactor": 16, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 142, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Kriegselefant", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346286, - "modifiedTime": 1740227862850, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!BIyY1wlxWtJ5FRQJ" -} diff --git a/packs/creatures/Lebende_R_stung_s7yuHMW75JDcFQYB.json b/packs/creatures/Lebende_R_stung_s7yuHMW75JDcFQYB.json deleted file mode 100644 index bf2a7641..00000000 --- a/packs/creatures/Lebende_R_stung_s7yuHMW75JDcFQYB.json +++ /dev/null @@ -1,329 +0,0 @@ -{ - "_id": "s7yuHMW75JDcFQYB", - "name": "Lebende Rüstung", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "c9cGRVHyd3IPSSbX", - "name": "Langschwert", - "type": "weapon", - "sort": 100000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.htmQWmMCQN620KrE" - } - }, - "img": "icons/weapons/swords/sword-guard-blue.webp", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.htmQWmMCQN620KrE", - "duplicateSource": null - }, - "_key": "!actors.items!s7yuHMW75JDcFQYB.c9cGRVHyd3IPSSbX" - }, - { - "_id": "5t0R0cwzApnRQpSR", - "name": "Metallwesen", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 5, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!s7yuHMW75JDcFQYB.5t0R0cwzApnRQpSR" - }, - { - "_id": "JxIUfRCSTQ3e5BFg", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!s7yuHMW75JDcFQYB.JxIUfRCSTQ3e5BFg" - }, - { - "_id": "SoGfBCWyVZsQGBLk", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!s7yuHMW75JDcFQYB.SoGfBCWyVZsQGBLk" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 24 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 8, - "creatureType": "construct", - "sizeCategory": "normal", - "experiencePoints": 72, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Lebende Rüstung", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347048, - "modifiedTime": 1740227862914, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!s7yuHMW75JDcFQYB" -} diff --git a/packs/creatures/Leichnam_oVKL6zJ2kYMmBuYx.json b/packs/creatures/Leichnam_oVKL6zJ2kYMmBuYx.json deleted file mode 100644 index 65534f57..00000000 --- a/packs/creatures/Leichnam_oVKL6zJ2kYMmBuYx.json +++ /dev/null @@ -1,2027 +0,0 @@ -{ - "_id": "oVKL6zJ2kYMmBuYx", - "name": "Leichnam", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/lich.png", - "items": [ - { - "_id": "J2eP8hBIWtgayfhH", - "name": "Angst (1)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.rUA7XVCeDkREYfi8" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.rUA7XVCeDkREYfi8", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.J2eP8hBIWtgayfhH" - }, - { - "_id": "sNIMYcSm0y83hby7", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.sNIMYcSm0y83hby7" - }, - { - "_id": "exyyjDtEIdHRcx4n", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.exyyjDtEIdHRcx4n" - }, - { - "_id": "L6i191M3m9QXN9aJ", - "name": "Totenkraft", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/power-of-the-dead.png", - "effects": [ - { - "_id": "xw1OyyTdDwkNe2jC", - "changes": [ - { - "key": "system.traits.strength.total", - "mode": 2, - "value": "@system.attributes.mind.total + @system.traits.aura.total", - "priority": null - }, - { - "key": "system.traits.constitution.total", - "mode": 2, - "value": "@system.attributes.mind.total + @system.traits.aura.total", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "GEI + AU als Bonus auf Stärke und Härte", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!actors.items.effects!oVKL6zJ2kYMmBuYx.L6i191M3m9QXN9aJ.xw1OyyTdDwkNe2jC" - } - ], - "folder": null, - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ZkgZiFI5xy8aevG8" - } - }, - "system": { - "description": "Erhält GEI+AU als Bonus auf Stärke und Härte.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ZkgZiFI5xy8aevG8", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.L6i191M3m9QXN9aJ" - }, - { - "_id": "Yv7u9FcT21lq7xW8", - "name": "Robe +3", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-purple.webp", - "effects": [ - { - "_id": "Qpy3XcHOokbU7ZaS", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.defense.total", - "value": "3", - "mode": 2, - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "origin": null, - "tint": "#ffffff", - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": null, - "type": "base", - "system": {}, - "sort": 0, - "_key": "!actors.items.effects!oVKL6zJ2kYMmBuYx.Yv7u9FcT21lq7xW8.Qpy3XcHOokbU7ZaS" - } - ], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.cFMcSg7PFIcQvf0B" - } - }, - "system": { - "description": "", - "quantity": 1, - "price": 3251, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.cFMcSg7PFIcQvf0B", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.Yv7u9FcT21lq7xW8" - }, - { - "_id": "quDuDAGeMVUvF3WD", - "name": "Arkanes Schwert", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sword-wound.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.VjvrapwDmBvGYmfj" - } - }, - "system": { - "description": "Ein Schwert aus hellem (oder je nach Belieben auch dunklem) Licht erscheint innerhalb eines Radius von VE in Metern um den Zauberwirker herum.
\nInnerhalb dieses Wirkungsbereiches kämpft es völlig selbstständig, hört jedoch auf gedankliche Kampfkommandos seines Beschwöreres wie „Greif den großen Troll an“ oder „Schütze mich“.
\nBewegt sich der Zauberwirker, wandert der Wirkungsbereich des Schwertes mit ihm mit, so dass die magische Klinge niemals mehr als VE in Metern von ihm getrennt sein kann.
\nDas Schwert löst sich in seine arkanen Bestandteile auf, sobald seine (nicht heilbaren) LK auf Null oder niedriger sinken bzw. die Zauberdauer verstrichen ist.
\nSämtliche Kampfwerte des Schwertes entsprechen der Stufe des Zauberwirkers +10.
\nDie einzige Ausnahme bildet der Laufen-Wert, der dem doppelten Laufen-Wert des Zauberwirkers entspricht.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE x 2", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.VjvrapwDmBvGYmfj", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.quDuDAGeMVUvF3WD" - }, - { - "_id": "NeFjvRQWZSKtxAMm", - "name": "Ebenentor", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/magic-portal.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.MKlGqhjQa3GZu4gq" - } - }, - "system": { - "description": "Öffnet ein Tor zu einer anderen Existenzebene, die der Zauberwirker namentlich nennen muss. Das Tor schließt sich, sobald VE/2 Wesen es durchschritten haben, oder die Spruchdauer abgelaufen ist.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -8, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "minutes" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": null, - "wizard": 18, - "sorcerer": 16 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.MKlGqhjQa3GZu4gq", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.NeFjvRQWZSKtxAMm" - }, - { - "_id": "1q93yorTXMMaRAcg", - "name": "Einschläfern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sleepy.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.CrZ8L7oaWvPjLou0" - } - }, - "system": { - "description": "Dieser Zauber schläfert eine maximale Anzahl von Zielen gleich der Stufe des Zauberwirkers ein. Es handelt sich dabei um einen natürlichen Schlaf, aus dem man durch Kampflärm u. ä. erwachen kann.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+VE)/2 des jeweiligen Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 2, - "wizard": 5, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.CrZ8L7oaWvPjLou0", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.1q93yorTXMMaRAcg" - }, - { - "_id": "29SYRu3tP8sSILyX", - "name": "Flammeninferno", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/fire-wave.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.7ybmodIkWDP1z1D6" - } - }, - "system": { - "description": "Eine kreisrunde Fläche mit einem Radius von VE in Metern geht in Flammen auf. Jeder in dem Inferno erhält pro Kampfrunde nicht abwehrbaren Schaden in Höhe des Probenergebnisses.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 5, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 15, - "sorcerer": 15 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.7ybmodIkWDP1z1D6", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.29SYRu3tP8sSILyX" - }, - { - "_id": "wRp2U7ZSNdZndBmq", - "name": "Frostschock", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/frozen-body.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.iH2NtsJtMfG0ZAU3" - } - }, - "system": { - "description": "Ein Eisstrahl schießt aus den Händen des Zauberwirkers. Gegen den Schaden dieses frostigen Zauber ist keine Abwehr zulässig.
\nZudem wird das Ziel magisch eingefroren, bis VE Kampfrunden verstrichen sind oder es Schaden erhält.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 3, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": true, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 12, - "sorcerer": 16 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.iH2NtsJtMfG0ZAU3", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.wRp2U7ZSNdZndBmq" - }, - { - "_id": "3ybAKe4uHnD5q5zD", - "name": "Gasgestalt", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/steam.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.tZJoj1PGrRGe9eMV" - } - }, - "system": { - "description": "Das Ziel – samt seiner getragenen Ausrüstung – wird gasförmig und kann durch jede noch so kleine Öffnung gleiten. Das Ziel kann jederzeit die Wirkung des Zaubers als freie Aktion beenden. In Gasform wird der Laufen-Wert vervierfacht, der Charakter kann seine Umgebung weiterhin wahrnehmen. In Gastgestalt ist es allerdings nicht möglich, zu zaubern, zu sprechen, anzugreifen oder in andere Wesen einzudringen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": true, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. x 5", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 15, - "sorcerer": 18 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.tZJoj1PGrRGe9eMV", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.3ybAKe4uHnD5q5zD" - }, - { - "_id": "tYncs86pwaeg5XAl", - "name": "Gehorche", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/convince.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.wZYElRaDmhqgzUvQ" - } - }, - "system": { - "description": "Bei Erfolg wird das Ziel dem Zauberwirker hörig und führt bedingungslos jeden seiner Befehle aus (außer Selbstmord oder -verstümmelung). Es würde sogar seine eigenen Kameraden angreifen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+VE)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE / 2", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 12, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.wZYElRaDmhqgzUvQ", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.tYncs86pwaeg5XAl" - }, - { - "_id": "MaTZSyGMQDIMXhLe", - "name": "Kontrollieren", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/cathelineau/fomorian.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.9gc1CF70165NXymH" - } - }, - "system": { - "description": "Bei Erfolg bringt der Zauberwirker eine maximale Anzahl untoter Ziele gleich seiner Stufe unter Kontrolle, selbst wenn diese einem anderen Zauberwirker unterstehen.
\nBei zu vielen Untoten entscheidet der Zufall, welche durch den Zauber betroffen sind. Alternativ kann auch ein einzelner Untoter als Ziel bestimmt werden.
\nKontrollierte Untote unterstehen dem Zauberwirker, führen bedingungslos seine Befehle aus und können nur auf Wunsch des Zauberwirkers wieder ihren Frieden finden, oder wenn dieser stirbt.
\nEin Zauberwirker kann nicht mehr Untote gleichzeitig kontrollieren, als seine eigene Stufe beträgt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Bis erlöst", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 8, - "sorcerer": 4 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.9gc1CF70165NXymH", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.MaTZSyGMQDIMXhLe" - }, - { - "_id": "bu4UNbRP2WGwKFLg", - "name": "Magisches Schloss", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/padlock.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.dzYAc9ti7ghhkyiX" - } - }, - "system": { - "description": "Dieser Zauber verschließt auf magische Weise eine Klappe, Truhe, Tür oder ähnliche Öffnung.
\nDas Probenergebnis stellt die Erschwernis dar, um dieses Schloss zu öffnen (ob nun mit einem Dietrich, roher Gewalt oder Magie), nur der Zauberwirker selbst kann es ohne Probleme öffnen.
\nDer Zauber kann auch auf ein mechanisches Schloss gesprochen werden, um dessen Schlosswert (SW) zu verstärken.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Bis Schloss geöffnet", - "unit": "custom" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": 3, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.dzYAc9ti7ghhkyiX", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.bu4UNbRP2WGwKFLg" - }, - { - "_id": "WFfjqz7dfZrxNdOn", - "name": "Netz", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/spider-web.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.73bT47FtQgPp9Snq" - } - }, - "system": { - "description": "Ein Netz aus klebriger Astralmasse mit einem Radius von VE/2 in Metern erscheint.
\nVom Netz getroffene Wesen, welche keine Abwehr dagegen würfeln dürfen, halbieren für die Dauer des Zaubers Initiative, Laufen und Schlagen.
\nDer Zauber wirkt nicht gegen Wesen, die 2+ Größenkategorien (DS4 S. 104) größer sind.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(AGI+ST)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "rounds" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 4, - "wizard": 9, - "sorcerer": 9 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.73bT47FtQgPp9Snq", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.WFfjqz7dfZrxNdOn" - }, - { - "_id": "h4Xf5AZuuDR1HwdD", - "name": "Schatten", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/shadow-follower.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.5mF59XCsZffF0cSp" - } - }, - "system": { - "description": "Dunkle Schatten umhüllen das Ziel (welches keine Abwehr dagegen würfeln darf), wodurch es -8 auf alle Handlungen hat, bei denen es besser sehen können sollte. Augenlosen Untoten, wie beispielsweise @Compendium[ds4.creatures.Rvu16XzEjizdqNsu]{Skeletten}, aber auch blinden Lebewesen, kann der Zauber nichts anhaben.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(AGI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "rounds" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": null, - "wizard": 6, - "sorcerer": 2 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.5mF59XCsZffF0cSp", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.h4Xf5AZuuDR1HwdD" - }, - { - "_id": "sZicJQ2tu0pHKLT3", - "name": "Schatten erwecken", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/two-shadows.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.dPGm1Ji2U0fJxnT3" - } - }, - "system": { - "description": "Der Schwarzmagier kann die Seelen von einer maximalen Anzahl von Toten im Wirkungsradius gleich seiner eigenen Stufe verderben und in Form tödlicher @Compendium[ds4.creatures.T9YRYe0vnR4Qg4UM]{Schatten} (DS4 S. 121) zu gequältem Unleben erwecken. Die Schatten benötigen drei Kampfrunden, um sich zu bilden, danach wollen sie ihren Erwecker vernichten, um wieder Erlösung zu finden, gelingt es diesem nicht, sie mit dem Zauber @Compendium[ds4.spells.9gc1CF70165NXymH]{Kontrollieren} zu beherrschen.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können den Zauber nicht anwenden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 5", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 13 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.dPGm1Ji2U0fJxnT3", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.sZicJQ2tu0pHKLT3" - }, - { - "_id": "80m8uuYxkvkMY8O6", - "name": "Schattenlanze", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/spear-hook.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.b5RFJWPaYbpXNpsv" - } - }, - "system": { - "description": "Dies ist eine mächtigere Variante des Zaubers @Compendium[ds4.spells.tPFiElqQuvih76gd]{Schattenpfeil}, gegen dessen Schaden @Compendium[ds4.special-creature-abilities.KDDlwN9as9B4ljeA]{Wesen des Lichts (Settingoption)} einen Malus von 2 auf ihre Abwehr erhalten.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können diesen Zauber nicht anwenden.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 5, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": 15, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.b5RFJWPaYbpXNpsv", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.80m8uuYxkvkMY8O6" - }, - { - "_id": "eVZKdojeGbmnlO7r", - "name": "Springen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/jump-across.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.L6NrH3AEmS2I3NWG" - } - }, - "system": { - "description": "Der Zauberwirker springt augenblicklich bis zu Probenergebnis/2 Meter weit und landet dabei wieder sicher auf seinen Beinen. Alternativ kann man auch hoch oder runter springen, beispielsweise um einen Balkon zu erreichen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 5, - "wizard": 2, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.L6NrH3AEmS2I3NWG", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.eVZKdojeGbmnlO7r" - }, - { - "_id": "TyemqVxXHyajaeQ0", - "name": "Stolpern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/tripwire.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.KIyVOdiXZnXJIAh6" - } - }, - "system": { - "description": "Das Ziel, welches keine Abwehr gegen den Zauber würfeln darf, stürzt augenblicklich zu Boden.
Misslingt ihm außerdem eine Probe auf AGI+GE, lässt er alles Gehaltene fallen.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(AGI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 4, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.KIyVOdiXZnXJIAh6", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.TyemqVxXHyajaeQ0" - }, - { - "_id": "8yzQEtT02oPB3gQT", - "name": "Trugbild", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/mirror-mirror.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.eMilydZd4gqDUsff" - } - }, - "system": { - "description": "Dieser Zauber erschafft eine rein optische, unbewegliche Illusion, deren Ausmaße maximal VE/2 Kubikmeter betragen können. Die Illusion ist mit einer erfolgreichen Bemerken-Probe (DS4 S. 89) – abzüglich des halbierten Probenergebnisses der Trugbild Zaubern-Probe – durchschaubar.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE / 2", - "unit": "hours" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 5, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.eMilydZd4gqDUsff", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.8yzQEtT02oPB3gQT" - }, - { - "_id": "WcTIZrzNl287ClsD", - "name": "Unsichtbarkeit", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/invisible.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.EXqdD6yddQ4c0zAw" - } - }, - "system": { - "description": "Macht ein Lebewesen (samt seiner getragenen Ausrüstung) oder ein Objekt für die Dauer des Zauberspruchs unsichtbar.
Der Zauberspruch endet vorzeitig, wenn das Ziel jemanden angreift, zaubert oder selbst Schaden erhält.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "minutes" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 20, - "wizard": 12, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.EXqdD6yddQ4c0zAw", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.WcTIZrzNl287ClsD" - }, - { - "_id": "WgItN1MKxhGmbISB", - "name": "Verwirren", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/misdirection.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.niQVUxJHzdMDlwXc" - } - }, - "system": { - "description": "Dieser Zauberspruch verwirrt bei Erfolg das Ziel, dessen Handeln für die gesamte Zauberdauer auf folgender Tabelle jede Kampfrunde neu ermittelt wird:
\nW20 | \nDer Verwirrte… | \n
---|---|
1–5 | \n… greift die Charaktere an | \n
6–10 | \n… läuft verwirrt in eine zufällige Richtung | \n
11–15 | \n… steht verwirrt herum | \n
16+ | \n… greift die eigenen Verbündeten an | \n
Der Zauberwirker öffnet ein kreisrundes Loch von 1 m Durchmesser in einer bis zu VE x 10 cm dicken, nichtmagischen Steinwand.
\nNach Ablauf des Zaubers verschwindet das Loch ohne Spuren zu hinterlassen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": true, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 6, - "sorcerer": 14 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.7foZzrxZuX0dCh3C", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.sNZcw4ywoelqwcFi" - }, - { - "_id": "m0sMPFGCoDjzT9jz", - "name": "Wolke des Todes", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/skull-mask.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.xs7tx8K3ZdQ76u0b" - } - }, - "system": { - "description": "Eine schwarze, qualmende Wolke des Todes mit einem Radius von maximal VE in Metern entsteht.
\nZwar ist die Wolke nicht undurchsichtig, dennoch werden Angriffe gegen Ziele darin um 2 erschwert, gleichsam erhalten alle innerhalb der Wolke -2 auf alle Proben, bei denen man besser sehen können sollte.
\nJeder Charakter innerhalb der Wolke erleidet pro Runde automatisch einen nicht abwehrbaren Punkt Schaden.
\nSollte der Schwarzmagier über das Talent @Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Diener der Dunkelheit} verfügen, wird sein Talentrang auf den nicht abwehrbaren Schaden, den jedes Opfer pro Kampfrunde erleidet, addiert.
\nEine Wolke kann durch Wind bewegt oder gar auseinander geweht werden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -4, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": true, - "transport": false, - "damage": true, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. x 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 13 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.xs7tx8K3ZdQ76u0b", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.m0sMPFGCoDjzT9jz" - }, - { - "_id": "ozbaYB7x9IHkkxz2", - "name": "Zeitstop", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/time-trap.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.BGnY1p1qZXwpzXFA" - } - }, - "system": { - "description": "Der Zauberwirker hält die Zeit an, bis die Zauberdauer endet oder er Schaden verursacht bzw. selber erleidet.
Andere Objekte und Lebewesen können nicht bewegt werden – sie sind starr in der Zeit eingefroren.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -5, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": null, - "wizard": 15, - "sorcerer": 20 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.BGnY1p1qZXwpzXFA", - "duplicateSource": null - }, - "_key": "!actors.items!oVKL6zJ2kYMmBuYx.ozbaYB7x9IHkkxz2" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 7, - "mod": 0 - }, - "mobility": { - "base": 6, - "mod": 0 - }, - "mind": { - "base": 9, - "mod": 0 - } - }, - "traits": { - "strength": { - "base": 0, - "mod": 0 - }, - "constitution": { - "base": 4, - "mod": 0 - }, - "agility": { - "base": 0, - "mod": 0 - }, - "dexterity": { - "base": 4, - "mod": 0 - }, - "intellect": { - "base": 8, - "mod": 0 - }, - "aura": { - "base": 8, - "mod": 0 - } - }, - "combatValues": { - "hitPoints": { - "mod": 1, - "value": 39 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW #(A:20)x10, #10M:20", - "foeFactor": 26, - "creatureType": "undead", - "sizeCategory": "normal", - "experiencePoints": 299, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Leichnam", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/lich.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346928, - "modifiedTime": 1740227862908, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!oVKL6zJ2kYMmBuYx" -} diff --git a/packs/creatures/Luftelementar_III_DNbOkqUg7jitTTbw.json b/packs/creatures/Luftelementar_III_DNbOkqUg7jitTTbw.json deleted file mode 100644 index 7c65295a..00000000 --- a/packs/creatures/Luftelementar_III_DNbOkqUg7jitTTbw.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "DNbOkqUg7jitTTbw", - "name": "Luftelementar III", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 32, - "value": 64 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 16, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 143, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Luftelementar III", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346310, - "modifiedTime": 1740227862853, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!DNbOkqUg7jitTTbw" -} diff --git a/packs/creatures/Luftelementar_II_wYVw1a5UjPS09YxS.json b/packs/creatures/Luftelementar_II_wYVw1a5UjPS09YxS.json deleted file mode 100644 index 578e3651..00000000 --- a/packs/creatures/Luftelementar_II_wYVw1a5UjPS09YxS.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "_id": "wYVw1a5UjPS09YxS", - "name": "Luftelementar II", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "PL4rUPVh5MRMW796", - "name": "Luftstoß", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "-1 WB/2 m
", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "meleeRanged", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!wYVw1a5UjPS09YxS.PL4rUPVh5MRMW796" - }, - { - "_id": "ghW7FO5d2do95peV", - "name": "Keine feste Gestalt", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 8, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!wYVw1a5UjPS09YxS.ghW7FO5d2do95peV" - }, - { - "_id": "wqzMhcBGP8qbClRW", - "name": "Anfällig (Erde)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.mAWyVCfTFH6JiEIu" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Erd-, Fels- und Steinangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.mAWyVCfTFH6JiEIu", - "duplicateSource": null - }, - "_key": "!actors.items!wYVw1a5UjPS09YxS.wqzMhcBGP8qbClRW" - }, - { - "_id": "3yeOHhXD8iJrtRJL", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!wYVw1a5UjPS09YxS.3yeOHhXD8iJrtRJL" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 25 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 9, - "creatureType": "magicalEntity", - "sizeCategory": "normal", - "experiencePoints": 92, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Luftelementar II", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347220, - "modifiedTime": 1740227862922, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!wYVw1a5UjPS09YxS" -} diff --git a/packs/creatures/Luftelementar_I_CIzMY691MK016h4E.json b/packs/creatures/Luftelementar_I_CIzMY691MK016h4E.json deleted file mode 100644 index a5d1cf5c..00000000 --- a/packs/creatures/Luftelementar_I_CIzMY691MK016h4E.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "CIzMY691MK016h4E", - "name": "Luftelementar I", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -9, - "value": 10 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 4, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 68, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Luftelementar I", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346301, - "modifiedTime": 1740227862852, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!CIzMY691MK016h4E" -} diff --git a/packs/creatures/Medusa_F3zJ4xbHwN9syuK8.json b/packs/creatures/Medusa_F3zJ4xbHwN9syuK8.json deleted file mode 100644 index 789b7255..00000000 --- a/packs/creatures/Medusa_F3zJ4xbHwN9syuK8.json +++ /dev/null @@ -1,424 +0,0 @@ -{ - "_id": "F3zJ4xbHwN9syuK8", - "name": "Medusa", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/medusa-pale.png", - "items": [ - { - "_id": "08rqhbd0eadzrJxS", - "name": "Klauen", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!F3zJ4xbHwN9syuK8.08rqhbd0eadzrJxS" - }, - { - "_id": "YL8uGdXD9QX45OvA", - "name": "Schlangen", - "type": "weapon", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!F3zJ4xbHwN9syuK8.YL8uGdXD9QX45OvA" - }, - { - "_id": "3Gxud5Mn5gy97Qie", - "name": "Schuppen", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!F3zJ4xbHwN9syuK8.3Gxud5Mn5gy97Qie" - }, - { - "_id": "MuXvP2TjwvevxLpo", - "name": "Blickangriff", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.l4ewILWP2zbiSM97" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/gaze-attack.png", - "effects": [], - "folder": null, - "system": { - "description": "Greift mit seinem Blick aktionsfrei jeden an, dem GEI+AU misslingt. Wer gegen die Kreatur vorgeht, ohne ihr in die Augen zu sehen, erhält -4 auf alle Proben, ist aber nicht mehr Ziel ihrer Blickangriffe.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.l4ewILWP2zbiSM97", - "duplicateSource": null - }, - "_key": "!actors.items!F3zJ4xbHwN9syuK8.MuXvP2TjwvevxLpo" - }, - { - "_id": "RhdH7ESwq8ukGvTy", - "name": "Mehrere Angriffe (+5)", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YvkRgHyCkwhn3uzg" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Von den zahlreichen Geschwindigkeit an Wänden und Decken aktionsfrei Schlangen auf ihrem Kopf können jeweils 5 in jeder Runde klettern. Kann auf Gegner herabfallen, wobei Schlagen um Nahkampfgegner angreifen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YvkRgHyCkwhn3uzg", - "duplicateSource": null - }, - "_key": "!actors.items!F3zJ4xbHwN9syuK8.RhdH7ESwq8ukGvTy" - }, - { - "_id": "CTAZdf7uuEQ4sWA9", - "name": "Schleudern", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flinging.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg schleudert das Ziel (sofern 1+ Größenkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet für die Distanz Sturzschaden, gegen den es normal Abwehr würfelt, und liegt am Boden.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5PdSHi6PY4TNV9rP", - "duplicateSource": null - }, - "_key": "!actors.items!F3zJ4xbHwN9syuK8.CTAZdf7uuEQ4sWA9" - }, - { - "_id": "NEEOtiJGhOpZ7RuW", - "name": "Versteinern", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5eB5a0FnygbaqWPe" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/petrification.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem erfolgreichen Blickangriff versteinert das Ziel, sofern diesem KÖR+AU misslingt. Eine Versteinerung kann durch den Zauber Allheilung aufgehoben werden.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5eB5a0FnygbaqWPe", - "duplicateSource": null - }, - "_key": "!actors.items!F3zJ4xbHwN9syuK8.NEEOtiJGhOpZ7RuW" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 12, - "value": 36 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW A:18), BW #5A:20, #5M:20", - "foeFactor": 18, - "creatureType": "magicalEntity", - "sizeCategory": "normal", - "experiencePoints": 205, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Medusa", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/medusa*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346341, - "modifiedTime": 1740227862856, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!F3zJ4xbHwN9syuK8" -} diff --git a/packs/creatures/Minotaurus_95N3CQpgVqg4zz0k.json b/packs/creatures/Minotaurus_95N3CQpgVqg4zz0k.json deleted file mode 100644 index c4f4f929..00000000 --- a/packs/creatures/Minotaurus_95N3CQpgVqg4zz0k.json +++ /dev/null @@ -1,395 +0,0 @@ -{ - "_id": "95N3CQpgVqg4zz0k", - "name": "Minotaurus", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/minotaur-brown.png", - "items": [ - { - "_id": "WnNygCJUgl9nJVDV", - "name": "Massive Keule", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!95N3CQpgVqg4zz0k.WnNygCJUgl9nJVDV" - }, - { - "_id": "hZvwSk1wun8Qjlmk", - "name": "Horn", - "type": "weapon", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!95N3CQpgVqg4zz0k.hZvwSk1wun8Qjlmk" - }, - { - "_id": "CES4HTOhBcNY0c6G", - "name": "Huf", - "type": "weapon", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!95N3CQpgVqg4zz0k.CES4HTOhBcNY0c6G" - }, - { - "_id": "jhC7DbwCOazDTTVU", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!95N3CQpgVqg4zz0k.jhC7DbwCOazDTTVU" - }, - { - "_id": "mOcmV58FSVafekAU", - "name": "Zerstampfen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.02QMKm8MHzz8yAxL" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/crush.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einen Angriff pro Kampfrunde mit -6 ausführen, um das Ziel (sofern 1+ Größenkategorie kleiner) zu zerstampfen. Pro Größenunterschied wird der -6 Malus um 2 gemindert. Bei einem erfolgreichen Angriff wird nicht abwehrbarer Schaden verursacht.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.02QMKm8MHzz8yAxL", - "duplicateSource": null - }, - "_key": "!actors.items!95N3CQpgVqg4zz0k.mOcmV58FSVafekAU" - }, - { - "_id": "gPsGJGaDRosWvEEL", - "name": "Fell", - "type": "armor", - "sort": 600000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!95N3CQpgVqg4zz0k.gPsGJGaDRosWvEEL" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 27, - "value": 54 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 1 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:16), BW 2B:20", - "foeFactor": 12, - "creatureType": "humanoid", - "sizeCategory": "large", - "experiencePoints": 138, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Minotaurus", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/minotaur*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346270, - "modifiedTime": 1740227862848, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!95N3CQpgVqg4zz0k" -} diff --git a/packs/creatures/Monsterspinne_4276kgAddflo3bwN.json b/packs/creatures/Monsterspinne_4276kgAddflo3bwN.json deleted file mode 100644 index f30f9f65..00000000 --- a/packs/creatures/Monsterspinne_4276kgAddflo3bwN.json +++ /dev/null @@ -1,392 +0,0 @@ -{ - "_id": "4276kgAddflo3bwN", - "name": "Monsterspinne", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/monster-spider.png", - "items": [ - { - "_id": "5KumsWj49saU3R8P", - "name": "Spinnenbiss", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!4276kgAddflo3bwN.5KumsWj49saU3R8P" - }, - { - "_id": "nU2FCLS66oVDnMkw", - "name": "Netzflüssigkeit", - "type": "weapon", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "ranged", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!4276kgAddflo3bwN.nU2FCLS66oVDnMkw" - }, - { - "_id": "b80BR5n1f6WvGavG", - "name": "Dicke Spinnenhaut", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!4276kgAddflo3bwN.b80BR5n1f6WvGavG" - }, - { - "_id": "v7zlqw9oygaGg5RF", - "name": "Kletterläufer", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.Kbb8qlLeVahzxy5N" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/climber.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann mit normaler Laufen- Geschwindigkeit an Wänden und Decken aktionsfrei klettern.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.Kbb8qlLeVahzxy5N", - "duplicateSource": null - }, - "_key": "!actors.items!4276kgAddflo3bwN.v7zlqw9oygaGg5RF" - }, - { - "_id": "vNnnWKNHFzvSlquf", - "name": "Lähmungseffekt", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.5maJ8tHAVZCxHGW6" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/paralysis-effect.png", - "effects": [], - "folder": null, - "system": { - "description": "Netzflüssigkeit (nur alle 10 Kampfrunden einsetzbar) macht Ziel für Probenergebnis in Kamprunden bewegungsunfähig, sofern ihm nicht KÖR+ST gelingt.
", - "experiencePoints": 25 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.5maJ8tHAVZCxHGW6", - "duplicateSource": null - }, - "_key": "!actors.items!4276kgAddflo3bwN.vNnnWKNHFzvSlquf" - }, - { - "_id": "vYPD5Je4xRUgTqcp", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!4276kgAddflo3bwN.vYPD5Je4xRUgTqcp" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 48, - "value": 72 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:12)", - "foeFactor": 11, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 165, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Monsterspinne", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/monster-spider.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346201, - "modifiedTime": 1740227862842, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!4276kgAddflo3bwN" -} diff --git a/packs/creatures/Mumie_P3mlpN2JrbnDtLwJ.json b/packs/creatures/Mumie_P3mlpN2JrbnDtLwJ.json deleted file mode 100644 index a3b6c944..00000000 --- a/packs/creatures/Mumie_P3mlpN2JrbnDtLwJ.json +++ /dev/null @@ -1,485 +0,0 @@ -{ - "_id": "P3mlpN2JrbnDtLwJ", - "name": "Mumie", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "MxXeRwM7Mw1OqmAC", - "name": "Fäulnispranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.MxXeRwM7Mw1OqmAC" - }, - { - "_id": "Icq7W8YrjXTIlb7C", - "name": "Bandagen", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.Icq7W8YrjXTIlb7C" - }, - { - "_id": "Kf2kAdMidDaK1SVD", - "name": "Anfällig (Feuer)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.XhAfEVVoSADC880C" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Feuerangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.XhAfEVVoSADC880C", - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.Kf2kAdMidDaK1SVD" - }, - { - "_id": "yUtiK9PSMcNcvXfr", - "name": "Angst (1)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.rUA7XVCeDkREYfi8" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.rUA7XVCeDkREYfi8", - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.yUtiK9PSMcNcvXfr" - }, - { - "_id": "F3UjrYhsbCLoyFm3", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.F3UjrYhsbCLoyFm3" - }, - { - "_id": "hewKWM2G62KKAj7L", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.hewKWM2G62KKAj7L" - }, - { - "_id": "PFpQT1jYCeKy2yuk", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 900000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.PFpQT1jYCeKy2yuk" - }, - { - "_id": "nX0rcnKD1xHYwysw", - "name": "Totenkraft", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/power-of-the-dead.png", - "effects": [], - "folder": null, - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ZkgZiFI5xy8aevG8" - } - }, - "system": { - "description": "Erhält GEI+AU als Bonus auf Stärke und Härte.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ZkgZiFI5xy8aevG8", - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.nX0rcnKD1xHYwysw" - }, - { - "_id": "fdt4YJVWp3XylED1", - "name": "Werteverlust (KÖR)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/attribute-loss.png", - "effects": [], - "folder": null, - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.RwT0NBwkc1TuAR1e" - } - }, - "system": { - "description": "Pro schadensverursachendem Treffer wird KÖR um 1 gesenkt (bei KÖR Null ist das Opfer tot). Pro Tag oder Anwendung des Zaubers @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} wird 1 verlorener Attributspunkt regeneriert.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.RwT0NBwkc1TuAR1e", - "duplicateSource": null - }, - "_key": "!actors.items!P3mlpN2JrbnDtLwJ.fdt4YJVWp3XylED1" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 12, - "mod": 0 - }, - "mobility": { - "base": 4, - "mod": 0 - }, - "mind": { - "base": 4, - "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": 2, - "mod": 0 - } - }, - "combatValues": { - "hitPoints": { - "mod": 0, - "value": 32 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 1 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW #2A:18, #1M:16", - "foeFactor": 18, - "creatureType": "undead", - "sizeCategory": "normal", - "experiencePoints": 124, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Mumie", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346620, - "modifiedTime": 1740227862873, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!P3mlpN2JrbnDtLwJ" -} diff --git a/packs/creatures/Niederer_D_mon_RxSUSzQBSTFYHOlV.json b/packs/creatures/Niederer_D_mon_RxSUSzQBSTFYHOlV.json deleted file mode 100644 index d86502ca..00000000 --- a/packs/creatures/Niederer_D_mon_RxSUSzQBSTFYHOlV.json +++ /dev/null @@ -1,389 +0,0 @@ -{ - "_id": "RxSUSzQBSTFYHOlV", - "name": "Niederer Dämon", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "bXEiQJc7aJmLW1K4", - "name": "Pranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!RxSUSzQBSTFYHOlV.bXEiQJc7aJmLW1K4" - }, - { - "_id": "N6MfjihlDL9hfse6", - "name": "Dämonenhaut", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!RxSUSzQBSTFYHOlV.N6MfjihlDL9hfse6" - }, - { - "_id": "BDsxMEuEKfjEgFk3", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!RxSUSzQBSTFYHOlV.BDsxMEuEKfjEgFk3" - }, - { - "_id": "AHJhJgRCvw2dKx78", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!RxSUSzQBSTFYHOlV.AHJhJgRCvw2dKx78" - }, - { - "_id": "DURD01IkVxPAwlxf", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!RxSUSzQBSTFYHOlV.DURD01IkVxPAwlxf" - }, - { - "_id": "hvOFruV5fmieLXnk", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!RxSUSzQBSTFYHOlV.hvOFruV5fmieLXnk" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -8, - "value": 9 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 1, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 71, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Niederer Dämon", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346666, - "modifiedTime": 1740227862879, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!RxSUSzQBSTFYHOlV" -} diff --git a/packs/creatures/Oger_QudriM5XZhEC7D6v.json b/packs/creatures/Oger_QudriM5XZhEC7D6v.json deleted file mode 100644 index 99a5ad46..00000000 --- a/packs/creatures/Oger_QudriM5XZhEC7D6v.json +++ /dev/null @@ -1,357 +0,0 @@ -{ - "_id": "QudriM5XZhEC7D6v", - "name": "Oger", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/ogre-blue.png", - "items": [ - { - "_id": "hYNvoybPpmNB7ldb", - "name": "Massive Keule", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!QudriM5XZhEC7D6v.hYNvoybPpmNB7ldb" - }, - { - "_id": "M90M3KCsByyNno2f", - "name": "Felle", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!QudriM5XZhEC7D6v.M90M3KCsByyNno2f" - }, - { - "_id": "yIAptcyyzAytAPRc", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!QudriM5XZhEC7D6v.yIAptcyyzAytAPRc" - }, - { - "_id": "u8EFs9MhGH4cjqzI", - "name": "Umschlingen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/entangle.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg umschlingt Ziel (sofern 1+ Größenkategorie kleiner), welches fortan ST Punkte abwehrbaren Schaden erleidet, sich nicht frei bewegen kann und einen Malus von -2 auf alle Proben pro Größenunterschied erhält. Befreien: Opfer mit AGI+ST vergleichende Probe gegen KÖR+ST des Umschlingers.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE", - "duplicateSource": null - }, - "_key": "!actors.items!QudriM5XZhEC7D6v.u8EFs9MhGH4cjqzI" - }, - { - "_id": "THrZ1zvzJTdJ0413", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!QudriM5XZhEC7D6v.THrZ1zvzJTdJ0413" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 25, - "value": 50 - }, - "defense": { - "mod": 1 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW 1B:8, #1B18", - "foeFactor": 10, - "creatureType": "humanoid", - "sizeCategory": "large", - "experiencePoints": 121, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Oger", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/ogre*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346647, - "modifiedTime": 1740227862877, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!QudriM5XZhEC7D6v" -} diff --git a/packs/creatures/Ork_m9uwTf6binQeuVAb.json b/packs/creatures/Ork_m9uwTf6binQeuVAb.json deleted file mode 100644 index 708c437e..00000000 --- a/packs/creatures/Ork_m9uwTf6binQeuVAb.json +++ /dev/null @@ -1,333 +0,0 @@ -{ - "_id": "m9uwTf6binQeuVAb", - "name": "Ork", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/orc-blue.png", - "items": [ - { - "_id": "YozSzwoqjCJcs2NR", - "name": "Speer", - "type": "weapon", - "sort": 100000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.oWvJfxEBr83QxO9Q" - } - }, - "img": "icons/weapons/polearms/spear-hooked-simple.webp", - "effects": [], - "folder": null, - "system": { - "description": "Zerbricht bei Schießen-Patzer
", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-", - "equipped": true, - "attackType": "meleeRanged", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.oWvJfxEBr83QxO9Q", - "duplicateSource": null - }, - "_key": "!actors.items!m9uwTf6binQeuVAb.YozSzwoqjCJcs2NR" - }, - { - "_id": "KlJJytTJybNcvjU3", - "name": "Lederpanzer", - "type": "armor", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.equipment.60MhQmXh0c2cT5nx" - } - }, - "img": "icons/equipment/chest/breastplate-banded-leather-brown.webp", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 4, - "availability": "hamlet", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.equipment.60MhQmXh0c2cT5nx", - "duplicateSource": null - }, - "_key": "!actors.items!m9uwTf6binQeuVAb.KlJJytTJybNcvjU3" - }, - { - "_id": "rL8UVTzpLdTVqd9W", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!m9uwTf6binQeuVAb.rL8UVTzpLdTVqd9W" - }, - { - "_id": "0x83GMWxMjm02G5r", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!m9uwTf6binQeuVAb.0x83GMWxMjm02G5r" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 23 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 1 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW 1B:14, #1B16", - "foeFactor": 2, - "creatureType": "humanoid", - "sizeCategory": "normal", - "experiencePoints": 63, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Ork", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/orc*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346888, - "modifiedTime": 1740227862903, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!m9uwTf6binQeuVAb" -} diff --git a/packs/creatures/Pferd_asPZBajREGsJYoht.json b/packs/creatures/Pferd_asPZBajREGsJYoht.json deleted file mode 100644 index 35503e95..00000000 --- a/packs/creatures/Pferd_asPZBajREGsJYoht.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "_id": "asPZBajREGsJYoht", - "name": "Pferd", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/horse-white.png", - "items": [ - { - "_id": "fEZBZH6sYKbblf6g", - "name": "Huf, in Notwehr", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!asPZBajREGsJYoht.fEZBZH6sYKbblf6g" - }, - { - "_id": "zsouNfDc7ZOepbeR", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!asPZBajREGsJYoht.zsouNfDc7ZOepbeR" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 44, - "value": 66 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 4, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 101, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Pferd", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/horse*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346777, - "modifiedTime": 1740227862891, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!asPZBajREGsJYoht" -} diff --git a/packs/creatures/Pony_HgfrjXKUApOXvkUX.json b/packs/creatures/Pony_HgfrjXKUApOXvkUX.json deleted file mode 100644 index 3f0ff322..00000000 --- a/packs/creatures/Pony_HgfrjXKUApOXvkUX.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "_id": "HgfrjXKUApOXvkUX", - "name": "Pony", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/horse-brown.png", - "items": [ - { - "_id": "jpyXagx6Gqji5I09", - "name": "Huf, in Notwehr", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!HgfrjXKUApOXvkUX.jpyXagx6Gqji5I09" - }, - { - "_id": "7I2yvv1ctfP1BND7", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!HgfrjXKUApOXvkUX.7I2yvv1ctfP1BND7" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 42, - "value": 63 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 3, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 92, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Pony", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/horse*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346482, - "modifiedTime": 1740227862865, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!HgfrjXKUApOXvkUX" -} diff --git a/packs/creatures/Ratte_lZgvjMSqh5FuA1JK.json b/packs/creatures/Ratte_lZgvjMSqh5FuA1JK.json deleted file mode 100644 index 2e65224d..00000000 --- a/packs/creatures/Ratte_lZgvjMSqh5FuA1JK.json +++ /dev/null @@ -1,322 +0,0 @@ -{ - "_id": "lZgvjMSqh5FuA1JK", - "name": "Ratte", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/rat-brown-2.png", - "items": [ - { - "_id": "CtIA409ycFJcoNdq", - "name": "Spitze Zähne", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!lZgvjMSqh5FuA1JK.CtIA409ycFJcoNdq" - }, - { - "_id": "LNrmUjNRidA3PoHN", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!lZgvjMSqh5FuA1JK.LNrmUjNRidA3PoHN" - }, - { - "_id": "XcMeQEVeni94uQWk", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!lZgvjMSqh5FuA1JK.XcMeQEVeni94uQWk" - }, - { - "_id": "bvbaa9gsGyGocDA0", - "name": "Schwimmen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swim.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, schwimmen. Wird die Aktion „Rennen“ schwimmend ausgeführt, erhöht sich die Geschwindigkeit ganz normal auf Laufen x 2.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN", - "duplicateSource": null - }, - "_key": "!actors.items!lZgvjMSqh5FuA1JK.bvbaa9gsGyGocDA0" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -9, - "value": 3 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 1, - "creatureType": "animal", - "sizeCategory": "tiny", - "experiencePoints": 26, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Ratte", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/rat*.png", - "scaleX": 0.5, - "scaleY": 0.5, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346882, - "modifiedTime": 1740227862901, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!lZgvjMSqh5FuA1JK" -} diff --git a/packs/creatures/Raubkatze_PVuNoFILDAHpqGsa.json b/packs/creatures/Raubkatze_PVuNoFILDAHpqGsa.json deleted file mode 100644 index 7faef311..00000000 --- a/packs/creatures/Raubkatze_PVuNoFILDAHpqGsa.json +++ /dev/null @@ -1,392 +0,0 @@ -{ - "_id": "PVuNoFILDAHpqGsa", - "name": "Raubkatze", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/feline-predator-panther.png", - "items": [ - { - "_id": "LZJzGcDrnXdAEPkP", - "name": "Pranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!PVuNoFILDAHpqGsa.LZJzGcDrnXdAEPkP" - }, - { - "_id": "8Um85s0Ayigqse3B", - "name": "Biss", - "type": "weapon", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!PVuNoFILDAHpqGsa.8Um85s0Ayigqse3B" - }, - { - "_id": "J1JDirHXfexacI9G", - "name": "Fell", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!PVuNoFILDAHpqGsa.J1JDirHXfexacI9G" - }, - { - "_id": "h9DFDddV6zHABNNR", - "name": "Mehrere Angriffe (+1)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.oDM4ImE7PrIgn22E" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann 1 zusätzlichen Angriff in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.oDM4ImE7PrIgn22E", - "duplicateSource": null - }, - "_key": "!actors.items!PVuNoFILDAHpqGsa.h9DFDddV6zHABNNR" - }, - { - "_id": "X8PG6Z929me6Fewo", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!PVuNoFILDAHpqGsa.X8PG6Z929me6Fewo" - }, - { - "_id": "vyDe0soNx67ZePNM", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!PVuNoFILDAHpqGsa.vyDe0soNx67ZePNM" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 9, - "value": 27 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:18)", - "foeFactor": 2, - "creatureType": "animal", - "sizeCategory": "normal", - "experiencePoints": 84, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Raubkatze", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/feline-predator*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346633, - "modifiedTime": 1740227862875, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!PVuNoFILDAHpqGsa" -} diff --git a/packs/creatures/Reitkeiler_GWNFUkgxocfKchIQ.json b/packs/creatures/Reitkeiler_GWNFUkgxocfKchIQ.json deleted file mode 100644 index 94a7a653..00000000 --- a/packs/creatures/Reitkeiler_GWNFUkgxocfKchIQ.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "_id": "GWNFUkgxocfKchIQ", - "name": "Reitkeiler", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/boar-brown-1.png", - "items": [ - { - "_id": "nUiNfU3pFgeeoRNR", - "name": "Hauer", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!GWNFUkgxocfKchIQ.nUiNfU3pFgeeoRNR" - }, - { - "_id": "pSQjVkwbjngPoEPZ", - "name": "Dicke Borstenhaut", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!GWNFUkgxocfKchIQ.pSQjVkwbjngPoEPZ" - }, - { - "_id": "VfFAFdeQ7jhTlAz1", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!GWNFUkgxocfKchIQ.VfFAFdeQ7jhTlAz1" - }, - { - "_id": "MMjbCu5tz7v52LOJ", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!GWNFUkgxocfKchIQ.MMjbCu5tz7v52LOJ" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 12, - "value": 35 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:10)", - "foeFactor": 5, - "creatureType": "animal", - "sizeCategory": "normal", - "experiencePoints": 76, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Reitkeiler", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/boar*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346399, - "modifiedTime": 1740227862862, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!GWNFUkgxocfKchIQ" -} diff --git a/packs/creatures/Riese_rULL0cHbyACJsHDC.json b/packs/creatures/Riese_rULL0cHbyACJsHDC.json deleted file mode 100644 index d450cff4..00000000 --- a/packs/creatures/Riese_rULL0cHbyACJsHDC.json +++ /dev/null @@ -1,360 +0,0 @@ -{ - "_id": "rULL0cHbyACJsHDC", - "name": "Riese", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "ndjWMSfPfmPY9AUY", - "name": "Baumstamm", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!rULL0cHbyACJsHDC.ndjWMSfPfmPY9AUY" - }, - { - "_id": "p8OAUiSFSEBq94mf", - "name": "Geworfener Fels", - "type": "weapon", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "ranged", - "weaponBonus": 4, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!rULL0cHbyACJsHDC.p8OAUiSFSEBq94mf" - }, - { - "_id": "xbi9dJjtVxeUoLK4", - "name": "Felle", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!rULL0cHbyACJsHDC.xbi9dJjtVxeUoLK4" - }, - { - "_id": "eTfSg6U4xZdJN7ec", - "name": "Umschlingen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/entangle.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg umschlingt Ziel (sofern 1+ Größenkategorie kleiner), welches fortan ST Punkte abwehrbaren Schaden erleidet, sich nicht frei bewegen kann und einen Malus von -2 auf alle Proben pro Größenunterschied erhält. Befreien: Opfer mit AGI+ST vergleichende Probe gegen KÖR+ST des Umschlingers.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE", - "duplicateSource": null - }, - "_key": "!actors.items!rULL0cHbyACJsHDC.eTfSg6U4xZdJN7ec" - }, - { - "_id": "nFyr7vCp12na7Z3c", - "name": "Zerstampfen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.02QMKm8MHzz8yAxL" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/crush.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einen Angriff pro Kampfrunde mit -6 ausführen, um das Ziel (sofern 1+ Größenkategorie kleiner) zu zerstampfen. Pro Größenunterschied wird der -6 Malus um 2 gemindert. Bei einem erfolgreichen Angriff wird nicht abwehrbarer Schaden verursacht.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.02QMKm8MHzz8yAxL", - "duplicateSource": null - }, - "_key": "!actors.items!rULL0cHbyACJsHDC.nFyr7vCp12na7Z3c" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 176, - "value": 220 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": -3 - }, - "movement": { - "mod": 4 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 3 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:20)", - "foeFactor": 30, - "creatureType": "humanoid", - "sizeCategory": "huge", - "experiencePoints": 387, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Riese", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346989, - "modifiedTime": 1740227862911, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!rULL0cHbyACJsHDC" -} diff --git a/packs/creatures/Riesenechse_QWC9LW1g4aMUHZNc.json b/packs/creatures/Riesenechse_QWC9LW1g4aMUHZNc.json deleted file mode 100644 index 55dec271..00000000 --- a/packs/creatures/Riesenechse_QWC9LW1g4aMUHZNc.json +++ /dev/null @@ -1,421 +0,0 @@ -{ - "_id": "QWC9LW1g4aMUHZNc", - "name": "Riesenechse", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/giant-lizard-olive.png", - "items": [ - { - "_id": "0EPSA2vb34Nilg91", - "name": "Grausamer Biss", - "type": "weapon", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!QWC9LW1g4aMUHZNc.0EPSA2vb34Nilg91" - }, - { - "_id": "2C5NsY0F4qndyWGS", - "name": "Schuppenpanzer", - "type": "armor", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!QWC9LW1g4aMUHZNc.2C5NsY0F4qndyWGS" - }, - { - "_id": "I5qUZBkW7JLwuCze", - "name": "Kletterläufer", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/climber.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.Kbb8qlLeVahzxy5N" - } - }, - "system": { - "description": "Kann mit normaler Laufen- Geschwindigkeit an Wänden und Decken aktionsfrei klettern.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.Kbb8qlLeVahzxy5N", - "duplicateSource": null - }, - "_key": "!actors.items!QWC9LW1g4aMUHZNc.I5qUZBkW7JLwuCze" - }, - { - "_id": "xtiIwy6EYYRPkXN9", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!QWC9LW1g4aMUHZNc.xtiIwy6EYYRPkXN9" - }, - { - "_id": "OBlOP38tzoxwhNuj", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!QWC9LW1g4aMUHZNc.OBlOP38tzoxwhNuj" - }, - { - "_id": "WiyqJV69YblM42Ot", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!QWC9LW1g4aMUHZNc.WiyqJV69YblM42Ot" - }, - { - "_id": "T8SibpTZqhohwVkB", - "name": "Verschlingen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/devourer.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.fY7yRpxhQTIV5G2p" - } - }, - "system": { - "description": "Schlagen-Immersieg (mit einem Biss-Angriff) verschlingt Ziel (sofern 2+ Größenkategorien kleiner), welches fortan einen nicht abwehrbaren Schadenspunkt pro Kampfrunde und einen Malus von -8 auf alle Proben erhält. Befreien: Nur mit einem Schlagen-Immersieg, der Schaden verursacht, kann sich der Verschlungene augenblicklich aus dem Leib seines Verschlingers befreien, wenn dieser noch lebt.
", - "experiencePoints": 25 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.fY7yRpxhQTIV5G2p", - "duplicateSource": null - }, - "_key": "!actors.items!QWC9LW1g4aMUHZNc.T8SibpTZqhohwVkB" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 15, - "mod": 0 - }, - "mobility": { - "base": 12, - "mod": 0 - }, - "mind": { - "base": 1, - "mod": 0 - } - }, - "traits": { - "strength": { - "base": 5, - "mod": 0 - }, - "constitution": { - "base": 14, - "mod": 0 - }, - "agility": { - "base": 5, - "mod": 0 - }, - "dexterity": { - "base": 0, - "mod": 0 - }, - "intellect": { - "base": 0, - "mod": 0 - }, - "aura": { - "base": 0, - "mod": 0 - } - }, - "combatValues": { - "hitPoints": { - "mod": 179, - "value": 218 - }, - "defense": { - "mod": -10 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 4.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:16)", - "foeFactor": 25, - "creatureType": "humanoid", - "sizeCategory": "huge", - "experiencePoints": 316, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "name": "Riesenechse", - "displayName": 20, - "actorLink": false, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "alpha": 1, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "flags": {}, - "randomImg": true, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/giant-lizard*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346636, - "modifiedTime": 1740227862875, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!QWC9LW1g4aMUHZNc" -} diff --git a/packs/creatures/Riesenkrake_Z7Dt5epXbuKn20US.json b/packs/creatures/Riesenkrake_Z7Dt5epXbuKn20US.json deleted file mode 100644 index f3c061a7..00000000 --- a/packs/creatures/Riesenkrake_Z7Dt5epXbuKn20US.json +++ /dev/null @@ -1,354 +0,0 @@ -{ - "_id": "Z7Dt5epXbuKn20US", - "name": "Riesenkrake", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "uhUCjZsudH4tikXb", - "name": "Fangarme", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!Z7Dt5epXbuKn20US.uhUCjZsudH4tikXb" - }, - { - "_id": "dm1gTdRLMsRP3dYJ", - "name": "Mehrere Angriffe (+5)", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YvkRgHyCkwhn3uzg" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann mit seinen insgesamt sechs Fangarmen 5 zusätzliche Angriffe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YvkRgHyCkwhn3uzg", - "duplicateSource": null - }, - "_key": "!actors.items!Z7Dt5epXbuKn20US.dm1gTdRLMsRP3dYJ" - }, - { - "_id": "Pk39V01Z4NKJ07oI", - "name": "Mehrere Angriffglieder (+5)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.e6VuJIL8ocXQDQ2V" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "system": { - "description": "Greift mit insgesamt 6 Fangarmen an, die Gegner bei einem erfolgreichen Schlagen-Immersieg btrennen/zertrümmern, wodurch die Angriffsanzahl sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.e6VuJIL8ocXQDQ2V", - "duplicateSource": null - }, - "_key": "!actors.items!Z7Dt5epXbuKn20US.Pk39V01Z4NKJ07oI" - }, - { - "_id": "JQuu3LzkV71R3eHr", - "name": "Umschlingen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/entangle.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg umschlingt Ziel (sofern 1+ Größenkategorie kleiner), welches fortan ST Punkte abwehrbaren Schaden erleidet, sich nicht frei bewegen kann und einen Malus von -2 auf alle Proben pro Größenunterschied erhält. Befreien: Opfer mit AGI+ST vergleichende Probe gegen KÖR+ST des Umschlingers.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE", - "duplicateSource": null - }, - "_key": "!actors.items!Z7Dt5epXbuKn20US.JQuu3LzkV71R3eHr" - }, - { - "_id": "E5gJyppsFCHmEQLT", - "name": "Schwimmen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swim.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, schwimmen. Wird die Aktion „Rennen“ schwimmend ausgeführt, erhöht sich die Geschwindigkeit ganz normal auf Laufen x 2.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN", - "duplicateSource": null - }, - "_key": "!actors.items!Z7Dt5epXbuKn20US.E5gJyppsFCHmEQLT" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 234, - "value": 270 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 4 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 2A:18)", - "foeFactor": 35, - "creatureType": "animal", - "sizeCategory": "huge", - "experiencePoints": 397, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Riesenkrake", - "displayName": 20, - "width": 3, - "height": 3, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346741, - "modifiedTime": 1740227862887, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!Z7Dt5epXbuKn20US" -} diff --git a/packs/creatures/Riesenratte_2MFCw32xgaic6YGx.json b/packs/creatures/Riesenratte_2MFCw32xgaic6YGx.json deleted file mode 100644 index 58324987..00000000 --- a/packs/creatures/Riesenratte_2MFCw32xgaic6YGx.json +++ /dev/null @@ -1,322 +0,0 @@ -{ - "_id": "2MFCw32xgaic6YGx", - "name": "Riesenratte", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/giant-rat-gray.png", - "items": [ - { - "_id": "dVCq0990d0o158yt", - "name": "Scharfe Zähne", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!2MFCw32xgaic6YGx.dVCq0990d0o158yt" - }, - { - "_id": "BQoKmcUMRg4cmoXq", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!2MFCw32xgaic6YGx.BQoKmcUMRg4cmoXq" - }, - { - "_id": "xMPWpgWRrjacTpYQ", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!2MFCw32xgaic6YGx.xMPWpgWRrjacTpYQ" - }, - { - "_id": "EcGjrMRAXOOGHGY1", - "name": "Schwimmen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swim.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, schwimmen. Wird die Aktion „Rennen“ schwimmend ausgeführt, erhöht sich die Geschwindigkeit ganz normal auf Laufen x 2.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN", - "duplicateSource": null - }, - "_key": "!actors.items!2MFCw32xgaic6YGx.EcGjrMRAXOOGHGY1" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -4, - "value": 11 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 1, - "creatureType": "animal", - "sizeCategory": "small", - "experiencePoints": 41, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Riesenratte", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/giant-rat*.png", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346177, - "modifiedTime": 1740227862840, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!2MFCw32xgaic6YGx" -} diff --git a/packs/creatures/Riesenschlange_wBgO5Hc4oHKfRN6f.json b/packs/creatures/Riesenschlange_wBgO5Hc4oHKfRN6f.json deleted file mode 100644 index 5056a106..00000000 --- a/packs/creatures/Riesenschlange_wBgO5Hc4oHKfRN6f.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "_id": "wBgO5Hc4oHKfRN6f", - "name": "Riesenschlange", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/giant-snake-brown.png", - "items": [ - { - "_id": "ndAkzrcRKXbgY9rR", - "name": "Großer Biss", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!wBgO5Hc4oHKfRN6f.ndAkzrcRKXbgY9rR" - }, - { - "_id": "vyuWg112c2jjiFgN", - "name": "Schuppenpanzer", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!wBgO5Hc4oHKfRN6f.vyuWg112c2jjiFgN" - }, - { - "_id": "RX89OLfp965CuRDs", - "name": "Gift (1)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.TY1ZV1YsyaFtfX7U" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/poison.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird Schaden verursacht, würfelt das Ziel eine „Gift trotzen“-Probe, ansonsten erhält es W20 Kampfrunden lang 1 nicht abwehrbaren Schadenspunkt pro Runde.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.TY1ZV1YsyaFtfX7U", - "duplicateSource": null - }, - "_key": "!actors.items!wBgO5Hc4oHKfRN6f.RX89OLfp965CuRDs" - }, - { - "_id": "2QXz0iopabnNNlQA", - "name": "Umschlingen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/entangle.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg umschlingt Ziel (sofern 1+ Größenkategorie kleiner), welches fortan ST Punkte abwehrbaren Schaden erleidet, sich nicht frei bewegen kann und einen Malus von -2 auf alle Proben pro Größenunterschied erhält. Befreien: Opfer mit AGI+ST vergleichende Probe gegen KÖR+ST des Umschlingers.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE", - "duplicateSource": null - }, - "_key": "!actors.items!wBgO5Hc4oHKfRN6f.2QXz0iopabnNNlQA" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 44, - "value": 66 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:18)", - "foeFactor": 8, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 143, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Riesenschlange", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/giant-snake*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995347214, - "modifiedTime": 1740227862921, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!wBgO5Hc4oHKfRN6f" -} diff --git a/packs/creatures/Rostassel_WYvb8G0z5GuNi7kO.json b/packs/creatures/Rostassel_WYvb8G0z5GuNi7kO.json deleted file mode 100644 index 5d4e2aff..00000000 --- a/packs/creatures/Rostassel_WYvb8G0z5GuNi7kO.json +++ /dev/null @@ -1,421 +0,0 @@ -{ - "_id": "WYvb8G0z5GuNi7kO", - "name": "Rostassel", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/rust-bug.png", - "items": [ - { - "_id": "FQMPNxKTTpOynbsK", - "name": "Tentakelfühler", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!WYvb8G0z5GuNi7kO.FQMPNxKTTpOynbsK" - }, - { - "_id": "b1YoPObYAlp0qgLo", - "name": "Chitinpanzer", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 3, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!WYvb8G0z5GuNi7kO.b1YoPObYAlp0qgLo" - }, - { - "_id": "oT9c8PFOqW9NjOKA", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!WYvb8G0z5GuNi7kO.oT9c8PFOqW9NjOKA" - }, - { - "_id": "OgwADTLcESeGWMih", - "name": "Mehrere Angriffe (+3)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.LM5xia0xVIlhQsLG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann mit seinen insgesamt vier Tentakelfühlern 3 zusätzliche Angriffe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.LM5xia0xVIlhQsLG", - "duplicateSource": null - }, - "_key": "!actors.items!WYvb8G0z5GuNi7kO.OgwADTLcESeGWMih" - }, - { - "_id": "vZZ50RNjZbkNI0Ha", - "name": "Mehrere Angriffglieder (+3)", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.8HmrA97ZqN7nEYgm" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "system": { - "description": "Greift mit insgesamt vier Tentakelfühlern an, die Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen/zertrümmern, wodurch die Angriffsanzahl sinkt
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.8HmrA97ZqN7nEYgm", - "duplicateSource": null - }, - "_key": "!actors.items!WYvb8G0z5GuNi7kO.vZZ50RNjZbkNI0Ha" - }, - { - "_id": "iuxp4uQYS1XdH0gG", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!WYvb8G0z5GuNi7kO.iuxp4uQYS1XdH0gG" - }, - { - "_id": "pBC4SwfIsoVZ5Org", - "name": "Rost", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.oPTuLvZOEsXnRPed" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/rust.png", - "effects": [], - "folder": null, - "system": { - "description": "Jeder Treffer der Tentakelfühler reduziert die PA eines zufälligen, metallischen, nichtmagischen Rüstungsstückes des Ziels um 1. Gleiches gilt für den WB nichtmagischer Metallwaffen, die die Rostassel treffen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.oPTuLvZOEsXnRPed", - "duplicateSource": null - }, - "_key": "!actors.items!WYvb8G0z5GuNi7kO.pBC4SwfIsoVZ5Org" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 11, - "value": 33 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:6)", - "foeFactor": 8, - "creatureType": "animal", - "sizeCategory": "normal", - "experiencePoints": 111, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Rostassel", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/rust-bug.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346701, - "modifiedTime": 1740227862884, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!WYvb8G0z5GuNi7kO" -} diff --git a/packs/creatures/Schatten_T9YRYe0vnR4Qg4UM.json b/packs/creatures/Schatten_T9YRYe0vnR4Qg4UM.json deleted file mode 100644 index 1e21b984..00000000 --- a/packs/creatures/Schatten_T9YRYe0vnR4Qg4UM.json +++ /dev/null @@ -1,389 +0,0 @@ -{ - "_id": "T9YRYe0vnR4Qg4UM", - "name": "Schatten", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/shadow.png", - "items": [ - { - "_id": "yFI8eLZ0z1PSjGYH", - "name": "Geisterklaue", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!T9YRYe0vnR4Qg4UM.yFI8eLZ0z1PSjGYH" - }, - { - "_id": "PxhF7w8cBdqE2pBa", - "name": "Körperlos", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 8, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!T9YRYe0vnR4Qg4UM.PxhF7w8cBdqE2pBa" - }, - { - "_id": "gfZuHfJiCyZUskwn", - "name": "Alterung (1 Jahr pro Treffer)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.e9F812racwKeZPgR" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/aging.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Treffer altert das Ziel um 1 Jahr.
", - "experiencePoints": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.e9F812racwKeZPgR", - "duplicateSource": null - }, - "_key": "!actors.items!T9YRYe0vnR4Qg4UM.gfZuHfJiCyZUskwn" - }, - { - "_id": "po7mBrqpDWKlXbtu", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!T9YRYe0vnR4Qg4UM.po7mBrqpDWKlXbtu" - }, - { - "_id": "LAAz2aBZoHatDHqJ", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!T9YRYe0vnR4Qg4UM.LAAz2aBZoHatDHqJ" - }, - { - "_id": "6eLzanLV8RG4p2Da", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!T9YRYe0vnR4Qg4UM.6eLzanLV8RG4p2Da" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 25 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 14, - "creatureType": "undead", - "sizeCategory": "normal", - "experiencePoints": 126, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Schatten", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/shadow.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346694, - "modifiedTime": 1740227862883, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!T9YRYe0vnR4Qg4UM" -} diff --git a/packs/creatures/Schimmerross_iIvMTzBji28VVQ0v.json b/packs/creatures/Schimmerross_iIvMTzBji28VVQ0v.json deleted file mode 100644 index d0c21adb..00000000 --- a/packs/creatures/Schimmerross_iIvMTzBji28VVQ0v.json +++ /dev/null @@ -1,290 +0,0 @@ -{ - "_id": "iIvMTzBji28VVQ0v", - "name": "Schimmerross", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "NB8EGOwqOiFbSwRT", - "name": "Huf, in Notwehr", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!iIvMTzBji28VVQ0v.NB8EGOwqOiFbSwRT" - }, - { - "_id": "EpT6dAyNtbw1l4TN", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!iIvMTzBji28VVQ0v.EpT6dAyNtbw1l4TN" - }, - { - "_id": "Di77ms6LCDcCtam5", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!iIvMTzBji28VVQ0v.Di77ms6LCDcCtam5" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 44, - "value": 66 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 4, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 106, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Schimmerross", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346860, - "modifiedTime": 1740227862899, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!iIvMTzBji28VVQ0v" -} diff --git a/packs/creatures/Schlachtross_6YqxYCWfWVm6c8qM.json b/packs/creatures/Schlachtross_6YqxYCWfWVm6c8qM.json deleted file mode 100644 index ac53a12f..00000000 --- a/packs/creatures/Schlachtross_6YqxYCWfWVm6c8qM.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "_id": "6YqxYCWfWVm6c8qM", - "name": "Schlachtross", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/war-horse.png", - "items": [ - { - "_id": "7rFkQfTzgSOYmhNP", - "name": "Huf", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!6YqxYCWfWVm6c8qM.7rFkQfTzgSOYmhNP" - }, - { - "_id": "DzisICBhJKo3U7PX", - "name": "Rammen", - "type": "weapon", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!6YqxYCWfWVm6c8qM.DzisICBhJKo3U7PX" - }, - { - "_id": "Mx15GW5ApV4HImpy", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!6YqxYCWfWVm6c8qM.Mx15GW5ApV4HImpy" - }, - { - "_id": "VQpngugF60q18Gpp", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!6YqxYCWfWVm6c8qM.VQpngugF60q18Gpp" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 50, - "value": 75 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 3 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 9, - "creatureType": "animal", - "sizeCategory": "large", - "experiencePoints": 121, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Schlachtross", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/war-horse.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346236, - "modifiedTime": 1740227862844, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!6YqxYCWfWVm6c8qM" -} diff --git a/packs/creatures/Schlingwurzelbusch_XxrCtx56f0njVodK.json b/packs/creatures/Schlingwurzelbusch_XxrCtx56f0njVodK.json deleted file mode 100644 index d2e7ffd7..00000000 --- a/packs/creatures/Schlingwurzelbusch_XxrCtx56f0njVodK.json +++ /dev/null @@ -1,389 +0,0 @@ -{ - "_id": "XxrCtx56f0njVodK", - "name": "Schlingwurzelbusch", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "eOBJ9tJLFizjQW0e", - "name": "Wurzelhiebe", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!XxrCtx56f0njVodK.eOBJ9tJLFizjQW0e" - }, - { - "_id": "23MVIoRbK0X5AudH", - "name": "Gehölz", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!XxrCtx56f0njVodK.23MVIoRbK0X5AudH" - }, - { - "_id": "3YSmdA5G9MS2g4Dn", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!XxrCtx56f0njVodK.3YSmdA5G9MS2g4Dn" - }, - { - "_id": "0QUScCjMSupBxEo4", - "name": "Mehrere Angriffe (+4)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.1JDyMkVOlho7IuiN" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann 4 zusätzliche Hiebe mit seinen unzähligen Wurzeln in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.1JDyMkVOlho7IuiN", - "duplicateSource": null - }, - "_key": "!actors.items!XxrCtx56f0njVodK.0QUScCjMSupBxEo4" - }, - { - "_id": "uoE0EQZy2aEQGJWp", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!XxrCtx56f0njVodK.uoE0EQZy2aEQGJWp" - }, - { - "_id": "SMDvuSaB2M06xcg5", - "name": "Umschlingen", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/entangle.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg umschlingt Ziel (sofern 1+ Größenkategorie kleiner), welches fortan ST Punkte abwehrbaren Schaden erleidet, sich nicht frei bewegen kann und einen Malus von -2 auf alle Proben pro Größenunterschied erhält. Befreien: Opfer mit AGI+ST vergleichende Probe gegen KÖR+ST des Umschlingers.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE", - "duplicateSource": null - }, - "_key": "!actors.items!XxrCtx56f0njVodK.SMDvuSaB2M06xcg5" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 10, - "value": 30 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Lediglich Brennholz", - "foeFactor": 7, - "creatureType": "plantBeing", - "sizeCategory": "normal", - "experiencePoints": 122, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Schlingwurzelbusch", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346736, - "modifiedTime": 1740227862886, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!XxrCtx56f0njVodK" -} diff --git a/packs/creatures/Schwarm_ZZEBR9R04TlNXU5q.json b/packs/creatures/Schwarm_ZZEBR9R04TlNXU5q.json deleted file mode 100644 index 20c77fca..00000000 --- a/packs/creatures/Schwarm_ZZEBR9R04TlNXU5q.json +++ /dev/null @@ -1,255 +0,0 @@ -{ - "_id": "ZZEBR9R04TlNXU5q", - "name": "Schwarm", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "2Da0MbWQ8gy1WXBI", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 100000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!ZZEBR9R04TlNXU5q.2Da0MbWQ8gy1WXBI" - }, - { - "_id": "pII9BR3ndtlMaL4l", - "name": "Schwarm", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.rPbbTLUtSXZpdFjp" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swarm.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt als einzelner Gegner. Der Schwarmwert (SCW) entspricht seiner aktuellen Mitgliederanzahl / 10 (zu Beginn und max. 200 Mitglieder pro Schwarm = SCW 20). Pro 1 LK Schaden sterben 10 Mitglieder (= SCW -1). Schwärme können Mitglieder an benachbarte Felder abgeben und ihr eigenes sowie jedes angrenzende Feld gleichzeitig angreifen (mit jeweils vollen Schlagen-Wert).
\nSchlagen/Abwehr/LK entsprechen dem aktuellen SCW
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.rPbbTLUtSXZpdFjp", - "duplicateSource": null - }, - "_key": "!actors.items!ZZEBR9R04TlNXU5q.pII9BR3ndtlMaL4l" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 0, - "mod": 0 - }, - "mobility": { - "base": 0, - "mod": 0 - }, - "mind": { - "base": 0, - "mod": 0 - } - }, - "traits": { - "strength": { - "base": 0, - "mod": 0 - }, - "constitution": { - "base": 0, - "mod": 0 - }, - "agility": { - "base": 0, - "mod": 0 - }, - "dexterity": { - "base": 0, - "mod": 0 - }, - "intellect": { - "base": 0, - "mod": 0 - }, - "aura": { - "base": 0, - "mod": 0 - } - }, - "combatValues": { - "hitPoints": { - "mod": -10, - "value": 0 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 8 - }, - "movement": { - "mod": 6.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 5, - "creatureType": "animal", - "sizeCategory": "small", - "experiencePoints": 68, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Schwarm", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346763, - "modifiedTime": 1740227862889, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!ZZEBR9R04TlNXU5q" -} diff --git a/packs/creatures/Skelett_Rvu16XzEjizdqNsu.json b/packs/creatures/Skelett_Rvu16XzEjizdqNsu.json deleted file mode 100644 index 246e6c96..00000000 --- a/packs/creatures/Skelett_Rvu16XzEjizdqNsu.json +++ /dev/null @@ -1,290 +0,0 @@ -{ - "_id": "Rvu16XzEjizdqNsu", - "name": "Skelett", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/skeleton-green.png", - "items": [ - { - "_id": "PhvbJ2VSw3ivWS3F", - "name": "Knochenklaue", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!Rvu16XzEjizdqNsu.PhvbJ2VSw3ivWS3F" - }, - { - "_id": "jmoVrv9FCX28B4PJ", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!Rvu16XzEjizdqNsu.jmoVrv9FCX28B4PJ" - }, - { - "_id": "e5PbQLkYj3kldXil", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!Rvu16XzEjizdqNsu.e5PbQLkYj3kldXil" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 22 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 4, - "creatureType": "undead", - "sizeCategory": "normal", - "experiencePoints": 72, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Skelett", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/skeleton*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346657, - "modifiedTime": 1740227862879, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!Rvu16XzEjizdqNsu" -} diff --git a/packs/creatures/Tentakelhirn_dFL9UUXHq9heme4T.json b/packs/creatures/Tentakelhirn_dFL9UUXHq9heme4T.json deleted file mode 100644 index d41a8f34..00000000 --- a/packs/creatures/Tentakelhirn_dFL9UUXHq9heme4T.json +++ /dev/null @@ -1,358 +0,0 @@ -{ - "_id": "dFL9UUXHq9heme4T", - "name": "Tentakelhirn", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "DuBcMQTb1e7mIe79", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 100000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!dFL9UUXHq9heme4T.DuBcMQTb1e7mIe79" - }, - { - "_id": "z80WCPwmoMsdzYWD", - "name": "Schweben", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.05D4DdnbcQFoIllF" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/hover.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, auch schweben. Wird die Aktion „Rennen“ ausgeführt, erhöht sich die Geschwindigkeit wie am Boden auf Laufen x 2.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.05D4DdnbcQFoIllF", - "duplicateSource": null - }, - "_key": "!actors.items!dFL9UUXHq9heme4T.z80WCPwmoMsdzYWD" - }, - { - "_id": "8lyV8jx9ZVqPA4kF", - "name": "Werteverlust (GEI)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.m52MTRs1GMXScTki" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/attribute-loss.png", - "effects": [], - "folder": null, - "system": { - "description": "Pro schadensverursachenden Treffer mit dem Gedankenzehrerstrahl-Zauber wird GEI um 1 gesenkt (bei GEI Null ist das Opfer wahnsinnig). Pro Anwendung des Zaubers @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} wird 1 verlorener Attributspunkt regeneriert.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.m52MTRs1GMXScTki", - "duplicateSource": null - }, - "_key": "!actors.items!dFL9UUXHq9heme4T.8lyV8jx9ZVqPA4kF" - }, - { - "_id": "3sJtgHHEkOmTNLEL", - "name": "Gedankenzehrerstrahl", - "type": "spell", - "sort": 400000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "Nicht sichtbar; verursacht mental Schaden und führt zu Werteverlust
", - "equipped": true, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!dFL9UUXHq9heme4T.3sJtgHHEkOmTNLEL" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -4, - "value": 11 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 10 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 7, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 89, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Tentakelhirn", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346817, - "modifiedTime": 1740227862895, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!dFL9UUXHq9heme4T" -} diff --git a/packs/creatures/Teufelchen_III_22pkyKnZoRLG0nnY.json b/packs/creatures/Teufelchen_III_22pkyKnZoRLG0nnY.json deleted file mode 100644 index c4148e5d..00000000 --- a/packs/creatures/Teufelchen_III_22pkyKnZoRLG0nnY.json +++ /dev/null @@ -1,273 +0,0 @@ -{ - "_id": "22pkyKnZoRLG0nnY", - "name": "Teufelchen III", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "W2e5m1533YiEPsdg", - "name": "Feuerstrahl", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/fire-ray-small.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.spells.kudkdrpMU0C83vM7" - } - }, - "system": { - "description": "Der Zauberwirker schießt einen Feuerstrahl auf einen Feind, dessen Schaden dem Probenergebnis entspricht.
", - "equipped": true, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 1, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.spells.kudkdrpMU0C83vM7", - "duplicateSource": null - }, - "_key": "!actors.items!22pkyKnZoRLG0nnY.W2e5m1533YiEPsdg" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 4, - "mod": 0 - }, - "mobility": { - "base": 5, - "mod": 0 - }, - "mind": { - "base": 3, - "mod": 0 - } - }, - "traits": { - "strength": { - "base": 0, - "mod": 0 - }, - "constitution": { - "base": 0, - "mod": 0 - }, - "agility": { - "base": 0, - "mod": 0 - }, - "dexterity": { - "base": 6, - "mod": 0 - }, - "intellect": { - "base": 0, - "mod": 0 - }, - "aura": { - "base": 0, - "mod": 0 - } - }, - "combatValues": { - "hitPoints": { - "mod": -7, - "value": 7 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "", - "foeFactor": 4, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 44, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "name": "Teufelchen I", - "displayName": 0, - "actorLink": false, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "disposition": -1, - "displayBars": 0, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "flags": { - "darkness-dependent-vision": { - "dimVisionDarknessMin": null, - "dimVisionDarknessMax": null, - "brightVisionDarknessMin": null, - "brightVisionDarknessMax": null - } - }, - "randomImg": false, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346173, - "modifiedTime": 1740227862840, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!22pkyKnZoRLG0nnY" -} diff --git a/packs/creatures/Teufelchen_II_SxbO1iTrXYGbdMoC.json b/packs/creatures/Teufelchen_II_SxbO1iTrXYGbdMoC.json deleted file mode 100644 index 2273130f..00000000 --- a/packs/creatures/Teufelchen_II_SxbO1iTrXYGbdMoC.json +++ /dev/null @@ -1,197 +0,0 @@ -{ - "_id": "SxbO1iTrXYGbdMoC", - "name": "Teufelchen II", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 8, - "mod": 0 - }, - "mobility": { - "base": 5, - "mod": 0 - }, - "mind": { - "base": 1, - "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": { - "mod": -11, - "value": 11 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "", - "foeFactor": 5, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 48, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "name": "Teufelchen I", - "displayName": 0, - "actorLink": false, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "disposition": -1, - "displayBars": 0, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "flags": { - "darkness-dependent-vision": { - "dimVisionDarknessMin": null, - "dimVisionDarknessMax": null, - "brightVisionDarknessMin": null, - "brightVisionDarknessMax": null - } - }, - "randomImg": false, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346686, - "modifiedTime": 1740227862882, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!SxbO1iTrXYGbdMoC" -} diff --git a/packs/creatures/Teufelchen_I_aqbcBjeCJUHJ5uVj.json b/packs/creatures/Teufelchen_I_aqbcBjeCJUHJ5uVj.json deleted file mode 100644 index 328580b8..00000000 --- a/packs/creatures/Teufelchen_I_aqbcBjeCJUHJ5uVj.json +++ /dev/null @@ -1,266 +0,0 @@ -{ - "_id": "aqbcBjeCJUHJ5uVj", - "name": "Teufelchen I", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "L9utJ9BJSLkYbUjN", - "name": "Fliegen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!aqbcBjeCJUHJ5uVj.L9utJ9BJSLkYbUjN" - }, - { - "_id": "OaZjNMhyCyxRKA8C", - "name": "Krallen", - "type": "weapon", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0, - "action": "create" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!aqbcBjeCJUHJ5uVj.OaZjNMhyCyxRKA8C" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 7, - "mod": 0 - }, - "mobility": { - "base": 4, - "mod": 0 - }, - "mind": { - "base": 1, - "mod": 0 - } - }, - "traits": { - "strength": { - "base": 5, - "mod": 0 - }, - "constitution": { - "base": 1, - "mod": 0 - }, - "agility": { - "base": 0, - "mod": 0 - }, - "dexterity": { - "base": 0, - "mod": 0 - }, - "intellect": { - "base": 0, - "mod": 0 - }, - "aura": { - "base": 0, - "mod": 0 - } - }, - "combatValues": { - "hitPoints": { - "mod": -9, - "value": 9 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "", - "foeFactor": 4, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 35, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "name": "Teufelchen I", - "displayName": 0, - "actorLink": false, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "disposition": -1, - "displayBars": 0, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "flags": { - "darkness-dependent-vision": { - "dimVisionDarknessMin": null, - "dimVisionDarknessMax": null, - "brightVisionDarknessMin": null, - "brightVisionDarknessMax": null - } - }, - "randomImg": false, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346774, - "modifiedTime": 1740227862890, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!aqbcBjeCJUHJ5uVj" -} diff --git a/packs/creatures/Todesfee_6KmAeL9lVxWXIeU6.json b/packs/creatures/Todesfee_6KmAeL9lVxWXIeU6.json deleted file mode 100644 index 91ebc5cf..00000000 --- a/packs/creatures/Todesfee_6KmAeL9lVxWXIeU6.json +++ /dev/null @@ -1,556 +0,0 @@ -{ - "_id": "6KmAeL9lVxWXIeU6", - "name": "Todesfee", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "0tHp37tNXFa9akK0", - "name": "Geisterklaue", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.0tHp37tNXFa9akK0" - }, - { - "_id": "quc1WJJwo4UMlkg3", - "name": "Körperlos", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 8, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.quc1WJJwo4UMlkg3" - }, - { - "_id": "U6mQ5sQwMjdLgUww", - "name": "Alterung (1 Jahr pro Schadenspunkt)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.mVs6A48mWnfV9hcL" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/aging.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Treffer altert das Ziel pro erlittenen Schadenspunkt um 1 Jahr.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.mVs6A48mWnfV9hcL", - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.U6mQ5sQwMjdLgUww" - }, - { - "_id": "IolX9qsFGSxYN38o", - "name": "Angst (2)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.3LGUHTPC3tbVC13X" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -2 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 20 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.3LGUHTPC3tbVC13X", - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.IolX9qsFGSxYN38o" - }, - { - "_id": "w1h6K90G0l0RXQy5", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.w1h6K90G0l0RXQy5" - }, - { - "_id": "eSMM4Zq5UPWN31iB", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.eSMM4Zq5UPWN31iB" - }, - { - "_id": "VHUCIwHGz93rL2db", - "name": "Nur durch Magie verletzbar", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.FCxjdPJ1L8EJd0IF" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/only-vulnerable-to-magic.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur Angriffe mit magischen Waffen oder durch Zauber richten Schaden an. Ausgenommen sind eventuelle Anfälligkeiten, durch die ebenfalls Schaden erlitten wird.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.FCxjdPJ1L8EJd0IF", - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.VHUCIwHGz93rL2db" - }, - { - "_id": "vcdY5BrydMFLsnRU", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 900000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.vcdY5BrydMFLsnRU" - }, - { - "_id": "We3eGY2UjINy3lRZ", - "name": "Wehklagen", - "type": "spell", - "sort": 1000000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "Jeder im Umkreis von 9 m um die Todesfee erleidet nicht abwehrbaren Schaden in Höhe des Probenergebnisses.
", - "equipped": true, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "9", - "unit": "meter" - }, - "duration": { - "value": "", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.We3eGY2UjINy3lRZ" - }, - { - "_id": "aTr4fC2AuCJ5PLGF", - "name": "Totenkraft", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/power-of-the-dead.png", - "effects": [], - "folder": null, - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ZkgZiFI5xy8aevG8" - } - }, - "system": { - "description": "Erhält GEI+AU als Bonus auf Stärke und Härte.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ZkgZiFI5xy8aevG8", - "duplicateSource": null - }, - "_key": "!actors.items!6KmAeL9lVxWXIeU6.aTr4fC2AuCJ5PLGF" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "attributes": { - "body": { - "base": 6, - "mod": 0 - }, - "mobility": { - "base": 9, - "mod": 0 - }, - "mind": { - "base": 10, - "mod": 0 - } - }, - "traits": { - "strength": { - "base": 0, - "mod": 0 - }, - "constitution": { - "base": 0, - "mod": 0 - }, - "agility": { - "base": 0, - "mod": 0 - }, - "dexterity": { - "base": 0, - "mod": 0 - }, - "intellect": { - "base": 3, - "mod": 0 - }, - "aura": { - "base": 9, - "mod": 0 - } - }, - "combatValues": { - "hitPoints": { - "mod": 0, - "value": 35 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 23, - "creatureType": "undead", - "sizeCategory": "normal", - "experiencePoints": 284, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Todesfee", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346224, - "modifiedTime": 1740227862843, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!6KmAeL9lVxWXIeU6" -} diff --git a/packs/creatures/Troll_EItxqEiDUOmJdy4n.json b/packs/creatures/Troll_EItxqEiDUOmJdy4n.json deleted file mode 100644 index e87e939f..00000000 --- a/packs/creatures/Troll_EItxqEiDUOmJdy4n.json +++ /dev/null @@ -1,456 +0,0 @@ -{ - "_id": "EItxqEiDUOmJdy4n", - "name": "Troll", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/troll-blue.png", - "items": [ - { - "_id": "k4z8YIPc1sSdgAuf", - "name": "Massive Keule", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!EItxqEiDUOmJdy4n.k4z8YIPc1sSdgAuf" - }, - { - "_id": "SUbNCeLDrM29kOjI", - "name": "Geworfener Fels", - "type": "weapon", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "ranged", - "weaponBonus": 4, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!EItxqEiDUOmJdy4n.SUbNCeLDrM29kOjI" - }, - { - "_id": "2t0pWjoVV6V1XL7m", - "name": "Warzenhaut", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!EItxqEiDUOmJdy4n.2t0pWjoVV6V1XL7m" - }, - { - "_id": "XBYL6p6Lh2di3cL0", - "name": "Anfällig (Licht)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.aOsmsf7jIK7hU9U8" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Lichtangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.aOsmsf7jIK7hU9U8", - "duplicateSource": null - }, - "_key": "!actors.items!EItxqEiDUOmJdy4n.XBYL6p6Lh2di3cL0" - }, - { - "_id": "ut3GaXn0lU6CJO2f", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.75iKq2PTrfyTw0s4", - "duplicateSource": null - }, - "_key": "!actors.items!EItxqEiDUOmJdy4n.ut3GaXn0lU6CJO2f" - }, - { - "_id": "wxRyDYdcYDvfRLsw", - "name": "Regeneration", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.Mh6bLPD3N29ybeLq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/regeneration.png", - "effects": [], - "folder": null, - "system": { - "description": "Regeneriert jede Kampfrunde aktionsfrei LK in Höhe des Probenergebnisses der Regenerations-Probe (PW: KÖR). Durch Feuer oder Säure verlorene LK können nicht regeneriert werden.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.Mh6bLPD3N29ybeLq", - "duplicateSource": null - }, - "_key": "!actors.items!EItxqEiDUOmJdy4n.wxRyDYdcYDvfRLsw" - }, - { - "_id": "hutBK3nVQ2TZBivP", - "name": "Umschlingen", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/entangle.png", - "effects": [], - "folder": null, - "system": { - "description": "Schlagen-Immersieg umschlingt Ziel (sofern 1+ Größenkategorie kleiner), welches fortan ST Punkte abwehrbaren Schaden erleidet, sich nicht frei bewegen kann und einen Malus von -2 auf alle Proben pro Größenunterschied erhält. Befreien: Opfer mit AGI+ST vergleichende Probe gegen KÖR+ST des Umschlingers.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.AjPsjbxcuNslQEuE", - "duplicateSource": null - }, - "_key": "!actors.items!EItxqEiDUOmJdy4n.hutBK3nVQ2TZBivP" - }, - { - "_id": "275bgVmTqYULPH3V", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!EItxqEiDUOmJdy4n.275bgVmTqYULPH3V" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 30, - "value": 60 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 3 - }, - "movement": { - "mod": 1 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "#BW 1B16", - "foeFactor": 14, - "creatureType": "humanoid", - "sizeCategory": "large", - "experiencePoints": 202, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Troll", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/troll*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346327, - "modifiedTime": 1740227862855, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!EItxqEiDUOmJdy4n" -} diff --git a/packs/creatures/Unwolf_O2maANGDJHPLX8aE.json b/packs/creatures/Unwolf_O2maANGDJHPLX8aE.json deleted file mode 100644 index 171b71e7..00000000 --- a/packs/creatures/Unwolf_O2maANGDJHPLX8aE.json +++ /dev/null @@ -1,456 +0,0 @@ -{ - "_id": "O2maANGDJHPLX8aE", - "name": "Unwolf", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/nether-wolf.png", - "items": [ - { - "_id": "9olbXmWVzPkmPhvu", - "name": "Biss", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!O2maANGDJHPLX8aE.9olbXmWVzPkmPhvu" - }, - { - "_id": "p3zhDhgstlj2JMxe", - "name": "Feuerodem", - "type": "weapon", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "ranged", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!O2maANGDJHPLX8aE.p3zhDhgstlj2JMxe" - }, - { - "_id": "hcB5LcidhVSW5rI7", - "name": "Brennendes Fell", - "type": "armor", - "sort": 300000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!O2maANGDJHPLX8aE.hcB5LcidhVSW5rI7" - }, - { - "_id": "MPb5ZrTIutJ291XD", - "name": "Anfällig (Wasser)", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.E5WqX3Em2HOAkP2e" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Eis-, Frost- und Wasserangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.E5WqX3Em2HOAkP2e", - "duplicateSource": null - }, - "_key": "!actors.items!O2maANGDJHPLX8aE.MPb5ZrTIutJ291XD" - }, - { - "_id": "fMULyKcCpn2tVMPO", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!O2maANGDJHPLX8aE.fMULyKcCpn2tVMPO" - }, - { - "_id": "qLG2ZZPYGAbLzpBf", - "name": "Odem", - "type": "specialCreatureAbility", - "sort": 600000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.sDffbUUXg88Vn2Pq", - "duplicateSource": null - }, - "_key": "!actors.items!O2maANGDJHPLX8aE.qLG2ZZPYGAbLzpBf" - }, - { - "_id": "4851TNs45Q3hSrU1", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 700000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!O2maANGDJHPLX8aE.4851TNs45Q3hSrU1" - }, - { - "_id": "NXxoBj91nyeyBm4M", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 800000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!O2maANGDJHPLX8aE.NXxoBj91nyeyBm4M" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 12, - "value": 35 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:16)", - "foeFactor": 7, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 115, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Unwolf", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/nether-wolf.png", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346597, - "modifiedTime": 1740227862870, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!O2maANGDJHPLX8aE" -} diff --git a/packs/creatures/Vampirfledermaus_lys4bJc7GL5f5ORp.json b/packs/creatures/Vampirfledermaus_lys4bJc7GL5f5ORp.json deleted file mode 100644 index 008522ab..00000000 --- a/packs/creatures/Vampirfledermaus_lys4bJc7GL5f5ORp.json +++ /dev/null @@ -1,354 +0,0 @@ -{ - "_id": "lys4bJc7GL5f5ORp", - "name": "Vampirfledermaus", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/vampire-bat.png", - "items": [ - { - "_id": "G08O3BP9HQ0mLjAQ", - "name": "Krallen", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!lys4bJc7GL5f5ORp.G08O3BP9HQ0mLjAQ" - }, - { - "_id": "hdTEWmE6saO2W7FI", - "name": "Sonar", - "type": "specialCreatureAbility", - "sort": 200000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.BtjiEmhGyje6YghP" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/sonar.png", - "effects": [], - "folder": null, - "system": { - "description": "„Sieht“ per Sonar.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.BtjiEmhGyje6YghP", - "duplicateSource": null - }, - "_key": "!actors.items!lys4bJc7GL5f5ORp.hdTEWmE6saO2W7FI" - }, - { - "_id": "OfL0gyUOJjAOW3xA", - "name": "Fliegen", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.uX7wuGyUjOPpYR5W", - "duplicateSource": null - }, - "_key": "!actors.items!lys4bJc7GL5f5ORp.OfL0gyUOJjAOW3xA" - }, - { - "_id": "eH5vkCneA5sLHkmp", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!lys4bJc7GL5f5ORp.eH5vkCneA5sLHkmp" - }, - { - "_id": "1zKUlljm7MEYc3l8", - "name": "Sturzangriff", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/dive-attack.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird fliegend mindestens eine Distanz in Höhe von Laufen x 2 „rennend“ geflogen, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen, während der Bewegung, also nicht nur davor oder danach.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.eWuQlQYF3VmyR0kt", - "duplicateSource": null - }, - "_key": "!actors.items!lys4bJc7GL5f5ORp.1zKUlljm7MEYc3l8" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -13, - "value": 4 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 1, - "creatureType": "animal", - "sizeCategory": "tiny", - "experiencePoints": 55, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Vampirfledermaus", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/vampire-bat.png", - "scaleX": 0.5, - "scaleY": 0.5, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346885, - "modifiedTime": 1740227862902, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!lys4bJc7GL5f5ORp" -} diff --git a/packs/creatures/Wasserelementar_III_dlrDPQ3is4NkzZJB.json b/packs/creatures/Wasserelementar_III_dlrDPQ3is4NkzZJB.json deleted file mode 100644 index df31a746..00000000 --- a/packs/creatures/Wasserelementar_III_dlrDPQ3is4NkzZJB.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "_id": "dlrDPQ3is4NkzZJB", - "name": "Wasserelementar III", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [ - { - "_id": "HPT4hAgQnGf1gbJR", - "name": "Wasserstrahl", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "-1 WB / 2 Meter
", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "meleeRanged", - "weaponBonus": 4, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!dlrDPQ3is4NkzZJB.HPT4hAgQnGf1gbJR" - }, - { - "_id": "OIKYSareGFhHJxAB", - "name": "Keine feste Gestalt", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 8, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!dlrDPQ3is4NkzZJB.OIKYSareGFhHJxAB" - }, - { - "_id": "NKUKD1KfNTpKZygj", - "name": "Anfällig (Feuer)", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.XhAfEVVoSADC880C" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "system": { - "description": "Erhält doppelten Schaden durch Feuerangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.XhAfEVVoSADC880C", - "duplicateSource": null - }, - "_key": "!actors.items!dlrDPQ3is4NkzZJB.NKUKD1KfNTpKZygj" - }, - { - "_id": "VCmj5YFjcDb1Slay", - "name": "Schwimmen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swim.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann, statt zu laufen, schwimmen. Wird die Aktion „Rennen“ schwimmend ausgeführt, erhöht sich die Geschwindigkeit ganz normal auf Laufen x 2.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.18PDF4gqWrIRWudN", - "duplicateSource": null - }, - "_key": "!actors.items!dlrDPQ3is4NkzZJB.VCmj5YFjcDb1Slay" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 31, - "value": 62 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 16, - "creatureType": "magicalEntity", - "sizeCategory": "large", - "experiencePoints": 133, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Wasserelementar III", - "displayName": 20, - "width": 2, - "height": 2, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 1, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346824, - "modifiedTime": 1740227862896, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!dlrDPQ3is4NkzZJB" -} diff --git a/packs/creatures/Wasserelementar_II_Xn7g2PB1rXvllwRi.json b/packs/creatures/Wasserelementar_II_Xn7g2PB1rXvllwRi.json deleted file mode 100644 index b9bb0cbc..00000000 --- a/packs/creatures/Wasserelementar_II_Xn7g2PB1rXvllwRi.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "Xn7g2PB1rXvllwRi", - "name": "Wasserelementar II", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 24 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 9, - "creatureType": "magicalEntity", - "sizeCategory": "normal", - "experiencePoints": 83, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Wasserelementar II", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346733, - "modifiedTime": 1740227862885, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!Xn7g2PB1rXvllwRi" -} diff --git a/packs/creatures/Wasserelementar_I_ZJF6ieo8O0GXfgwz.json b/packs/creatures/Wasserelementar_I_ZJF6ieo8O0GXfgwz.json deleted file mode 100644 index 466d8197..00000000 --- a/packs/creatures/Wasserelementar_I_ZJF6ieo8O0GXfgwz.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "_id": "ZJF6ieo8O0GXfgwz", - "name": "Wasserelementar I", - "type": "creature", - "img": "icons/svg/mystery-man.svg", - "items": [], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": -9, - "value": 10 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "-", - "foeFactor": 3, - "creatureType": "magicalEntity", - "sizeCategory": "small", - "experiencePoints": 60, - "description": "Alle Arten von Elementaren sind sichtbar, selbst Luftelementare, die als stürmische Wirbel Gestalt annehmen.
\nSoll ein Elementar gegen ein Element vorgehen (beispielsweise ein Lagerfeuer löschen), wird mit Hilfe der Tabelle auf Seite 54 dieses einer Stufe (I-III) zugeordnet, welche mit 5 multipliziert wird, bevor auf das Ergebnis der aufgelistete Größenmodifikator aus der Tabelle angerechnet wird. Das endgültige Ergebnis stellt den Probenwert dar, gegen den das Elementar eine vergleichende Probe mit KÖR+ST würfeln muss, um das Element zu bezwingen. Das Elementar erhält +8 auf die Probe, wenn es sich um das eigene Element handelt bzw. -8, wenn es gegen das Element anfällig ist. Bei einem Mißerfolg der vergleichenden Probe erhält es abwehrlosen Schaden in Höhe der Ergebnisdistanz, kann es aber in der nächsten Runde erneut versuchen.
" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Wasserelementar I", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": false, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "icons/svg/mystery-man.svg", - "scaleX": 0.7, - "scaleY": 0.7, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346750, - "modifiedTime": 1740227862888, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!ZJF6ieo8O0GXfgwz" -} diff --git a/packs/creatures/Wolf_nZ9u6G3D3Q9oUXM8.json b/packs/creatures/Wolf_nZ9u6G3D3Q9oUXM8.json deleted file mode 100644 index 4a52681b..00000000 --- a/packs/creatures/Wolf_nZ9u6G3D3Q9oUXM8.json +++ /dev/null @@ -1,357 +0,0 @@ -{ - "_id": "nZ9u6G3D3Q9oUXM8", - "name": "Wolf", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/wolf-2.png", - "items": [ - { - "_id": "CbeR35FgiGzc1xtl", - "name": "Kräftiger Biss", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!nZ9u6G3D3Q9oUXM8.CbeR35FgiGzc1xtl" - }, - { - "_id": "PZ9G8IZoP5eiPQEx", - "name": "Wolfspelz", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 1, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!nZ9u6G3D3Q9oUXM8.PZ9G8IZoP5eiPQEx" - }, - { - "_id": "ZDZ9qHG17DjQWhSE", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.pJjtHe2Rd0YCa35n", - "duplicateSource": null - }, - "_key": "!actors.items!nZ9u6G3D3Q9oUXM8.ZDZ9qHG17DjQWhSE" - }, - { - "_id": "nvwGqdzQA4Mf37Ci", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!nZ9u6G3D3Q9oUXM8.nvwGqdzQA4Mf37Ci" - }, - { - "_id": "PQZ9xUYQyQHv8gEy", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.L0dxlrCY14bLyUdQ", - "duplicateSource": null - }, - "_key": "!actors.items!nZ9u6G3D3Q9oUXM8.PQZ9xUYQyQHv8gEy" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 10, - "value": 29 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 2.5 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "Trophäe (BW 1A:10)", - "foeFactor": 2, - "creatureType": "humanoid", - "sizeCategory": "normal", - "experiencePoints": 81, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Wolf", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/wolf*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346909, - "modifiedTime": 1740227862907, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!nZ9u6G3D3Q9oUXM8" -} diff --git a/packs/creatures/Zombie_rLUCyWfSBebB8cSC.json b/packs/creatures/Zombie_rLUCyWfSBebB8cSC.json deleted file mode 100644 index fb1cbd87..00000000 --- a/packs/creatures/Zombie_rLUCyWfSBebB8cSC.json +++ /dev/null @@ -1,357 +0,0 @@ -{ - "_id": "rLUCyWfSBebB8cSC", - "name": "Zombie", - "type": "creature", - "img": "systems/ds4/assets/tokens/devin-night/zombie-female-red.png", - "items": [ - { - "_id": "NdunVanOXm7hG0rX", - "name": "Fäulnispranke", - "type": "weapon", - "sort": 100000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!rLUCyWfSBebB8cSC.NdunVanOXm7hG0rX" - }, - { - "_id": "ZjRYyfjMWlmtGUJ0", - "name": "Merkt nichts", - "type": "armor", - "sort": 200000, - "flags": {}, - "img": "icons/svg/mystery-man.svg", - "effects": [], - "folder": null, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": true, - "armorValue": 2, - "armorMaterialType": "natural", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors.items!rLUCyWfSBebB8cSC.ZjRYyfjMWlmtGUJ0" - }, - { - "_id": "HT4yv3mKyIcwaLKr", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "sort": 300000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.ziB3j0RSbWMtq1LX", - "duplicateSource": null - }, - "_key": "!actors.items!rLUCyWfSBebB8cSC.HT4yv3mKyIcwaLKr" - }, - { - "_id": "rCzeYlfYzbGpNQOe", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "sort": 400000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.YrmJo8dg4CF3lJdH", - "duplicateSource": null - }, - "_key": "!actors.items!rLUCyWfSBebB8cSC.rCzeYlfYzbGpNQOe" - }, - { - "_id": "Y2r3v6U8Grn619HR", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "sort": 500000, - "flags": { - "core": { - "sourceId": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG" - } - }, - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": null, - "systemVersion": null, - "coreVersion": "12.331", - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": "Compendium.ds4.special-creature-abilities.R3j1CjXJckUH0CBG", - "duplicateSource": null - }, - "_key": "!actors.items!rLUCyWfSBebB8cSC.Y2r3v6U8Grn619HR" - } - ], - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "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": { - "mod": 0, - "value": 28 - }, - "defense": { - "mod": 0 - }, - "initiative": { - "mod": 0 - }, - "movement": { - "mod": 0 - }, - "meleeAttack": { - "mod": 0 - }, - "rangedAttack": { - "mod": 0 - }, - "spellcasting": { - "mod": 0 - }, - "targetedSpellcasting": { - "mod": 0 - } - }, - "baseInfo": { - "loot": "BW 1B:4", - "foeFactor": 10, - "creatureType": "undead", - "sizeCategory": "normal", - "experiencePoints": 78, - "description": "" - } - }, - "ownership": { - "default": 0 - }, - "prototypeToken": { - "flags": {}, - "name": "Zombie", - "displayName": 20, - "width": 1, - "height": 1, - "lockRotation": false, - "rotation": 0, - "actorLink": false, - "disposition": -1, - "displayBars": 40, - "bar1": { - "attribute": "combatValues.hitPoints" - }, - "bar2": { - "attribute": null - }, - "randomImg": true, - "alpha": 1, - "light": { - "alpha": 0.5, - "angle": 360, - "bright": 0, - "coloration": 1, - "dim": 0, - "luminosity": 0.5, - "saturation": 0, - "contrast": 0, - "shadows": 0, - "animation": { - "speed": 5, - "intensity": 5, - "reverse": false, - "type": null - }, - "darkness": { - "min": 0, - "max": 1 - }, - "attenuation": 0.5, - "color": null, - "negative": false, - "priority": 0 - }, - "texture": { - "src": "systems/ds4/assets/tokens/devin-night/zombie*.png", - "scaleX": 1, - "scaleY": 1, - "offsetX": 0, - "offsetY": 0, - "rotation": 0, - "tint": "#ffffff", - "anchorX": 0.5, - "anchorY": 0.5, - "fit": "contain", - "alphaThreshold": 0.75 - }, - "sight": { - "angle": 360, - "enabled": false, - "range": 0, - "brightness": 1, - "visionMode": "basic", - "color": null, - "attenuation": 0.1, - "saturation": 0, - "contrast": 0 - }, - "detectionModes": [], - "appendNumber": false, - "prependAdjective": false, - "hexagonalShape": 0, - "occludable": { - "radius": 0 - }, - "ring": { - "enabled": false, - "colors": { - "ring": null, - "background": null - }, - "effects": 1, - "subject": { - "scale": 1, - "texture": null - } - } - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995346978, - "modifiedTime": 1740227862910, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!actors!rLUCyWfSBebB8cSC" -} diff --git a/packs/items/Abklingring_2XfoxOYNOTar9OAt.json b/packs/items/Abklingring_2XfoxOYNOTar9OAt.json deleted file mode 100644 index 00fe90a0..00000000 --- a/packs/items/Abklingring_2XfoxOYNOTar9OAt.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "2XfoxOYNOTar9OAt", - "name": "Abklingring", - "type": "equipment", - "img": "icons/equipment/finger/ring-band-engraved-scrolls-silver.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser einfache Abklingring senkt die Abklingzeit sämtlicher Zauber seines Trägers um 1.
", - "quantity": 1, - "price": 5252, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342685, - "modifiedTime": 1740227862964, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2XfoxOYNOTar9OAt" -} diff --git a/packs/items/Abklingtrank_NZPp8EGEg1JmXdNd.json b/packs/items/Abklingtrank_NZPp8EGEg1JmXdNd.json deleted file mode 100644 index 03e63149..00000000 --- a/packs/items/Abklingtrank_NZPp8EGEg1JmXdNd.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "NZPp8EGEg1JmXdNd", - "name": "Abklingtrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-round-corked-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese meist hellblauen Tränke halbieren (abrunden) die Abklingzeit aller Zauber für die Dauer eines Kampfes.
", - "quantity": 1, - "price": 50, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342916, - "modifiedTime": 1740227862987, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NZPp8EGEg1JmXdNd" -} diff --git a/packs/items/Aderschlitz_IHKj37AVchphOWGZ.json b/packs/items/Aderschlitz_IHKj37AVchphOWGZ.json deleted file mode 100644 index 8a05cb05..00000000 --- a/packs/items/Aderschlitz_IHKj37AVchphOWGZ.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "IHKj37AVchphOWGZ", - "name": "Aderschlitz", - "type": "weapon", - "img": "icons/weapons/daggers/dagger-bone-barbed.webp", - "effects": [ - { - "_id": "VdOm09p88rltMp73", - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!IHKj37AVchphOWGZ.VdOm09p88rltMp73" - }, - { - "_id": "0pBScyXbTQudldbm", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Aderschlitzer", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Aderschlitzer +III", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!IHKj37AVchphOWGZ.0pBScyXbTQudldbm" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein magischer Dolch +2 mit Aderschlitzer +III.
\nInitiative +1
", - "quantity": 1, - "price": 7252, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342868, - "modifiedTime": 1740227862982, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!IHKj37AVchphOWGZ" -} diff --git a/packs/items/Allheilungstrank_eRQ9LUNWbnAuuVX6.json b/packs/items/Allheilungstrank_eRQ9LUNWbnAuuVX6.json deleted file mode 100644 index 96b37ae5..00000000 --- a/packs/items/Allheilungstrank_eRQ9LUNWbnAuuVX6.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "eRQ9LUNWbnAuuVX6", - "name": "Allheilungstrank", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-corked-white.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Von milchiger Färbung, wirkt dieser Trank den Zauber @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} auf den Trinkenden (keine Probe nötig).
", - "quantity": 1, - "price": 1000, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343166, - "modifiedTime": 1740227863013, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eRQ9LUNWbnAuuVX6" -} diff --git a/packs/items/Allsichttrank_Zl8ZkPrwHibRYWPh.json b/packs/items/Allsichttrank_Zl8ZkPrwHibRYWPh.json deleted file mode 100644 index 879d6c9a..00000000 --- a/packs/items/Allsichttrank_Zl8ZkPrwHibRYWPh.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "Zl8ZkPrwHibRYWPh", - "name": "Allsichttrank", - "type": "loot", - "img": "icons/consumables/potions/potion-vial-corked-labeled-purple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Für W20 Minuten kann der Trinker Magie, Unsichtbares und Verborgenes (Fallen, Geheimtüren usw.) automatisch erkennen.
", - "quantity": 1, - "price": 200, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343084, - "modifiedTime": 1740227863005, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Zl8ZkPrwHibRYWPh" -} diff --git a/packs/items/Alterungstrank_oeyhSfAQQPUbm10p.json b/packs/items/Alterungstrank_oeyhSfAQQPUbm10p.json deleted file mode 100644 index 2f123649..00000000 --- a/packs/items/Alterungstrank_oeyhSfAQQPUbm10p.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "oeyhSfAQQPUbm10p", - "name": "Alterungstrank", - "type": "loot", - "img": "icons/consumables/potions/potion-vial-corked-purple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Trinkende wird augenblicklich W20 Jahre älter, Haare und Nägel wachsen entsprechend.
", - "quantity": 1, - "price": 500, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343402, - "modifiedTime": 1740227863021, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oeyhSfAQQPUbm10p" -} diff --git a/packs/items/Andauernder_Heiltrank_9NUM3H7oTfrHhFpD.json b/packs/items/Andauernder_Heiltrank_9NUM3H7oTfrHhFpD.json deleted file mode 100644 index dafcde9e..00000000 --- a/packs/items/Andauernder_Heiltrank_9NUM3H7oTfrHhFpD.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "9NUM3H7oTfrHhFpD", - "name": "Andauernder Heiltrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-round-corked-pink.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses oft purpurne Getränk heilt 2W20 Runden lang 1 Lebenskraft/Runde.
", - "quantity": 1, - "price": 20, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342771, - "modifiedTime": 1740227862970, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9NUM3H7oTfrHhFpD" -} diff --git a/packs/items/Angelhaken_und_Schnur_8YpZMXq9RhMCJOst.json b/packs/items/Angelhaken_und_Schnur_8YpZMXq9RhMCJOst.json deleted file mode 100644 index f875b1b8..00000000 --- a/packs/items/Angelhaken_und_Schnur_8YpZMXq9RhMCJOst.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "8YpZMXq9RhMCJOst", - "name": "Angelhaken und Schnur", - "type": "loot", - "img": "icons/tools/fishing/hook-barbed-steel-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.2, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342762, - "modifiedTime": 1740227862969, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8YpZMXq9RhMCJOst" -} diff --git a/packs/items/Anh_nger_mit_heiligem_Symbol_dDhfIuRomMfy2kkP.json b/packs/items/Anh_nger_mit_heiligem_Symbol_dDhfIuRomMfy2kkP.json deleted file mode 100644 index 9753bdb1..00000000 --- a/packs/items/Anh_nger_mit_heiligem_Symbol_dDhfIuRomMfy2kkP.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "dDhfIuRomMfy2kkP", - "name": "Anhänger mit heiligem Symbol", - "type": "equipment", - "img": "icons/equipment/neck/amulet-carved-stone-spiral.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "village", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343132, - "modifiedTime": 1740227863010, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dDhfIuRomMfy2kkP" -} diff --git a/packs/items/Armreif_des_Bogners_VJftG703v7db0Cqf.json b/packs/items/Armreif_des_Bogners_VJftG703v7db0Cqf.json deleted file mode 100644 index aa08e692..00000000 --- a/packs/items/Armreif_des_Bogners_VJftG703v7db0Cqf.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "VJftG703v7db0Cqf", - "name": "Armreif des Bogners", - "type": "equipment", - "img": "icons/equipment/wrist/bracer-belted-leather-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Verleiht auf Schießen-Proben mit Bögen einen Bonus von +2.
", - "quantity": 1, - "price": 1260, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343048, - "modifiedTime": 1740227863002, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VJftG703v7db0Cqf" -} diff --git a/packs/items/Atemfreitrank_2jgIyVHZYJroSUFY.json b/packs/items/Atemfreitrank_2jgIyVHZYJroSUFY.json deleted file mode 100644 index 8f1e96ff..00000000 --- a/packs/items/Atemfreitrank_2jgIyVHZYJroSUFY.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "2jgIyVHZYJroSUFY", - "name": "Atemfreitrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-conical-bubbling-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Trinker dieses sprudelnden Trankes braucht für KÖR in Stunden nicht zu atmen.
", - "quantity": 1, - "price": 200, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342690, - "modifiedTime": 1740227862964, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2jgIyVHZYJroSUFY" -} diff --git a/packs/items/Axt__1_jsANSjzxRPKO3AyG.json b/packs/items/Axt__1_jsANSjzxRPKO3AyG.json deleted file mode 100644 index 67271663..00000000 --- a/packs/items/Axt__1_jsANSjzxRPKO3AyG.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "jsANSjzxRPKO3AyG", - "name": "Axt +1", - "type": "weapon", - "img": "icons/weapons/axes/shortaxe-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343311, - "modifiedTime": 1740227863018, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!jsANSjzxRPKO3AyG" -} diff --git a/packs/items/Axt__2_PTiDNLKc0l9rD7Kb.json b/packs/items/Axt__2_PTiDNLKc0l9rD7Kb.json deleted file mode 100644 index aa0ad807..00000000 --- a/packs/items/Axt__2_PTiDNLKc0l9rD7Kb.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "PTiDNLKc0l9rD7Kb", - "name": "Axt +2", - "type": "weapon", - "img": "icons/weapons/axes/shortaxe-hammer-steel.webp", - "effects": [ - { - "_id": "8wzWUlPPd92HiwJs", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!PTiDNLKc0l9rD7Kb.8wzWUlPPd92HiwJs" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1756, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342934, - "modifiedTime": 1740227862990, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!PTiDNLKc0l9rD7Kb" -} diff --git a/packs/items/Axt__3_KyhMB9Jn8Vaxs4eF.json b/packs/items/Axt__3_KyhMB9Jn8Vaxs4eF.json deleted file mode 100644 index b5d7c4b3..00000000 --- a/packs/items/Axt__3_KyhMB9Jn8Vaxs4eF.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "KyhMB9Jn8Vaxs4eF", - "name": "Axt +3", - "type": "weapon", - "img": "icons/weapons/axes/shortaxe-yellow.webp", - "effects": [ - { - "_id": "yaR4SKssj8gYJB91", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!KyhMB9Jn8Vaxs4eF.yaR4SKssj8gYJB91" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342897, - "modifiedTime": 1740227862985, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KyhMB9Jn8Vaxs4eF" -} diff --git a/packs/items/Axt_eAd86Ylh42nHoCsx.json b/packs/items/Axt_eAd86Ylh42nHoCsx.json deleted file mode 100644 index 42b4bf6c..00000000 --- a/packs/items/Axt_eAd86Ylh42nHoCsx.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "eAd86Ylh42nHoCsx", - "name": "Axt", - "type": "weapon", - "img": "icons/weapons/axes/shortaxe-worn-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 6, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343149, - "modifiedTime": 1740227863012, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eAd86Ylh42nHoCsx" -} diff --git a/packs/items/B_renfalle_ec2Aft0epeFhdg9B.json b/packs/items/B_renfalle_ec2Aft0epeFhdg9B.json deleted file mode 100644 index ae2cf990..00000000 --- a/packs/items/B_renfalle_ec2Aft0epeFhdg9B.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "ec2Aft0epeFhdg9B", - "name": "Bärenfalle", - "type": "loot", - "img": "icons/environment/traps/trap-jaw-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Schlagen 30
", - "quantity": 1, - "price": 10, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343171, - "modifiedTime": 1740227863013, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ec2Aft0epeFhdg9B" -} diff --git a/packs/items/B_renpanzer_e6LetXJHUY4ndz7B.json b/packs/items/B_renpanzer_e6LetXJHUY4ndz7B.json deleted file mode 100644 index 95b48e3f..00000000 --- a/packs/items/B_renpanzer_e6LetXJHUY4ndz7B.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "_id": "e6LetXJHUY4ndz7B", - "name": "Bärenpanzer", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-steel.webp", - "effects": [ - { - "_id": "uOEN4xXL3IcebbJO", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!e6LetXJHUY4ndz7B.uOEN4xXL3IcebbJO" - }, - { - "_id": "dxmfRAe4ljoKdi0M", - "flags": {}, - "changes": [ - { - "key": "system.traits.strength.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Stärke +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!e6LetXJHUY4ndz7B.dxmfRAe4ljoKdi0M" - }, - { - "_id": "DItC97OWlR1nL79a", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Raserei", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Raserei +I", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!e6LetXJHUY4ndz7B.DItC97OWlR1nL79a" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese mit Bärenfellen und -klauen verzierte Plattenrüstung +2 gewährt ihrem Träger Raserei +I sowie +1 auf Stärke.
", - "quantity": 1, - "price": 8800, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343146, - "modifiedTime": 1740227863012, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!e6LetXJHUY4ndz7B" -} diff --git a/packs/items/Berserkertrank_nH1Vfhhx2jlGoQ6i.json b/packs/items/Berserkertrank_nH1Vfhhx2jlGoQ6i.json deleted file mode 100644 index c92f50e4..00000000 --- a/packs/items/Berserkertrank_nH1Vfhhx2jlGoQ6i.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "nH1Vfhhx2jlGoQ6i", - "name": "Berserkertrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-round-flask-fumes-purple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses von verrückten Orkschamanen entwickelte, dampfende Getränk heilt drei Kampfrunden jeweils W20 Lebenskraft. In der vierten Runde explodiert der Trinker und verursacht in 2 m Radius Schaden in Höhe der erwürfelten Heilung (Abwehr gilt).
", - "quantity": 1, - "price": 100, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343339, - "modifiedTime": 1740227863020, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!nH1Vfhhx2jlGoQ6i" -} diff --git a/packs/items/Bih_nder_KOdzXkLHuNkCciAa.json b/packs/items/Bih_nder_KOdzXkLHuNkCciAa.json deleted file mode 100644 index 4012d079..00000000 --- a/packs/items/Bih_nder_KOdzXkLHuNkCciAa.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "KOdzXkLHuNkCciAa", - "name": "Bihänder", - "type": "weapon", - "img": "icons/weapons/swords/greatsword-guard.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 10, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342893, - "modifiedTime": 1740227862985, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KOdzXkLHuNkCciAa" -} diff --git a/packs/items/Bih_nder__1_2ydkhz5gDjxAiaYy.json b/packs/items/Bih_nder__1_2ydkhz5gDjxAiaYy.json deleted file mode 100644 index 7a351640..00000000 --- a/packs/items/Bih_nder__1_2ydkhz5gDjxAiaYy.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "2ydkhz5gDjxAiaYy", - "name": "Bihänder +1", - "type": "weapon", - "img": "icons/weapons/swords/greatsword-crossguard-engraved-green.webp", - "effects": [ - { - "_id": "qdSiJ4l0AuTd68CB", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!2ydkhz5gDjxAiaYy.qdSiJ4l0AuTd68CB" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 2260, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342694, - "modifiedTime": 1740227862964, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2ydkhz5gDjxAiaYy" -} diff --git a/packs/items/Bih_nder__2_QmyAtIDJfnBZvZFg.json b/packs/items/Bih_nder__2_QmyAtIDJfnBZvZFg.json deleted file mode 100644 index bc96336a..00000000 --- a/packs/items/Bih_nder__2_QmyAtIDJfnBZvZFg.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "QmyAtIDJfnBZvZFg", - "name": "Bihänder +2", - "type": "weapon", - "img": "icons/weapons/swords/greatsword-guard-jewel-green.webp", - "effects": [ - { - "_id": "0GrRl4XU2UrvbDxs", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!QmyAtIDJfnBZvZFg.0GrRl4XU2UrvbDxs" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 2760, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -6 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342948, - "modifiedTime": 1740227862992, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QmyAtIDJfnBZvZFg" -} diff --git a/packs/items/Bih_nder__3_dIA53f3kvU9JgGvg.json b/packs/items/Bih_nder__3_dIA53f3kvU9JgGvg.json deleted file mode 100644 index 2238b32b..00000000 --- a/packs/items/Bih_nder__3_dIA53f3kvU9JgGvg.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "dIA53f3kvU9JgGvg", - "name": "Bihänder +3", - "type": "weapon", - "img": "icons/weapons/swords/greatsword-guard-gem-blue.webp", - "effects": [ - { - "_id": "DaKTtdhRO45QZuDJ", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "-2", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative -2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!dIA53f3kvU9JgGvg.DaKTtdhRO45QZuDJ" - }, - { - "_id": "n4mZBHWKSQLQcHHD", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!dIA53f3kvU9JgGvg.n4mZBHWKSQLQcHHD" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 3260, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 6, - "opponentDefense": -7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343135, - "modifiedTime": 1740227863010, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dIA53f3kvU9JgGvg" -} diff --git a/packs/items/Blendlaterne_d3ixiQ3FrQndjz46.json b/packs/items/Blendlaterne_d3ixiQ3FrQndjz46.json deleted file mode 100644 index e1957d79..00000000 --- a/packs/items/Blendlaterne_d3ixiQ3FrQndjz46.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "d3ixiQ3FrQndjz46", - "name": "Blendlaterne", - "type": "loot", - "img": "icons/sundries/lights/lantern-bullseye-signal-copper.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 8, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343123, - "modifiedTime": 1740227863009, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!d3ixiQ3FrQndjz46" -} diff --git a/packs/items/Blutr_stung_CQZtlL8zUdOVUVrU.json b/packs/items/Blutr_stung_CQZtlL8zUdOVUVrU.json deleted file mode 100644 index 84ca65da..00000000 --- a/packs/items/Blutr_stung_CQZtlL8zUdOVUVrU.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "_id": "CQZtlL8zUdOVUVrU", - "name": "Blutrüstung", - "type": "armor", - "img": "icons/equipment/chest/breastplate-rivited-red.webp", - "effects": [ - { - "_id": "pAxAXam5JBN6Acz9", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "-0.5", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -0,5", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!CQZtlL8zUdOVUVrU.pAxAXam5JBN6Acz9" - }, - { - "_id": "CXouU4P0kZYU6oXR", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!CQZtlL8zUdOVUVrU.CXouU4P0kZYU6oXR" - }, - { - "_id": "32vJ305ynrZ0xYki", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Verletzen", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Verletzen +I", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!CQZtlL8zUdOVUVrU.32vJ305ynrZ0xYki" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "In diese rotgefärbte Plattenrüstung +1 ist das Talent Verletzen +I eingebettet.
\nLaufen -0,5
", - "quantity": 1, - "price": 5300, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342802, - "modifiedTime": 1740227862976, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!CQZtlL8zUdOVUVrU" -} diff --git a/packs/items/Brechstange_upLe2iticb6YKsIR.json b/packs/items/Brechstange_upLe2iticb6YKsIR.json deleted file mode 100644 index abbc747c..00000000 --- a/packs/items/Brechstange_upLe2iticb6YKsIR.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "upLe2iticb6YKsIR", - "name": "Brechstange", - "type": "weapon", - "img": "icons/tools/hand/wrench-iron-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1.5, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343545, - "modifiedTime": 1740227863027, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!upLe2iticb6YKsIR" -} diff --git a/packs/items/Breitschwert_5KxdKllRXuau0Uhm.json b/packs/items/Breitschwert_5KxdKllRXuau0Uhm.json deleted file mode 100644 index d0ce61d3..00000000 --- a/packs/items/Breitschwert_5KxdKllRXuau0Uhm.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "5KxdKllRXuau0Uhm", - "name": "Breitschwert", - "type": "weapon", - "img": "icons/weapons/swords/sword-broad-worn.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 8, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342715, - "modifiedTime": 1740227862966, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5KxdKllRXuau0Uhm" -} diff --git a/packs/items/Breitschwert__1_Nz6gFGSHzHVO3QxA.json b/packs/items/Breitschwert__1_Nz6gFGSHzHVO3QxA.json deleted file mode 100644 index 672d7495..00000000 --- a/packs/items/Breitschwert__1_Nz6gFGSHzHVO3QxA.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "Nz6gFGSHzHVO3QxA", - "name": "Breitschwert +1", - "type": "weapon", - "img": "icons/weapons/swords/sword-broad-red.webp", - "effects": [ - { - "_id": "M7zvcLqDr9HuzqTV", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Nz6gFGSHzHVO3QxA.M7zvcLqDr9HuzqTV" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342919, - "modifiedTime": 1740227862988, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Nz6gFGSHzHVO3QxA" -} diff --git a/packs/items/Breitschwert__2_TQhwV1dNYfy50y6k.json b/packs/items/Breitschwert__2_TQhwV1dNYfy50y6k.json deleted file mode 100644 index 4422ab2f..00000000 --- a/packs/items/Breitschwert__2_TQhwV1dNYfy50y6k.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "TQhwV1dNYfy50y6k", - "name": "Breitschwert +2", - "type": "weapon", - "img": "icons/weapons/swords/shortsword-broad-blue.webp", - "effects": [ - { - "_id": "g8ZgARGCbMxsnFJe", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!TQhwV1dNYfy50y6k.g8ZgARGCbMxsnFJe" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1758, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342996, - "modifiedTime": 1740227862999, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TQhwV1dNYfy50y6k" -} diff --git a/packs/items/Breitschwert__3_e65AAjglKeU1txL6.json b/packs/items/Breitschwert__3_e65AAjglKeU1txL6.json deleted file mode 100644 index f06446ee..00000000 --- a/packs/items/Breitschwert__3_e65AAjglKeU1txL6.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "e65AAjglKeU1txL6", - "name": "Breitschwert +3", - "type": "weapon", - "img": "icons/weapons/swords/shortsword-broad-engraved.webp", - "effects": [ - { - "_id": "BVnmaiguzsq6nSwF", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!e65AAjglKeU1txL6.BVnmaiguzsq6nSwF" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343144, - "modifiedTime": 1740227863011, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!e65AAjglKeU1txL6" -} diff --git a/packs/items/Brennholz__B_ndel__QrGtd0N6cChddyG2.json b/packs/items/Brennholz__B_ndel__QrGtd0N6cChddyG2.json deleted file mode 100644 index 2ecc9b55..00000000 --- a/packs/items/Brennholz__B_ndel__QrGtd0N6cChddyG2.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "QrGtd0N6cChddyG2", - "name": "Brennholz (Bündel)", - "type": "loot", - "img": "icons/commodities/wood/kindling-sticks-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.01, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342952, - "modifiedTime": 1740227862993, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QrGtd0N6cChddyG2" -} diff --git a/packs/items/Decke_eLTOIKuFGf3M9HYt.json b/packs/items/Decke_eLTOIKuFGf3M9HYt.json deleted file mode 100644 index d9a5213f..00000000 --- a/packs/items/Decke_eLTOIKuFGf3M9HYt.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "eLTOIKuFGf3M9HYt", - "name": "Decke", - "type": "loot", - "img": "icons/sundries/survival/bedroll-worn-beige.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343154, - "modifiedTime": 1740227863012, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eLTOIKuFGf3M9HYt" -} diff --git a/packs/items/Dicke_Reisedecke_FoK7Tc7IePUpnDkL.json b/packs/items/Dicke_Reisedecke_FoK7Tc7IePUpnDkL.json deleted file mode 100644 index 7deafb71..00000000 --- a/packs/items/Dicke_Reisedecke_FoK7Tc7IePUpnDkL.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "FoK7Tc7IePUpnDkL", - "name": "Dicke Reisedecke", - "type": "loot", - "img": "icons/sundries/survival/bedroll-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342845, - "modifiedTime": 1740227862980, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FoK7Tc7IePUpnDkL" -} diff --git a/packs/items/Dietrich_TjB6AWIwGY5Q8xln.json b/packs/items/Dietrich_TjB6AWIwGY5Q8xln.json deleted file mode 100644 index c1230ae2..00000000 --- a/packs/items/Dietrich_TjB6AWIwGY5Q8xln.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "TjB6AWIwGY5Q8xln", - "name": "Dietrich", - "type": "loot", - "img": "icons/tools/hand/lockpicks-steel-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343010, - "modifiedTime": 1740227863000, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TjB6AWIwGY5Q8xln" -} diff --git a/packs/items/Dolch_Fl2OHl2zMi281SbE.json b/packs/items/Dolch_Fl2OHl2zMi281SbE.json deleted file mode 100644 index e128ea81..00000000 --- a/packs/items/Dolch_Fl2OHl2zMi281SbE.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "Fl2OHl2zMi281SbE", - "name": "Dolch", - "type": "weapon", - "img": "icons/weapons/daggers/dagger-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative +1
", - "quantity": 1, - "price": 2, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 0, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342837, - "modifiedTime": 1740227862980, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Fl2OHl2zMi281SbE" -} diff --git a/packs/items/Dolch__1_trop6WmDZEhv3gRA.json b/packs/items/Dolch__1_trop6WmDZEhv3gRA.json deleted file mode 100644 index ea461289..00000000 --- a/packs/items/Dolch__1_trop6WmDZEhv3gRA.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "trop6WmDZEhv3gRA", - "name": "Dolch +1", - "type": "weapon", - "img": "icons/weapons/daggers/dagger-curved-blue.webp", - "effects": [ - { - "_id": "9jtH6ER0s0I8SPyi", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!trop6WmDZEhv3gRA.9jtH6ER0s0I8SPyi" - }, - { - "_id": "aDUESIHIetT9xLbD", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!trop6WmDZEhv3gRA.aDUESIHIetT9xLbD" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative +1
", - "quantity": 1, - "price": 752, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343515, - "modifiedTime": 1740227863026, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!trop6WmDZEhv3gRA" -} diff --git a/packs/items/Dolch__2_ajO71RuOPNlINZID.json b/packs/items/Dolch__2_ajO71RuOPNlINZID.json deleted file mode 100644 index f485c5e5..00000000 --- a/packs/items/Dolch__2_ajO71RuOPNlINZID.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "ajO71RuOPNlINZID", - "name": "Dolch +2", - "type": "weapon", - "img": "icons/weapons/daggers/dagger-straight-green.webp", - "effects": [ - { - "_id": "oxrYsZM08ENZAhge", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ajO71RuOPNlINZID.oxrYsZM08ENZAhge" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative +1
", - "quantity": 1, - "price": 1252, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343093, - "modifiedTime": 1740227863006, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ajO71RuOPNlINZID" -} diff --git a/packs/items/Dolch__3_0wgXMtaVpVJabEun.json b/packs/items/Dolch__3_0wgXMtaVpVJabEun.json deleted file mode 100644 index a09af6c7..00000000 --- a/packs/items/Dolch__3_0wgXMtaVpVJabEun.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "0wgXMtaVpVJabEun", - "name": "Dolch +3", - "type": "weapon", - "img": "icons/weapons/daggers/dagger-double-engraved-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative +1
", - "quantity": 1, - "price": 1752, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342643, - "modifiedTime": 1740227862962, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0wgXMtaVpVJabEun" -} diff --git a/packs/items/Elfenbogen__1_0cAWFZtQfLF7q1ZX.json b/packs/items/Elfenbogen__1_0cAWFZtQfLF7q1ZX.json deleted file mode 100644 index 090d8fd4..00000000 --- a/packs/items/Elfenbogen__1_0cAWFZtQfLF7q1ZX.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "0cAWFZtQfLF7q1ZX", - "name": "Elfenbogen +1", - "type": "weapon", - "img": "icons/weapons/bows/longbow-recurve-leather-brown.webp", - "effects": [ - { - "_id": "UPsfGYjye47se1Gw", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!0cAWFZtQfLF7q1ZX.UPsfGYjye47se1Gw" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 2325, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 4, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342635, - "modifiedTime": 1740227862961, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0cAWFZtQfLF7q1ZX" -} diff --git a/packs/items/Elfenbogen__2_oqnI982dhCya94Tu.json b/packs/items/Elfenbogen__2_oqnI982dhCya94Tu.json deleted file mode 100644 index ab49752d..00000000 --- a/packs/items/Elfenbogen__2_oqnI982dhCya94Tu.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "oqnI982dhCya94Tu", - "name": "Elfenbogen +2", - "type": "weapon", - "img": "icons/weapons/bows/longbow-recurve-leather-red.webp", - "effects": [ - { - "_id": "l9ZRRSrd6yBhQUJL", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!oqnI982dhCya94Tu.l9ZRRSrd6yBhQUJL" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 2825, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 5, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343440, - "modifiedTime": 1740227863021, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oqnI982dhCya94Tu" -} diff --git a/packs/items/Elfenbogen__3_0vIgZkHBeEPut73w.json b/packs/items/Elfenbogen__3_0vIgZkHBeEPut73w.json deleted file mode 100644 index bd687d6a..00000000 --- a/packs/items/Elfenbogen__3_0vIgZkHBeEPut73w.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "0vIgZkHBeEPut73w", - "name": "Elfenbogen +3", - "type": "weapon", - "img": "icons/weapons/bows/longbow-recurve.webp", - "effects": [ - { - "_id": "azjxgNJkYNvxg622", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!0vIgZkHBeEPut73w.azjxgNJkYNvxg622" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 3325, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 6, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342641, - "modifiedTime": 1740227862961, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0vIgZkHBeEPut73w" -} diff --git a/packs/items/Elfenbogen_uDdLTyyNqeXzCssp.json b/packs/items/Elfenbogen_uDdLTyyNqeXzCssp.json deleted file mode 100644 index e0b680d5..00000000 --- a/packs/items/Elfenbogen_uDdLTyyNqeXzCssp.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "uDdLTyyNqeXzCssp", - "name": "Elfenbogen", - "type": "weapon", - "img": "icons/weapons/bows/longbow-recurve-brown.webp", - "effects": [ - { - "_id": "QScLkDv6gysh119m", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!uDdLTyyNqeXzCssp.QScLkDv6gysh119m" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 75, - "availability": "elves", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 3, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343523, - "modifiedTime": 1740227863026, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!uDdLTyyNqeXzCssp" -} diff --git a/packs/items/Elfenstiefel_OaG6IhVfS6EmHRux.json b/packs/items/Elfenstiefel_OaG6IhVfS6EmHRux.json deleted file mode 100644 index a18d2492..00000000 --- a/packs/items/Elfenstiefel_OaG6IhVfS6EmHRux.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "_id": "OaG6IhVfS6EmHRux", - "name": "Elfenstiefel", - "type": "equipment", - "img": "icons/equipment/feet/boots-leather-green.webp", - "effects": [ - { - "_id": "mdjigDqsRTZyFNmC", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!OaG6IhVfS6EmHRux.mdjigDqsRTZyFNmC" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese bequemen Stiefel erhöhen den Laufen-Wert um 1.
", - "quantity": 1, - "price": 1251.5, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342925, - "modifiedTime": 1740227862988, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!OaG6IhVfS6EmHRux" -} diff --git a/packs/items/Elfischer_Sattel_V3D7u9LDumvBwJQI.json b/packs/items/Elfischer_Sattel_V3D7u9LDumvBwJQI.json deleted file mode 100644 index b261843b..00000000 --- a/packs/items/Elfischer_Sattel_V3D7u9LDumvBwJQI.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "V3D7u9LDumvBwJQI", - "name": "Elfischer Sattel", - "type": "equipment", - "img": "icons/commodities/leather/leather-studded-tan.webp", - "effects": [ - { - "_id": "yNjGOSspfOUKlg8y", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Reiten", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Reiten +I", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!V3D7u9LDumvBwJQI.yNjGOSspfOUKlg8y" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "In diesen äußerst fein gearbeiteten Sattel ist Reiten +I eingebettet.
", - "quantity": 1, - "price": 505, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343043, - "modifiedTime": 1740227863001, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!V3D7u9LDumvBwJQI" -} diff --git a/packs/items/Elfischer_Tarnumhang_PE3eWmsGcd5dVVh4.json b/packs/items/Elfischer_Tarnumhang_PE3eWmsGcd5dVVh4.json deleted file mode 100644 index c877de5a..00000000 --- a/packs/items/Elfischer_Tarnumhang_PE3eWmsGcd5dVVh4.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "_id": "PE3eWmsGcd5dVVh4", - "name": "Elfischer Tarnumhang", - "type": "equipment", - "img": "icons/equipment/back/cloak-collared-leaves-green.webp", - "effects": [ - { - "_id": "Nr6hXbJeVlmJYASc", - "changes": [ - { - "key": "system.checks.hide", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Verbergen +3", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!PE3eWmsGcd5dVVh4.Nr6hXbJeVlmJYASc" - }, - { - "_id": "9qj7TWM9shrTKppj", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Heimlichkeit", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Heimlichkeit +III", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!PE3eWmsGcd5dVVh4.9qj7TWM9shrTKppj" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Umhang, in den Feengarn eingewebt wurde, verleiht zusätzlich zu seiner eingebetteten Heimlichkeit +III auf Verbergen-Proben +3.
", - "quantity": 1, - "price": 875.5, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342929, - "modifiedTime": 1740227862989, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!PE3eWmsGcd5dVVh4" -} diff --git a/packs/items/F_ustlinge_der_Verst_mmelung_dvVhgqCv9VDpFW0l.json b/packs/items/F_ustlinge_der_Verst_mmelung_dvVhgqCv9VDpFW0l.json deleted file mode 100644 index 3f820b99..00000000 --- a/packs/items/F_ustlinge_der_Verst_mmelung_dvVhgqCv9VDpFW0l.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "_id": "dvVhgqCv9VDpFW0l", - "name": "Fäustlinge der Verstümmelung", - "type": "equipment", - "img": "icons/equipment/hand/glove-tooled-leather-brown.webp", - "effects": [ - { - "_id": "CRvnbvzibegpIQAz", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Brutaler Hieb", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Brutaler Hieb +I", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!dvVhgqCv9VDpFW0l.CRvnbvzibegpIQAz" - }, - { - "_id": "ohRMO3BzPaxhKYh4", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Verletzen", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Verletzen +I", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!dvVhgqCv9VDpFW0l.ohRMO3BzPaxhKYh4" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese blutverschmutzten Wildlederhandschuhe gewähren ihrem Träger Brutaler Hieb +I und Verletzen +I.
", - "quantity": 1, - "price": 3050.1, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343143, - "modifiedTime": 1740227863011, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dvVhgqCv9VDpFW0l" -} diff --git a/packs/items/Fackel_Q61SvqiQUoVfU99X.json b/packs/items/Fackel_Q61SvqiQUoVfU99X.json deleted file mode 100644 index 4503b9f8..00000000 --- a/packs/items/Fackel_Q61SvqiQUoVfU99X.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "Q61SvqiQUoVfU99X", - "name": "Fackel", - "type": "weapon", - "img": "icons/sundries/lights/torch-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Brennt 2h
", - "quantity": 1, - "price": 0.01, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342941, - "modifiedTime": 1740227862991, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Q61SvqiQUoVfU99X" -} diff --git a/packs/items/Federkiel_L2ZE2l98snBZw5DZ.json b/packs/items/Federkiel_L2ZE2l98snBZw5DZ.json deleted file mode 100644 index e03302dc..00000000 --- a/packs/items/Federkiel_L2ZE2l98snBZw5DZ.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "L2ZE2l98snBZw5DZ", - "name": "Federkiel", - "type": "loot", - "img": "icons/tools/scribal/ink-quill-pink.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342898, - "modifiedTime": 1740227862985, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!L2ZE2l98snBZw5DZ" -} diff --git a/packs/items/Feindfeger_QhJllncFlQu7BGDw.json b/packs/items/Feindfeger_QhJllncFlQu7BGDw.json deleted file mode 100644 index 86dc487a..00000000 --- a/packs/items/Feindfeger_QhJllncFlQu7BGDw.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "QhJllncFlQu7BGDw", - "name": "Feindfeger", - "type": "weapon", - "img": "icons/weapons/swords/greatsword-crossguard-steel.webp", - "effects": [ - { - "_id": "Oz0U5fEJSQ7HPQDG", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Rundumschlag", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Rundumschlag +II", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!QhJllncFlQu7BGDw.Oz0U5fEJSQ7HPQDG" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Unscheinbar aussehender Bihänder +2 mit Rundumschlag +II.
\nZweihändig, Initiative -2, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 9760, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -6 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342946, - "modifiedTime": 1740227862992, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QhJllncFlQu7BGDw" -} diff --git a/packs/items/Fellmantel_des_Heilers_rvDTHq5UoRK6acm6.json b/packs/items/Fellmantel_des_Heilers_rvDTHq5UoRK6acm6.json deleted file mode 100644 index 6dbe77a2..00000000 --- a/packs/items/Fellmantel_des_Heilers_rvDTHq5UoRK6acm6.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "rvDTHq5UoRK6acm6", - "name": "Fellmantel des Heilers", - "type": "armor", - "img": "icons/equipment/chest/vest-leather-tattered-white.webp", - "effects": [ - { - "_id": "5vJF9ck6rDsBPnKl", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!rvDTHq5UoRK6acm6.5vJF9ck6rDsBPnKl" - }, - { - "_id": "Uzo51C3LrgP3G8jb", - "changes": [ - { - "key": "system.spellModifier.numerical", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.spellGroups.healing" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Heilzauber +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!rvDTHq5UoRK6acm6.Uzo51C3LrgP3G8jb" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese aus weißem Fell geschneiderte Lederrüstung gewährt +2 auf alle Heilzauber.
", - "quantity": 1, - "price": 4254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343475, - "modifiedTime": 1740227863024, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!rvDTHq5UoRK6acm6" -} diff --git a/packs/items/Feuerballzepter_abxhFbHx3dzRUPt8.json b/packs/items/Feuerballzepter_abxhFbHx3dzRUPt8.json deleted file mode 100644 index d40166a4..00000000 --- a/packs/items/Feuerballzepter_abxhFbHx3dzRUPt8.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "abxhFbHx3dzRUPt8", - "name": "Feuerballzepter", - "type": "equipment", - "img": "icons/weapons/wands/wand-carved-fire.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein Zepter, in das der Zauber @Compendium[ds4.spells.ifRUXwqnjd1SCcRG]{Feuerball} eingebettet wurde, dessen Aklingzeit man 2x/Tag ignorieren kann.
", - "quantity": 1, - "price": 7630, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343091, - "modifiedTime": 1740227863006, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!abxhFbHx3dzRUPt8" -} diff --git a/packs/items/Feuerstein___Zunder_JjM6nTZzV28ioIFq.json b/packs/items/Feuerstein___Zunder_JjM6nTZzV28ioIFq.json deleted file mode 100644 index fff4cda4..00000000 --- a/packs/items/Feuerstein___Zunder_JjM6nTZzV28ioIFq.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "JjM6nTZzV28ioIFq", - "name": "Feuerstein & Zunder", - "type": "loot", - "img": "icons/commodities/stone/geode-raw-white.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.05, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342882, - "modifiedTime": 1740227862984, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JjM6nTZzV28ioIFq" -} diff --git a/packs/items/Flegel_SLmQz2B4JvywROCv.json b/packs/items/Flegel_SLmQz2B4JvywROCv.json deleted file mode 100644 index 3b9a160a..00000000 --- a/packs/items/Flegel_SLmQz2B4JvywROCv.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "SLmQz2B4JvywROCv", - "name": "Flegel", - "type": "weapon", - "img": "icons/weapons/maces/flail-ball-grey.webp", - "effects": [ - { - "_id": "yXvt3CT4FbXYjIfc", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "-2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative -2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!SLmQz2B4JvywROCv.yXvt3CT4FbXYjIfc" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -2
", - "quantity": 1, - "price": 8, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342987, - "modifiedTime": 1740227862999, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!SLmQz2B4JvywROCv" -} diff --git a/packs/items/Flegel__1_2le5COwoh45Pc4oD.json b/packs/items/Flegel__1_2le5COwoh45Pc4oD.json deleted file mode 100644 index 9969870f..00000000 --- a/packs/items/Flegel__1_2le5COwoh45Pc4oD.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "2le5COwoh45Pc4oD", - "name": "Flegel +1", - "type": "weapon", - "img": "icons/weapons/maces/flail-cube-grey.webp", - "effects": [ - { - "_id": "rUye8ORwMGGtWPrr", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!2le5COwoh45Pc4oD.rUye8ORwMGGtWPrr" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -2
", - "quantity": 1, - "price": 1758, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342692, - "modifiedTime": 1740227862964, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2le5COwoh45Pc4oD" -} diff --git a/packs/items/Flegel__2_JZDsSUkQGVf0aOjH.json b/packs/items/Flegel__2_JZDsSUkQGVf0aOjH.json deleted file mode 100644 index 12be4fc2..00000000 --- a/packs/items/Flegel__2_JZDsSUkQGVf0aOjH.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "JZDsSUkQGVf0aOjH", - "name": "Flegel +2", - "type": "weapon", - "img": "icons/weapons/maces/flail-spiked-grey.webp", - "effects": [ - { - "_id": "PD6vgViNBP4QaxMK", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!JZDsSUkQGVf0aOjH.PD6vgViNBP4QaxMK" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -2
", - "quantity": 1, - "price": 2258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342878, - "modifiedTime": 1740227862983, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JZDsSUkQGVf0aOjH" -} diff --git a/packs/items/Flegel__3_BrsnuGuOEfolt9VV.json b/packs/items/Flegel__3_BrsnuGuOEfolt9VV.json deleted file mode 100644 index 3d3dc759..00000000 --- a/packs/items/Flegel__3_BrsnuGuOEfolt9VV.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "BrsnuGuOEfolt9VV", - "name": "Flegel +3", - "type": "weapon", - "img": "icons/weapons/maces/flail-studded-grey.webp", - "effects": [ - { - "_id": "98YoU1PGqcSm47Zw", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!BrsnuGuOEfolt9VV.98YoU1PGqcSm47Zw" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -2
", - "quantity": 1, - "price": 2758, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342794, - "modifiedTime": 1740227862974, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!BrsnuGuOEfolt9VV" -} diff --git a/packs/items/Fliegender_Teppich_AlmkanwZXY9UxMUD.json b/packs/items/Fliegender_Teppich_AlmkanwZXY9UxMUD.json deleted file mode 100644 index 95372001..00000000 --- a/packs/items/Fliegender_Teppich_AlmkanwZXY9UxMUD.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "AlmkanwZXY9UxMUD", - "name": "Fliegender Teppich", - "type": "loot", - "img": "icons/commodities/cloth/cloth-patterned-orange.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein legendärer Gegenstand aus den heißen Wüstenlanden, in den die Zauber @Compendium[ds4.spells.NwLeietvcarS6zP5]{Fliegen} und @Compendium[ds4.spells.KUbT1gBeThcLY7vU]{Spurt} eingebettet sind. Die Zauber wirken permanent auf denjenigen, der in der Mitte des Teppichs sitzt. Proben auf Zaubern sind nicht erforderlich.
", - "quantity": 1, - "price": 4340, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342789, - "modifiedTime": 1740227862973, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!AlmkanwZXY9UxMUD" -} diff --git a/packs/items/Fliegentrank_V6ywiDBc1Son1XrQ.json b/packs/items/Fliegentrank_V6ywiDBc1Son1XrQ.json deleted file mode 100644 index f217e125..00000000 --- a/packs/items/Fliegentrank_V6ywiDBc1Son1XrQ.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "V6ywiDBc1Son1XrQ", - "name": "Fliegentrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-conical-corked-yellow.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser oft gelbe Trank wirkt auf den Trinker den Zauber @Compendium[ds4.spells.NwLeietvcarS6zP5]{Fliegen} (Probenwert 20; Patzer ausgeschlossen).
", - "quantity": 1, - "price": 200, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343047, - "modifiedTime": 1740227863002, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!V6ywiDBc1Son1XrQ" -} diff --git a/packs/items/G_rtel_der_Trollst_rke_0Vd79Orsle4PUqs2.json b/packs/items/G_rtel_der_Trollst_rke_0Vd79Orsle4PUqs2.json deleted file mode 100644 index c6c56343..00000000 --- a/packs/items/G_rtel_der_Trollst_rke_0Vd79Orsle4PUqs2.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "_id": "0Vd79Orsle4PUqs2", - "name": "Gürtel der Trollstärke", - "type": "equipment", - "img": "icons/equipment/waist/belt-armored-studded-steel.webp", - "effects": [ - { - "_id": "43bRMhcEqMvQvRQU", - "flags": {}, - "changes": [ - { - "key": "system.traits.strength.total", - "value": "3", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Stärke +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!0Vd79Orsle4PUqs2.43bRMhcEqMvQvRQU" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser mit kleinen Eisenplatten beschlagene Gürtel erhöht die Stärke seines Trägers um 3.
", - "quantity": 1, - "price": 3250.05, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342634, - "modifiedTime": 1740227862961, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0Vd79Orsle4PUqs2" -} diff --git a/packs/items/Geisterbote_v7WiMqH1XylGqNOy.json b/packs/items/Geisterbote_v7WiMqH1XylGqNOy.json deleted file mode 100644 index d7b0e4af..00000000 --- a/packs/items/Geisterbote_v7WiMqH1XylGqNOy.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "v7WiMqH1XylGqNOy", - "name": "Geisterbote", - "type": "loot", - "img": "icons/commodities/materials/glass-orb-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Jeder dieser mit Rauch gefüllten Behälter enthält eine Ladung des Zaubers @Compendium[ds4.spells.wnYRgIjVtIhL26eg]{Botschaft}.
", - "quantity": 1, - "price": 454, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343550, - "modifiedTime": 1740227863028, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!v7WiMqH1XylGqNOy" -} diff --git a/packs/items/Gew_nder_des_Adlers_6UBvjMJd6n5P5YWv.json b/packs/items/Gew_nder_des_Adlers_6UBvjMJd6n5P5YWv.json deleted file mode 100644 index 6f85bd74..00000000 --- a/packs/items/Gew_nder_des_Adlers_6UBvjMJd6n5P5YWv.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "6UBvjMJd6n5P5YWv", - "name": "Gewänder des Adlers", - "type": "armor", - "img": "icons/equipment/chest/breastplate-banded-simple-leather-brown.webp", - "effects": [ - { - "_id": "cl2PqWeAtDsBjz8k", - "flags": {}, - "changes": [ - { - "key": "system.attributes.mind.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Geist +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!6UBvjMJd6n5P5YWv.cl2PqWeAtDsBjz8k" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese hellbeige, mit Adlerfedern verzierte Lederrüstung +1 gewährt +1 auf Geist.
", - "quantity": 1, - "price": 4254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342730, - "modifiedTime": 1740227862967, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!6UBvjMJd6n5P5YWv" -} diff --git a/packs/items/Giftbanntrank_oPUlB9rz5rvRKrq8.json b/packs/items/Giftbanntrank_oPUlB9rz5rvRKrq8.json deleted file mode 100644 index 0df89807..00000000 --- a/packs/items/Giftbanntrank_oPUlB9rz5rvRKrq8.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "oPUlB9rz5rvRKrq8", - "name": "Giftbanntrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-bulb-corked-glowing-red.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wirkt den Zauber @Compendium[ds4.spells.ONhSaLNmvvacgCjA]{Giftbann} auf den Trinkenden (keine Probe nötig).
", - "quantity": 1, - "price": 150, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343385, - "modifiedTime": 1740227863021, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oPUlB9rz5rvRKrq8" -} diff --git a/packs/items/Gl_ckstrank_hrAyguSjO6JhTE5m.json b/packs/items/Gl_ckstrank_hrAyguSjO6JhTE5m.json deleted file mode 100644 index b77adb68..00000000 --- a/packs/items/Gl_ckstrank_hrAyguSjO6JhTE5m.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "hrAyguSjO6JhTE5m", - "name": "Glückstrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-round-corked-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Trinkende kann für W20 Stunden alle Patzer ignorieren.
", - "quantity": 1, - "price": 200, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343239, - "modifiedTime": 1740227863016, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!hrAyguSjO6JhTE5m" -} diff --git a/packs/items/Grausame_Axt_lHlwYWlgC2iKjDFM.json b/packs/items/Grausame_Axt_lHlwYWlgC2iKjDFM.json deleted file mode 100644 index 9063d31c..00000000 --- a/packs/items/Grausame_Axt_lHlwYWlgC2iKjDFM.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "lHlwYWlgC2iKjDFM", - "name": "Grausame Axt", - "type": "weapon", - "img": "icons/weapons/axes/shortaxe-simple-black.webp", - "effects": [ - { - "_id": "wh12XwprBMtY3BTB", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!lHlwYWlgC2iKjDFM.wh12XwprBMtY3BTB" - }, - { - "_id": "5EWlvp1ZJkHmodfC", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Verletzen", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Verletzen +III", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!lHlwYWlgC2iKjDFM.5EWlvp1ZJkHmodfC" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Antike Axt +1 mit Verletzen +III
", - "quantity": 1, - "price": 4256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343320, - "modifiedTime": 1740227863019, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!lHlwYWlgC2iKjDFM" -} diff --git a/packs/items/Gro_er_Heiltrank_tW53rAmCXx6rqKMP.json b/packs/items/Gro_er_Heiltrank_tW53rAmCXx6rqKMP.json deleted file mode 100644 index 27c4393d..00000000 --- a/packs/items/Gro_er_Heiltrank_tW53rAmCXx6rqKMP.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "tW53rAmCXx6rqKMP", - "name": "Großer Heiltrank", - "type": "loot", - "img": "icons/consumables/potions/potion-flask-stopped-red.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese meist weinroten Tränke heilen 2W20 Lebenskraft.
", - "quantity": 1, - "price": 25, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343514, - "modifiedTime": 1740227863026, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tW53rAmCXx6rqKMP" -} diff --git a/packs/items/Gro_er_Schutztrank_Ryv745YriIZNKXG5.json b/packs/items/Gro_er_Schutztrank_Ryv745YriIZNKXG5.json deleted file mode 100644 index cc20bdb6..00000000 --- a/packs/items/Gro_er_Schutztrank_Ryv745YriIZNKXG5.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "Ryv745YriIZNKXG5", - "name": "Großer Schutztrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-conical-corked-tied-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhöht für W20 Runden die Abwehr um +3.
", - "quantity": 1, - "price": 100, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342972, - "modifiedTime": 1740227862997, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Ryv745YriIZNKXG5" -} diff --git a/packs/items/Hammer__1_FfVzLWtmCVRwFI4n.json b/packs/items/Hammer__1_FfVzLWtmCVRwFI4n.json deleted file mode 100644 index dc8c5a67..00000000 --- a/packs/items/Hammer__1_FfVzLWtmCVRwFI4n.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "FfVzLWtmCVRwFI4n", - "name": "Hammer +1", - "type": "weapon", - "img": "icons/weapons/hammers/shorthammer-double-steel.webp", - "effects": [ - { - "_id": "rqEqNTsSgoto2la8", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!FfVzLWtmCVRwFI4n.rqEqNTsSgoto2la8" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1.257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342829, - "modifiedTime": 1740227862980, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FfVzLWtmCVRwFI4n" -} diff --git a/packs/items/Hammer__2_6QehiJpVqqA9bW3P.json b/packs/items/Hammer__2_6QehiJpVqqA9bW3P.json deleted file mode 100644 index 98ad70d2..00000000 --- a/packs/items/Hammer__2_6QehiJpVqqA9bW3P.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "6QehiJpVqqA9bW3P", - "name": "Hammer +2", - "type": "weapon", - "img": "icons/weapons/hammers/shorthammer-double-steel-embossed.webp", - "effects": [ - { - "_id": "xQlGUPOpB6Me9OgF", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!6QehiJpVqqA9bW3P.xQlGUPOpB6Me9OgF" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342728, - "modifiedTime": 1740227862967, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!6QehiJpVqqA9bW3P" -} diff --git a/packs/items/Hammer__3_tAdNTxSRq9hARm1p.json b/packs/items/Hammer__3_tAdNTxSRq9hARm1p.json deleted file mode 100644 index 1a18bf5c..00000000 --- a/packs/items/Hammer__3_tAdNTxSRq9hARm1p.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "tAdNTxSRq9hARm1p", - "name": "Hammer +3", - "type": "weapon", - "img": "icons/weapons/hammers/shorthammer-embossed-white.webp", - "effects": [ - { - "_id": "aLeVPvqVvSHnDTsp", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!tAdNTxSRq9hARm1p.aLeVPvqVvSHnDTsp" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343509, - "modifiedTime": 1740227863025, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tAdNTxSRq9hARm1p" -} diff --git a/packs/items/Hammer_sMJw9EQtd2pYsgYE.json b/packs/items/Hammer_sMJw9EQtd2pYsgYE.json deleted file mode 100644 index ac5baef5..00000000 --- a/packs/items/Hammer_sMJw9EQtd2pYsgYE.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "sMJw9EQtd2pYsgYE", - "name": "Hammer", - "type": "weapon", - "img": "icons/weapons/hammers/shorthammer-simple-iron-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343482, - "modifiedTime": 1740227863025, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sMJw9EQtd2pYsgYE" -} diff --git a/packs/items/Handschellen_zjefX9KYvMphtVwX.json b/packs/items/Handschellen_zjefX9KYvMphtVwX.json deleted file mode 100644 index 4570d32d..00000000 --- a/packs/items/Handschellen_zjefX9KYvMphtVwX.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "zjefX9KYvMphtVwX", - "name": "Handschellen", - "type": "loot", - "img": "icons/sundries/survival/cuffs-shackles-steel.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Preis für beide Schlösser extra ermitteln
", - "quantity": 1, - "price": 8, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343613, - "modifiedTime": 1740227863031, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zjefX9KYvMphtVwX" -} diff --git a/packs/items/Heilkraut_zquQpOOVr5lIbnmL.json b/packs/items/Heilkraut_zquQpOOVr5lIbnmL.json deleted file mode 100644 index 8a6cc061..00000000 --- a/packs/items/Heilkraut_zquQpOOVr5lIbnmL.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "zquQpOOVr5lIbnmL", - "name": "Heilkraut", - "type": "loot", - "img": "icons/tools/laboratory/bowl-herbs-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Probenwert 10: 1-10 heilt LK in Ergebnishöhe, 11+ kein Heileffekt
", - "quantity": 1, - "price": 2.5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343619, - "modifiedTime": 1740227863031, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zquQpOOVr5lIbnmL" -} diff --git a/packs/items/Heiltrank_19bmt5UJrT3T36wE.json b/packs/items/Heiltrank_19bmt5UJrT3T36wE.json deleted file mode 100644 index 0398a563..00000000 --- a/packs/items/Heiltrank_19bmt5UJrT3T36wE.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "19bmt5UJrT3T36wE", - "name": "Heiltrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-round-corked-red.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses oftmals rote Getränk heilt W20 Lebenskraft.
", - "quantity": 1, - "price": 10, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342647, - "modifiedTime": 1740227862962, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!19bmt5UJrT3T36wE" -} diff --git a/packs/items/Hellebarde_2JQowFF6ZjF90OFI.json b/packs/items/Hellebarde_2JQowFF6ZjF90OFI.json deleted file mode 100644 index a637ea7b..00000000 --- a/packs/items/Hellebarde_2JQowFF6ZjF90OFI.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "2JQowFF6ZjF90OFI", - "name": "Hellebarde", - "type": "weapon", - "img": "icons/weapons/polearms/halberd-engraved-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2, Zerbricht bei Schlagen-Patzer
", - "quantity": 1, - "price": 1754, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342678, - "modifiedTime": 1740227862964, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2JQowFF6ZjF90OFI" -} diff --git a/packs/items/Hellebarde__1_zoPPqqDyRTvmV2do.json b/packs/items/Hellebarde__1_zoPPqqDyRTvmV2do.json deleted file mode 100644 index fb4d84c3..00000000 --- a/packs/items/Hellebarde__1_zoPPqqDyRTvmV2do.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "zoPPqqDyRTvmV2do", - "name": "Hellebarde +1", - "type": "weapon", - "img": "icons/weapons/polearms/halberd-crescent-engraved-steel.webp", - "effects": [ - { - "_id": "APXje5Ppu0d75HNw", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "-2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative -2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!zoPPqqDyRTvmV2do.APXje5Ppu0d75HNw" - }, - { - "_id": "FuPTO8plsKR3lq8Z", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!zoPPqqDyRTvmV2do.FuPTO8plsKR3lq8Z" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 4, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343617, - "modifiedTime": 1740227863031, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zoPPqqDyRTvmV2do" -} diff --git a/packs/items/Hellebarde__2_qwXiwcxaDDCzmLLM.json b/packs/items/Hellebarde__2_qwXiwcxaDDCzmLLM.json deleted file mode 100644 index a2365763..00000000 --- a/packs/items/Hellebarde__2_qwXiwcxaDDCzmLLM.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "qwXiwcxaDDCzmLLM", - "name": "Hellebarde +2", - "type": "weapon", - "img": "icons/weapons/polearms/halberd-crescent-steel.webp", - "effects": [ - { - "_id": "cEFYfp6VrhRcwEKz", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!qwXiwcxaDDCzmLLM.cEFYfp6VrhRcwEKz" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 2254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343472, - "modifiedTime": 1740227863023, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!qwXiwcxaDDCzmLLM" -} diff --git a/packs/items/Hellebarde__3_wy8GXE1zjaRpXL8H.json b/packs/items/Hellebarde__3_wy8GXE1zjaRpXL8H.json deleted file mode 100644 index 1994671a..00000000 --- a/packs/items/Hellebarde__3_wy8GXE1zjaRpXL8H.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "wy8GXE1zjaRpXL8H", - "name": "Hellebarde +3", - "type": "weapon", - "img": "icons/weapons/polearms/halberd-crescent-glowing.webp", - "effects": [ - { - "_id": "JIWNiHZdqmMiPMBz", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!wy8GXE1zjaRpXL8H.JIWNiHZdqmMiPMBz" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 2754, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343558, - "modifiedTime": 1740227863028, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!wy8GXE1zjaRpXL8H" -} diff --git a/packs/items/Holzbecher_pzjZv0HhCA15wy1i.json b/packs/items/Holzbecher_pzjZv0HhCA15wy1i.json deleted file mode 100644 index 36d5cb6b..00000000 --- a/packs/items/Holzbecher_pzjZv0HhCA15wy1i.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "pzjZv0HhCA15wy1i", - "name": "Holzbecher", - "type": "loot", - "img": "icons/containers/kitchenware/mug-simple-wooden-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.2, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343470, - "modifiedTime": 1740227863023, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pzjZv0HhCA15wy1i" -} diff --git a/packs/items/Holzbesteck_hGiaAJyEUHbPl5pf.json b/packs/items/Holzbesteck_hGiaAJyEUHbPl5pf.json deleted file mode 100644 index c6756285..00000000 --- a/packs/items/Holzbesteck_hGiaAJyEUHbPl5pf.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "hGiaAJyEUHbPl5pf", - "name": "Holzbesteck", - "type": "loot", - "img": "icons/tools/cooking/fork-steel-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.2, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343232, - "modifiedTime": 1740227863016, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!hGiaAJyEUHbPl5pf" -} diff --git a/packs/items/Holzschild_J7d2zx4kqKEdMR1j.json b/packs/items/Holzschild_J7d2zx4kqKEdMR1j.json deleted file mode 100644 index 2a8ef265..00000000 --- a/packs/items/Holzschild_J7d2zx4kqKEdMR1j.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "_id": "J7d2zx4kqKEdMR1j", - "name": "Holzschild", - "type": "shield", - "img": "icons/equipment/shield/round-wooden-boss-steel-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zerbricht bei einem Abwehr-Patzer
", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342872, - "modifiedTime": 1740227862983, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!J7d2zx4kqKEdMR1j" -} diff --git a/packs/items/Holzschild__1_89ZunLlXp1Lm6Wzd.json b/packs/items/Holzschild__1_89ZunLlXp1Lm6Wzd.json deleted file mode 100644 index 56ef6406..00000000 --- a/packs/items/Holzschild__1_89ZunLlXp1Lm6Wzd.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "89ZunLlXp1Lm6Wzd", - "name": "Holzschild +1", - "type": "shield", - "img": "icons/equipment/shield/round-wooden-boss-steel-red.webp", - "effects": [ - { - "_id": "1M6yYhufFsvYsske", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!89ZunLlXp1Lm6Wzd.1M6yYhufFsvYsske" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 2251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342758, - "modifiedTime": 1740227862969, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!89ZunLlXp1Lm6Wzd" -} diff --git a/packs/items/Holzschild__2_0SrSqLjQ5CMNbwXV.json b/packs/items/Holzschild__2_0SrSqLjQ5CMNbwXV.json deleted file mode 100644 index 9da689d5..00000000 --- a/packs/items/Holzschild__2_0SrSqLjQ5CMNbwXV.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "0SrSqLjQ5CMNbwXV", - "name": "Holzschild +2", - "type": "shield", - "img": "icons/equipment/shield/round-wooden-reinforced-boss-steel.webp", - "effects": [ - { - "_id": "eu80ImNhR1gsT7jg", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!0SrSqLjQ5CMNbwXV.eu80ImNhR1gsT7jg" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 3251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342631, - "modifiedTime": 1740227862960, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0SrSqLjQ5CMNbwXV" -} diff --git a/packs/items/Holzschild__3_KefO4lxHxwddpFFu.json b/packs/items/Holzschild__3_KefO4lxHxwddpFFu.json deleted file mode 100644 index 0c9f9f95..00000000 --- a/packs/items/Holzschild__3_KefO4lxHxwddpFFu.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "KefO4lxHxwddpFFu", - "name": "Holzschild +3", - "type": "shield", - "img": "icons/equipment/shield/round-wooden-boss-gold-brown.webp", - "effects": [ - { - "_id": "AkDi2TNzgpT2ZfrH", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!KefO4lxHxwddpFFu.AkDi2TNzgpT2ZfrH" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 4251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342895, - "modifiedTime": 1740227862985, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KefO4lxHxwddpFFu" -} diff --git a/packs/items/Holzw_rfel__sechsseitig__iWOrlMcGVAXTvFEg.json b/packs/items/Holzw_rfel__sechsseitig__iWOrlMcGVAXTvFEg.json deleted file mode 100644 index 6981dbf7..00000000 --- a/packs/items/Holzw_rfel__sechsseitig__iWOrlMcGVAXTvFEg.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "iWOrlMcGVAXTvFEg", - "name": "Holzwürfel (sechsseitig)", - "type": "loot", - "img": "icons/sundries/gaming/dice-runed-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.02, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343290, - "modifiedTime": 1740227863017, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!iWOrlMcGVAXTvFEg" -} diff --git a/packs/items/Immertreff_5cqP2SvMe5j0BD3t.json b/packs/items/Immertreff_5cqP2SvMe5j0BD3t.json deleted file mode 100644 index 7be52c54..00000000 --- a/packs/items/Immertreff_5cqP2SvMe5j0BD3t.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "5cqP2SvMe5j0BD3t", - "name": "Immertreff", - "type": "weapon", - "img": "icons/weapons/bows/longbow-gold-pink.webp", - "effects": [ - { - "_id": "QN5NueLJpTY2Vwat", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Fieser Schuss", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Fieser Schuss +II", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!5cqP2SvMe5j0BD3t.QN5NueLJpTY2Vwat" - }, - { - "_id": "rDzmy3Xb0qQfErWi", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Scharfschütze", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Scharfschütze +II", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!5cqP2SvMe5j0BD3t.rDzmy3Xb0qQfErWi" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein tödlicher Langbogen +2 mit Fieser Schuss +II und Scharfschütze +II.
\nZweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 10660, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 4, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342725, - "modifiedTime": 1740227862966, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5cqP2SvMe5j0BD3t" -} diff --git a/packs/items/K_nigsblut_cqVt9s7u46u0925o.json b/packs/items/K_nigsblut_cqVt9s7u46u0925o.json deleted file mode 100644 index 642150eb..00000000 --- a/packs/items/K_nigsblut_cqVt9s7u46u0925o.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "cqVt9s7u46u0925o", - "name": "Königsblut", - "type": "weapon", - "img": "icons/weapons/daggers/dagger-bone-engraved-black.webp", - "effects": [ - { - "_id": "JLc9UYdHy4aAeqA2", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!cqVt9s7u46u0925o.JLc9UYdHy4aAeqA2" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Durch diesen magischen Dolch +3 mit @Compendium[ds4.spells.RUfE7hqqHCKMEMbh]{Schattenklinge}, @Compendium[ds4.spells.EXqdD6yddQ4c0zAw]{Unsichtbarkeit} (Abklingzeit 1x täglich ignorierbar) sollen angeblich schon Könige gestorben sein
\nInitiative +1
", - "quantity": 1, - "price": 17352, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343116, - "modifiedTime": 1740227863008, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!cqVt9s7u46u0925o" -} diff --git a/packs/items/Kampfstab__1_dq4wK5bmMvOfwoWH.json b/packs/items/Kampfstab__1_dq4wK5bmMvOfwoWH.json deleted file mode 100644 index f961470d..00000000 --- a/packs/items/Kampfstab__1_dq4wK5bmMvOfwoWH.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "dq4wK5bmMvOfwoWH", - "name": "Kampfstab +1", - "type": "weapon", - "img": "icons/weapons/staves/staff-simple-gold.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Zielzaubern +1
", - "quantity": 1, - "price": 1250.5, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343142, - "modifiedTime": 1740227863011, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dq4wK5bmMvOfwoWH" -} diff --git a/packs/items/Kampfstab__2_HcN322i9KLPzp1d4.json b/packs/items/Kampfstab__2_HcN322i9KLPzp1d4.json deleted file mode 100644 index 0190ed8f..00000000 --- a/packs/items/Kampfstab__2_HcN322i9KLPzp1d4.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "HcN322i9KLPzp1d4", - "name": "Kampfstab +2", - "type": "weapon", - "img": "icons/weapons/staves/staff-simple-carved.webp", - "effects": [ - { - "_id": "7AIeGsBF1gYX7cSX", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!HcN322i9KLPzp1d4.7AIeGsBF1gYX7cSX" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Zielzaubern +1
", - "quantity": 1, - "price": 1750.5, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342865, - "modifiedTime": 1740227862982, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!HcN322i9KLPzp1d4" -} diff --git a/packs/items/Kampfstab__3_JG18wEtysl2m6sWq.json b/packs/items/Kampfstab__3_JG18wEtysl2m6sWq.json deleted file mode 100644 index e88f4e14..00000000 --- a/packs/items/Kampfstab__3_JG18wEtysl2m6sWq.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "JG18wEtysl2m6sWq", - "name": "Kampfstab +3", - "type": "weapon", - "img": "icons/weapons/staves/staff-ornate.webp", - "effects": [ - { - "_id": "jMu0Mqf6qy2Df8vI", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!JG18wEtysl2m6sWq.jMu0Mqf6qy2Df8vI" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Zielzaubern +1
", - "quantity": 1, - "price": 2250.5, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342875, - "modifiedTime": 1740227862983, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JG18wEtysl2m6sWq" -} diff --git a/packs/items/Kampfstab_ylWwhiSGGWLee2PA.json b/packs/items/Kampfstab_ylWwhiSGGWLee2PA.json deleted file mode 100644 index 19f71201..00000000 --- a/packs/items/Kampfstab_ylWwhiSGGWLee2PA.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "ylWwhiSGGWLee2PA", - "name": "Kampfstab", - "type": "weapon", - "img": "icons/weapons/staves/staff-simple.webp", - "effects": [ - { - "_id": "1aNTAQBai6qAcWGM", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.targetedSpellcasting.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Zielzaubern +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ylWwhiSGGWLee2PA.1aNTAQBai6qAcWGM" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Zielzaubern +1, Zerbricht bei Schlagen-Patzer
", - "quantity": 1, - "price": 0.5, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343583, - "modifiedTime": 1740227863030, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ylWwhiSGGWLee2PA" -} diff --git a/packs/items/Kampftrank_kIiDbrtAPno14O85.json b/packs/items/Kampftrank_kIiDbrtAPno14O85.json deleted file mode 100644 index 3983b2cc..00000000 --- a/packs/items/Kampftrank_kIiDbrtAPno14O85.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "kIiDbrtAPno14O85", - "name": "Kampftrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-round-corked-orange.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Meist von oranger Farbe erhöht solch ein Trank Schlagen und Abwehr für die Dauer eines Kampfes um +1.
", - "quantity": 1, - "price": 25, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343317, - "modifiedTime": 1740227863019, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!kIiDbrtAPno14O85" -} diff --git a/packs/items/Karren__2_R_der__FPriMnCQK7DQHzJa.json b/packs/items/Karren__2_R_der__FPriMnCQK7DQHzJa.json deleted file mode 100644 index 6fdb60ca..00000000 --- a/packs/items/Karren__2_R_der__FPriMnCQK7DQHzJa.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "FPriMnCQK7DQHzJa", - "name": "Karren (2 Räder)", - "type": "loot", - "img": "icons/commodities/wood/wood-wheel-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 15, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342819, - "modifiedTime": 1740227862979, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FPriMnCQK7DQHzJa" -} diff --git a/packs/items/Karten_des_Schummlers_nff3XieL5dvOZga9.json b/packs/items/Karten_des_Schummlers_nff3XieL5dvOZga9.json deleted file mode 100644 index 5ee0e3a1..00000000 --- a/packs/items/Karten_des_Schummlers_nff3XieL5dvOZga9.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "nff3XieL5dvOZga9", - "name": "Karten des Schummlers", - "type": "loot", - "img": "icons/sundries/gaming/playing-cards-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "In dieses wunderschöne Spielkarten-Set ist der Zauber @Compendium[ds4.spells.BGnY1p1qZXwpzXFA]{Zeitstop} eingebettet.
", - "quantity": 1, - "price": 13031, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343351, - "modifiedTime": 1740227863020, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!nff3XieL5dvOZga9" -} diff --git a/packs/items/Kartenspiel_CsUnbnytOapKsjuW.json b/packs/items/Kartenspiel_CsUnbnytOapKsjuW.json deleted file mode 100644 index a5738541..00000000 --- a/packs/items/Kartenspiel_CsUnbnytOapKsjuW.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "CsUnbnytOapKsjuW", - "name": "Kartenspiel", - "type": "loot", - "img": "icons/sundries/gaming/playing-cards-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342803, - "modifiedTime": 1740227862977, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!CsUnbnytOapKsjuW" -} diff --git a/packs/items/Kette_der_Regeneration_VfjAtfQv5Ga8hoHu.json b/packs/items/Kette_der_Regeneration_VfjAtfQv5Ga8hoHu.json deleted file mode 100644 index 6809e3e5..00000000 --- a/packs/items/Kette_der_Regeneration_VfjAtfQv5Ga8hoHu.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "VfjAtfQv5Ga8hoHu", - "name": "Kette der Regeneration", - "type": "equipment", - "img": "icons/equipment/neck/choker-chain-thick-silver.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese schlichte Silberkette heilt in jeder Kamfprunde 1 LK.
", - "quantity": 1, - "price": null, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343052, - "modifiedTime": 1740227863002, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VfjAtfQv5Ga8hoHu" -} diff --git a/packs/items/Kettenpanzer_09Hp2c2jgoXx7cV0.json b/packs/items/Kettenpanzer_09Hp2c2jgoXx7cV0.json deleted file mode 100644 index a38665a7..00000000 --- a/packs/items/Kettenpanzer_09Hp2c2jgoXx7cV0.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "09Hp2c2jgoXx7cV0", - "name": "Kettenpanzer", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -0,5
", - "quantity": 1, - "price": 10, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342626, - "modifiedTime": 1740227862959, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!09Hp2c2jgoXx7cV0" -} diff --git a/packs/items/Kettenpanzer__1_TcyE0faEebPLoLOD.json b/packs/items/Kettenpanzer__1_TcyE0faEebPLoLOD.json deleted file mode 100644 index 0880a33b..00000000 --- a/packs/items/Kettenpanzer__1_TcyE0faEebPLoLOD.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "TcyE0faEebPLoLOD", - "name": "Kettenpanzer +1", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 3260, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343004, - "modifiedTime": 1740227863000, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TcyE0faEebPLoLOD" -} diff --git a/packs/items/Kettenpanzer__2_12WbnUt5h84JQxMp.json b/packs/items/Kettenpanzer__2_12WbnUt5h84JQxMp.json deleted file mode 100644 index 613dc9ce..00000000 --- a/packs/items/Kettenpanzer__2_12WbnUt5h84JQxMp.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "12WbnUt5h84JQxMp", - "name": "Kettenpanzer +2", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-grey.webp", - "effects": [ - { - "_id": "gPN9UcowmdjdyGyn", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!12WbnUt5h84JQxMp.gPN9UcowmdjdyGyn" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 4260, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342645, - "modifiedTime": 1740227862962, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!12WbnUt5h84JQxMp" -} diff --git a/packs/items/Kettenpanzer__3_DRClmtZNGGYtritZ.json b/packs/items/Kettenpanzer__3_DRClmtZNGGYtritZ.json deleted file mode 100644 index ade86053..00000000 --- a/packs/items/Kettenpanzer__3_DRClmtZNGGYtritZ.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "DRClmtZNGGYtritZ", - "name": "Kettenpanzer +3", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-grey.webp", - "effects": [ - { - "_id": "BKpvNVwaSovtKyRB", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!DRClmtZNGGYtritZ.BKpvNVwaSovtKyRB" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 5260, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342808, - "modifiedTime": 1740227862977, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!DRClmtZNGGYtritZ" -} diff --git a/packs/items/Keule__1_pzD6fcJa1Hk4Duwu.json b/packs/items/Keule__1_pzD6fcJa1Hk4Duwu.json deleted file mode 100644 index 36cf5bc1..00000000 --- a/packs/items/Keule__1_pzD6fcJa1Hk4Duwu.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "pzD6fcJa1Hk4Duwu", - "name": "Keule +1", - "type": "weapon", - "img": "icons/weapons/clubs/club-simple-barbed.webp", - "effects": [ - { - "_id": "9ZyXiW0n9WJ5WQOv", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!pzD6fcJa1Hk4Duwu.9ZyXiW0n9WJ5WQOv" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 1250.2, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343466, - "modifiedTime": 1740227863022, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pzD6fcJa1Hk4Duwu" -} diff --git a/packs/items/Keule__2_GG7o5XbvBmmauzIw.json b/packs/items/Keule__2_GG7o5XbvBmmauzIw.json deleted file mode 100644 index 9f1be6d3..00000000 --- a/packs/items/Keule__2_GG7o5XbvBmmauzIw.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "GG7o5XbvBmmauzIw", - "name": "Keule +2", - "type": "weapon", - "img": "icons/weapons/clubs/club-barbed-engraved-brown.webp", - "effects": [ - { - "_id": "a8zW4tAcGbak3nno", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!GG7o5XbvBmmauzIw.a8zW4tAcGbak3nno" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 1750.2, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342855, - "modifiedTime": 1740227862981, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GG7o5XbvBmmauzIw" -} diff --git a/packs/items/Keule__3_7g4vNrJOoX0v4Byu.json b/packs/items/Keule__3_7g4vNrJOoX0v4Byu.json deleted file mode 100644 index bfd7e9a1..00000000 --- a/packs/items/Keule__3_7g4vNrJOoX0v4Byu.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "7g4vNrJOoX0v4Byu", - "name": "Keule +3", - "type": "weapon", - "img": "icons/weapons/clubs/club-banded-brown.webp", - "effects": [ - { - "_id": "8y8e8BsFQZZkwUXk", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!7g4vNrJOoX0v4Byu.8y8e8BsFQZZkwUXk" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 2250.2, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342744, - "modifiedTime": 1740227862968, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7g4vNrJOoX0v4Byu" -} diff --git a/packs/items/Keule_siJAzGmpHVegUKBF.json b/packs/items/Keule_siJAzGmpHVegUKBF.json deleted file mode 100644 index 7913abde..00000000 --- a/packs/items/Keule_siJAzGmpHVegUKBF.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "siJAzGmpHVegUKBF", - "name": "Keule", - "type": "weapon", - "img": "icons/weapons/clubs/club-simple-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zerbricht bei Schlagen-Patzer
", - "quantity": 1, - "price": 0.2, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343492, - "modifiedTime": 1740227863025, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!siJAzGmpHVegUKBF" -} diff --git a/packs/items/Kletterausr_stung_3zqSBuiQWIsIov4h.json b/packs/items/Kletterausr_stung_3zqSBuiQWIsIov4h.json deleted file mode 100644 index 718b1a94..00000000 --- a/packs/items/Kletterausr_stung_3zqSBuiQWIsIov4h.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "3zqSBuiQWIsIov4h", - "name": "Kletterausrüstung", - "type": "loot", - "img": "icons/sundries/survival/rope-wrapped-loops-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342702, - "modifiedTime": 1740227862965, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!3zqSBuiQWIsIov4h" -} diff --git a/packs/items/Klettertrank_udsNOh5h0TQmOYBl.json b/packs/items/Klettertrank_udsNOh5h0TQmOYBl.json deleted file mode 100644 index 58fb97d2..00000000 --- a/packs/items/Klettertrank_udsNOh5h0TQmOYBl.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "udsNOh5h0TQmOYBl", - "name": "Klettertrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-conical-corked-cyan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann für W20 Runden mit seinem normalen Laufen-Wert wie eine Spinne klettern, selbst kopfüber an der Decke.
", - "quantity": 1, - "price": 50, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343544, - "modifiedTime": 1740227863027, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!udsNOh5h0TQmOYBl" -} diff --git a/packs/items/Kluft_des_J_gers_zWMPzHIY3vkrCIEJ.json b/packs/items/Kluft_des_J_gers_zWMPzHIY3vkrCIEJ.json deleted file mode 100644 index 71f17eba..00000000 --- a/packs/items/Kluft_des_J_gers_zWMPzHIY3vkrCIEJ.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "zWMPzHIY3vkrCIEJ", - "name": "Kluft des Jägers", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-leather-green.webp", - "effects": [ - { - "_id": "RXgVHCUhqvSvdubt", - "flags": {}, - "changes": [ - { - "key": "system.traits.agility.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Bewegung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!zWMPzHIY3vkrCIEJ.RXgVHCUhqvSvdubt" - }, - { - "_id": "XsKZUk7lLh6egc89", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Jäger", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Jäger +I", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!zWMPzHIY3vkrCIEJ.XsKZUk7lLh6egc89" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese braun-grüne Lederrüstung gewährt neben Jäger +I ihrem Träger +1 auf Bewegung.
", - "quantity": 1, - "price": 1504, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343602, - "modifiedTime": 1740227863031, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zWMPzHIY3vkrCIEJ" -} diff --git a/packs/items/Kompass_xwjafjsWdZJBVN0A.json b/packs/items/Kompass_xwjafjsWdZJBVN0A.json deleted file mode 100644 index fd8bd6f9..00000000 --- a/packs/items/Kompass_xwjafjsWdZJBVN0A.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "xwjafjsWdZJBVN0A", - "name": "Kompass", - "type": "loot", - "img": "icons/tools/navigation/compass-brass-blue-red.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 35, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343573, - "modifiedTime": 1740227863029, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!xwjafjsWdZJBVN0A" -} diff --git a/packs/items/Konzentrationstrank_W2dHT0OENc5kNwnZ.json b/packs/items/Konzentrationstrank_W2dHT0OENc5kNwnZ.json deleted file mode 100644 index 17d3e41f..00000000 --- a/packs/items/Konzentrationstrank_W2dHT0OENc5kNwnZ.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "W2dHT0OENc5kNwnZ", - "name": "Konzentrationstrank", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-corked-white.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser oft graue Trank verdoppelt GEI für GEI in Runden.
", - "quantity": 1, - "price": 200, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343054, - "modifiedTime": 1740227863003, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!W2dHT0OENc5kNwnZ" -} diff --git a/packs/items/Kriegshorn_c3YlvFbZJD6LbhVi.json b/packs/items/Kriegshorn_c3YlvFbZJD6LbhVi.json deleted file mode 100644 index e9728dd4..00000000 --- a/packs/items/Kriegshorn_c3YlvFbZJD6LbhVi.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "c3YlvFbZJD6LbhVi", - "name": "Kriegshorn", - "type": "equipment", - "img": "icons/commodities/treasure/horn-carved-banded.webp", - "effects": [ - { - "_id": "DZXHZOg7edkW2RS2", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Schlachtruf", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Schlachtruf +I", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!c3YlvFbZJD6LbhVi.DZXHZOg7edkW2RS2" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Klang des Horns feuert die Kampfgefährten mit seinem eingebetteten Schlachtruf +I an.
", - "quantity": 1, - "price": 2750.05, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343102, - "modifiedTime": 1740227863007, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!c3YlvFbZJD6LbhVi" -} diff --git a/packs/items/Kristallkugel_PQfSHYKxPqia6nG3.json b/packs/items/Kristallkugel_PQfSHYKxPqia6nG3.json deleted file mode 100644 index 428b2803..00000000 --- a/packs/items/Kristallkugel_PQfSHYKxPqia6nG3.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "PQfSHYKxPqia6nG3", - "name": "Kristallkugel", - "type": "loot", - "img": "icons/tools/laboratory/alembic-glass-ball-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauber @Compendium[ds4.spells.xR5aBGFz3916e82x]{Spionage} ist in diese äußerst zerbrechliche Kugel eingebettet.
", - "quantity": 1, - "price": 1485, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342932, - "modifiedTime": 1740227862990, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!PQfSHYKxPqia6nG3" -} diff --git a/packs/items/Krumms_bel_FbfsU0H1E7wCxm0q.json b/packs/items/Krumms_bel_FbfsU0H1E7wCxm0q.json deleted file mode 100644 index 9ef91f96..00000000 --- a/packs/items/Krumms_bel_FbfsU0H1E7wCxm0q.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "FbfsU0H1E7wCxm0q", - "name": "Krummsäbel", - "type": "weapon", - "img": "icons/weapons/swords/scimitar-worn-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 6, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342827, - "modifiedTime": 1740227862980, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FbfsU0H1E7wCxm0q" -} diff --git a/packs/items/Krumms_bel__1_R1cxU1hzcLopZwhA.json b/packs/items/Krumms_bel__1_R1cxU1hzcLopZwhA.json deleted file mode 100644 index 5bf30ec3..00000000 --- a/packs/items/Krumms_bel__1_R1cxU1hzcLopZwhA.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "R1cxU1hzcLopZwhA", - "name": "Krummsäbel +1", - "type": "weapon", - "img": "icons/weapons/swords/scimitar-guard.webp", - "effects": [ - { - "_id": "uYIt59oaCKobgftJ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!R1cxU1hzcLopZwhA.uYIt59oaCKobgftJ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342955, - "modifiedTime": 1740227862994, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!R1cxU1hzcLopZwhA" -} diff --git a/packs/items/Krumms_bel__2_2C0GH1sYXj8QtRTK.json b/packs/items/Krumms_bel__2_2C0GH1sYXj8QtRTK.json deleted file mode 100644 index b5c50390..00000000 --- a/packs/items/Krumms_bel__2_2C0GH1sYXj8QtRTK.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "2C0GH1sYXj8QtRTK", - "name": "Krummsäbel +2", - "type": "weapon", - "img": "icons/weapons/swords/scimitar-guard-brown.webp", - "effects": [ - { - "_id": "xjUL1B0P5jhze3vQ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!2C0GH1sYXj8QtRTK.xjUL1B0P5jhze3vQ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1756, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342675, - "modifiedTime": 1740227862964, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2C0GH1sYXj8QtRTK" -} diff --git a/packs/items/Krumms_bel__3_8B4biRyQ6SN0fYtl.json b/packs/items/Krumms_bel__3_8B4biRyQ6SN0fYtl.json deleted file mode 100644 index 11a7fb97..00000000 --- a/packs/items/Krumms_bel__3_8B4biRyQ6SN0fYtl.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "8B4biRyQ6SN0fYtl", - "name": "Krummsäbel +3", - "type": "weapon", - "img": "icons/weapons/swords/scimitar-guard-red.webp", - "effects": [ - { - "_id": "muxy8RtkuaOsrY2H", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!8B4biRyQ6SN0fYtl.muxy8RtkuaOsrY2H" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342759, - "modifiedTime": 1740227862969, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8B4biRyQ6SN0fYtl" -} diff --git a/packs/items/Krummschwert_0EwYRuQCBmE3LIm2.json b/packs/items/Krummschwert_0EwYRuQCBmE3LIm2.json deleted file mode 100644 index 8b075029..00000000 --- a/packs/items/Krummschwert_0EwYRuQCBmE3LIm2.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "0EwYRuQCBmE3LIm2", - "name": "Krummschwert", - "type": "weapon", - "img": "icons/weapons/swords/scimitar-broad.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342629, - "modifiedTime": 1740227862960, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0EwYRuQCBmE3LIm2" -} diff --git a/packs/items/Krummschwert__1_7CCoTap4GzN1uSNw.json b/packs/items/Krummschwert__1_7CCoTap4GzN1uSNw.json deleted file mode 100644 index c7ed30e0..00000000 --- a/packs/items/Krummschwert__1_7CCoTap4GzN1uSNw.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "7CCoTap4GzN1uSNw", - "name": "Krummschwert +1", - "type": "weapon", - "img": "icons/weapons/swords/scimitar-guard-wood.webp", - "effects": [ - { - "_id": "Vg3Q9A7QIXHrABFk", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!7CCoTap4GzN1uSNw.Vg3Q9A7QIXHrABFk" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342737, - "modifiedTime": 1740227862967, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7CCoTap4GzN1uSNw" -} diff --git a/packs/items/Krummschwert__2_3ZCLI6UN4i0zTeuv.json b/packs/items/Krummschwert__2_3ZCLI6UN4i0zTeuv.json deleted file mode 100644 index 1837e687..00000000 --- a/packs/items/Krummschwert__2_3ZCLI6UN4i0zTeuv.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "3ZCLI6UN4i0zTeuv", - "name": "Krummschwert +2", - "type": "weapon", - "img": "icons/weapons/swords/scimitar-bone.webp", - "effects": [ - { - "_id": "MUERgL0DjjZR3sv0", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!3ZCLI6UN4i0zTeuv.MUERgL0DjjZR3sv0" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342698, - "modifiedTime": 1740227862965, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!3ZCLI6UN4i0zTeuv" -} diff --git a/packs/items/Krummschwert__3_opq2AakrpM9gLSa0.json b/packs/items/Krummschwert__3_opq2AakrpM9gLSa0.json deleted file mode 100644 index 5645f32b..00000000 --- a/packs/items/Krummschwert__3_opq2AakrpM9gLSa0.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "opq2AakrpM9gLSa0", - "name": "Krummschwert +3", - "type": "weapon", - "img": "icons/weapons/swords/scimitar-blue.webp", - "effects": [ - { - "_id": "RGYzuIow1nDLd681", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!opq2AakrpM9gLSa0.RGYzuIow1nDLd681" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343410, - "modifiedTime": 1740227863021, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!opq2AakrpM9gLSa0" -} diff --git a/packs/items/Kundschafterpanzer_ZLDJNdtwxbdiJOP2.json b/packs/items/Kundschafterpanzer_ZLDJNdtwxbdiJOP2.json deleted file mode 100644 index d86ce715..00000000 --- a/packs/items/Kundschafterpanzer_ZLDJNdtwxbdiJOP2.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "_id": "ZLDJNdtwxbdiJOP2", - "name": "Kundschafterpanzer", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-leather.webp", - "effects": [ - { - "_id": "EkJB0kpYFHRMYSgl", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "-0.5", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -0,5", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ZLDJNdtwxbdiJOP2.EkJB0kpYFHRMYSgl" - }, - { - "_id": "mq2ViimrfXr7sGC7", - "flags": {}, - "changes": [ - { - "key": "system.traits.agility.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Bewegung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ZLDJNdtwxbdiJOP2.mq2ViimrfXr7sGC7" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese mit braunen Fellschulterpolstern verzierte Kettenrüstung gewährt ihrem Träger +1 auf Bewegung.
\nLaufen -0,5
", - "quantity": 1, - "price": 1260, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343083, - "modifiedTime": 1740227863004, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ZLDJNdtwxbdiJOP2" -} diff --git a/packs/items/Kurzbogen_QsnvAep80sSVJToD.json b/packs/items/Kurzbogen_QsnvAep80sSVJToD.json deleted file mode 100644 index 81e2eeae..00000000 --- a/packs/items/Kurzbogen_QsnvAep80sSVJToD.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "QsnvAep80sSVJToD", - "name": "Kurzbogen", - "type": "weapon", - "img": "icons/weapons/bows/shortbow-leather.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1
", - "quantity": 1, - "price": 6, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342954, - "modifiedTime": 1740227862993, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QsnvAep80sSVJToD" -} diff --git a/packs/items/Kurzbogen__1_6WqPqjMQMMPjV99U.json b/packs/items/Kurzbogen__1_6WqPqjMQMMPjV99U.json deleted file mode 100644 index 4de46dad..00000000 --- a/packs/items/Kurzbogen__1_6WqPqjMQMMPjV99U.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "6WqPqjMQMMPjV99U", - "name": "Kurzbogen +1", - "type": "weapon", - "img": "icons/weapons/bows/shortbow-recurve-leather.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1
", - "quantity": 1, - "price": 1256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342732, - "modifiedTime": 1740227862967, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!6WqPqjMQMMPjV99U" -} diff --git a/packs/items/Kurzbogen__2_1hmprC7XVhIPemy5.json b/packs/items/Kurzbogen__2_1hmprC7XVhIPemy5.json deleted file mode 100644 index 53951884..00000000 --- a/packs/items/Kurzbogen__2_1hmprC7XVhIPemy5.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "1hmprC7XVhIPemy5", - "name": "Kurzbogen +2", - "type": "weapon", - "img": "icons/weapons/bows/shortbow-recurve.webp", - "effects": [ - { - "_id": "VkuGm7hES83WX4HD", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!1hmprC7XVhIPemy5.VkuGm7hES83WX4HD" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1
", - "quantity": 1, - "price": 1756, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342654, - "modifiedTime": 1740227862963, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1hmprC7XVhIPemy5" -} diff --git a/packs/items/Kurzbogen__3_RKKhoedvylYWFBN3.json b/packs/items/Kurzbogen__3_RKKhoedvylYWFBN3.json deleted file mode 100644 index bcd9476f..00000000 --- a/packs/items/Kurzbogen__3_RKKhoedvylYWFBN3.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "RKKhoedvylYWFBN3", - "name": "Kurzbogen +3", - "type": "weapon", - "img": "icons/weapons/bows/shortbow-recurve-blue.webp", - "effects": [ - { - "_id": "zgiIGlRMVCgAzrn7", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!RKKhoedvylYWFBN3.zgiIGlRMVCgAzrn7" - }, - { - "_id": "OQr5POyJ0Azklftu", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!RKKhoedvylYWFBN3.OQr5POyJ0Azklftu" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1
", - "quantity": 1, - "price": 2256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342963, - "modifiedTime": 1740227862995, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RKKhoedvylYWFBN3" -} diff --git a/packs/items/Kurzschwert_Sj1iVgklsdFtLq8M.json b/packs/items/Kurzschwert_Sj1iVgklsdFtLq8M.json deleted file mode 100644 index c3d3402d..00000000 --- a/packs/items/Kurzschwert_Sj1iVgklsdFtLq8M.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "Sj1iVgklsdFtLq8M", - "name": "Kurzschwert", - "type": "weapon", - "img": "icons/weapons/swords/shortsword-guard-brass.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 6, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342989, - "modifiedTime": 1740227862999, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Sj1iVgklsdFtLq8M" -} diff --git a/packs/items/Kurzschwert__1_8la7FJ8kpGNUWrCg.json b/packs/items/Kurzschwert__1_8la7FJ8kpGNUWrCg.json deleted file mode 100644 index 2e72bcd1..00000000 --- a/packs/items/Kurzschwert__1_8la7FJ8kpGNUWrCg.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "8la7FJ8kpGNUWrCg", - "name": "Kurzschwert +1", - "type": "weapon", - "img": "icons/weapons/swords/shortsword-green.webp", - "effects": [ - { - "_id": "CElngj6OWPpIw37j", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!8la7FJ8kpGNUWrCg.CElngj6OWPpIw37j" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 1256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342764, - "modifiedTime": 1740227862969, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8la7FJ8kpGNUWrCg" -} diff --git a/packs/items/Kurzschwert__2_MO1ga2aLjjkBZRzt.json b/packs/items/Kurzschwert__2_MO1ga2aLjjkBZRzt.json deleted file mode 100644 index b0d3087a..00000000 --- a/packs/items/Kurzschwert__2_MO1ga2aLjjkBZRzt.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "MO1ga2aLjjkBZRzt", - "name": "Kurzschwert +2", - "type": "weapon", - "img": "icons/weapons/swords/shortsword-guard-silver.webp", - "effects": [ - { - "_id": "qkDy1MWD6Fkk97e6", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!MO1ga2aLjjkBZRzt.qkDy1MWD6Fkk97e6" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 1756, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342906, - "modifiedTime": 1740227862986, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!MO1ga2aLjjkBZRzt" -} diff --git a/packs/items/Kurzschwert__3_F1XnlA28XCnT7Y0V.json b/packs/items/Kurzschwert__3_F1XnlA28XCnT7Y0V.json deleted file mode 100644 index 7b4fd894..00000000 --- a/packs/items/Kurzschwert__3_F1XnlA28XCnT7Y0V.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "F1XnlA28XCnT7Y0V", - "name": "Kurzschwert +3", - "type": "weapon", - "img": "icons/weapons/swords/shortsword-guard-gold-red.webp", - "effects": [ - { - "_id": "FZMhm4De8EXj7dBZ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!F1XnlA28XCnT7Y0V.FZMhm4De8EXj7dBZ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 2256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342815, - "modifiedTime": 1740227862978, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!F1XnlA28XCnT7Y0V" -} diff --git a/packs/items/Langbogen__1_EwjFWRaLhR33wP92.json b/packs/items/Langbogen__1_EwjFWRaLhR33wP92.json deleted file mode 100644 index ed7f447e..00000000 --- a/packs/items/Langbogen__1_EwjFWRaLhR33wP92.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "EwjFWRaLhR33wP92", - "name": "Langbogen +1", - "type": "weapon", - "img": "icons/weapons/bows/bow-ornamental-silver-black.webp", - "effects": [ - { - "_id": "zQsujP8ZT0cwdtqk", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!EwjFWRaLhR33wP92.zQsujP8ZT0cwdtqk" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 1760, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 3, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342814, - "modifiedTime": 1740227862978, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!EwjFWRaLhR33wP92" -} diff --git a/packs/items/Langbogen__2_gVwoOpuHkmwvcUow.json b/packs/items/Langbogen__2_gVwoOpuHkmwvcUow.json deleted file mode 100644 index 1e03f2d0..00000000 --- a/packs/items/Langbogen__2_gVwoOpuHkmwvcUow.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "gVwoOpuHkmwvcUow", - "name": "Langbogen +2", - "type": "weapon", - "img": "icons/weapons/bows/bow-ornamental-gold-blue.webp", - "effects": [ - { - "_id": "XsqzwEX1AvYJyczG", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!gVwoOpuHkmwvcUow.XsqzwEX1AvYJyczG" - }, - { - "_id": "iUXn0CQKZw6Rr1yH", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!gVwoOpuHkmwvcUow.iUXn0CQKZw6Rr1yH" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 2260, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 4, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343210, - "modifiedTime": 1740227863015, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gVwoOpuHkmwvcUow" -} diff --git a/packs/items/Langbogen__3_WiW9Sad1D2HjkNMz.json b/packs/items/Langbogen__3_WiW9Sad1D2HjkNMz.json deleted file mode 100644 index b6888efb..00000000 --- a/packs/items/Langbogen__3_WiW9Sad1D2HjkNMz.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "WiW9Sad1D2HjkNMz", - "name": "Langbogen +3", - "type": "weapon", - "img": "icons/weapons/bows/bow-recurve-black.webp", - "effects": [ - { - "_id": "B6tNz4B208qZf3JU", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!WiW9Sad1D2HjkNMz.B6tNz4B208qZf3JU" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 2760, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 5, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343058, - "modifiedTime": 1740227863003, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!WiW9Sad1D2HjkNMz" -} diff --git a/packs/items/Langbogen_fmunGPk80ObkIzUl.json b/packs/items/Langbogen_fmunGPk80ObkIzUl.json deleted file mode 100644 index 16f095bb..00000000 --- a/packs/items/Langbogen_fmunGPk80ObkIzUl.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "fmunGPk80ObkIzUl", - "name": "Langbogen", - "type": "weapon", - "img": "icons/weapons/bows/longbow-leather-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative +1, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 10, - "availability": "city", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343202, - "modifiedTime": 1740227863014, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fmunGPk80ObkIzUl" -} diff --git a/packs/items/Langschwert__1_dMbjx675yI2F4rUg.json b/packs/items/Langschwert__1_dMbjx675yI2F4rUg.json deleted file mode 100644 index 7433c756..00000000 --- a/packs/items/Langschwert__1_dMbjx675yI2F4rUg.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "dMbjx675yI2F4rUg", - "name": "Langschwert +1", - "type": "weapon", - "img": "icons/weapons/swords/sword-guard-embossed-green.webp", - "effects": [ - { - "_id": "l7qeGLLyuz7VXAAd", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!dMbjx675yI2F4rUg.l7qeGLLyuz7VXAAd" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343138, - "modifiedTime": 1740227863010, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dMbjx675yI2F4rUg" -} diff --git a/packs/items/Langschwert__2_i1ZcbKzviqz0nxjV.json b/packs/items/Langschwert__2_i1ZcbKzviqz0nxjV.json deleted file mode 100644 index 1fda322b..00000000 --- a/packs/items/Langschwert__2_i1ZcbKzviqz0nxjV.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "i1ZcbKzviqz0nxjV", - "name": "Langschwert +2", - "type": "weapon", - "img": "icons/weapons/swords/sword-guard-purple.webp", - "effects": [ - { - "_id": "5JZ001rLJuZMJSrD", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!i1ZcbKzviqz0nxjV.5JZ001rLJuZMJSrD" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343243, - "modifiedTime": 1740227863017, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!i1ZcbKzviqz0nxjV" -} diff --git a/packs/items/Langschwert__3_Dg8qq9n5FFxZG68k.json b/packs/items/Langschwert__3_Dg8qq9n5FFxZG68k.json deleted file mode 100644 index 0a9d50c9..00000000 --- a/packs/items/Langschwert__3_Dg8qq9n5FFxZG68k.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "Dg8qq9n5FFxZG68k", - "name": "Langschwert +3", - "type": "weapon", - "img": "icons/weapons/swords/sword-guard-engraved.webp", - "effects": [ - { - "_id": "DSf5BV955w2hKZuf", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Dg8qq9n5FFxZG68k.DSf5BV955w2hKZuf" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342810, - "modifiedTime": 1740227862978, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Dg8qq9n5FFxZG68k" -} diff --git a/packs/items/Langschwert_htmQWmMCQN620KrE.json b/packs/items/Langschwert_htmQWmMCQN620KrE.json deleted file mode 100644 index 7f0582d1..00000000 --- a/packs/items/Langschwert_htmQWmMCQN620KrE.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "htmQWmMCQN620KrE", - "name": "Langschwert", - "type": "weapon", - "img": "icons/weapons/swords/sword-guard-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343241, - "modifiedTime": 1740227863016, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!htmQWmMCQN620KrE" -} diff --git a/packs/items/Lanze_DS11ssHOcZTdZiLK.json b/packs/items/Lanze_DS11ssHOcZTdZiLK.json deleted file mode 100644 index 494e7951..00000000 --- a/packs/items/Lanze_DS11ssHOcZTdZiLK.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "DS11ssHOcZTdZiLK", - "name": "Lanze", - "type": "weapon", - "img": "icons/weapons/polearms/spear-simple-engraved.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Nur im Trab (WB +1) oder Galopp (WB +4), Zerbricht bei Schlagen-Patzer
", - "quantity": 1, - "price": 2, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": null, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342809, - "modifiedTime": 1740227862978, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!DS11ssHOcZTdZiLK" -} diff --git a/packs/items/Lanze__1_upkDR02zMILTPib6.json b/packs/items/Lanze__1_upkDR02zMILTPib6.json deleted file mode 100644 index 7142a514..00000000 --- a/packs/items/Lanze__1_upkDR02zMILTPib6.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "upkDR02zMILTPib6", - "name": "Lanze +1", - "type": "weapon", - "img": "icons/weapons/polearms/spear-flared-green.webp", - "effects": [ - { - "_id": "d8N240qBKaRGqkcf", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!upkDR02zMILTPib6.d8N240qBKaRGqkcf" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Nur im Trab (WB +1) oder Galopp (WB +4)
", - "quantity": 1, - "price": 1252, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343547, - "modifiedTime": 1740227863027, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!upkDR02zMILTPib6" -} diff --git a/packs/items/Lanze__2_5MrsKOS4sAxpMv2U.json b/packs/items/Lanze__2_5MrsKOS4sAxpMv2U.json deleted file mode 100644 index da269f8e..00000000 --- a/packs/items/Lanze__2_5MrsKOS4sAxpMv2U.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "5MrsKOS4sAxpMv2U", - "name": "Lanze +2", - "type": "weapon", - "img": "icons/weapons/polearms/spear-flared-blue.webp", - "effects": [ - { - "_id": "iLA1AQrTlmA0BFnC", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!5MrsKOS4sAxpMv2U.iLA1AQrTlmA0BFnC" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Nur im Trab (WB +1) oder Galopp (WB +4)
", - "quantity": 1, - "price": 1752, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342718, - "modifiedTime": 1740227862966, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5MrsKOS4sAxpMv2U" -} diff --git a/packs/items/Lanze__3_bVeWMNBKPWRqrFGj.json b/packs/items/Lanze__3_bVeWMNBKPWRqrFGj.json deleted file mode 100644 index d024768b..00000000 --- a/packs/items/Lanze__3_bVeWMNBKPWRqrFGj.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "bVeWMNBKPWRqrFGj", - "name": "Lanze +3", - "type": "weapon", - "img": "icons/weapons/polearms/spear-flared-purple.webp", - "effects": [ - { - "_id": "5CFUcYAipdyZHdde", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!bVeWMNBKPWRqrFGj.5CFUcYAipdyZHdde" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Nur im Trab (WB +1) oder Galopp (WB +4)
", - "quantity": 1, - "price": 2252, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343098, - "modifiedTime": 1740227863007, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!bVeWMNBKPWRqrFGj" -} diff --git a/packs/items/Laterne_ZyML0QPctIXK8A4c.json b/packs/items/Laterne_ZyML0QPctIXK8A4c.json deleted file mode 100644 index f8f6aa37..00000000 --- a/packs/items/Laterne_ZyML0QPctIXK8A4c.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "ZyML0QPctIXK8A4c", - "name": "Laterne", - "type": "loot", - "img": "icons/sundries/lights/lantern-iron-yellow.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343085, - "modifiedTime": 1740227863005, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ZyML0QPctIXK8A4c" -} diff --git a/packs/items/Laternen_l__brennt_4h__C2ggZE3ifOXlonkj.json b/packs/items/Laternen_l__brennt_4h__C2ggZE3ifOXlonkj.json deleted file mode 100644 index 90821547..00000000 --- a/packs/items/Laternen_l__brennt_4h__C2ggZE3ifOXlonkj.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "C2ggZE3ifOXlonkj", - "name": "Laternenöl (brennt 4h)", - "type": "loot", - "img": "icons/containers/kitchenware/vase-clay-cracked-white.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.05, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342799, - "modifiedTime": 1740227862974, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!C2ggZE3ifOXlonkj" -} diff --git a/packs/items/Lederbecher_d4OegxLYAGpzMFsc.json b/packs/items/Lederbecher_d4OegxLYAGpzMFsc.json deleted file mode 100644 index b2abfdc7..00000000 --- a/packs/items/Lederbecher_d4OegxLYAGpzMFsc.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "d4OegxLYAGpzMFsc", - "name": "Lederbecher", - "type": "loot", - "img": "icons/containers/kitchenware/mug-stein-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343127, - "modifiedTime": 1740227863010, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!d4OegxLYAGpzMFsc" -} diff --git a/packs/items/Lederpanzer_60MhQmXh0c2cT5nx.json b/packs/items/Lederpanzer_60MhQmXh0c2cT5nx.json deleted file mode 100644 index add0b62a..00000000 --- a/packs/items/Lederpanzer_60MhQmXh0c2cT5nx.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "60MhQmXh0c2cT5nx", - "name": "Lederpanzer", - "type": "armor", - "img": "icons/equipment/chest/breastplate-banded-leather-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 4, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342726, - "modifiedTime": 1740227862966, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!60MhQmXh0c2cT5nx" -} diff --git a/packs/items/Lederpanzer__1_GgYd2UCD2Juq7EUF.json b/packs/items/Lederpanzer__1_GgYd2UCD2Juq7EUF.json deleted file mode 100644 index 59b9e735..00000000 --- a/packs/items/Lederpanzer__1_GgYd2UCD2Juq7EUF.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "GgYd2UCD2Juq7EUF", - "name": "Lederpanzer +1", - "type": "armor", - "img": "icons/equipment/chest/breastplate-collared-leather-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342860, - "modifiedTime": 1740227862981, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GgYd2UCD2Juq7EUF" -} diff --git a/packs/items/Lederpanzer__2_JUTPfEGHEEwpeLvv.json b/packs/items/Lederpanzer__2_JUTPfEGHEEwpeLvv.json deleted file mode 100644 index aaea18dd..00000000 --- a/packs/items/Lederpanzer__2_JUTPfEGHEEwpeLvv.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "JUTPfEGHEEwpeLvv", - "name": "Lederpanzer +2", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-leather-studded-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 3254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342876, - "modifiedTime": 1740227862983, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JUTPfEGHEEwpeLvv" -} diff --git a/packs/items/Lederpanzer__3_A6hSQX9cPpoWHiOh.json b/packs/items/Lederpanzer__3_A6hSQX9cPpoWHiOh.json deleted file mode 100644 index b83da0e4..00000000 --- a/packs/items/Lederpanzer__3_A6hSQX9cPpoWHiOh.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "A6hSQX9cPpoWHiOh", - "name": "Lederpanzer +3", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-leather-studded.webp", - "effects": [ - { - "_id": "pYb7mMRhc5KBnUJT", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!A6hSQX9cPpoWHiOh.pYb7mMRhc5KBnUJT" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 4254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342779, - "modifiedTime": 1740227862972, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!A6hSQX9cPpoWHiOh" -} diff --git a/packs/items/Lederpanzer__F_r_Reittiere___1_yuSDAJwN3NFfcTSE.json b/packs/items/Lederpanzer__F_r_Reittiere___1_yuSDAJwN3NFfcTSE.json deleted file mode 100644 index eaa3423c..00000000 --- a/packs/items/Lederpanzer__F_r_Reittiere___1_yuSDAJwN3NFfcTSE.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "yuSDAJwN3NFfcTSE", - "name": "Lederpanzer (Für Reittiere) +1", - "type": "armor", - "img": "icons/commodities/leather/leather-leaf-tan.webp", - "effects": [ - { - "_id": "ISagK3JV33VmnmoX", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!yuSDAJwN3NFfcTSE.ISagK3JV33VmnmoX" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2262, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343590, - "modifiedTime": 1740227863030, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yuSDAJwN3NFfcTSE" -} diff --git a/packs/items/Lederpanzer__F_r_Reittiere___2_QNJVRtALi17otgDU.json b/packs/items/Lederpanzer__F_r_Reittiere___2_QNJVRtALi17otgDU.json deleted file mode 100644 index d4ade773..00000000 --- a/packs/items/Lederpanzer__F_r_Reittiere___2_QNJVRtALi17otgDU.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "QNJVRtALi17otgDU", - "name": "Lederpanzer (Für Reittiere) +2", - "type": "armor", - "img": "icons/commodities/leather/leather-leaf-tan.webp", - "effects": [ - { - "_id": "9qPThLRf5cwflety", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!QNJVRtALi17otgDU.9qPThLRf5cwflety" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 3262, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342944, - "modifiedTime": 1740227862991, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QNJVRtALi17otgDU" -} diff --git a/packs/items/Lederpanzer__F_r_Reittiere___3_34fD45Yzi3s2cSgy.json b/packs/items/Lederpanzer__F_r_Reittiere___3_34fD45Yzi3s2cSgy.json deleted file mode 100644 index 4323a26d..00000000 --- a/packs/items/Lederpanzer__F_r_Reittiere___3_34fD45Yzi3s2cSgy.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "34fD45Yzi3s2cSgy", - "name": "Lederpanzer (Für Reittiere) +3", - "type": "armor", - "img": "icons/commodities/leather/leather-leaf-tan.webp", - "effects": [ - { - "_id": "DY0fXwaK8RHbyo75", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!34fD45Yzi3s2cSgy.DY0fXwaK8RHbyo75" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 4262, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342696, - "modifiedTime": 1740227862965, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!34fD45Yzi3s2cSgy" -} diff --git a/packs/items/Lederpanzer__F_r_Reittiere__aNGn2tplXGSikyV7.json b/packs/items/Lederpanzer__F_r_Reittiere__aNGn2tplXGSikyV7.json deleted file mode 100644 index da52fe50..00000000 --- a/packs/items/Lederpanzer__F_r_Reittiere__aNGn2tplXGSikyV7.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "aNGn2tplXGSikyV7", - "name": "Lederpanzer (Für Reittiere)", - "type": "armor", - "img": "icons/commodities/leather/leather-leaf-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 12, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343088, - "modifiedTime": 1740227863005, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!aNGn2tplXGSikyV7" -} diff --git a/packs/items/Lederschienen_GgWdEi4yyPb1wqYn.json b/packs/items/Lederschienen_GgWdEi4yyPb1wqYn.json deleted file mode 100644 index d834f744..00000000 --- a/packs/items/Lederschienen_GgWdEi4yyPb1wqYn.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "GgWdEi4yyPb1wqYn", - "name": "Lederschienen", - "type": "armor", - "img": "icons/equipment/wrist/bracer-simple-leather.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "An Arm & Bein
", - "quantity": 1, - "price": 4, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "vambraceGreaves" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342859, - "modifiedTime": 1740227862981, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GgWdEi4yyPb1wqYn" -} diff --git a/packs/items/Lederschienen__1_Hna91ve4yx84u7zJ.json b/packs/items/Lederschienen__1_Hna91ve4yx84u7zJ.json deleted file mode 100644 index 51164e25..00000000 --- a/packs/items/Lederschienen__1_Hna91ve4yx84u7zJ.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "Hna91ve4yx84u7zJ", - "name": "Lederschienen +1", - "type": "armor", - "img": "icons/equipment/wrist/bracer-simple-leather-steel.webp", - "effects": [ - { - "_id": "KL8cnKi5NITkDENS", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Hna91ve4yx84u7zJ.KL8cnKi5NITkDENS" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "An Arm & Bein
", - "quantity": 1, - "price": 2254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "vambraceGreaves" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342866, - "modifiedTime": 1740227862982, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Hna91ve4yx84u7zJ" -} diff --git a/packs/items/Lederschienen__2_yleQcy5mTJ5jn3RZ.json b/packs/items/Lederschienen__2_yleQcy5mTJ5jn3RZ.json deleted file mode 100644 index edd4098e..00000000 --- a/packs/items/Lederschienen__2_yleQcy5mTJ5jn3RZ.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "yleQcy5mTJ5jn3RZ", - "name": "Lederschienen +2", - "type": "armor", - "img": "icons/equipment/wrist/bracer-straight-leather-red.webp", - "effects": [ - { - "_id": "YzSUbB0a2EknrxQQ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!yleQcy5mTJ5jn3RZ.YzSUbB0a2EknrxQQ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "An Arm & Bein
", - "quantity": 1, - "price": 3254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "vambraceGreaves" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343585, - "modifiedTime": 1740227863030, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yleQcy5mTJ5jn3RZ" -} diff --git a/packs/items/Lederschienen__3_Aw9aoumlI69gYv75.json b/packs/items/Lederschienen__3_Aw9aoumlI69gYv75.json deleted file mode 100644 index 4b7e5f46..00000000 --- a/packs/items/Lederschienen__3_Aw9aoumlI69gYv75.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "Aw9aoumlI69gYv75", - "name": "Lederschienen +3", - "type": "armor", - "img": "icons/equipment/wrist/bracer-banded-leather-black.webp", - "effects": [ - { - "_id": "LE8TRjZF13O6kDB8", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Aw9aoumlI69gYv75.LE8TRjZF13O6kDB8" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "An Arm & Bein
", - "quantity": 1, - "price": 4254, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "vambraceGreaves" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342791, - "modifiedTime": 1740227862974, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Aw9aoumlI69gYv75" -} diff --git a/packs/items/Leichte_Armbrust__1_9MsBlnMhvAMe4zTk.json b/packs/items/Leichte_Armbrust__1_9MsBlnMhvAMe4zTk.json deleted file mode 100644 index dd2662c7..00000000 --- a/packs/items/Leichte_Armbrust__1_9MsBlnMhvAMe4zTk.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "9MsBlnMhvAMe4zTk", - "name": "Leichte Armbrust +1", - "type": "weapon", - "img": "icons/weapons/crossbows/crossbow-simple-brown.webp", - "effects": [ - { - "_id": "sACwF2e5qLRs6c1a", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!9MsBlnMhvAMe4zTk.sACwF2e5qLRs6c1a" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 1758, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 3, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342769, - "modifiedTime": 1740227862970, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9MsBlnMhvAMe4zTk" -} diff --git a/packs/items/Leichte_Armbrust__2_PihP9eVyE4UEi1jj.json b/packs/items/Leichte_Armbrust__2_PihP9eVyE4UEi1jj.json deleted file mode 100644 index acc839db..00000000 --- a/packs/items/Leichte_Armbrust__2_PihP9eVyE4UEi1jj.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "PihP9eVyE4UEi1jj", - "name": "Leichte Armbrust +2", - "type": "weapon", - "img": "icons/weapons/crossbows/crossbow-simple-black.webp", - "effects": [ - { - "_id": "63yxBIQ4ZvuvtVsV", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!PihP9eVyE4UEi1jj.63yxBIQ4ZvuvtVsV" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 2258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 4, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342939, - "modifiedTime": 1740227862990, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!PihP9eVyE4UEi1jj" -} diff --git a/packs/items/Leichte_Armbrust__3_XSXEDiMN27cuEoOx.json b/packs/items/Leichte_Armbrust__3_XSXEDiMN27cuEoOx.json deleted file mode 100644 index bca89614..00000000 --- a/packs/items/Leichte_Armbrust__3_XSXEDiMN27cuEoOx.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "XSXEDiMN27cuEoOx", - "name": "Leichte Armbrust +3", - "type": "weapon", - "img": "icons/weapons/crossbows/crossbow-purple.webp", - "effects": [ - { - "_id": "z2uPOzDQ47VbWmt5", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!XSXEDiMN27cuEoOx.z2uPOzDQ47VbWmt5" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 2758, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 5, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343066, - "modifiedTime": 1740227863004, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!XSXEDiMN27cuEoOx" -} diff --git a/packs/items/Leichte_Armbrust_fnq4WOljIoYdbsUT.json b/packs/items/Leichte_Armbrust_fnq4WOljIoYdbsUT.json deleted file mode 100644 index 8e3b4917..00000000 --- a/packs/items/Leichte_Armbrust_fnq4WOljIoYdbsUT.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "_id": "fnq4WOljIoYdbsUT", - "name": "Leichte Armbrust", - "type": "weapon", - "img": "icons/weapons/crossbows/crossbow-simple-purple.webp", - "effects": [ - { - "_id": "gMm2PnBADqXBrCi1", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "-2", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative -2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!fnq4WOljIoYdbsUT.gMm2PnBADqXBrCi1" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 8, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 2, - "opponentDefense": 0, - "name": " +1" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343203, - "modifiedTime": 1740227863014, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fnq4WOljIoYdbsUT" -} diff --git a/packs/items/Mantel_der_Augen_9xjica2DVZso8NIU.json b/packs/items/Mantel_der_Augen_9xjica2DVZso8NIU.json deleted file mode 100644 index 7385e3c1..00000000 --- a/packs/items/Mantel_der_Augen_9xjica2DVZso8NIU.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "9xjica2DVZso8NIU", - "name": "Mantel der Augen", - "type": "equipment", - "img": "icons/equipment/back/cloak-collared-red.webp", - "effects": [ - { - "_id": "7I80O404E6ty4pHv", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Wahrnehmung", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Wahrnehmung +III", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!9xjica2DVZso8NIU.7I80O404E6ty4pHv" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser mit Augenmustern bestickte Mantel gewährt seinem Träger Wahrnehmung +III.
", - "quantity": 1, - "price": 376, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342776, - "modifiedTime": 1740227862971, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9xjica2DVZso8NIU" -} diff --git a/packs/items/Metallbesteck_7JCc96rbTbTSASbT.json b/packs/items/Metallbesteck_7JCc96rbTbTSASbT.json deleted file mode 100644 index ef223141..00000000 --- a/packs/items/Metallbesteck_7JCc96rbTbTSASbT.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "7JCc96rbTbTSASbT", - "name": "Metallbesteck", - "type": "loot", - "img": "icons/tools/cooking/fork-steel-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 4, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342741, - "modifiedTime": 1740227862968, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7JCc96rbTbTSASbT" -} diff --git a/packs/items/Metallhelm__1_esfwvMs1ffgSXjbS.json b/packs/items/Metallhelm__1_esfwvMs1ffgSXjbS.json deleted file mode 100644 index ebc1bfb9..00000000 --- a/packs/items/Metallhelm__1_esfwvMs1ffgSXjbS.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "esfwvMs1ffgSXjbS", - "name": "Metallhelm +1", - "type": "armor", - "img": "icons/equipment/head/helm-barbute-rounded-steel.webp", - "effects": [ - { - "_id": "uo5922qyPvi35mhm", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!esfwvMs1ffgSXjbS.uo5922qyPvi35mhm" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 2256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "helmet" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343188, - "modifiedTime": 1740227863013, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!esfwvMs1ffgSXjbS" -} diff --git a/packs/items/Metallhelm__2_9PdQv9CRy4ckaF0j.json b/packs/items/Metallhelm__2_9PdQv9CRy4ckaF0j.json deleted file mode 100644 index 9b243441..00000000 --- a/packs/items/Metallhelm__2_9PdQv9CRy4ckaF0j.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "9PdQv9CRy4ckaF0j", - "name": "Metallhelm +2", - "type": "armor", - "img": "icons/equipment/head/helm-barbute-engraved.webp", - "effects": [ - { - "_id": "9IOcWr1CbRpF3lya", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!9PdQv9CRy4ckaF0j.9IOcWr1CbRpF3lya" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 3256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "helmet" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342772, - "modifiedTime": 1740227862971, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9PdQv9CRy4ckaF0j" -} diff --git a/packs/items/Metallhelm__3_A109X3ZiGGGiWCze.json b/packs/items/Metallhelm__3_A109X3ZiGGGiWCze.json deleted file mode 100644 index 281d9ca6..00000000 --- a/packs/items/Metallhelm__3_A109X3ZiGGGiWCze.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "A109X3ZiGGGiWCze", - "name": "Metallhelm +3", - "type": "armor", - "img": "icons/equipment/head/helm-barbute-engraved-steel.webp", - "effects": [ - { - "_id": "vhwepr5mHZHWDkCf", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!A109X3ZiGGGiWCze.vhwepr5mHZHWDkCf" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 4256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "helmet" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342777, - "modifiedTime": 1740227862971, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!A109X3ZiGGGiWCze" -} diff --git a/packs/items/Metallhelm_fKhTsMO4YXDYY8GX.json b/packs/items/Metallhelm_fKhTsMO4YXDYY8GX.json deleted file mode 100644 index 798a246f..00000000 --- a/packs/items/Metallhelm_fKhTsMO4YXDYY8GX.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "fKhTsMO4YXDYY8GX", - "name": "Metallhelm", - "type": "armor", - "img": "icons/equipment/head/helm-barbute-reinforced.webp", - "effects": [ - { - "_id": "wlQWjU1kXovR5G1J", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "-1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!fKhTsMO4YXDYY8GX.wlQWjU1kXovR5G1J" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -1
", - "quantity": 1, - "price": 6, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "helmet" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343198, - "modifiedTime": 1740227863014, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fKhTsMO4YXDYY8GX" -} diff --git a/packs/items/Metallkrug_egleYygLWn8IfeuF.json b/packs/items/Metallkrug_egleYygLWn8IfeuF.json deleted file mode 100644 index 1959b950..00000000 --- a/packs/items/Metallkrug_egleYygLWn8IfeuF.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "egleYygLWn8IfeuF", - "name": "Metallkrug", - "type": "loot", - "img": "icons/containers/kitchenware/mug-steel-wood-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343177, - "modifiedTime": 1740227863013, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!egleYygLWn8IfeuF" -} diff --git a/packs/items/Metallschild__1_iGiZU77IGQQqlYFr.json b/packs/items/Metallschild__1_iGiZU77IGQQqlYFr.json deleted file mode 100644 index 65d357ff..00000000 --- a/packs/items/Metallschild__1_iGiZU77IGQQqlYFr.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "iGiZU77IGQQqlYFr", - "name": "Metallschild +1", - "type": "shield", - "img": "icons/equipment/shield/heater-steel-grey.webp", - "effects": [ - { - "_id": "9xMdH6XQxlulL7wv", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!iGiZU77IGQQqlYFr.9xMdH6XQxlulL7wv" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 2258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343247, - "modifiedTime": 1740227863017, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!iGiZU77IGQQqlYFr" -} diff --git a/packs/items/Metallschild__2_XyDt7MThnLkDCldV.json b/packs/items/Metallschild__2_XyDt7MThnLkDCldV.json deleted file mode 100644 index 510dfcec..00000000 --- a/packs/items/Metallschild__2_XyDt7MThnLkDCldV.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "XyDt7MThnLkDCldV", - "name": "Metallschild +2", - "type": "shield", - "img": "icons/equipment/shield/heater-steel-sword-yellow-black.webp", - "effects": [ - { - "_id": "MidC9f4kBbIz7Z7S", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!XyDt7MThnLkDCldV.MidC9f4kBbIz7Z7S" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 3258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343075, - "modifiedTime": 1740227863004, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!XyDt7MThnLkDCldV" -} diff --git a/packs/items/Metallschild__3_FKg3YI1EtiNfDcYO.json b/packs/items/Metallschild__3_FKg3YI1EtiNfDcYO.json deleted file mode 100644 index 8615b23e..00000000 --- a/packs/items/Metallschild__3_FKg3YI1EtiNfDcYO.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "FKg3YI1EtiNfDcYO", - "name": "Metallschild +3", - "type": "shield", - "img": "icons/equipment/shield/heater-steel-spiral.webp", - "effects": [ - { - "_id": "KZBNNdOmSqFkXC0X", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!FKg3YI1EtiNfDcYO.KZBNNdOmSqFkXC0X" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 4258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342817, - "modifiedTime": 1740227862979, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FKg3YI1EtiNfDcYO" -} diff --git a/packs/items/Metallschild_gyfU78OLQj8qH3Zh.json b/packs/items/Metallschild_gyfU78OLQj8qH3Zh.json deleted file mode 100644 index fa534f42..00000000 --- a/packs/items/Metallschild_gyfU78OLQj8qH3Zh.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "_id": "gyfU78OLQj8qH3Zh", - "name": "Metallschild", - "type": "shield", - "img": "icons/equipment/shield/heater-steel-worn.webp", - "effects": [ - { - "_id": "kDcyXkLx75K2YRCl", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "-0.5", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -0,5", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!gyfU78OLQj8qH3Zh.kDcyXkLx75K2YRCl" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -0,5
", - "quantity": 1, - "price": 8, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "armorValue": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343221, - "modifiedTime": 1740227863015, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gyfU78OLQj8qH3Zh" -} diff --git a/packs/items/Morgenstern_QNDLfvjiv9szUTYT.json b/packs/items/Morgenstern_QNDLfvjiv9szUTYT.json deleted file mode 100644 index 7f7812c0..00000000 --- a/packs/items/Morgenstern_QNDLfvjiv9szUTYT.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "QNDLfvjiv9szUTYT", - "name": "Morgenstern", - "type": "weapon", - "img": "icons/weapons/maces/mace-flanged-steel.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342942, - "modifiedTime": 1740227862991, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QNDLfvjiv9szUTYT" -} diff --git a/packs/items/Morgenstern__1_u1ycDWee8nHPfZHA.json b/packs/items/Morgenstern__1_u1ycDWee8nHPfZHA.json deleted file mode 100644 index a8beebf6..00000000 --- a/packs/items/Morgenstern__1_u1ycDWee8nHPfZHA.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "u1ycDWee8nHPfZHA", - "name": "Morgenstern +1", - "type": "weapon", - "img": "icons/weapons/maces/mace-round-studded.webp", - "effects": [ - { - "_id": "nTOl8E9qA6stLcEJ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!u1ycDWee8nHPfZHA.nTOl8E9qA6stLcEJ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343519, - "modifiedTime": 1740227863026, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!u1ycDWee8nHPfZHA" -} diff --git a/packs/items/Morgenstern__2_TSoSy8ck9XCUa1SM.json b/packs/items/Morgenstern__2_TSoSy8ck9XCUa1SM.json deleted file mode 100644 index 2ece9fa8..00000000 --- a/packs/items/Morgenstern__2_TSoSy8ck9XCUa1SM.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "TSoSy8ck9XCUa1SM", - "name": "Morgenstern +2", - "type": "weapon", - "img": "icons/weapons/maces/mace-round-spiked-grey.webp", - "effects": [ - { - "_id": "fZ3VByauGosUUN3D", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!TSoSy8ck9XCUa1SM.fZ3VByauGosUUN3D" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343000, - "modifiedTime": 1740227863000, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TSoSy8ck9XCUa1SM" -} diff --git a/packs/items/Morgenstern__3_czxph9BZaC6Cj7kM.json b/packs/items/Morgenstern__3_czxph9BZaC6Cj7kM.json deleted file mode 100644 index df8ccd37..00000000 --- a/packs/items/Morgenstern__3_czxph9BZaC6Cj7kM.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "czxph9BZaC6Cj7kM", - "name": "Morgenstern +3", - "type": "weapon", - "img": "icons/weapons/maces/mace-round-spiked-black.webp", - "effects": [ - { - "_id": "JzKt4gdYSSlA6hSo", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!czxph9BZaC6Cj7kM.JzKt4gdYSSlA6hSo" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343120, - "modifiedTime": 1740227863008, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!czxph9BZaC6Cj7kM" -} diff --git a/packs/items/Orkspalter_RGyfv3y0LxHORAzA.json b/packs/items/Orkspalter_RGyfv3y0LxHORAzA.json deleted file mode 100644 index 07e67fab..00000000 --- a/packs/items/Orkspalter_RGyfv3y0LxHORAzA.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "RGyfv3y0LxHORAzA", - "name": "Orkspalter", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-engraved-runes.webp", - "effects": [ - { - "_id": "armx56Psy1qosJib", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!RGyfv3y0LxHORAzA.armx56Psy1qosJib" - }, - { - "_id": "qr1bY5zTm5ViDmnd", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Brutaler Hieb", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Brutaler Hieb +II", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!RGyfv3y0LxHORAzA.qr1bY5zTm5ViDmnd" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine alte, legendäre Zwergenaxt +1 mit Brutaler Hieb +II.
\nZweihändig, Initiative -1
", - "quantity": 1, - "price": 4310, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342960, - "modifiedTime": 1740227862995, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RGyfv3y0LxHORAzA" -} diff --git a/packs/items/Parf_m__50_x_benutzbar__uVYJY3A8kLne2ZkQ.json b/packs/items/Parf_m__50_x_benutzbar__uVYJY3A8kLne2ZkQ.json deleted file mode 100644 index 9ad35db6..00000000 --- a/packs/items/Parf_m__50_x_benutzbar__uVYJY3A8kLne2ZkQ.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "uVYJY3A8kLne2ZkQ", - "name": "Parfüm (50 x benutzbar)", - "type": "loot", - "img": "icons/tools/laboratory/vial-orange.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Gibt 4 Stunden lang +1 auf Proben sozialer Interaktion mit anderem Geschlecht
", - "quantity": 1, - "price": 5, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343526, - "modifiedTime": 1740227863027, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!uVYJY3A8kLne2ZkQ" -} diff --git a/packs/items/Pergamentblatt_zx3FKwvrLw147ARX.json b/packs/items/Pergamentblatt_zx3FKwvrLw147ARX.json deleted file mode 100644 index c858d43e..00000000 --- a/packs/items/Pergamentblatt_zx3FKwvrLw147ARX.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "zx3FKwvrLw147ARX", - "name": "Pergamentblatt", - "type": "loot", - "img": "icons/sundries/documents/paper-plain-white.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 0.5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343620, - "modifiedTime": 1740227863032, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zx3FKwvrLw147ARX" -} diff --git a/packs/items/Pfanne_pYP26CskxKade3GF.json b/packs/items/Pfanne_pYP26CskxKade3GF.json deleted file mode 100644 index 64fda214..00000000 --- a/packs/items/Pfanne_pYP26CskxKade3GF.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "pYP26CskxKade3GF", - "name": "Pfanne", - "type": "loot", - "img": "icons/tools/cooking/pot-camping-iron-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343456, - "modifiedTime": 1740227863022, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pYP26CskxKade3GF" -} diff --git a/packs/items/Pfeife_iOAmrK7t7ZyrtGy1.json b/packs/items/Pfeife_iOAmrK7t7ZyrtGy1.json deleted file mode 100644 index 750075ec..00000000 --- a/packs/items/Pfeife_iOAmrK7t7ZyrtGy1.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "iOAmrK7t7ZyrtGy1", - "name": "Pfeife", - "type": "loot", - "img": "icons/sundries/misc/pipe-wooden-straight-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343253, - "modifiedTime": 1740227863017, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!iOAmrK7t7ZyrtGy1" -} diff --git a/packs/items/Plattenarmschienen_RsKimH7snoPFlg4L.json b/packs/items/Plattenarmschienen_RsKimH7snoPFlg4L.json deleted file mode 100644 index eca2701a..00000000 --- a/packs/items/Plattenarmschienen_RsKimH7snoPFlg4L.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "RsKimH7snoPFlg4L", - "name": "Plattenarmschienen", - "type": "armor", - "img": "icons/equipment/wrist/bracer-armored-steel.webp", - "effects": [ - { - "_id": "DxcTuYT1mUpj9RdQ", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "-0.5", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -0,5", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!RsKimH7snoPFlg4L.DxcTuYT1mUpj9RdQ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -0,5
", - "quantity": 1, - "price": 7, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "vambrace" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342970, - "modifiedTime": 1740227862997, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RsKimH7snoPFlg4L" -} diff --git a/packs/items/Plattenarmschienen__1_XBCdDIpdR1weOhiy.json b/packs/items/Plattenarmschienen__1_XBCdDIpdR1weOhiy.json deleted file mode 100644 index 6e9b43cf..00000000 --- a/packs/items/Plattenarmschienen__1_XBCdDIpdR1weOhiy.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "XBCdDIpdR1weOhiy", - "name": "Plattenarmschienen +1", - "type": "armor", - "img": "icons/equipment/wrist/bracer-armored-steel-white.webp", - "effects": [ - { - "_id": "IwrLITAgM3vLzkwA", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!XBCdDIpdR1weOhiy.IwrLITAgM3vLzkwA" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 2257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "vambrace" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343061, - "modifiedTime": 1740227863003, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!XBCdDIpdR1weOhiy" -} diff --git a/packs/items/Plattenarmschienen__2_VQtcpPYhzifN9Lqr.json b/packs/items/Plattenarmschienen__2_VQtcpPYhzifN9Lqr.json deleted file mode 100644 index 44cd6d90..00000000 --- a/packs/items/Plattenarmschienen__2_VQtcpPYhzifN9Lqr.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "VQtcpPYhzifN9Lqr", - "name": "Plattenarmschienen +2", - "type": "armor", - "img": "icons/equipment/wrist/bracer-armored-steel-worn.webp", - "effects": [ - { - "_id": "pPtRJMUFA3gbNZXx", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!VQtcpPYhzifN9Lqr.pPtRJMUFA3gbNZXx" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 3257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "vambrace" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343049, - "modifiedTime": 1740227863002, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VQtcpPYhzifN9Lqr" -} diff --git a/packs/items/Plattenarmschienen__3_2BNzuiU6wc3r9ByF.json b/packs/items/Plattenarmschienen__3_2BNzuiU6wc3r9ByF.json deleted file mode 100644 index 8fb15426..00000000 --- a/packs/items/Plattenarmschienen__3_2BNzuiU6wc3r9ByF.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "2BNzuiU6wc3r9ByF", - "name": "Plattenarmschienen +3", - "type": "armor", - "img": "icons/equipment/wrist/bracer-armored-steel-blue.webp", - "effects": [ - { - "_id": "PIRBFfHOrmdREhnH", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!2BNzuiU6wc3r9ByF.PIRBFfHOrmdREhnH" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 4257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "vambrace" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342668, - "modifiedTime": 1740227862963, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2BNzuiU6wc3r9ByF" -} diff --git a/packs/items/Plattenbeinschienen_9H3CBGOLUJ5JCHGJ.json b/packs/items/Plattenbeinschienen_9H3CBGOLUJ5JCHGJ.json deleted file mode 100644 index ca809a2f..00000000 --- a/packs/items/Plattenbeinschienen_9H3CBGOLUJ5JCHGJ.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "9H3CBGOLUJ5JCHGJ", - "name": "Plattenbeinschienen", - "type": "armor", - "img": "icons/equipment/leg/pants-armored-tasset-steel.webp", - "effects": [ - { - "_id": "sIbiQW6tSjZyfCzk", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "-0.5", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -0,5", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!9H3CBGOLUJ5JCHGJ.sIbiQW6tSjZyfCzk" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -0,5
", - "quantity": 1, - "price": 8, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "greaves" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342768, - "modifiedTime": 1740227862970, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9H3CBGOLUJ5JCHGJ" -} diff --git a/packs/items/Plattenbeinschienen__1_KJsCiqvtPqjyu65Y.json b/packs/items/Plattenbeinschienen__1_KJsCiqvtPqjyu65Y.json deleted file mode 100644 index 192817de..00000000 --- a/packs/items/Plattenbeinschienen__1_KJsCiqvtPqjyu65Y.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "KJsCiqvtPqjyu65Y", - "name": "Plattenbeinschienen +1", - "type": "armor", - "img": "icons/equipment/leg/cuisses-reticulated-steel.webp", - "effects": [ - { - "_id": "I32OnPe7rgPEHtEk", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!KJsCiqvtPqjyu65Y.I32OnPe7rgPEHtEk" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 2258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "greaves" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342891, - "modifiedTime": 1740227862984, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KJsCiqvtPqjyu65Y" -} diff --git a/packs/items/Plattenbeinschienen__2_FVnS20q8S7LrAdFj.json b/packs/items/Plattenbeinschienen__2_FVnS20q8S7LrAdFj.json deleted file mode 100644 index 9cc1eba2..00000000 --- a/packs/items/Plattenbeinschienen__2_FVnS20q8S7LrAdFj.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "FVnS20q8S7LrAdFj", - "name": "Plattenbeinschienen +2", - "type": "armor", - "img": "icons/equipment/leg/cuisses-reticulated-black.webp", - "effects": [ - { - "_id": "Zw9tFdr75QWyt8lO", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!FVnS20q8S7LrAdFj.Zw9tFdr75QWyt8lO" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 3258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "greaves" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342821, - "modifiedTime": 1740227862979, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FVnS20q8S7LrAdFj" -} diff --git a/packs/items/Plattenbeinschienen__3_yDq5abf47mYIw3OG.json b/packs/items/Plattenbeinschienen__3_yDq5abf47mYIw3OG.json deleted file mode 100644 index b92a21d3..00000000 --- a/packs/items/Plattenbeinschienen__3_yDq5abf47mYIw3OG.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "yDq5abf47mYIw3OG", - "name": "Plattenbeinschienen +3", - "type": "armor", - "img": "icons/equipment/leg/cuisses-plate-reticulated-steel-blue.webp", - "effects": [ - { - "_id": "dJcAdxKxsUIXzHCa", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!yDq5abf47mYIw3OG.dJcAdxKxsUIXzHCa" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 4258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "plate", - "armorType": "greaves" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343577, - "modifiedTime": 1740227863029, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yDq5abf47mYIw3OG" -} diff --git a/packs/items/Plattenpanzer__1_ABxdFjBvQWavQsEk.json b/packs/items/Plattenpanzer__1_ABxdFjBvQWavQsEk.json deleted file mode 100644 index 382eb08b..00000000 --- a/packs/items/Plattenpanzer__1_ABxdFjBvQWavQsEk.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "ABxdFjBvQWavQsEk", - "name": "Plattenpanzer +1", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-steel-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -0,5
", - "quantity": 1, - "price": 4300, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342783, - "modifiedTime": 1740227862972, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ABxdFjBvQWavQsEk" -} diff --git a/packs/items/Plattenpanzer__2_03wnfxowhzvSJPSj.json b/packs/items/Plattenpanzer__2_03wnfxowhzvSJPSj.json deleted file mode 100644 index 58dd4a28..00000000 --- a/packs/items/Plattenpanzer__2_03wnfxowhzvSJPSj.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "03wnfxowhzvSJPSj", - "name": "Plattenpanzer +2", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-steel.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 5300, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342624, - "modifiedTime": 1740227862959, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!03wnfxowhzvSJPSj" -} diff --git a/packs/items/Plattenpanzer__3_5DY52CR03xXJHG6m.json b/packs/items/Plattenpanzer__3_5DY52CR03xXJHG6m.json deleted file mode 100644 index 2498dd24..00000000 --- a/packs/items/Plattenpanzer__3_5DY52CR03xXJHG6m.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "5DY52CR03xXJHG6m", - "name": "Plattenpanzer +3", - "type": "armor", - "img": "icons/equipment/chest/breastplate-gorget-steel.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 6300, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342711, - "modifiedTime": 1740227862966, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5DY52CR03xXJHG6m" -} diff --git a/packs/items/Plattenpanzer__F_r_Reittiere__D4aCfCqniMSQ43hL.json b/packs/items/Plattenpanzer__F_r_Reittiere__D4aCfCqniMSQ43hL.json deleted file mode 100644 index 4f7e2d59..00000000 --- a/packs/items/Plattenpanzer__F_r_Reittiere__D4aCfCqniMSQ43hL.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "D4aCfCqniMSQ43hL", - "name": "Plattenpanzer (Für Reittiere)", - "type": "armor", - "img": "icons/commodities/metal/mail-plate-steel.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -1
", - "quantity": 1, - "price": 150, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342805, - "modifiedTime": 1740227862977, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!D4aCfCqniMSQ43hL" -} diff --git a/packs/items/Plattenpanzer__F_r_Reittiere___1_99xGE9jkmXEXyf4U.json b/packs/items/Plattenpanzer__F_r_Reittiere___1_99xGE9jkmXEXyf4U.json deleted file mode 100644 index 98ec0ead..00000000 --- a/packs/items/Plattenpanzer__F_r_Reittiere___1_99xGE9jkmXEXyf4U.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "99xGE9jkmXEXyf4U", - "name": "Plattenpanzer (Für Reittiere) +1", - "type": "armor", - "img": "icons/commodities/metal/mail-plate-steel.webp", - "effects": [ - { - "_id": "Jkhqmke6gzWU8vPZ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!99xGE9jkmXEXyf4U.Jkhqmke6gzWU8vPZ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -0,5
", - "quantity": 1, - "price": 4400, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342766, - "modifiedTime": 1740227862970, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!99xGE9jkmXEXyf4U" -} diff --git a/packs/items/Plattenpanzer__F_r_Reittiere___2_c6N4vskeYthnydo3.json b/packs/items/Plattenpanzer__F_r_Reittiere___2_c6N4vskeYthnydo3.json deleted file mode 100644 index 4a2861ae..00000000 --- a/packs/items/Plattenpanzer__F_r_Reittiere___2_c6N4vskeYthnydo3.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "c6N4vskeYthnydo3", - "name": "Plattenpanzer (Für Reittiere) +2", - "type": "armor", - "img": "icons/commodities/metal/mail-plate-steel.webp", - "effects": [ - { - "_id": "n0pBAhNqTJbvqDWx", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!c6N4vskeYthnydo3.n0pBAhNqTJbvqDWx" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 5400, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343105, - "modifiedTime": 1740227863007, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!c6N4vskeYthnydo3" -} diff --git a/packs/items/Plattenpanzer__F_r_Reittiere___3_TBrsx86DgKfq9Qat.json b/packs/items/Plattenpanzer__F_r_Reittiere___3_TBrsx86DgKfq9Qat.json deleted file mode 100644 index cb35f673..00000000 --- a/packs/items/Plattenpanzer__F_r_Reittiere___3_TBrsx86DgKfq9Qat.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "TBrsx86DgKfq9Qat", - "name": "Plattenpanzer (Für Reittiere) +3", - "type": "armor", - "img": "icons/commodities/metal/mail-plate-steel.webp", - "effects": [ - { - "_id": "ioazIqWWKawYuPBQ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!TBrsx86DgKfq9Qat.ioazIqWWKawYuPBQ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 6400, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342994, - "modifiedTime": 1740227862999, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TBrsx86DgKfq9Qat" -} diff --git a/packs/items/Plattenpanzer_t13RJoXrsS0HAyIQ.json b/packs/items/Plattenpanzer_t13RJoXrsS0HAyIQ.json deleted file mode 100644 index c8b8d1b2..00000000 --- a/packs/items/Plattenpanzer_t13RJoXrsS0HAyIQ.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "t13RJoXrsS0HAyIQ", - "name": "Plattenpanzer", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-steel-grey.webp", - "effects": [ - { - "_id": "pAxAXam5JBN6Acz9", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.movement.total", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!t13RJoXrsS0HAyIQ.pAxAXam5JBN6Acz9" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -1 m
", - "quantity": 1, - "price": 50, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343507, - "modifiedTime": 1740227863025, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!t13RJoXrsS0HAyIQ" -} diff --git a/packs/items/R_stung_des_Kriegers_55AkLjiaIn0SWO9k.json b/packs/items/R_stung_des_Kriegers_55AkLjiaIn0SWO9k.json deleted file mode 100644 index fb89c396..00000000 --- a/packs/items/R_stung_des_Kriegers_55AkLjiaIn0SWO9k.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "55AkLjiaIn0SWO9k", - "name": "Rüstung des Kriegers", - "type": "armor", - "img": "icons/equipment/chest/breastplate-collared-steel.webp", - "effects": [ - { - "_id": "TZoEpatdi8z1nreX", - "flags": {}, - "changes": [ - { - "key": "system.attributes.body.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Körper +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!55AkLjiaIn0SWO9k.TZoEpatdi8z1nreX" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese aufwendig verzierte Plattenrüstung +2 gewährt ihrem Träger +1 auf Körper.
", - "quantity": 1, - "price": 7300, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342708, - "modifiedTime": 1740227862965, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!55AkLjiaIn0SWO9k" -} diff --git a/packs/items/R_stung_des_L_wen_1uYooTtDWgzB9FI9.json b/packs/items/R_stung_des_L_wen_1uYooTtDWgzB9FI9.json deleted file mode 100644 index ead087af..00000000 --- a/packs/items/R_stung_des_L_wen_1uYooTtDWgzB9FI9.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "1uYooTtDWgzB9FI9", - "name": "Rüstung des Löwen", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-gold.webp", - "effects": [ - { - "_id": "iIT1kOsyMJn0mIte", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "1.5", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen +1,5 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!1uYooTtDWgzB9FI9.iIT1kOsyMJn0mIte" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine Plattenrüstung +2 mit verzierten Löwenköpfen, die Laufen +1,5 m gewährt.
", - "quantity": 1, - "price": 6800, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342658, - "modifiedTime": 1740227862963, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1uYooTtDWgzB9FI9" -} diff --git a/packs/items/R_stung_des_Sch_tzen_tQ1LUX7in4xuuR12.json b/packs/items/R_stung_des_Sch_tzen_tQ1LUX7in4xuuR12.json deleted file mode 100644 index 2b7a5ec4..00000000 --- a/packs/items/R_stung_des_Sch_tzen_tQ1LUX7in4xuuR12.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "tQ1LUX7in4xuuR12", - "name": "Rüstung des Schützen", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-grey.webp", - "effects": [ - { - "_id": "C7jqj8julpambLpm", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!tQ1LUX7in4xuuR12.C7jqj8julpambLpm" - }, - { - "_id": "fwNP4w1u7JP3OFEb", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.rangedAttack.total", - "value": "3", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Schießen +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!tQ1LUX7in4xuuR12.fwNP4w1u7JP3OFEb" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese mit dunkelgrünen Stoffrändern gesäumte Kettenrüstung +1 gewährt ihrem Träger +3 auf Schießen.
", - "quantity": 1, - "price": 4760, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343512, - "modifiedTime": 1740227863026, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tQ1LUX7in4xuuR12" -} diff --git a/packs/items/R_stung_des_Sp_hers_Akhijp2Wayupy1qw.json b/packs/items/R_stung_des_Sp_hers_Akhijp2Wayupy1qw.json deleted file mode 100644 index d6d48e37..00000000 --- a/packs/items/R_stung_des_Sp_hers_Akhijp2Wayupy1qw.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "Akhijp2Wayupy1qw", - "name": "Rüstung des Spähers", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-grey.webp", - "effects": [ - { - "_id": "1swDTN9Kj7othjdB", - "flags": {}, - "changes": [ - { - "key": "system.attributes.mobility.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Agilität +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Akhijp2Wayupy1qw.1swDTN9Kj7othjdB" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese mit braunen Lederpolstern verstärkte Kettenrüstung +1 gewährt ihrem Träger +1 auf Agilität.
", - "quantity": 1, - "price": 5260, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342785, - "modifiedTime": 1740227862973, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Akhijp2Wayupy1qw" -} diff --git a/packs/items/Rauchkraut__5_Pfeifenk_pfe__8CYWepouh43ffkZ0.json b/packs/items/Rauchkraut__5_Pfeifenk_pfe__8CYWepouh43ffkZ0.json deleted file mode 100644 index 23f60f5e..00000000 --- a/packs/items/Rauchkraut__5_Pfeifenk_pfe__8CYWepouh43ffkZ0.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "8CYWepouh43ffkZ0", - "name": "Rauchkraut (5 Pfeifenköpfe)", - "type": "loot", - "img": "icons/commodities/flowers/flower-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342761, - "modifiedTime": 1740227862969, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8CYWepouh43ffkZ0" -} diff --git a/packs/items/Robe_WP62N2sjGz3eIN18.json b/packs/items/Robe_WP62N2sjGz3eIN18.json deleted file mode 100644 index d4a8d77e..00000000 --- a/packs/items/Robe_WP62N2sjGz3eIN18.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "WP62N2sjGz3eIN18", - "name": "Robe", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-teal.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343055, - "modifiedTime": 1740227863003, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!WP62N2sjGz3eIN18" -} diff --git a/packs/items/Robe__1_FFCSMuHlDKiT0MxR.json b/packs/items/Robe__1_FFCSMuHlDKiT0MxR.json deleted file mode 100644 index edd73f16..00000000 --- a/packs/items/Robe__1_FFCSMuHlDKiT0MxR.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "FFCSMuHlDKiT0MxR", - "name": "Robe +1", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-white.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342816, - "modifiedTime": 1740227862979, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FFCSMuHlDKiT0MxR" -} diff --git a/packs/items/Robe__2_NSg4SdEHDuCfwXji.json b/packs/items/Robe__2_NSg4SdEHDuCfwXji.json deleted file mode 100644 index bc7e1d3e..00000000 --- a/packs/items/Robe__2_NSg4SdEHDuCfwXji.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "NSg4SdEHDuCfwXji", - "name": "Robe +2", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-red.webp", - "effects": [ - { - "_id": "0GJ943ZfeGKcsb2l", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!NSg4SdEHDuCfwXji.0GJ943ZfeGKcsb2l" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342915, - "modifiedTime": 1740227862987, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NSg4SdEHDuCfwXji" -} diff --git a/packs/items/Robe__3_cFMcSg7PFIcQvf0B.json b/packs/items/Robe__3_cFMcSg7PFIcQvf0B.json deleted file mode 100644 index c1308b31..00000000 --- a/packs/items/Robe__3_cFMcSg7PFIcQvf0B.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "cFMcSg7PFIcQvf0B", - "name": "Robe +3", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-purple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 3251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343111, - "modifiedTime": 1740227863008, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!cFMcSg7PFIcQvf0B" -} diff --git a/packs/items/Robe_der_Macht_KGk7UFwLwrsdPuQe.json b/packs/items/Robe_der_Macht_KGk7UFwLwrsdPuQe.json deleted file mode 100644 index 0e8ecec4..00000000 --- a/packs/items/Robe_der_Macht_KGk7UFwLwrsdPuQe.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "KGk7UFwLwrsdPuQe", - "name": "Robe der Macht", - "type": "armor", - "img": "icons/equipment/chest/robe-collared-pink.webp", - "effects": [ - { - "_id": "tGAxxMZu2cj0Pzs2", - "flags": {}, - "changes": [ - { - "key": "system.attributes.mind.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Geist +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!KGk7UFwLwrsdPuQe.tGAxxMZu2cj0Pzs2" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese violette Robe +3 verleiht ihrem Träger +1 auf Geist.
", - "quantity": 1, - "price": 5251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342888, - "modifiedTime": 1740227862984, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KGk7UFwLwrsdPuQe" -} diff --git a/packs/items/Robe_des_Denkers_A9QnXaonGzuUBktX.json b/packs/items/Robe_des_Denkers_A9QnXaonGzuUBktX.json deleted file mode 100644 index a3316320..00000000 --- a/packs/items/Robe_des_Denkers_A9QnXaonGzuUBktX.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "A9QnXaonGzuUBktX", - "name": "Robe des Denkers", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-white.webp", - "effects": [ - { - "_id": "Fyl7VFU1QhIbh2ul", - "flags": {}, - "changes": [ - { - "key": "system.traits.intellect.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "+1 Verstand (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!A9QnXaonGzuUBktX.Fyl7VFU1QhIbh2ul" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese graue Robe +2 verleiht +1 auf Verstand.
", - "quantity": 1, - "price": 3251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342781, - "modifiedTime": 1740227862972, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!A9QnXaonGzuUBktX" -} diff --git a/packs/items/Robe_des_Heilers_kVRybb0knZkoJLlj.json b/packs/items/Robe_des_Heilers_kVRybb0knZkoJLlj.json deleted file mode 100644 index b59be378..00000000 --- a/packs/items/Robe_des_Heilers_kVRybb0knZkoJLlj.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "kVRybb0knZkoJLlj", - "name": "Robe des Heilers", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-white.webp", - "effects": [ - { - "_id": "GgAFMmXGb1B5KIda", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.spellGroups.healing" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Heilzauber +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!kVRybb0knZkoJLlj.GgAFMmXGb1B5KIda" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine weiße Robe, die ihrem Träger +1 auf Heilzauber gewährt.
", - "quantity": 1, - "price": 751, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343318, - "modifiedTime": 1740227863019, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!kVRybb0knZkoJLlj" -} diff --git a/packs/items/Rucksack_HzqK6sd3ovgEZdWz.json b/packs/items/Rucksack_HzqK6sd3ovgEZdWz.json deleted file mode 100644 index 17e2d152..00000000 --- a/packs/items/Rucksack_HzqK6sd3ovgEZdWz.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "HzqK6sd3ovgEZdWz", - "name": "Rucksack", - "type": "loot", - "img": "icons/containers/bags/pack-leather-white-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342867, - "modifiedTime": 1740227862982, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!HzqK6sd3ovgEZdWz" -} diff --git a/packs/items/Ruderboot__2_Mann__an96cOOwr3YujKpe.json b/packs/items/Ruderboot__2_Mann__an96cOOwr3YujKpe.json deleted file mode 100644 index 4aab6bd5..00000000 --- a/packs/items/Ruderboot__2_Mann__an96cOOwr3YujKpe.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "an96cOOwr3YujKpe", - "name": "Ruderboot (2 Mann)", - "type": "loot", - "img": "icons/tools/nautical/steering-wheel.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 25, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343095, - "modifiedTime": 1740227863006, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!an96cOOwr3YujKpe" -} diff --git a/packs/items/Runenbestickte_Feurrobe_gK76RPRhQF7T4AQC.json b/packs/items/Runenbestickte_Feurrobe_gK76RPRhQF7T4AQC.json deleted file mode 100644 index fd230b8a..00000000 --- a/packs/items/Runenbestickte_Feurrobe_gK76RPRhQF7T4AQC.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "gK76RPRhQF7T4AQC", - "name": "Runenbestickte Feurrobe", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-red.webp", - "effects": [ - { - "_id": "Qpy3XcHOokbU7ZaS", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!gK76RPRhQF7T4AQC.Qpy3XcHOokbU7ZaS" - }, - { - "_id": "IbOD7GxGN30V1AYL", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "5", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Feuermagier", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Feuermagier +V", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!gK76RPRhQF7T4AQC.IbOD7GxGN30V1AYL" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine feuerrote Robe +3 mit aufgestickten Flammenrunen und Feuermagier +V.
", - "quantity": 1, - "price": 4501, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343207, - "modifiedTime": 1740227863015, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gK76RPRhQF7T4AQC" -} diff --git a/packs/items/Runenbestickte_Robe__1_sUHJSIG8aTs0do67.json b/packs/items/Runenbestickte_Robe__1_sUHJSIG8aTs0do67.json deleted file mode 100644 index a655111d..00000000 --- a/packs/items/Runenbestickte_Robe__1_sUHJSIG8aTs0do67.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "sUHJSIG8aTs0do67", - "name": "Runenbestickte Robe +1", - "type": "armor", - "img": "icons/equipment/chest/robe-collared-blue.webp", - "effects": [ - { - "_id": "6NLQSkPxsA3H8Gc8", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!sUHJSIG8aTs0do67.6NLQSkPxsA3H8Gc8" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Aura +1
", - "quantity": 1, - "price": 1258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343486, - "modifiedTime": 1740227863025, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sUHJSIG8aTs0do67" -} diff --git a/packs/items/Runenbestickte_Robe__2_j3wcDmBNiDx7sK0n.json b/packs/items/Runenbestickte_Robe__2_j3wcDmBNiDx7sK0n.json deleted file mode 100644 index 1dc025c8..00000000 --- a/packs/items/Runenbestickte_Robe__2_j3wcDmBNiDx7sK0n.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "j3wcDmBNiDx7sK0n", - "name": "Runenbestickte Robe +2", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-blue.webp", - "effects": [ - { - "_id": "a2GXKNKHJWdyKb7h", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!j3wcDmBNiDx7sK0n.a2GXKNKHJWdyKb7h" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Aura +1
", - "quantity": 1, - "price": 2258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343301, - "modifiedTime": 1740227863018, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!j3wcDmBNiDx7sK0n" -} diff --git a/packs/items/Runenbestickte_Robe__3_U8iwfv7oJNl8CsKK.json b/packs/items/Runenbestickte_Robe__3_U8iwfv7oJNl8CsKK.json deleted file mode 100644 index 8664cf79..00000000 --- a/packs/items/Runenbestickte_Robe__3_U8iwfv7oJNl8CsKK.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "U8iwfv7oJNl8CsKK", - "name": "Runenbestickte Robe +3", - "type": "armor", - "img": "icons/equipment/chest/robe-collared-pink.webp", - "effects": [ - { - "_id": "CFyX5reV96JVL2Cg", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!U8iwfv7oJNl8CsKK.CFyX5reV96JVL2Cg" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Aura +1
", - "quantity": 1, - "price": 3258, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343029, - "modifiedTime": 1740227863001, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!U8iwfv7oJNl8CsKK" -} diff --git a/packs/items/Runenbestickte_Robe_w1bZ2431gdOQumWK.json b/packs/items/Runenbestickte_Robe_w1bZ2431gdOQumWK.json deleted file mode 100644 index 37704a4f..00000000 --- a/packs/items/Runenbestickte_Robe_w1bZ2431gdOQumWK.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "w1bZ2431gdOQumWK", - "name": "Runenbestickte Robe", - "type": "armor", - "img": "icons/equipment/chest/coat-leather-blue.webp", - "effects": [ - { - "_id": "vgJWV95OeyzrjyFw", - "flags": {}, - "changes": [ - { - "key": "system.traits.aura.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Aura +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!w1bZ2431gdOQumWK.vgJWV95OeyzrjyFw" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Aura +1
", - "quantity": 1, - "price": 8, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343553, - "modifiedTime": 1740227863028, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!w1bZ2431gdOQumWK" -} diff --git a/packs/items/S_ldnertreu_FVrbrxqVURPP3Yee.json b/packs/items/S_ldnertreu_FVrbrxqVURPP3Yee.json deleted file mode 100644 index 54223706..00000000 --- a/packs/items/S_ldnertreu_FVrbrxqVURPP3Yee.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "FVrbrxqVURPP3Yee", - "name": "Söldnertreu", - "type": "armor", - "img": "icons/equipment/chest/breastplate-scale-grey.webp", - "effects": [ - { - "_id": "qTM84JzHmlfYXGCb", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.meleeAttack.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Schlagen +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!FVrbrxqVURPP3Yee.qTM84JzHmlfYXGCb" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese mit blauen Stoffrändern gesäumte Kettenrüstung +1 gewährt ihrem Träger +1 auf Schlagen.
", - "quantity": 1, - "price": 3760, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2, - "armorMaterialType": "chain", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342825, - "modifiedTime": 1740227862979, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FVrbrxqVURPP3Yee" -} diff --git a/packs/items/Sack_RD0HKxmbhfluw73R.json b/packs/items/Sack_RD0HKxmbhfluw73R.json deleted file mode 100644 index f5854278..00000000 --- a/packs/items/Sack_RD0HKxmbhfluw73R.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "RD0HKxmbhfluw73R", - "name": "Sack", - "type": "loot", - "img": "icons/containers/bags/sack-simple-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.8, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342958, - "modifiedTime": 1740227862994, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RD0HKxmbhfluw73R" -} diff --git a/packs/items/Sanduhr_R2LeIutCjDzwGwUx.json b/packs/items/Sanduhr_R2LeIutCjDzwGwUx.json deleted file mode 100644 index acd46e4b..00000000 --- a/packs/items/Sanduhr_R2LeIutCjDzwGwUx.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "R2LeIutCjDzwGwUx", - "name": "Sanduhr", - "type": "loot", - "img": "icons/tools/navigation/hourglass-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 10, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342957, - "modifiedTime": 1740227862994, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!R2LeIutCjDzwGwUx" -} diff --git a/packs/items/Sattel_nslQfc441x1GG0SL.json b/packs/items/Sattel_nslQfc441x1GG0SL.json deleted file mode 100644 index 0479dfa0..00000000 --- a/packs/items/Sattel_nslQfc441x1GG0SL.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "nslQfc441x1GG0SL", - "name": "Sattel", - "type": "equipment", - "img": "icons/commodities/leather/leather-scrap-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 5, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343364, - "modifiedTime": 1740227863020, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!nslQfc441x1GG0SL" -} diff --git a/packs/items/Satteltasche_UpkQTtuxNS1eOIRu.json b/packs/items/Satteltasche_UpkQTtuxNS1eOIRu.json deleted file mode 100644 index e2c558d5..00000000 --- a/packs/items/Satteltasche_UpkQTtuxNS1eOIRu.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "UpkQTtuxNS1eOIRu", - "name": "Satteltasche", - "type": "loot", - "img": "icons/containers/bags/pouch-simple-leather-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 4, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343040, - "modifiedTime": 1740227863001, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!UpkQTtuxNS1eOIRu" -} diff --git a/packs/items/Schlachtbeil_0UDiL2xAlGCEeckL.json b/packs/items/Schlachtbeil_0UDiL2xAlGCEeckL.json deleted file mode 100644 index 8e53ee0e..00000000 --- a/packs/items/Schlachtbeil_0UDiL2xAlGCEeckL.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "0UDiL2xAlGCEeckL", - "name": "Schlachtbeil", - "type": "weapon", - "img": "icons/weapons/axes/axe-battle-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -6, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 20, - "availability": "city", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342632, - "modifiedTime": 1740227862960, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0UDiL2xAlGCEeckL" -} diff --git a/packs/items/Schlachtbeil__1_N3RcggWJuKGtKZyP.json b/packs/items/Schlachtbeil__1_N3RcggWJuKGtKZyP.json deleted file mode 100644 index 1aeb02f2..00000000 --- a/packs/items/Schlachtbeil__1_N3RcggWJuKGtKZyP.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "N3RcggWJuKGtKZyP", - "name": "Schlachtbeil +1", - "type": "weapon", - "img": "icons/weapons/axes/axe-battle-blackened.webp", - "effects": [ - { - "_id": "aHr33jsfG78BJ7m2", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!N3RcggWJuKGtKZyP.aHr33jsfG78BJ7m2" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -6, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 2770, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342908, - "modifiedTime": 1740227862987, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!N3RcggWJuKGtKZyP" -} diff --git a/packs/items/Schlachtbeil__2_Qncx0jbmnD2KJAfG.json b/packs/items/Schlachtbeil__2_Qncx0jbmnD2KJAfG.json deleted file mode 100644 index bcb9c419..00000000 --- a/packs/items/Schlachtbeil__2_Qncx0jbmnD2KJAfG.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "Qncx0jbmnD2KJAfG", - "name": "Schlachtbeil +2", - "type": "weapon", - "img": "icons/weapons/axes/axe-battle-engraved-purple.webp", - "effects": [ - { - "_id": "atmWPMxgNoeole7n", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "-6", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative -6", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Qncx0jbmnD2KJAfG.atmWPMxgNoeole7n" - }, - { - "_id": "Qdjy0578meoXi49p", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Qncx0jbmnD2KJAfG.Qdjy0578meoXi49p" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -6, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 3270, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 6, - "opponentDefense": -6 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342949, - "modifiedTime": 1740227862993, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Qncx0jbmnD2KJAfG" -} diff --git a/packs/items/Schlachtbeil__3_Nb65CmtFiiWPpnNZ.json b/packs/items/Schlachtbeil__3_Nb65CmtFiiWPpnNZ.json deleted file mode 100644 index 9afeadfa..00000000 --- a/packs/items/Schlachtbeil__3_Nb65CmtFiiWPpnNZ.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "Nb65CmtFiiWPpnNZ", - "name": "Schlachtbeil +3", - "type": "weapon", - "img": "icons/weapons/axes/axe-battle-heavy-black.webp", - "effects": [ - { - "_id": "DJQ1hHJRJuraxIym", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Nb65CmtFiiWPpnNZ.DJQ1hHJRJuraxIym" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -6, Für Zwerge auf Grund der Größe zu unhandlich
", - "quantity": 1, - "price": 3770, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 7, - "opponentDefense": -7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342917, - "modifiedTime": 1740227862988, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Nb65CmtFiiWPpnNZ" -} diff --git a/packs/items/Schlachtgei_el__1_hBemmfRcQLFU7PSt.json b/packs/items/Schlachtgei_el__1_hBemmfRcQLFU7PSt.json deleted file mode 100644 index 873cdb33..00000000 --- a/packs/items/Schlachtgei_el__1_hBemmfRcQLFU7PSt.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "hBemmfRcQLFU7PSt", - "name": "Schlachtgeißel +1", - "type": "weapon", - "img": "icons/weapons/maces/flail-triple-grey.webp", - "effects": [ - { - "_id": "oOQJt7Ub0PGGjdzW", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!hBemmfRcQLFU7PSt.oOQJt7Ub0PGGjdzW" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -4, Bei Schlagen-Patzer trifft Angreifer sich selbst (Patzer ausgeschlossen)
", - "quantity": 1, - "price": 2266, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343226, - "modifiedTime": 1740227863016, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!hBemmfRcQLFU7PSt" -} diff --git a/packs/items/Schlachtgei_el__2_YSl6qdVC6fDYVkFQ.json b/packs/items/Schlachtgei_el__2_YSl6qdVC6fDYVkFQ.json deleted file mode 100644 index 9e004d86..00000000 --- a/packs/items/Schlachtgei_el__2_YSl6qdVC6fDYVkFQ.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "YSl6qdVC6fDYVkFQ", - "name": "Schlachtgeißel +2", - "type": "weapon", - "img": "icons/weapons/maces/flail-triple-grey.webp", - "effects": [ - { - "_id": "OF7IAa9tUBoz23TD", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!YSl6qdVC6fDYVkFQ.OF7IAa9tUBoz23TD" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -4, Bei Schlagen-Patzer trifft Angreifer sich selbst (Patzer ausgeschlossen)
", - "quantity": 1, - "price": 2766, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -6 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343079, - "modifiedTime": 1740227863004, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!YSl6qdVC6fDYVkFQ" -} diff --git a/packs/items/Schlachtgei_el__3_eqGo6VKETI1UTxP1.json b/packs/items/Schlachtgei_el__3_eqGo6VKETI1UTxP1.json deleted file mode 100644 index 67d8f2d0..00000000 --- a/packs/items/Schlachtgei_el__3_eqGo6VKETI1UTxP1.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "eqGo6VKETI1UTxP1", - "name": "Schlachtgeißel +3", - "type": "weapon", - "img": "icons/weapons/maces/flail-triple-grey.webp", - "effects": [ - { - "_id": "uhpIAR3T0P3bJw1C", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!eqGo6VKETI1UTxP1.uhpIAR3T0P3bJw1C" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -4, Bei Schlagen-Patzer trifft Angreifer sich selbst (Patzer ausgeschlossen)
", - "quantity": 1, - "price": 3266, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 6, - "opponentDefense": -7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343181, - "modifiedTime": 1740227863013, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eqGo6VKETI1UTxP1" -} diff --git a/packs/items/Schlachtgei_el_yfqzgTskyIgWZq8A.json b/packs/items/Schlachtgei_el_yfqzgTskyIgWZq8A.json deleted file mode 100644 index 635caddc..00000000 --- a/packs/items/Schlachtgei_el_yfqzgTskyIgWZq8A.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "yfqzgTskyIgWZq8A", - "name": "Schlachtgeißel", - "type": "weapon", - "img": "icons/weapons/maces/flail-triple-grey.webp", - "effects": [ - { - "_id": "BdejYg7Bq6tM2ROu", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "-4", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative -4", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!yfqzgTskyIgWZq8A.BdejYg7Bq6tM2ROu" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Initiative -4, Bei Schlagen-Patzer trifft Angreifer sich selbst (Patzer ausgeschlossen)
", - "quantity": 1, - "price": 16, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343580, - "modifiedTime": 1740227863029, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yfqzgTskyIgWZq8A" -} diff --git a/packs/items/Schlafstaub_UBH03jh91dP6KMtL.json b/packs/items/Schlafstaub_UBH03jh91dP6KMtL.json deleted file mode 100644 index 295a0ce6..00000000 --- a/packs/items/Schlafstaub_UBH03jh91dP6KMtL.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "UBH03jh91dP6KMtL", - "name": "Schlafstaub", - "type": "loot", - "img": "icons/tools/laboratory/bowl-powder-purple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wirkt auf ein beworfenes Ziel den Zauber @Compendium[ds4.spells.CrZ8L7oaWvPjLou0]{Einschläfern}.
", - "quantity": 1, - "price": 151, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343033, - "modifiedTime": 1740227863001, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!UBH03jh91dP6KMtL" -} diff --git a/packs/items/Schlagring__1_fziU7tEIQPowqBJj.json b/packs/items/Schlagring__1_fziU7tEIQPowqBJj.json deleted file mode 100644 index 4146cc0b..00000000 --- a/packs/items/Schlagring__1_fziU7tEIQPowqBJj.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "fziU7tEIQPowqBJj", - "name": "Schlagring +1", - "type": "weapon", - "img": "icons/weapons/fist/fist-knuckles-spiked-blue.webp", - "effects": [ - { - "_id": "ph5sqT08zd8lSi7s", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!fziU7tEIQPowqBJj.ph5sqT08zd8lSi7s" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wie waffenlos, Gegner aber kein Abwehr-Bonus
", - "quantity": 1, - "price": 751, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343205, - "modifiedTime": 1740227863014, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fziU7tEIQPowqBJj" -} diff --git a/packs/items/Schlagring__2_830D1zHS3v0Gx4nB.json b/packs/items/Schlagring__2_830D1zHS3v0Gx4nB.json deleted file mode 100644 index 26be63c2..00000000 --- a/packs/items/Schlagring__2_830D1zHS3v0Gx4nB.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "830D1zHS3v0Gx4nB", - "name": "Schlagring +2", - "type": "weapon", - "img": "icons/weapons/fist/fist-knuckles-spiked-stone.webp", - "effects": [ - { - "_id": "iQZLQlcUQgnYg0Hs", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!830D1zHS3v0Gx4nB.iQZLQlcUQgnYg0Hs" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wie waffenlos, Gegner aber kein Abwehr-Bonus
", - "quantity": 1, - "price": 1251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342750, - "modifiedTime": 1740227862968, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!830D1zHS3v0Gx4nB" -} diff --git a/packs/items/Schlagring__3_CHRqMQxkgz3jad9J.json b/packs/items/Schlagring__3_CHRqMQxkgz3jad9J.json deleted file mode 100644 index 0fc74214..00000000 --- a/packs/items/Schlagring__3_CHRqMQxkgz3jad9J.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "CHRqMQxkgz3jad9J", - "name": "Schlagring +3", - "type": "weapon", - "img": "icons/weapons/fist/fist-knuckles-brass.webp", - "effects": [ - { - "_id": "K3m0tLhoW9vT6e19", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!CHRqMQxkgz3jad9J.K3m0tLhoW9vT6e19" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wie waffenlos, Gegner aber kein Abwehr-Bonus
", - "quantity": 1, - "price": 1751, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342800, - "modifiedTime": 1740227862975, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!CHRqMQxkgz3jad9J" -} diff --git a/packs/items/Schlagring_aJ9xkECmqeBUhING.json b/packs/items/Schlagring_aJ9xkECmqeBUhING.json deleted file mode 100644 index 3662f2fd..00000000 --- a/packs/items/Schlagring_aJ9xkECmqeBUhING.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "aJ9xkECmqeBUhING", - "name": "Schlagring", - "type": "weapon", - "img": "icons/weapons/fist/fist-knuckles-spiked-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wie waffenlos, Gegner aber kein Abwehr-Bonus
", - "quantity": 1, - "price": 1, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 0, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343087, - "modifiedTime": 1740227863005, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!aJ9xkECmqeBUhING" -} diff --git a/packs/items/Schleuder_ETpbN0Q39eKPmWK0.json b/packs/items/Schleuder_ETpbN0Q39eKPmWK0.json deleted file mode 100644 index ac74c0ee..00000000 --- a/packs/items/Schleuder_ETpbN0Q39eKPmWK0.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "ETpbN0Q39eKPmWK0", - "name": "Schleuder", - "type": "weapon", - "img": "icons/weapons/slings/slingshot-wood.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Distanzmalus -1 pro 2 m
", - "quantity": 1, - "price": 0.1, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 0, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342812, - "modifiedTime": 1740227862978, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ETpbN0Q39eKPmWK0" -} diff --git a/packs/items/Schleuder__1_GEBWsHBuyh9KbIbb.json b/packs/items/Schleuder__1_GEBWsHBuyh9KbIbb.json deleted file mode 100644 index b0e84519..00000000 --- a/packs/items/Schleuder__1_GEBWsHBuyh9KbIbb.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "GEBWsHBuyh9KbIbb", - "name": "Schleuder +1", - "type": "weapon", - "img": "icons/weapons/slings/slingshot-wood.webp", - "effects": [ - { - "_id": "YCgrTPMCggWZOFdJ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!GEBWsHBuyh9KbIbb.YCgrTPMCggWZOFdJ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Distanzmalus -1 pro 2 m
", - "quantity": 1, - "price": 750.1, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342850, - "modifiedTime": 1740227862980, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GEBWsHBuyh9KbIbb" -} diff --git a/packs/items/Schleuder__2_1IWsAaMSnz1Q9ZWd.json b/packs/items/Schleuder__2_1IWsAaMSnz1Q9ZWd.json deleted file mode 100644 index c5a5237b..00000000 --- a/packs/items/Schleuder__2_1IWsAaMSnz1Q9ZWd.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "1IWsAaMSnz1Q9ZWd", - "name": "Schleuder +2", - "type": "weapon", - "img": "icons/weapons/slings/slingshot-wood.webp", - "effects": [ - { - "_id": "aKfE4S2oocgJMro8", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!1IWsAaMSnz1Q9ZWd.aKfE4S2oocgJMro8" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Distanzmalus -1 pro 2 m
", - "quantity": 1, - "price": 1250.1, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342651, - "modifiedTime": 1740227862962, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1IWsAaMSnz1Q9ZWd" -} diff --git a/packs/items/Schleuder__3_S4pc70BxmRU0DCsW.json b/packs/items/Schleuder__3_S4pc70BxmRU0DCsW.json deleted file mode 100644 index 9b32711a..00000000 --- a/packs/items/Schleuder__3_S4pc70BxmRU0DCsW.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "S4pc70BxmRU0DCsW", - "name": "Schleuder +3", - "type": "weapon", - "img": "icons/weapons/slings/slingshot-wood.webp", - "effects": [ - { - "_id": "kM7ZknhuQS8uIJbu", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!S4pc70BxmRU0DCsW.kM7ZknhuQS8uIJbu" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Distanzmalus -1 pro 2 m
", - "quantity": 1, - "price": 1750.1, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342981, - "modifiedTime": 1740227862998, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!S4pc70BxmRU0DCsW" -} diff --git a/packs/items/Schloss__Einfach__SW__0__3pdw4CN8Wc9oCKX5.json b/packs/items/Schloss__Einfach__SW__0__3pdw4CN8Wc9oCKX5.json deleted file mode 100644 index 69ec3d15..00000000 --- a/packs/items/Schloss__Einfach__SW__0__3pdw4CN8Wc9oCKX5.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "3pdw4CN8Wc9oCKX5", - "name": "Schloss: Einfach (SW: 0)", - "type": "loot", - "img": "icons/containers/chest/chest-reinforced-steel-oak-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342700, - "modifiedTime": 1740227862965, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!3pdw4CN8Wc9oCKX5" -} diff --git a/packs/items/Schloss__Gut__SW__2__zAMFB4HHHUQp4RFa.json b/packs/items/Schloss__Gut__SW__2__zAMFB4HHHUQp4RFa.json deleted file mode 100644 index 753f9a85..00000000 --- a/packs/items/Schloss__Gut__SW__2__zAMFB4HHHUQp4RFa.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "zAMFB4HHHUQp4RFa", - "name": "Schloss: Gut (SW: 2)", - "type": "loot", - "img": "icons/containers/chest/chest-reinforced-steel-oak-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343593, - "modifiedTime": 1740227863030, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zAMFB4HHHUQp4RFa" -} diff --git a/packs/items/Schloss__Meisterartbeit__SW__8__Sks4O3NpwOWQIrIa.json b/packs/items/Schloss__Meisterartbeit__SW__8__Sks4O3NpwOWQIrIa.json deleted file mode 100644 index 65f80e36..00000000 --- a/packs/items/Schloss__Meisterartbeit__SW__8__Sks4O3NpwOWQIrIa.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "Sks4O3NpwOWQIrIa", - "name": "Schloss: Meisterartbeit (SW: 8)", - "type": "loot", - "img": "icons/containers/chest/chest-reinforced-steel-oak-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 50, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342990, - "modifiedTime": 1740227862999, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Sks4O3NpwOWQIrIa" -} diff --git a/packs/items/Schloss__Solide__SW__4__dW8OETKY21O3GNHf.json b/packs/items/Schloss__Solide__SW__4__dW8OETKY21O3GNHf.json deleted file mode 100644 index ddee2f90..00000000 --- a/packs/items/Schloss__Solide__SW__4__dW8OETKY21O3GNHf.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "dW8OETKY21O3GNHf", - "name": "Schloss: Solide (SW: 4)", - "type": "loot", - "img": "icons/containers/chest/chest-reinforced-steel-oak-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 10, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343141, - "modifiedTime": 1740227863011, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dW8OETKY21O3GNHf" -} diff --git a/packs/items/Schloss__Zwergenarbeit__SW__12__tPlXSWQ4mP0dqnOa.json b/packs/items/Schloss__Zwergenarbeit__SW__12__tPlXSWQ4mP0dqnOa.json deleted file mode 100644 index 0f04a3cf..00000000 --- a/packs/items/Schloss__Zwergenarbeit__SW__12__tPlXSWQ4mP0dqnOa.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "tPlXSWQ4mP0dqnOa", - "name": "Schloss: Zwergenarbeit (SW: 12)", - "type": "loot", - "img": "icons/containers/chest/chest-reinforced-steel-oak-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 250, - "availability": "city", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343511, - "modifiedTime": 1740227863025, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tPlXSWQ4mP0dqnOa" -} diff --git a/packs/items/Schnelligkeitstrank_Tlfjrxlm9NpmVR0L.json b/packs/items/Schnelligkeitstrank_Tlfjrxlm9NpmVR0L.json deleted file mode 100644 index dcd84014..00000000 --- a/packs/items/Schnelligkeitstrank_Tlfjrxlm9NpmVR0L.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "Tlfjrxlm9NpmVR0L", - "name": "Schnelligkeitstrank", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-corked-fancy-orange.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Für W20 Runden erhöht sich der Laufen- Wert des Trinkenden um 100%.
", - "quantity": 1, - "price": 200, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343014, - "modifiedTime": 1740227863000, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Tlfjrxlm9NpmVR0L" -} diff --git a/packs/items/Schutzring__1_kGTB9f2zPrmedHq4.json b/packs/items/Schutzring__1_kGTB9f2zPrmedHq4.json deleted file mode 100644 index e231c045..00000000 --- a/packs/items/Schutzring__1_kGTB9f2zPrmedHq4.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "_id": "kGTB9f2zPrmedHq4", - "name": "Schutzring +1", - "type": "equipment", - "img": "icons/equipment/finger/ring-band-engraved-lines-bronze.webp", - "effects": [ - { - "_id": "yH3Ujo3jKNCYI4n9", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.defense.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Abwehr +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!kGTB9f2zPrmedHq4.yH3Ujo3jKNCYI4n9" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhöht die Abwehr um 1, ohne dabei Panzerungsmalus zu verursachen.
", - "quantity": 1, - "price": 752, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343316, - "modifiedTime": 1740227863018, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!kGTB9f2zPrmedHq4" -} diff --git a/packs/items/Schutzring__2_cg1y2GTJRGhE9Fpy.json b/packs/items/Schutzring__2_cg1y2GTJRGhE9Fpy.json deleted file mode 100644 index 0fae28f7..00000000 --- a/packs/items/Schutzring__2_cg1y2GTJRGhE9Fpy.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "_id": "cg1y2GTJRGhE9Fpy", - "name": "Schutzring +2", - "type": "equipment", - "img": "icons/equipment/finger/ring-band-engraved-scrolls-bronze.webp", - "effects": [ - { - "_id": "yH3Ujo3jKNCYI4n9", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.defense.total", - "value": "2", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Abwehr +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!cg1y2GTJRGhE9Fpy.yH3Ujo3jKNCYI4n9" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhöht die Abwehr um 2, ohne dabei Panzerungsmalus zu verursachen.
", - "quantity": 1, - "price": 1252, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343113, - "modifiedTime": 1740227863008, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!cg1y2GTJRGhE9Fpy" -} diff --git a/packs/items/Schutzring__3_qlBIUI00RTYZzclX.json b/packs/items/Schutzring__3_qlBIUI00RTYZzclX.json deleted file mode 100644 index 4e9591a1..00000000 --- a/packs/items/Schutzring__3_qlBIUI00RTYZzclX.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "_id": "qlBIUI00RTYZzclX", - "name": "Schutzring +3", - "type": "equipment", - "img": "icons/equipment/finger/ring-band-engraved-scrolls-gold.webp", - "effects": [ - { - "_id": "yH3Ujo3jKNCYI4n9", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.defense.total", - "value": "3", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Abwehr +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!qlBIUI00RTYZzclX.yH3Ujo3jKNCYI4n9" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhöht die Abwehr um 3, ohne dabei Panzerungsmalus zu verursachen.
", - "quantity": 1, - "price": 1752, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343471, - "modifiedTime": 1740227863023, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!qlBIUI00RTYZzclX" -} diff --git a/packs/items/Schutztrank_XiW3k793840i0rdo.json b/packs/items/Schutztrank_XiW3k793840i0rdo.json deleted file mode 100644 index 3c5da18d..00000000 --- a/packs/items/Schutztrank_XiW3k793840i0rdo.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "XiW3k793840i0rdo", - "name": "Schutztrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-pear-corked-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhöht für W20 Runden die Abwehr um +2.
", - "quantity": 1, - "price": 50, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343069, - "modifiedTime": 1740227863004, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!XiW3k793840i0rdo" -} diff --git a/packs/items/Schwebenamulett_ElUWNqUWZB4dH3QS.json b/packs/items/Schwebenamulett_ElUWNqUWZB4dH3QS.json deleted file mode 100644 index 9d5183a4..00000000 --- a/packs/items/Schwebenamulett_ElUWNqUWZB4dH3QS.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "ElUWNqUWZB4dH3QS", - "name": "Schwebenamulett", - "type": "equipment", - "img": "icons/equipment/neck/amulet-moth-gold-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauber @Compendium[ds4.spells.SPnYNGggFb8XRICE]{Schweben} wurde in dieses Amulett gebettet.
", - "quantity": 1, - "price": 1515, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342813, - "modifiedTime": 1740227862978, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ElUWNqUWZB4dH3QS" -} diff --git a/packs/items/Schwebentrank_OZU7ietSpnivKPVt.json b/packs/items/Schwebentrank_OZU7ietSpnivKPVt.json deleted file mode 100644 index 911fe32d..00000000 --- a/packs/items/Schwebentrank_OZU7ietSpnivKPVt.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "OZU7ietSpnivKPVt", - "name": "Schwebentrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-bulb-corked-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses meist grünliche Getränk wirkt den Zauber Schweben (Probenwert 20; Patzer ausgeschlossen).
", - "quantity": 1, - "price": 25, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342923, - "modifiedTime": 1740227862988, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!OZU7ietSpnivKPVt" -} diff --git a/packs/items/Schwere_Armbrust_GJdez2VgLxwzlZAQ.json b/packs/items/Schwere_Armbrust_GJdez2VgLxwzlZAQ.json deleted file mode 100644 index 7fcaebf1..00000000 --- a/packs/items/Schwere_Armbrust_GJdez2VgLxwzlZAQ.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "GJdez2VgLxwzlZAQ", - "name": "Schwere Armbrust", - "type": "weapon", - "img": "icons/weapons/crossbows/crossbow-heavy-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -4
", - "quantity": 1, - "price": 15, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342858, - "modifiedTime": 1740227862981, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GJdez2VgLxwzlZAQ" -} diff --git a/packs/items/Schwere_Armbrust__1_S0EV25lf5TbN6COJ.json b/packs/items/Schwere_Armbrust__1_S0EV25lf5TbN6COJ.json deleted file mode 100644 index b1107049..00000000 --- a/packs/items/Schwere_Armbrust__1_S0EV25lf5TbN6COJ.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "S0EV25lf5TbN6COJ", - "name": "Schwere Armbrust +1", - "type": "weapon", - "img": "icons/weapons/crossbows/crossbow-loaded-black.webp", - "effects": [ - { - "_id": "N4vxVFNLW9Q9QsIp", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "value": "-4", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Initiative -4", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!S0EV25lf5TbN6COJ.N4vxVFNLW9Q9QsIp" - }, - { - "_id": "ZBJldrSO6rRHmgnI", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!S0EV25lf5TbN6COJ.ZBJldrSO6rRHmgnI" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -4
", - "quantity": 1, - "price": 2265, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342977, - "modifiedTime": 1740227862997, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!S0EV25lf5TbN6COJ" -} diff --git a/packs/items/Schwere_Armbrust__2_NMmZ3Uu9uwAHc5IP.json b/packs/items/Schwere_Armbrust__2_NMmZ3Uu9uwAHc5IP.json deleted file mode 100644 index 1c7ad6bb..00000000 --- a/packs/items/Schwere_Armbrust__2_NMmZ3Uu9uwAHc5IP.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "NMmZ3Uu9uwAHc5IP", - "name": "Schwere Armbrust +2", - "type": "weapon", - "img": "icons/weapons/crossbows/crossbow-blue.webp", - "effects": [ - { - "_id": "sOBnfFviucXKykt1", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!NMmZ3Uu9uwAHc5IP.sOBnfFviucXKykt1" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -4
", - "quantity": 1, - "price": 2765, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 5, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342912, - "modifiedTime": 1740227862987, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NMmZ3Uu9uwAHc5IP" -} diff --git a/packs/items/Schwere_Armbrust__3_RWSRxi9np1UrEi7N.json b/packs/items/Schwere_Armbrust__3_RWSRxi9np1UrEi7N.json deleted file mode 100644 index bbfdb98f..00000000 --- a/packs/items/Schwere_Armbrust__3_RWSRxi9np1UrEi7N.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "RWSRxi9np1UrEi7N", - "name": "Schwere Armbrust +3", - "type": "weapon", - "img": "icons/weapons/crossbows/crossbow-ornamental-black.webp", - "effects": [ - { - "_id": "SlJV88ZHTV0VORzk", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!RWSRxi9np1UrEi7N.SlJV88ZHTV0VORzk" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -4
", - "quantity": 1, - "price": 3265, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 6, - "opponentDefense": -5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342966, - "modifiedTime": 1740227862996, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RWSRxi9np1UrEi7N" -} diff --git a/packs/items/Seife__1_St_ck__ozPRhUPx9Y9u3GNE.json b/packs/items/Seife__1_St_ck__ozPRhUPx9Y9u3GNE.json deleted file mode 100644 index 31b417a8..00000000 --- a/packs/items/Seife__1_St_ck__ozPRhUPx9Y9u3GNE.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "ozPRhUPx9Y9u3GNE", - "name": "Seife (1 Stück)", - "type": "loot", - "img": "icons/sundries/survival/soap.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343446, - "modifiedTime": 1740227863021, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ozPRhUPx9Y9u3GNE" -} diff --git a/packs/items/Seil__10m__aUKnYWOr7Fjy9sVX.json b/packs/items/Seil__10m__aUKnYWOr7Fjy9sVX.json deleted file mode 100644 index 6a167041..00000000 --- a/packs/items/Seil__10m__aUKnYWOr7Fjy9sVX.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "aUKnYWOr7Fjy9sVX", - "name": "Seil (10m)", - "type": "loot", - "img": "icons/sundries/survival/rope-wrapped-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343090, - "modifiedTime": 1740227863005, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!aUKnYWOr7Fjy9sVX" -} diff --git a/packs/items/Skrupelloser_Bogen_K4fd3AlpMoK1EZeg.json b/packs/items/Skrupelloser_Bogen_K4fd3AlpMoK1EZeg.json deleted file mode 100644 index 3f936ae0..00000000 --- a/packs/items/Skrupelloser_Bogen_K4fd3AlpMoK1EZeg.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "K4fd3AlpMoK1EZeg", - "name": "Skrupelloser Bogen", - "type": "weapon", - "img": "icons/weapons/bows/shortbow-recurve-red.webp", - "effects": [ - { - "_id": "8iny3Tt6i6g5EcYh", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!K4fd3AlpMoK1EZeg.8iny3Tt6i6g5EcYh" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein Kurzbogen +1 mit @Compendium[ds4.spells.dt2E4g7iwVqTSlMl]{Kleiner Terror}, der Feinde angeblich immer in den Rücken trifft.
\nZweihändig, Initiative +1
", - "quantity": 1, - "price": 2006, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "ranged", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342885, - "modifiedTime": 1740227862984, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!K4fd3AlpMoK1EZeg" -} diff --git a/packs/items/Smaragd_Schl_ssel_9xQRXWUYj3giHVRC.json b/packs/items/Smaragd_Schl_ssel_9xQRXWUYj3giHVRC.json deleted file mode 100644 index 396962b5..00000000 --- a/packs/items/Smaragd_Schl_ssel_9xQRXWUYj3giHVRC.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "9xQRXWUYj3giHVRC", - "name": "Smaragd-Schlüssel", - "type": "loot", - "img": "icons/sundries/misc/key-jeweled-gold-purple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Einmal alle 24h kann man damit den Zauber @Compendium[ds4.spells.ip0DVeb1YeNrEeUu]{Öffnen} auf ein Schloss wirken.
", - "quantity": 1, - "price": null, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342775, - "modifiedTime": 1740227862971, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9xQRXWUYj3giHVRC" -} diff --git a/packs/items/Speer__1_jRzgvvygxk5IjXYB.json b/packs/items/Speer__1_jRzgvvygxk5IjXYB.json deleted file mode 100644 index 9c84bf02..00000000 --- a/packs/items/Speer__1_jRzgvvygxk5IjXYB.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "jRzgvvygxk5IjXYB", - "name": "Speer +1", - "type": "weapon", - "img": "icons/weapons/polearms/spear-hooked-red.webp", - "effects": [ - { - "_id": "r0XGSAypTjvBmHHC", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!jRzgvvygxk5IjXYB.r0XGSAypTjvBmHHC" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 1251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "meleeRanged", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343306, - "modifiedTime": 1740227863018, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!jRzgvvygxk5IjXYB" -} diff --git a/packs/items/Speer__2_IfvOtBwOEYLPPvJK.json b/packs/items/Speer__2_IfvOtBwOEYLPPvJK.json deleted file mode 100644 index 31786b75..00000000 --- a/packs/items/Speer__2_IfvOtBwOEYLPPvJK.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "IfvOtBwOEYLPPvJK", - "name": "Speer +2", - "type": "weapon", - "img": "icons/weapons/polearms/spear-hooked-double-engraved.webp", - "effects": [ - { - "_id": "Kk9b3biK0mISYf75", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!IfvOtBwOEYLPPvJK.Kk9b3biK0mISYf75" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 1751, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "meleeRanged", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342870, - "modifiedTime": 1740227862983, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!IfvOtBwOEYLPPvJK" -} diff --git a/packs/items/Speer__3_HNHMmE4wNi0iXIjO.json b/packs/items/Speer__3_HNHMmE4wNi0iXIjO.json deleted file mode 100644 index 50df92f9..00000000 --- a/packs/items/Speer__3_HNHMmE4wNi0iXIjO.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "HNHMmE4wNi0iXIjO", - "name": "Speer +3", - "type": "weapon", - "img": "icons/weapons/polearms/spear-hooked-double-jeweled.webp", - "effects": [ - { - "_id": "YUzHa2B8n4yYyWyY", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!HNHMmE4wNi0iXIjO.YUzHa2B8n4yYyWyY" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 2251, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "meleeRanged", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342863, - "modifiedTime": 1740227862981, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!HNHMmE4wNi0iXIjO" -} diff --git a/packs/items/Speer_oWvJfxEBr83QxO9Q.json b/packs/items/Speer_oWvJfxEBr83QxO9Q.json deleted file mode 100644 index 23866e54..00000000 --- a/packs/items/Speer_oWvJfxEBr83QxO9Q.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "oWvJfxEBr83QxO9Q", - "name": "Speer", - "type": "weapon", - "img": "icons/weapons/polearms/spear-hooked-simple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zerbricht bei Schießen-Patzer
", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "meleeRanged", - "weaponBonus": 1, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343397, - "modifiedTime": 1740227863021, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oWvJfxEBr83QxO9Q" -} diff --git a/packs/items/Spruchspeicherring_oJbpYZlvfJ6kpudj.json b/packs/items/Spruchspeicherring_oJbpYZlvfJ6kpudj.json deleted file mode 100644 index 1d3a68ef..00000000 --- a/packs/items/Spruchspeicherring_oJbpYZlvfJ6kpudj.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "oJbpYZlvfJ6kpudj", - "name": "Spruchspeicherring", - "type": "equipment", - "img": "icons/equipment/finger/ring-cabochon-engraved-gold-pink.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Einmal pro Tag kann der Träger des Ringes zu einem vorher festgelegten Zauber aktionsfrei wechseln, ohne dafür würfeln zu müssen, da in den Ring @Compendium[ds4.spells.DNplbUwfxszg5UbZ]{Wechselzauber} eingebettet wurde.
", - "quantity": 1, - "price": 4992, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343371, - "modifiedTime": 1740227863020, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oJbpYZlvfJ6kpudj" -} diff --git a/packs/items/St_rketrank_JlcYB53S1wQRfmUG.json b/packs/items/St_rketrank_JlcYB53S1wQRfmUG.json deleted file mode 100644 index d4e3554f..00000000 --- a/packs/items/St_rketrank_JlcYB53S1wQRfmUG.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "JlcYB53S1wQRfmUG", - "name": "Stärketrank", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-corked-stopper-yellow.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser nach Schweiß riechende Trank verdoppelt ST für ST in Runden.
", - "quantity": 1, - "price": 150, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342884, - "modifiedTime": 1740227862984, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JlcYB53S1wQRfmUG" -} diff --git a/packs/items/Stab_des_Magus_uafOWinH9nnRO3lr.json b/packs/items/Stab_des_Magus_uafOWinH9nnRO3lr.json deleted file mode 100644 index f2393032..00000000 --- a/packs/items/Stab_des_Magus_uafOWinH9nnRO3lr.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "uafOWinH9nnRO3lr", - "name": "Stab des Magus", - "type": "weapon", - "img": "icons/weapons/staves/staff-ornate-purple.webp", - "effects": [ - { - "_id": "ve7iQmkxC6l5WmTE", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!uafOWinH9nnRO3lr.ve7iQmkxC6l5WmTE" - }, - { - "_id": "XD3tGbvi1S03diuz", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.targetedSpellcasting.total", - "value": "3", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Zielzaubern +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!uafOWinH9nnRO3lr.XD3tGbvi1S03diuz" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein Kampfstab +1 mit Zielzaubern +3 (insgesamt also mit dem normalen Bonus Zielzaubern +4).
\nZweihändig, Zielzaubern +1
", - "quantity": 1, - "price": 2750.5, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343535, - "modifiedTime": 1740227863027, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!uafOWinH9nnRO3lr" -} diff --git a/packs/items/Stahlflamme_PPNAghq5SEhO1zNM.json b/packs/items/Stahlflamme_PPNAghq5SEhO1zNM.json deleted file mode 100644 index f1f66ef0..00000000 --- a/packs/items/Stahlflamme_PPNAghq5SEhO1zNM.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "PPNAghq5SEhO1zNM", - "name": "Stahlflamme", - "type": "weapon", - "img": "icons/weapons/swords/sword-guard-red.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Langschwert +1 mit @Compendium[ds4.spells.gJ3Z8y7i6LWjSMKJ]{Flammenklinge} kam schon in vielen Kriegen zum Einsatz.
", - "quantity": 1, - "price": 1757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342931, - "modifiedTime": 1740227862989, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!PPNAghq5SEhO1zNM" -} diff --git a/packs/items/Streitaxt__1_s1xaEPPKJGMImZ9m.json b/packs/items/Streitaxt__1_s1xaEPPKJGMImZ9m.json deleted file mode 100644 index 1407482f..00000000 --- a/packs/items/Streitaxt__1_s1xaEPPKJGMImZ9m.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "s1xaEPPKJGMImZ9m", - "name": "Streitaxt +1", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-chopping-black.webp", - "effects": [ - { - "_id": "fQgMSANHWdQrzmlJ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!s1xaEPPKJGMImZ9m.fQgMSANHWdQrzmlJ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 2257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343477, - "modifiedTime": 1740227863024, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!s1xaEPPKJGMImZ9m" -} diff --git a/packs/items/Streitaxt__2_Idj6BxduoI3v4u9A.json b/packs/items/Streitaxt__2_Idj6BxduoI3v4u9A.json deleted file mode 100644 index 7370a20d..00000000 --- a/packs/items/Streitaxt__2_Idj6BxduoI3v4u9A.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "Idj6BxduoI3v4u9A", - "name": "Streitaxt +2", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-black.webp", - "effects": [ - { - "_id": "iImvUwfo7IRqnmVv", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Idj6BxduoI3v4u9A.iImvUwfo7IRqnmVv" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 2757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342869, - "modifiedTime": 1740227862982, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Idj6BxduoI3v4u9A" -} diff --git a/packs/items/Streitaxt__3_0P2wJM5qG1VupfXq.json b/packs/items/Streitaxt__3_0P2wJM5qG1VupfXq.json deleted file mode 100644 index 8262e0a8..00000000 --- a/packs/items/Streitaxt__3_0P2wJM5qG1VupfXq.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "0P2wJM5qG1VupfXq", - "name": "Streitaxt +3", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-blue.webp", - "effects": [ - { - "_id": "aNtjz1DteptmA3ce", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!0P2wJM5qG1VupfXq.aNtjz1DteptmA3ce" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 3257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 6, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342630, - "modifiedTime": 1740227862960, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0P2wJM5qG1VupfXq" -} diff --git a/packs/items/Streitaxt_vqKLn65gjoced8jV.json b/packs/items/Streitaxt_vqKLn65gjoced8jV.json deleted file mode 100644 index 216734cd..00000000 --- a/packs/items/Streitaxt_vqKLn65gjoced8jV.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "vqKLn65gjoced8jV", - "name": "Streitaxt", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-brown.webp", - "effects": [ - { - "_id": "DPS3CaNXapsBzzsj", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "-2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative -2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!vqKLn65gjoced8jV.DPS3CaNXapsBzzsj" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -2
", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343551, - "modifiedTime": 1740227863028, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!vqKLn65gjoced8jV" -} diff --git a/packs/items/Streithammer__1_eMyZ5EJ9SsiXaeKK.json b/packs/items/Streithammer__1_eMyZ5EJ9SsiXaeKK.json deleted file mode 100644 index 31cc8afa..00000000 --- a/packs/items/Streithammer__1_eMyZ5EJ9SsiXaeKK.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "eMyZ5EJ9SsiXaeKK", - "name": "Streithammer +1", - "type": "weapon", - "img": "icons/weapons/hammers/hammer-war-spiked-simple.webp", - "effects": [ - { - "_id": "bPdVsWIS1AC54ZA8", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!eMyZ5EJ9SsiXaeKK.bPdVsWIS1AC54ZA8" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -4
", - "quantity": 1, - "price": 2256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343161, - "modifiedTime": 1740227863013, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eMyZ5EJ9SsiXaeKK" -} diff --git a/packs/items/Streithammer__2_eMeS2JSyiRJ5xO48.json b/packs/items/Streithammer__2_eMeS2JSyiRJ5xO48.json deleted file mode 100644 index bbc7f41b..00000000 --- a/packs/items/Streithammer__2_eMeS2JSyiRJ5xO48.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "eMeS2JSyiRJ5xO48", - "name": "Streithammer +2", - "type": "weapon", - "img": "icons/weapons/hammers/hammer-war-rounding.webp", - "effects": [ - { - "_id": "1I5R9xQlug0aSVTZ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!eMeS2JSyiRJ5xO48.1I5R9xQlug0aSVTZ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -4
", - "quantity": 1, - "price": 2756, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343156, - "modifiedTime": 1740227863012, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eMeS2JSyiRJ5xO48" -} diff --git a/packs/items/Streithammer__3_iORLpplub64kuxb4.json b/packs/items/Streithammer__3_iORLpplub64kuxb4.json deleted file mode 100644 index 8e3b32da..00000000 --- a/packs/items/Streithammer__3_iORLpplub64kuxb4.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "iORLpplub64kuxb4", - "name": "Streithammer +3", - "type": "weapon", - "img": "icons/weapons/hammers/hammer-war-spiked.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -4
", - "quantity": 1, - "price": 3256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 6, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343258, - "modifiedTime": 1740227863017, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!iORLpplub64kuxb4" -} diff --git a/packs/items/Streithammer_fmFM71TpvBxYqmu2.json b/packs/items/Streithammer_fmFM71TpvBxYqmu2.json deleted file mode 100644 index 920010c7..00000000 --- a/packs/items/Streithammer_fmFM71TpvBxYqmu2.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "fmFM71TpvBxYqmu2", - "name": "Streithammer", - "type": "weapon", - "img": "icons/weapons/hammers/hammer-simple-iron.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -4
", - "quantity": 1, - "price": 6, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343198, - "modifiedTime": 1740227863014, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fmFM71TpvBxYqmu2" -} diff --git a/packs/items/Streitkolben__1_SIE4g3gjSkqVIT6W.json b/packs/items/Streitkolben__1_SIE4g3gjSkqVIT6W.json deleted file mode 100644 index 0a2fb5af..00000000 --- a/packs/items/Streitkolben__1_SIE4g3gjSkqVIT6W.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "SIE4g3gjSkqVIT6W", - "name": "Streitkolben +1", - "type": "weapon", - "img": "icons/weapons/maces/mace-spiked-wood-grey.webp", - "effects": [ - { - "_id": "Qg9niqX5oimvg2Fv", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!SIE4g3gjSkqVIT6W.Qg9niqX5oimvg2Fv" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342985, - "modifiedTime": 1740227862998, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!SIE4g3gjSkqVIT6W" -} diff --git a/packs/items/Streitkolben__2_Trl2ljtHi1kRYHTX.json b/packs/items/Streitkolben__2_Trl2ljtHi1kRYHTX.json deleted file mode 100644 index d1bd65b2..00000000 --- a/packs/items/Streitkolben__2_Trl2ljtHi1kRYHTX.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "Trl2ljtHi1kRYHTX", - "name": "Streitkolben +2", - "type": "weapon", - "img": "icons/weapons/maces/mace-studded-steel.webp", - "effects": [ - { - "_id": "PeyncDD5OoPJkkTO", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Trl2ljtHi1kRYHTX.PeyncDD5OoPJkkTO" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1757, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343017, - "modifiedTime": 1740227863000, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Trl2ljtHi1kRYHTX" -} diff --git a/packs/items/Streitkolben__3_rdOU1FmBq1nqQKW5.json b/packs/items/Streitkolben__3_rdOU1FmBq1nqQKW5.json deleted file mode 100644 index b6771136..00000000 --- a/packs/items/Streitkolben__3_rdOU1FmBq1nqQKW5.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "rdOU1FmBq1nqQKW5", - "name": "Streitkolben +3", - "type": "weapon", - "img": "icons/weapons/maces/mace-spiked-steel-grey.webp", - "effects": [ - { - "_id": "dgH1Fyz2pVFcmhFL", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!rdOU1FmBq1nqQKW5.dgH1Fyz2pVFcmhFL" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2257, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343474, - "modifiedTime": 1740227863024, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!rdOU1FmBq1nqQKW5" -} diff --git a/packs/items/Streitkolben_mjBwhnK5gf9MIdlm.json b/packs/items/Streitkolben_mjBwhnK5gf9MIdlm.json deleted file mode 100644 index ed2fa842..00000000 --- a/packs/items/Streitkolben_mjBwhnK5gf9MIdlm.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "mjBwhnK5gf9MIdlm", - "name": "Streitkolben", - "type": "weapon", - "img": "icons/weapons/maces/mace-spiked-steel-wood.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 7, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343332, - "modifiedTime": 1740227863020, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!mjBwhnK5gf9MIdlm" -} diff --git a/packs/items/Sturmrobe_xeSyfEpn3gABmKDR.json b/packs/items/Sturmrobe_xeSyfEpn3gABmKDR.json deleted file mode 100644 index 61db75ba..00000000 --- a/packs/items/Sturmrobe_xeSyfEpn3gABmKDR.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "xeSyfEpn3gABmKDR", - "name": "Sturmrobe", - "type": "armor", - "img": "icons/equipment/chest/robe-layered-teal.webp", - "effects": [ - { - "_id": "JjEEDD1H1NvKF1Vr", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!xeSyfEpn3gABmKDR.JjEEDD1H1NvKF1Vr" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese blaugraue Robe +1 mit aufgestickten Sturm- & Gewitterwolken gewährt +1 auf jeden Blitzzauber. Selbst bei Windstille wogt sie in einer leichten Brise.
", - "quantity": 1, - "price": 1751, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 0, - "armorMaterialType": "cloth", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343566, - "modifiedTime": 1740227863029, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!xeSyfEpn3gABmKDR" -} diff --git a/packs/items/Tagesration__3_Mahlzeiten__U89qHZqIfVM8xvaJ.json b/packs/items/Tagesration__3_Mahlzeiten__U89qHZqIfVM8xvaJ.json deleted file mode 100644 index 8f91c3b3..00000000 --- a/packs/items/Tagesration__3_Mahlzeiten__U89qHZqIfVM8xvaJ.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "U89qHZqIfVM8xvaJ", - "name": "Tagesration (3 Mahlzeiten)", - "type": "loot", - "img": "icons/tools/cooking/can.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343024, - "modifiedTime": 1740227863001, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!U89qHZqIfVM8xvaJ" -} diff --git a/packs/items/Talenttrank_pljOii88ltzuQNsu.json b/packs/items/Talenttrank_pljOii88ltzuQNsu.json deleted file mode 100644 index 2ef8265a..00000000 --- a/packs/items/Talenttrank_pljOii88ltzuQNsu.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "pljOii88ltzuQNsu", - "name": "Talenttrank", - "type": "loot", - "img": "icons/consumables/potions/potion-flask-corked-labeled-pink.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Metallisch riechend, erhöht dieser Trank für W20 Runden ein vom Trinkenden bereits beherrschtes Talent um +I.
", - "quantity": 1, - "price": 100, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343461, - "modifiedTime": 1740227863022, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pljOii88ltzuQNsu" -} diff --git a/packs/items/Talgkerze__brennt_6h__iMX7YuWPHnCnbeh8.json b/packs/items/Talgkerze__brennt_6h__iMX7YuWPHnCnbeh8.json deleted file mode 100644 index 4bfe151c..00000000 --- a/packs/items/Talgkerze__brennt_6h__iMX7YuWPHnCnbeh8.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "iMX7YuWPHnCnbeh8", - "name": "Talgkerze (brennt 6h)", - "type": "loot", - "img": "icons/sundries/lights/candle-unlit-grey.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.01, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343250, - "modifiedTime": 1740227863017, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!iMX7YuWPHnCnbeh8" -} diff --git a/packs/items/Tee__10_Tassen__9aY1zWfD5RwZlAUH.json b/packs/items/Tee__10_Tassen__9aY1zWfD5RwZlAUH.json deleted file mode 100644 index ad6156ec..00000000 --- a/packs/items/Tee__10_Tassen__9aY1zWfD5RwZlAUH.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "9aY1zWfD5RwZlAUH", - "name": "Tee (10 Tassen)", - "type": "loot", - "img": "icons/commodities/flowers/buds-red-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.05, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342774, - "modifiedTime": 1740227862971, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9aY1zWfD5RwZlAUH" -} diff --git a/packs/items/Teleporttrank_1uHuQJcCjjxzvP4C.json b/packs/items/Teleporttrank_1uHuQJcCjjxzvP4C.json deleted file mode 100644 index ede65106..00000000 --- a/packs/items/Teleporttrank_1uHuQJcCjjxzvP4C.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "1uHuQJcCjjxzvP4C", - "name": "Teleporttrank", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-fumes-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser rauchige, wirbelnde Trank wirkt den Zauber @Compendium[ds4.spells.ANV77WNlbZFRMssv]{Teleport} auf den Trinker (keine Probe notwendig), nicht jedoch auf weitere Charaktere.
", - "quantity": 1, - "price": 1000, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342655, - "modifiedTime": 1740227862963, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1uHuQJcCjjxzvP4C" -} diff --git a/packs/items/Tinte__reicht_f_r_50_Seiten__fB8GyT0S38fomHsg.json b/packs/items/Tinte__reicht_f_r_50_Seiten__fB8GyT0S38fomHsg.json deleted file mode 100644 index 9dbfa30a..00000000 --- a/packs/items/Tinte__reicht_f_r_50_Seiten__fB8GyT0S38fomHsg.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "fB8GyT0S38fomHsg", - "name": "Tinte (reicht für 50 Seiten)", - "type": "loot", - "img": "icons/tools/scribal/ink-quill-red.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 2, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343196, - "modifiedTime": 1740227863014, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fB8GyT0S38fomHsg" -} diff --git a/packs/items/Topf_cDIVsXpVltyRnhqM.json b/packs/items/Topf_cDIVsXpVltyRnhqM.json deleted file mode 100644 index 2ba3248e..00000000 --- a/packs/items/Topf_cDIVsXpVltyRnhqM.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "cDIVsXpVltyRnhqM", - "name": "Topf", - "type": "loot", - "img": "icons/tools/cooking/cauldron-empty.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343108, - "modifiedTime": 1740227863008, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!cDIVsXpVltyRnhqM" -} diff --git a/packs/items/Trank_der_Gasgestalt_dUQPe5X6ka3HJLuF.json b/packs/items/Trank_der_Gasgestalt_dUQPe5X6ka3HJLuF.json deleted file mode 100644 index 4572a27e..00000000 --- a/packs/items/Trank_der_Gasgestalt_dUQPe5X6ka3HJLuF.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "dUQPe5X6ka3HJLuF", - "name": "Trank der Gasgestalt", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-corked-fancy-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser meist rauchige Trank wirkt auf den Trinker den Zauber @Compendium[ds4.spells.tZJoj1PGrRGe9eMV]{Gasgestalt} (Probenwert 20; Patzer ausgeschlossen).
", - "quantity": 1, - "price": 500, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343139, - "modifiedTime": 1740227863011, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dUQPe5X6ka3HJLuF" -} diff --git a/packs/items/Trank_der_Lebenskraft_74iFRkzvOwLxOxOq.json b/packs/items/Trank_der_Lebenskraft_74iFRkzvOwLxOxOq.json deleted file mode 100644 index d36a8bd7..00000000 --- a/packs/items/Trank_der_Lebenskraft_74iFRkzvOwLxOxOq.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "74iFRkzvOwLxOxOq", - "name": "Trank der Lebenskraft", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-corked-labeled-red.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese meist blutroten Tränke erhöhen die Lebenskraft um W20 für W20 Stunden.
", - "quantity": 1, - "price": 500, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342735, - "modifiedTime": 1740227862967, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!74iFRkzvOwLxOxOq" -} diff --git a/packs/items/Trank_der_Zwergensicht_nixhgFSQ7jaZrvxD.json b/packs/items/Trank_der_Zwergensicht_nixhgFSQ7jaZrvxD.json deleted file mode 100644 index 45088efe..00000000 --- a/packs/items/Trank_der_Zwergensicht_nixhgFSQ7jaZrvxD.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "nixhgFSQ7jaZrvxD", - "name": "Trank der Zwergensicht", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-labeled-medicine-capped-red-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses meist schwarze Getränk gewährt für W20 Stunden dem Trinker die zwergische Volksfähigkeit Dunkelsicht (DS4 S. 83).
", - "quantity": 1, - "price": 15, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343360, - "modifiedTime": 1740227863020, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!nixhgFSQ7jaZrvxD" -} diff --git a/packs/items/Turmschild_0e8GeSHxVf72FXvT.json b/packs/items/Turmschild_0e8GeSHxVf72FXvT.json deleted file mode 100644 index 421356e8..00000000 --- a/packs/items/Turmschild_0e8GeSHxVf72FXvT.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "0e8GeSHxVf72FXvT", - "name": "Turmschild", - "type": "shield", - "img": "icons/equipment/shield/heater-steel-boss-red.webp", - "effects": [ - { - "_id": "ScAKi1eiWow9Y1ZZ", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.movement.total", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!0e8GeSHxVf72FXvT.ScAKi1eiWow9Y1ZZ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -1
", - "quantity": 1, - "price": 15, - "availability": "village", - "storageLocation": "-", - "equipped": false, - "armorValue": 2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342637, - "modifiedTime": 1740227862961, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0e8GeSHxVf72FXvT" -} diff --git a/packs/items/Turmschild__1_ibiHqm4rH8meeu9m.json b/packs/items/Turmschild__1_ibiHqm4rH8meeu9m.json deleted file mode 100644 index 787778a8..00000000 --- a/packs/items/Turmschild__1_ibiHqm4rH8meeu9m.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "_id": "ibiHqm4rH8meeu9m", - "name": "Turmschild +1", - "type": "shield", - "img": "icons/equipment/shield/heater-steel-engraved-lance-rest.webp", - "effects": [ - { - "_id": "ScAKi1eiWow9Y1ZZ", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.movement.total", - "value": "-0.5", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Laufen -0,5", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ibiHqm4rH8meeu9m.ScAKi1eiWow9Y1ZZ" - }, - { - "_id": "TeyRcwja5lQWHICW", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ibiHqm4rH8meeu9m.TeyRcwja5lQWHICW" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Laufen -0,5
", - "quantity": 1, - "price": 3265, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343297, - "modifiedTime": 1740227863018, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ibiHqm4rH8meeu9m" -} diff --git a/packs/items/Turmschild__2_Li5rC0lvytKRAc31.json b/packs/items/Turmschild__2_Li5rC0lvytKRAc31.json deleted file mode 100644 index 229a1c6d..00000000 --- a/packs/items/Turmschild__2_Li5rC0lvytKRAc31.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "Li5rC0lvytKRAc31", - "name": "Turmschild +2", - "type": "shield", - "img": "icons/equipment/shield/heater-steel-gold.webp", - "effects": [ - { - "_id": "yfHGGfxxGvmHG6b9", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Li5rC0lvytKRAc31.yfHGGfxxGvmHG6b9" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 4265, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342901, - "modifiedTime": 1740227862986, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Li5rC0lvytKRAc31" -} diff --git a/packs/items/Turmschild__3_UNd96UN0NQo8I0SI.json b/packs/items/Turmschild__3_UNd96UN0NQo8I0SI.json deleted file mode 100644 index b458632c..00000000 --- a/packs/items/Turmschild__3_UNd96UN0NQo8I0SI.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "_id": "UNd96UN0NQo8I0SI", - "name": "Turmschild +3", - "type": "shield", - "img": "icons/equipment/shield/heater-embossed-gold.webp", - "effects": [ - { - "_id": "ZXSBIh1UotdZuHbj", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!UNd96UN0NQo8I0SI.ZXSBIh1UotdZuHbj" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": null, - "quantity": 1, - "price": 5265, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343035, - "modifiedTime": 1740227863001, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!UNd96UN0NQo8I0SI" -} diff --git a/packs/items/Umh_ngetasche_BeXHrv1TQzgfV6Mc.json b/packs/items/Umh_ngetasche_BeXHrv1TQzgfV6Mc.json deleted file mode 100644 index 0917855c..00000000 --- a/packs/items/Umh_ngetasche_BeXHrv1TQzgfV6Mc.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "BeXHrv1TQzgfV6Mc", - "name": "Umhängetasche", - "type": "loot", - "img": "icons/containers/bags/pack-leather-embossed-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342792, - "modifiedTime": 1740227862974, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!BeXHrv1TQzgfV6Mc" -} diff --git a/packs/items/Unsichtbarkeitsring_kurEYTP9rqk8YnND.json b/packs/items/Unsichtbarkeitsring_kurEYTP9rqk8YnND.json deleted file mode 100644 index 96164657..00000000 --- a/packs/items/Unsichtbarkeitsring_kurEYTP9rqk8YnND.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "kurEYTP9rqk8YnND", - "name": "Unsichtbarkeitsring", - "type": "equipment", - "img": "icons/equipment/finger/ring-band-rounded-gold.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Böse Zungen behaupten, dass dieser Ring, in den @Compendium[ds4.spells.EXqdD6yddQ4c0zAw]{Unsichtbarkeit} eingebettet ist, seinen Träger zu seinem abhängigen Sklaven macht.
", - "quantity": 1, - "price": 6972, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343319, - "modifiedTime": 1740227863019, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!kurEYTP9rqk8YnND" -} diff --git a/packs/items/Unsichtbarkeitstrank_uYcNgFz5PkaOmK6b.json b/packs/items/Unsichtbarkeitstrank_uYcNgFz5PkaOmK6b.json deleted file mode 100644 index 6983fea4..00000000 --- a/packs/items/Unsichtbarkeitstrank_uYcNgFz5PkaOmK6b.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "uYcNgFz5PkaOmK6b", - "name": "Unsichtbarkeitstrank", - "type": "loot", - "img": "icons/consumables/potions/potion-flask-corked-tied-necklace-teal.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser oft klare, farblose Trank wirkt auf den Trinker den Zauber @Compendium[ds4.spells.EXqdD6yddQ4c0zAw]{Unsichtbarkeit} (Probenwert 20; Patzer ausgeschlossen).
", - "quantity": 1, - "price": 500, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343529, - "modifiedTime": 1740227863027, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!uYcNgFz5PkaOmK6b" -} diff --git a/packs/items/Unverwundbartrank_1HjmUAR5mf59yXlw.json b/packs/items/Unverwundbartrank_1HjmUAR5mf59yXlw.json deleted file mode 100644 index 7cdc2028..00000000 --- a/packs/items/Unverwundbartrank_1HjmUAR5mf59yXlw.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "1HjmUAR5mf59yXlw", - "name": "Unverwundbartrank", - "type": "loot", - "img": "icons/consumables/potions/potion-flask-corked-shiny-red.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter erhält für W20 Runden +20 auf seine Abwehr durch diesen meist roten, flockigen Trank. Dieser Bonus gilt auch bei Schaden, gegen den normalerweise keine Abwehr zulässig ist.
", - "quantity": 1, - "price": 1000, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342649, - "modifiedTime": 1740227862962, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1HjmUAR5mf59yXlw" -} diff --git a/packs/items/Verbandszeug_HIfMiFd0ZbqE3VKt.json b/packs/items/Verbandszeug_HIfMiFd0ZbqE3VKt.json deleted file mode 100644 index fd51f614..00000000 --- a/packs/items/Verbandszeug_HIfMiFd0ZbqE3VKt.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "HIfMiFd0ZbqE3VKt", - "name": "Verbandszeug", - "type": "loot", - "img": "icons/commodities/cloth/cloth-roll-worn-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Verschnaufen +1 oder natürliches Heilergebnis +1
", - "quantity": 1, - "price": 0.1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342862, - "modifiedTime": 1740227862981, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!HIfMiFd0ZbqE3VKt" -} diff --git a/packs/items/Vergr__erungstrank_Wjcv3WZW3j4jg9XY.json b/packs/items/Vergr__erungstrank_Wjcv3WZW3j4jg9XY.json deleted file mode 100644 index 1dd03b80..00000000 --- a/packs/items/Vergr__erungstrank_Wjcv3WZW3j4jg9XY.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "Wjcv3WZW3j4jg9XY", - "name": "Vergrößerungstrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-bulb-corked-purple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Vergrößert den Trinkenden auf das Doppelte seiner normalen Größe für W20/2 Minuten. KÖR, ST und HÄ werden verdoppelt und die Kampfwerte entsprechend angepasst.
", - "quantity": 1, - "price": 1000, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343060, - "modifiedTime": 1740227863003, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Wjcv3WZW3j4jg9XY" -} diff --git a/packs/items/Verj_ngungstrank_RlA4PIa9hnsqoqFi.json b/packs/items/Verj_ngungstrank_RlA4PIa9hnsqoqFi.json deleted file mode 100644 index 42668ec0..00000000 --- a/packs/items/Verj_ngungstrank_RlA4PIa9hnsqoqFi.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "RlA4PIa9hnsqoqFi", - "name": "Verjüngungstrank", - "type": "loot", - "img": "icons/consumables/potions/potion-tube-corked-orange.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Trinkende wird augenblicklich W20 Jahre jünger.
", - "quantity": 1, - "price": 5000, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342967, - "modifiedTime": 1740227862996, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RlA4PIa9hnsqoqFi" -} diff --git a/packs/items/Verkleinerungstrank_LAI81qZlbkr7MlGY.json b/packs/items/Verkleinerungstrank_LAI81qZlbkr7MlGY.json deleted file mode 100644 index 2b4db098..00000000 --- a/packs/items/Verkleinerungstrank_LAI81qZlbkr7MlGY.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "LAI81qZlbkr7MlGY", - "name": "Verkleinerungstrank", - "type": "loot", - "img": "icons/consumables/potions/potion-flask-corked-yellow.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Verkleinert den Trinkenden auf ein Zehntel seiner normalen Größe für W20 Minuten. KÖR, ST und HÄ werden solange halbiert und die Kampfwerte entsprechend angepasst.
", - "quantity": 1, - "price": 100, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342900, - "modifiedTime": 1740227862986, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!LAI81qZlbkr7MlGY" -} diff --git a/packs/items/Wachsamkeitstrank_gXr3lLQmlHeDMuv5.json b/packs/items/Wachsamkeitstrank_gXr3lLQmlHeDMuv5.json deleted file mode 100644 index 637f8a16..00000000 --- a/packs/items/Wachsamkeitstrank_gXr3lLQmlHeDMuv5.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "gXr3lLQmlHeDMuv5", - "name": "Wachsamkeitstrank", - "type": "loot", - "img": "icons/consumables/potions/potion-tube-corked-labeled-cyan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses meist klare Getränk gewährt für W20 Stunden auf alle Bemerken-Proben einen Bonus von +5.
", - "quantity": 1, - "price": 15, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343214, - "modifiedTime": 1740227863015, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gXr3lLQmlHeDMuv5" -} diff --git a/packs/items/Wachskerze__brennt_10h__S204KfhmoRdMDVpZ.json b/packs/items/Wachskerze__brennt_10h__S204KfhmoRdMDVpZ.json deleted file mode 100644 index 717900bd..00000000 --- a/packs/items/Wachskerze__brennt_10h__S204KfhmoRdMDVpZ.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "S204KfhmoRdMDVpZ", - "name": "Wachskerze (brennt 10h)", - "type": "loot", - "img": "icons/sundries/lights/candle-unlit-tan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.02, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342979, - "modifiedTime": 1740227862998, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!S204KfhmoRdMDVpZ" -} diff --git a/packs/items/Waffenlos_OvxWaEJrElas3EUL.json b/packs/items/Waffenlos_OvxWaEJrElas3EUL.json deleted file mode 100644 index 4cd60dcf..00000000 --- a/packs/items/Waffenlos_OvxWaEJrElas3EUL.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "OvxWaEJrElas3EUL", - "name": "Waffenlos", - "type": "weapon", - "img": "icons/equipment/hand/gauntlet-tooled-leather-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 0, - "opponentDefense": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342927, - "modifiedTime": 1740227862989, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!OvxWaEJrElas3EUL" -} diff --git a/packs/items/Waffenpaste_zXgxu2gCkaTSSSMU.json b/packs/items/Waffenpaste_zXgxu2gCkaTSSSMU.json deleted file mode 100644 index effd711c..00000000 --- a/packs/items/Waffenpaste_zXgxu2gCkaTSSSMU.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "zXgxu2gCkaTSSSMU", - "name": "Waffenpaste", - "type": "loot", - "img": "icons/tools/laboratory/bowl-liquid-black.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Macht WB+1; hält W20 Nahkampfangriffe bzw. reicht für W20 Fernkampfgeschosse
", - "quantity": 1, - "price": 0.5, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343609, - "modifiedTime": 1740227863031, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zXgxu2gCkaTSSSMU" -} diff --git a/packs/items/Waffenweih_luYRwVP5oR6cdDMQ.json b/packs/items/Waffenweih_luYRwVP5oR6cdDMQ.json deleted file mode 100644 index 984b1e6d..00000000 --- a/packs/items/Waffenweih_luYRwVP5oR6cdDMQ.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "luYRwVP5oR6cdDMQ", - "name": "Waffenweih", - "type": "loot", - "img": "icons/consumables/potions/potion-jar-capped-teal.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Über eine Waffe geschüttet, verleiht dieser meist silberne Trank dieser für die Dauer eines Kampfes den Effekt des Zaubers @Compendium[ds4.spells.ASvdS1fyjmRS1Xb6]{Magische Waffe}.
", - "quantity": 1, - "price": 25, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343322, - "modifiedTime": 1740227863020, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!luYRwVP5oR6cdDMQ" -} diff --git a/packs/items/Wagen__4_R_der__4E9WdEs1JaWrCYim.json b/packs/items/Wagen__4_R_der__4E9WdEs1JaWrCYim.json deleted file mode 100644 index 7817fa21..00000000 --- a/packs/items/Wagen__4_R_der__4E9WdEs1JaWrCYim.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "4E9WdEs1JaWrCYim", - "name": "Wagen (4 Räder)", - "type": "loot", - "img": "icons/commodities/wood/wood-wheel-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 35, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342704, - "modifiedTime": 1740227862965, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!4E9WdEs1JaWrCYim" -} diff --git a/packs/items/Wasserschlauch__5_Liter__ygiod7LPfxwz0Jbb.json b/packs/items/Wasserschlauch__5_Liter__ygiod7LPfxwz0Jbb.json deleted file mode 100644 index 7abac5a8..00000000 --- a/packs/items/Wasserschlauch__5_Liter__ygiod7LPfxwz0Jbb.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "ygiod7LPfxwz0Jbb", - "name": "Wasserschlauch (5 Liter)", - "type": "loot", - "img": "icons/sundries/survival/waterskin-leather-brown.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 0.5, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343581, - "modifiedTime": 1740227863029, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ygiod7LPfxwz0Jbb" -} diff --git a/packs/items/Wasserwandeltrank_s47J9CEdTELiRlPT.json b/packs/items/Wasserwandeltrank_s47J9CEdTELiRlPT.json deleted file mode 100644 index e7b58c2d..00000000 --- a/packs/items/Wasserwandeltrank_s47J9CEdTELiRlPT.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "s47J9CEdTELiRlPT", - "name": "Wasserwandeltrank", - "type": "loot", - "img": "icons/consumables/potions/potion-jar-corked-orange.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser oft braune Trank wirkt auf den Trinker den Zauber @Compendium[ds4.spells.mYZ3gFtRJASLL9pv]{Wasserwandeln} (Probenwert 20; Patzer ausgeschlossen).
", - "quantity": 1, - "price": 100, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343479, - "modifiedTime": 1740227863024, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!s47J9CEdTELiRlPT" -} diff --git a/packs/items/Wechselring_1vrVO2sqFqC4AA1k.json b/packs/items/Wechselring_1vrVO2sqFqC4AA1k.json deleted file mode 100644 index eb0896ba..00000000 --- a/packs/items/Wechselring_1vrVO2sqFqC4AA1k.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "1vrVO2sqFqC4AA1k", - "name": "Wechselring", - "type": "equipment", - "img": "icons/equipment/finger/ring-cabochon-white-blue.webp", - "effects": [ - { - "_id": "uaLYD6951CS9od5d", - "changes": [ - { - "key": "system.rank.total", - "mode": 2, - "value": "5", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "Wechsler", - "condition": "'@item.type' === 'talent'" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Wechsler +V", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!1vrVO2sqFqC4AA1k.uaLYD6951CS9od5d" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mittels Wechsler +V verleiht dieser Ring +10 auf Proben, um die eigenen Zauber zu wechseln.
", - "quantity": 1, - "price": 1502, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342664, - "modifiedTime": 1740227862963, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1vrVO2sqFqC4AA1k" -} diff --git a/packs/items/Wehrpanzer_83CJm0YUiYxIpcQx.json b/packs/items/Wehrpanzer_83CJm0YUiYxIpcQx.json deleted file mode 100644 index 023cb1bf..00000000 --- a/packs/items/Wehrpanzer_83CJm0YUiYxIpcQx.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "_id": "83CJm0YUiYxIpcQx", - "name": "Wehrpanzer", - "type": "armor", - "img": "icons/equipment/chest/breastplate-cuirass-steel-grey.webp", - "effects": [ - { - "_id": "wz2krJzwVba18XvV", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Panzerung +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!83CJm0YUiYxIpcQx.wz2krJzwVba18XvV" - }, - { - "_id": "TuRxuZf6QZL2OvRk", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.defense.total", - "value": "2", - "mode": 2, - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "tint": "#ffffff", - "transfer": true, - "origin": null, - "name": "Abwehr +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!83CJm0YUiYxIpcQx.TuRxuZf6QZL2OvRk" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese massive, mit Metallverzierungen verstärkte Plattenrüstung +3 verfügt sogar über einen Halspanzer und gewährt ihrem Träger zusätzlich +2 auf Abwehr.
", - "quantity": 1, - "price": 7300, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 3, - "armorMaterialType": "plate", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342756, - "modifiedTime": 1740227862968, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!83CJm0YUiYxIpcQx" -} diff --git a/packs/items/Weihwasser__1_2_Liter__RoXGTPdisjn6AdYK.json b/packs/items/Weihwasser__1_2_Liter__RoXGTPdisjn6AdYK.json deleted file mode 100644 index a2b180ff..00000000 --- a/packs/items/Weihwasser__1_2_Liter__RoXGTPdisjn6AdYK.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "RoXGTPdisjn6AdYK", - "name": "Weihwasser (1/2 Liter)", - "type": "loot", - "img": "icons/consumables/potions/bottle-conical-corked-labeled-shell-cyan.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Weihwasser verursacht gegen Dämonen und Untote nicht abwehrbaren Schaden. Jede Einheit Weihwasser hat einen anderen Angriffswert, der mit W20 ermittelt wird. Dieser Wert wird erst ausgewürfelt, wenn das Weihwasser den Dämonen bzw. Untoten trifft, es sei denn, es wird vorher in Bezug auf seinen Schadenswert von einem Zauberwirker mit GEI+AU, gefolgt von GEI+VE, erfolgreich analysiert.
\nEine Weihwassereinheit kann man auf eine Waffe/ein Geschoss auftragen (benötigt 1 Aktion) und dann einen normalen Angriff mit Schlagen bzw. Schießen würfeln. Ist dieser erfolgreich, wird bei Dämonen und Untoten neben dem normalen Schaden auch noch ein Angriff für das Weihwasser gewürfelt, der nicht abwehrbaren Schaden verursacht. Nach dem ersten Treffer ist die Einheit Weihwasser aufgebraucht.
\nAlternativ kann man Weihwassereinheiten in zerbrechliche Phiolen (WB +0; 2 GM) füllen und diese im Nah- oder Fernkampf gegen Dämonen und Untote einsetzen, wobei die zerbrechlichen Gefäße zerspringen. In solchen Fällen verursacht nur das Weihwasser Schaden, nicht die Schießen-Probe.
\nWeihwasser kann außerdem dazu benutzt werden, in schützenden Linien oder Kreisen (1 m pro Einheit) auf den Boden geschüttet zu werden, um für eine gewisse Zeit Dämonen bzw. Untote aufzuhalten, die das Weihwasser nicht passieren können.
", - "quantity": 1, - "price": 0.1, - "availability": "hamlet", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342969, - "modifiedTime": 1740227862996, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RoXGTPdisjn6AdYK" -} diff --git a/packs/items/Werkzeugset_zQLTx3zmJfnrdmlN.json b/packs/items/Werkzeugset_zQLTx3zmJfnrdmlN.json deleted file mode 100644 index cbf1e54a..00000000 --- a/packs/items/Werkzeugset_zQLTx3zmJfnrdmlN.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "zQLTx3zmJfnrdmlN", - "name": "Werkzeugset", - "type": "loot", - "img": "icons/tools/hand/hammer-and-nail.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 5, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343597, - "modifiedTime": 1740227863031, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zQLTx3zmJfnrdmlN" -} diff --git a/packs/items/Wildh_terharnisch_yocl6DZ7hfOupqqz.json b/packs/items/Wildh_terharnisch_yocl6DZ7hfOupqqz.json deleted file mode 100644 index a1142957..00000000 --- a/packs/items/Wildh_terharnisch_yocl6DZ7hfOupqqz.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "_id": "yocl6DZ7hfOupqqz", - "name": "Wildhüterharnisch", - "type": "armor", - "img": "icons/equipment/chest/breastplate-layered-leather-brown.webp", - "effects": [ - { - "_id": "CUa4rA1A1cwWac46", - "flags": {}, - "changes": [ - { - "key": "system.combatValues.defense.total", - "value": "1", - "mode": 2, - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "origin": null, - "tint": "#ffffff", - "name": "Panzerung +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": null, - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!yocl6DZ7hfOupqqz.CUa4rA1A1cwWac46" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "In diese aus Fellen zusammengenähte Lederrüstung +1 wurde der Zauber @Compendium[ds4.spells.TVsayZ3WkUxyzKbL]{Tierbeherschung} eingebettet.
", - "quantity": 1, - "price": 4714, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343587, - "modifiedTime": 1740227863030, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yocl6DZ7hfOupqqz" -} diff --git a/packs/items/Wolfsmantel_D7MaTfapKAeO5TRs.json b/packs/items/Wolfsmantel_D7MaTfapKAeO5TRs.json deleted file mode 100644 index 7334fdd6..00000000 --- a/packs/items/Wolfsmantel_D7MaTfapKAeO5TRs.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "D7MaTfapKAeO5TRs", - "name": "Wolfsmantel", - "type": "armor", - "img": "icons/equipment/chest/shirt-simple-grey.webp", - "effects": [ - { - "_id": "2IDnDKbImHFAHAu6", - "changes": [ - { - "key": "system.checks.perception", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Bemerken +3", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!D7MaTfapKAeO5TRs.2IDnDKbImHFAHAu6" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese Lederrüstung aus Wolfspelz verleiht ihrem Träger +3 auf sämtliche Bemerken-Proben. Ein ausgenommener Wolfskopf bildet die Kapuze.
", - "quantity": 1, - "price": 1004, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "armorValue": 1, - "armorMaterialType": "leather", - "armorType": "body" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342807, - "modifiedTime": 1740227862977, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!D7MaTfapKAeO5TRs" -} diff --git a/packs/items/Wurfmesser__1_hfxblADLXdGaRMAA.json b/packs/items/Wurfmesser__1_hfxblADLXdGaRMAA.json deleted file mode 100644 index 9ffba544..00000000 --- a/packs/items/Wurfmesser__1_hfxblADLXdGaRMAA.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "hfxblADLXdGaRMAA", - "name": "Wurfmesser +1", - "type": "weapon", - "img": "icons/weapons/thrown/dagger-ringed-steel.webp", - "effects": [ - { - "_id": "c2P4Qt8b6GonPFv7", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +1 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!hfxblADLXdGaRMAA.c2P4Qt8b6GonPFv7" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Distanzmalus -1 pro 2 m
", - "quantity": 1, - "price": 752, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "meleeRanged", - "weaponBonus": 1, - "opponentDefense": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343237, - "modifiedTime": 1740227863016, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!hfxblADLXdGaRMAA" -} diff --git a/packs/items/Wurfmesser__2_eIXRfSsAL5ECi1uq.json b/packs/items/Wurfmesser__2_eIXRfSsAL5ECi1uq.json deleted file mode 100644 index 3add72e1..00000000 --- a/packs/items/Wurfmesser__2_eIXRfSsAL5ECi1uq.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "eIXRfSsAL5ECi1uq", - "name": "Wurfmesser +2", - "type": "weapon", - "img": "icons/weapons/thrown/dagger-ringed-engraved-green.webp", - "effects": [ - { - "_id": "XPV4jbYeNcFVFvZr", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!eIXRfSsAL5ECi1uq.XPV4jbYeNcFVFvZr" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Distanzmalus -1 pro 2 m
", - "quantity": 1, - "price": 1252, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "meleeRanged", - "weaponBonus": 2, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343151, - "modifiedTime": 1740227863012, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eIXRfSsAL5ECi1uq" -} diff --git a/packs/items/Wurfmesser__3_VxyrCBfVdbRD5nj8.json b/packs/items/Wurfmesser__3_VxyrCBfVdbRD5nj8.json deleted file mode 100644 index 23cff801..00000000 --- a/packs/items/Wurfmesser__3_VxyrCBfVdbRD5nj8.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "VxyrCBfVdbRD5nj8", - "name": "Wurfmesser +3", - "type": "weapon", - "img": "icons/weapons/thrown/dagger-ringed-blue.webp", - "effects": [ - { - "_id": "hQfQjfXJhE4yDXQU", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!VxyrCBfVdbRD5nj8.hQfQjfXJhE4yDXQU" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Distanzmalus -1 pro 2 m
", - "quantity": 1, - "price": 1752, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "meleeRanged", - "weaponBonus": 3, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343052, - "modifiedTime": 1740227863003, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VxyrCBfVdbRD5nj8" -} diff --git a/packs/items/Wurfmesser_grAnIWqeXTAIGXmN.json b/packs/items/Wurfmesser_grAnIWqeXTAIGXmN.json deleted file mode 100644 index 78a05bb4..00000000 --- a/packs/items/Wurfmesser_grAnIWqeXTAIGXmN.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "grAnIWqeXTAIGXmN", - "name": "Wurfmesser", - "type": "weapon", - "img": "icons/weapons/thrown/dagger-simple.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Distanzmalus -1 pro 2 m
", - "quantity": 1, - "price": 2, - "availability": "hamlet", - "storageLocation": "-", - "equipped": false, - "attackType": "meleeRanged", - "weaponBonus": 0, - "opponentDefense": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343217, - "modifiedTime": 1740227863015, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!grAnIWqeXTAIGXmN" -} diff --git a/packs/items/Zauberk_cher_0C9YNorSbYM5eyBj.json b/packs/items/Zauberk_cher_0C9YNorSbYM5eyBj.json deleted file mode 100644 index d3800db9..00000000 --- a/packs/items/Zauberk_cher_0C9YNorSbYM5eyBj.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "0C9YNorSbYM5eyBj", - "name": "Zauberköcher", - "type": "equipment", - "img": "icons/containers/ammunition/arrows-quiver-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Jeder Pfeil, der aus diesem Köcher gezogen wird, hat für die Dauer einer Kampfrunde einen magischen Waffenbonus von +1.
", - "quantity": 1, - "price": 750.1, - "availability": "unset", - "storageLocation": "-", - "equipped": false - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342627, - "modifiedTime": 1740227862959, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0C9YNorSbYM5eyBj" -} diff --git a/packs/items/Zaubertrank_LoY2CnEEWfxbvjEt.json b/packs/items/Zaubertrank_LoY2CnEEWfxbvjEt.json deleted file mode 100644 index bc2c013e..00000000 --- a/packs/items/Zaubertrank_LoY2CnEEWfxbvjEt.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "LoY2CnEEWfxbvjEt", - "name": "Zaubertrank", - "type": "loot", - "img": "icons/consumables/potions/bottle-pear-corked-pink.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhöht die Werte von Zaubern und Zielzauber für die Dauer eines Kampfes um +1.
", - "quantity": 1, - "price": 25, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342903, - "modifiedTime": 1740227862986, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!LoY2CnEEWfxbvjEt" -} diff --git a/packs/items/Zauberwechseltrank_uqIQjhDGgbEuHYmd.json b/packs/items/Zauberwechseltrank_uqIQjhDGgbEuHYmd.json deleted file mode 100644 index c2b6e1a8..00000000 --- a/packs/items/Zauberwechseltrank_uqIQjhDGgbEuHYmd.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "uqIQjhDGgbEuHYmd", - "name": "Zauberwechseltrank", - "type": "loot", - "img": "icons/consumables/potions/potion-bottle-corked-blue.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Diese meist blauen Tränke gewähren für die Dauer eines Kampfes +10 auf Zauber wechseln.
", - "quantity": 1, - "price": 10, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343549, - "modifiedTime": 1740227863028, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!uqIQjhDGgbEuHYmd" -} diff --git a/packs/items/Zelt__2_Mann__Van6Sze8TZl8Y88o.json b/packs/items/Zelt__2_Mann__Van6Sze8TZl8Y88o.json deleted file mode 100644 index 25dc2e86..00000000 --- a/packs/items/Zelt__2_Mann__Van6Sze8TZl8Y88o.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "Van6Sze8TZl8Y88o", - "name": "Zelt (2 Mann)", - "type": "loot", - "img": "icons/environment/settlement/tent.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "", - "quantity": 1, - "price": 4, - "availability": "village", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343051, - "modifiedTime": 1740227863002, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Van6Sze8TZl8Y88o" -} diff --git a/packs/items/Zieltrank_zqlc3bq1ZfneLeYx.json b/packs/items/Zieltrank_zqlc3bq1ZfneLeYx.json deleted file mode 100644 index 8bf8e8a1..00000000 --- a/packs/items/Zieltrank_zqlc3bq1ZfneLeYx.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "_id": "zqlc3bq1ZfneLeYx", - "name": "Zieltrank", - "type": "loot", - "img": "icons/consumables/potions/potion-flask-capped-yellow-green.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhöht die Werte von Schießen und Zielzauber für die Dauer eines Kampfes um +1.
", - "quantity": 1, - "price": 25, - "availability": "unset", - "storageLocation": "-" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343618, - "modifiedTime": 1740227863031, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zqlc3bq1ZfneLeYx" -} diff --git a/packs/items/Zornhammer_pQqbXD5ELmjcu4Dd.json b/packs/items/Zornhammer_pQqbXD5ELmjcu4Dd.json deleted file mode 100644 index 41e9affe..00000000 --- a/packs/items/Zornhammer_pQqbXD5ELmjcu4Dd.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "pQqbXD5ELmjcu4Dd", - "name": "Zornhammer", - "type": "weapon", - "img": "icons/weapons/hammers/hammer-double-steel-embossed.webp", - "effects": [ - { - "_id": "dcGiLPK2AIDA7NHH", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "-4", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative -4", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!pQqbXD5ELmjcu4Dd.dcGiLPK2AIDA7NHH" - }, - { - "_id": "RWRk7pwQf2vs1Aqv", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!pQqbXD5ELmjcu4Dd.RWRk7pwQf2vs1Aqv" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein schwerer, schlichter Streithammer +3, der einst einem Zwergenhelden gehörte.
\nZweihändig, Initiative -4
", - "quantity": 1, - "price": 3256, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 6, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343452, - "modifiedTime": 1740227863022, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pQqbXD5ELmjcu4Dd" -} diff --git a/packs/items/Zwergenaxt_0f8ivq3Mveb3s3Fs.json b/packs/items/Zwergenaxt_0f8ivq3Mveb3s3Fs.json deleted file mode 100644 index 41005045..00000000 --- a/packs/items/Zwergenaxt_0f8ivq3Mveb3s3Fs.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "0f8ivq3Mveb3s3Fs", - "name": "Zwergenaxt", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-engraved.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -1
", - "quantity": 1, - "price": 60, - "availability": "dwarves", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 3, - "opponentDefense": -2 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342638, - "modifiedTime": 1740227862961, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0f8ivq3Mveb3s3Fs" -} diff --git a/packs/items/Zwergenaxt__1_JZkzRagRS8TKZplw.json b/packs/items/Zwergenaxt__1_JZkzRagRS8TKZplw.json deleted file mode 100644 index 4fa73634..00000000 --- a/packs/items/Zwergenaxt__1_JZkzRagRS8TKZplw.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "_id": "JZkzRagRS8TKZplw", - "name": "Zwergenaxt +1", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-engraved-runes.webp", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -1
", - "quantity": 1, - "price": 2310, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 4, - "opponentDefense": -3 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342881, - "modifiedTime": 1740227862984, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JZkzRagRS8TKZplw" -} diff --git a/packs/items/Zwergenaxt__2_NHV9ho8tGutv0mrS.json b/packs/items/Zwergenaxt__2_NHV9ho8tGutv0mrS.json deleted file mode 100644 index a2a19f0a..00000000 --- a/packs/items/Zwergenaxt__2_NHV9ho8tGutv0mrS.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "_id": "NHV9ho8tGutv0mrS", - "name": "Zwergenaxt +2", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-engraved-black.webp", - "effects": [ - { - "_id": "WsibIQWwcjabH8QS", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!NHV9ho8tGutv0mrS.WsibIQWwcjabH8QS" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -1
", - "quantity": 1, - "price": 2810, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 5, - "opponentDefense": -4 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342910, - "modifiedTime": 1740227862987, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NHV9ho8tGutv0mrS" -} diff --git a/packs/items/Zwergenaxt__3_Tu0Mf3Qib68wxpRs.json b/packs/items/Zwergenaxt__3_Tu0Mf3Qib68wxpRs.json deleted file mode 100644 index 022024a6..00000000 --- a/packs/items/Zwergenaxt__3_Tu0Mf3Qib68wxpRs.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "_id": "Tu0Mf3Qib68wxpRs", - "name": "Zwergenaxt +3", - "type": "weapon", - "img": "icons/weapons/axes/axe-double-engraved-blue.webp", - "effects": [ - { - "_id": "Ytio5tOcCUO91MQ0", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Tu0Mf3Qib68wxpRs.Ytio5tOcCUO91MQ0" - }, - { - "_id": "ulhp9EsUM5Tf0iCd", - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "disabled": false, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +3 (magisch)", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Tu0Mf3Qib68wxpRs.ulhp9EsUM5Tf0iCd" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Zweihändig, Initiative -1
", - "quantity": 1, - "price": 3310, - "availability": "unset", - "storageLocation": "-", - "equipped": false, - "attackType": "melee", - "weaponBonus": 6, - "opponentDefense": -5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995343020, - "modifiedTime": 1740227863000, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Tu0Mf3Qib68wxpRs" -} diff --git a/packs/languages-and-scripts/Ahnenrunen_ylqXcZHRbIBeV20Z.json b/packs/languages-and-scripts/Ahnenrunen_ylqXcZHRbIBeV20Z.json deleted file mode 100644 index 9a54125e..00000000 --- a/packs/languages-and-scripts/Ahnenrunen_ylqXcZHRbIBeV20Z.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "ylqXcZHRbIBeV20Z", - "name": "Ahnenrunen", - "type": "alphabet", - "img": "icons/svg/book.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342375, - "modifiedTime": 1740227862520, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ylqXcZHRbIBeV20Z" -} diff --git a/packs/languages-and-scripts/Elfisch_xpvHuSywc8lJa2UN.json b/packs/languages-and-scripts/Elfisch_xpvHuSywc8lJa2UN.json deleted file mode 100644 index 15ed6282..00000000 --- a/packs/languages-and-scripts/Elfisch_xpvHuSywc8lJa2UN.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "xpvHuSywc8lJa2UN", - "name": "Elfisch", - "type": "language", - "img": "systems/ds4/assets/icons/game-icons/lorc/conversation.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342367, - "modifiedTime": 1740227862519, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!xpvHuSywc8lJa2UN" -} diff --git a/packs/languages-and-scripts/Freiwort_GQNpFENXcjJGeYr2.json b/packs/languages-and-scripts/Freiwort_GQNpFENXcjJGeYr2.json deleted file mode 100644 index fac4866d..00000000 --- a/packs/languages-and-scripts/Freiwort_GQNpFENXcjJGeYr2.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "GQNpFENXcjJGeYr2", - "name": "Freiwort", - "type": "language", - "img": "systems/ds4/assets/icons/game-icons/lorc/conversation.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Freiwort ist die Gemeinsprache der Freien Lande.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342358, - "modifiedTime": 1740227862518, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GQNpFENXcjJGeYr2" -} diff --git a/packs/languages-and-scripts/Gormanische_Schrift_4KbbQeTvvJC7iNrI.json b/packs/languages-and-scripts/Gormanische_Schrift_4KbbQeTvvJC7iNrI.json deleted file mode 100644 index 73a9e9dd..00000000 --- a/packs/languages-and-scripts/Gormanische_Schrift_4KbbQeTvvJC7iNrI.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "4KbbQeTvvJC7iNrI", - "name": "Gormanische Schrift", - "type": "alphabet", - "img": "icons/svg/book.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342357, - "modifiedTime": 1740227862517, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!4KbbQeTvvJC7iNrI" -} diff --git a/packs/languages-and-scripts/Kaitanisch_n6KU1XIzbPWups0D.json b/packs/languages-and-scripts/Kaitanisch_n6KU1XIzbPWups0D.json deleted file mode 100644 index 62f21cf1..00000000 --- a/packs/languages-and-scripts/Kaitanisch_n6KU1XIzbPWups0D.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "n6KU1XIzbPWups0D", - "name": "Kaitanisch", - "type": "language", - "img": "systems/ds4/assets/icons/game-icons/lorc/conversation.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342365, - "modifiedTime": 1740227862519, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!n6KU1XIzbPWups0D" -} diff --git a/packs/languages-and-scripts/Kaitanische_Schrift_k8FSxBda9CoLOJqZ.json b/packs/languages-and-scripts/Kaitanische_Schrift_k8FSxBda9CoLOJqZ.json deleted file mode 100644 index 70f01531..00000000 --- a/packs/languages-and-scripts/Kaitanische_Schrift_k8FSxBda9CoLOJqZ.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "k8FSxBda9CoLOJqZ", - "name": "Kaitanische Schrift", - "type": "alphabet", - "img": "icons/svg/book.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342362, - "modifiedTime": 1740227862519, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!k8FSxBda9CoLOJqZ" -} diff --git a/packs/languages-and-scripts/Keilschrift_n2Nbg0ttFzcMxp7T.json b/packs/languages-and-scripts/Keilschrift_n2Nbg0ttFzcMxp7T.json deleted file mode 100644 index 7c740370..00000000 --- a/packs/languages-and-scripts/Keilschrift_n2Nbg0ttFzcMxp7T.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "n2Nbg0ttFzcMxp7T", - "name": "Keilschrift", - "type": "alphabet", - "img": "icons/svg/book.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342364, - "modifiedTime": 1740227862519, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!n2Nbg0ttFzcMxp7T" -} diff --git a/packs/languages-and-scripts/Ornamentschrift_josgKzD9UmDOvTup.json b/packs/languages-and-scripts/Ornamentschrift_josgKzD9UmDOvTup.json deleted file mode 100644 index 0d71fd5d..00000000 --- a/packs/languages-and-scripts/Ornamentschrift_josgKzD9UmDOvTup.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "josgKzD9UmDOvTup", - "name": "Ornamentschrift", - "type": "alphabet", - "img": "icons/svg/book.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342361, - "modifiedTime": 1740227862518, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!josgKzD9UmDOvTup" -} diff --git a/packs/languages-and-scripts/Zasarisch_usEWD48iYnMHO3Ty.json b/packs/languages-and-scripts/Zasarisch_usEWD48iYnMHO3Ty.json deleted file mode 100644 index 7b143fa7..00000000 --- a/packs/languages-and-scripts/Zasarisch_usEWD48iYnMHO3Ty.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "usEWD48iYnMHO3Ty", - "name": "Zasarisch", - "type": "language", - "img": "systems/ds4/assets/icons/game-icons/lorc/conversation.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342366, - "modifiedTime": 1740227862519, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!usEWD48iYnMHO3Ty" -} diff --git a/packs/languages-and-scripts/Zasarische_Schrift_O1U9jd0yJoydHwT8.json b/packs/languages-and-scripts/Zasarische_Schrift_O1U9jd0yJoydHwT8.json deleted file mode 100644 index 85208c54..00000000 --- a/packs/languages-and-scripts/Zasarische_Schrift_O1U9jd0yJoydHwT8.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "O1U9jd0yJoydHwT8", - "name": "Zasarische Schrift", - "type": "alphabet", - "img": "icons/svg/book.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342359, - "modifiedTime": 1740227862518, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!O1U9jd0yJoydHwT8" -} diff --git a/packs/languages-and-scripts/Zwergisch_PzkVTViII6ungWyp.json b/packs/languages-and-scripts/Zwergisch_PzkVTViII6ungWyp.json deleted file mode 100644 index 6bc41058..00000000 --- a/packs/languages-and-scripts/Zwergisch_PzkVTViII6ungWyp.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "PzkVTViII6ungWyp", - "name": "Zwergisch", - "type": "language", - "img": "systems/ds4/assets/icons/game-icons/lorc/conversation.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342360, - "modifiedTime": 1740227862518, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!PzkVTViII6ungWyp" -} diff --git a/packs/racial-abilities/Allergie_gegen_Metall_sXqjA4m3AsWmMo3a.json b/packs/racial-abilities/Allergie_gegen_Metall_sXqjA4m3AsWmMo3a.json deleted file mode 100644 index 07f43f43..00000000 --- a/packs/racial-abilities/Allergie_gegen_Metall_sXqjA4m3AsWmMo3a.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "sXqjA4m3AsWmMo3a", - "name": "Allergie gegen Metall", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes können kein Metall nutzen (auch keine Waffen und Rüstungen aus Metall) und erhalten auf Abwehr -1 bei Schaden durch Metallwaffen.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349157, - "modifiedTime": 1740227862619, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sXqjA4m3AsWmMo3a" -} diff --git a/packs/racial-abilities/Arrogant_Fo1LiBcGi9BoHJ9v.json b/packs/racial-abilities/Arrogant_Fo1LiBcGi9BoHJ9v.json deleted file mode 100644 index 4971f29c..00000000 --- a/packs/racial-abilities/Arrogant_Fo1LiBcGi9BoHJ9v.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "Fo1LiBcGi9BoHJ9v", - "name": "Arrogant", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes wirken arrogant und nehmen nur ungern Hilfe von anderen an, so auch Heilmagie nur im aller größten Notfall.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349083, - "modifiedTime": 1740227862614, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Fo1LiBcGi9BoHJ9v" -} diff --git a/packs/racial-abilities/Dunkelsicht_VTBlOswerHKLvjqI.json b/packs/racial-abilities/Dunkelsicht_VTBlOswerHKLvjqI.json deleted file mode 100644 index 73c07b8a..00000000 --- a/packs/racial-abilities/Dunkelsicht_VTBlOswerHKLvjqI.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "VTBlOswerHKLvjqI", - "name": "Dunkelsicht", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes erhalten die Volksfähigkeit Dunkelsicht (DS4 S. 83).
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349127, - "modifiedTime": 1740227862615, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VTBlOswerHKLvjqI" -} diff --git a/packs/racial-abilities/Ein_ugig_nwABE3AeAUHbKd7U.json b/packs/racial-abilities/Ein_ugig_nwABE3AeAUHbKd7U.json deleted file mode 100644 index 8c1e47d2..00000000 --- a/packs/racial-abilities/Ein_ugig_nwABE3AeAUHbKd7U.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "_id": "nwABE3AeAUHbKd7U", - "name": "Einäugig", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "JOqcrV2Ns68t0SaO", - "changes": [ - { - "key": "system.combatValues.rangedAttack.total", - "mode": 2, - "value": "-1", - "priority": null - }, - { - "key": "system.combatValues.targetedSpellcasting.total", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Schießen, Zielzaubern -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!nwABE3AeAUHbKd7U.JOqcrV2Ns68t0SaO" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Volk erhält -1 auf Schießen und Zielzauber.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349152, - "modifiedTime": 1740227862617, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!nwABE3AeAUHbKd7U" -} diff --git a/packs/racial-abilities/Fragil_b4vuLR8nbyFtCUT6.json b/packs/racial-abilities/Fragil_b4vuLR8nbyFtCUT6.json deleted file mode 100644 index 1c4083a3..00000000 --- a/packs/racial-abilities/Fragil_b4vuLR8nbyFtCUT6.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "b4vuLR8nbyFtCUT6", - "name": "Fragil", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "Y9VbkphCkoVaRMjL", - "changes": [ - { - "key": "", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Abwehr -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!b4vuLR8nbyFtCUT6.Y9VbkphCkoVaRMjL" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses zartbesaitete Volk erhält -1 auf Abwehr.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349138, - "modifiedTime": 1740227862616, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!b4vuLR8nbyFtCUT6" -} diff --git a/packs/racial-abilities/Geschwind_cgWu5Mfd37oJ1Jw3.json b/packs/racial-abilities/Geschwind_cgWu5Mfd37oJ1Jw3.json deleted file mode 100644 index e3431932..00000000 --- a/packs/racial-abilities/Geschwind_cgWu5Mfd37oJ1Jw3.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "cgWu5Mfd37oJ1Jw3", - "name": "Geschwind", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "KFyXovHEQ71WxiR6", - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!cgWu5Mfd37oJ1Jw3.KFyXovHEQ71WxiR6" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Volk erhält +2 auf Initiative.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349140, - "modifiedTime": 1740227862616, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!cgWu5Mfd37oJ1Jw3" -} diff --git a/packs/racial-abilities/Goldgier_KmcfnDcxyFRRelRh.json b/packs/racial-abilities/Goldgier_KmcfnDcxyFRRelRh.json deleted file mode 100644 index 0142e17c..00000000 --- a/packs/racial-abilities/Goldgier_KmcfnDcxyFRRelRh.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "KmcfnDcxyFRRelRh", - "name": "Goldgier", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Immer wenn ein Mitglied dieses Volkes etwas Wertvolles bemerkt, muss es GEI+VE+4 schaffen, oder es will es unbedingt besitzen.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349091, - "modifiedTime": 1740227862614, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KmcfnDcxyFRRelRh" -} diff --git a/packs/racial-abilities/Gro__ewWlk1Ud6dFVZD2u.json b/packs/racial-abilities/Gro__ewWlk1Ud6dFVZD2u.json deleted file mode 100644 index f6b3038b..00000000 --- a/packs/racial-abilities/Gro__ewWlk1Ud6dFVZD2u.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ewWlk1Ud6dFVZD2u", - "name": "Groß", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "D8cY12yVEAaNX52B", - "changes": [ - { - "key": "system.combatValues.hitPoints.total", - "mode": 1, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Lebenskraft x 2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ewWlk1Ud6dFVZD2u.D8cY12yVEAaNX52B" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Lebenskraft x 2, aber auch leichter zu treffen (DS4 S. 44).
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349143, - "modifiedTime": 1740227862616, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ewWlk1Ud6dFVZD2u" -} diff --git a/packs/racial-abilities/Klein_3RX84f54FUuk20jo.json b/packs/racial-abilities/Klein_3RX84f54FUuk20jo.json deleted file mode 100644 index bde79f6f..00000000 --- a/packs/racial-abilities/Klein_3RX84f54FUuk20jo.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "3RX84f54FUuk20jo", - "name": "Klein", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "krC2HXyXBfo2AZsy", - "changes": [ - { - "key": "system.combatValues.hitPoints.total", - "mode": 1, - "value": "0.5", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Lebenskraft / 2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!3RX84f54FUuk20jo.krC2HXyXBfo2AZsy" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Lebenskraft halbiert, aber auch schwerer zu treffen (DS4 S. 44). Waffen sind zu groß, ein Kurzschwert wird zur Zweihandwaffe.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349016, - "modifiedTime": 1740227862612, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!3RX84f54FUuk20jo" -} diff --git a/packs/racial-abilities/Langlebig_Uui9ofMtBTX4v0Yj.json b/packs/racial-abilities/Langlebig_Uui9ofMtBTX4v0Yj.json deleted file mode 100644 index 8eb9c737..00000000 --- a/packs/racial-abilities/Langlebig_Uui9ofMtBTX4v0Yj.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "Uui9ofMtBTX4v0Yj", - "name": "Langlebig", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes altern nur noch langsam, sobald sie erwachsen sind.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349105, - "modifiedTime": 1740227862615, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Uui9ofMtBTX4v0Yj" -} diff --git a/packs/racial-abilities/Langsam_xWClnNIkOvDLasgl.json b/packs/racial-abilities/Langsam_xWClnNIkOvDLasgl.json deleted file mode 100644 index 07fa61b3..00000000 --- a/packs/racial-abilities/Langsam_xWClnNIkOvDLasgl.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "xWClnNIkOvDLasgl", - "name": "Langsam", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "sSCcqM8OaPaP6kW2", - "changes": [ - { - "key": "system.combatValues.movement.total", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Laufen -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!xWClnNIkOvDLasgl.sSCcqM8OaPaP6kW2" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Vertreter dieses Volkes sind langsam und erhalten -1 auf Laufen.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349159, - "modifiedTime": 1740227862619, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!xWClnNIkOvDLasgl" -} diff --git a/packs/racial-abilities/Leichtf__ig_x35PNIYq3FCKIYCA.json b/packs/racial-abilities/Leichtf__ig_x35PNIYq3FCKIYCA.json deleted file mode 100644 index 6eab3568..00000000 --- a/packs/racial-abilities/Leichtf__ig_x35PNIYq3FCKIYCA.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "x35PNIYq3FCKIYCA", - "name": "Leichtfüßig", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "S4I2jS5RdAoAHLAL", - "changes": [ - { - "key": "system.checks.sneak", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Schleichen +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!x35PNIYq3FCKIYCA.S4I2jS5RdAoAHLAL" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Volk erhält bei Schleichen und ähnlichen Proben einen Bonus von +1.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349158, - "modifiedTime": 1740227862619, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!x35PNIYq3FCKIYCA" -} diff --git a/packs/racial-abilities/Magieresistent_hPT9Q5DG9YFK1NTB.json b/packs/racial-abilities/Magieresistent_hPT9Q5DG9YFK1NTB.json deleted file mode 100644 index 7f627886..00000000 --- a/packs/racial-abilities/Magieresistent_hPT9Q5DG9YFK1NTB.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "hPT9Q5DG9YFK1NTB", - "name": "Magieresistent", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes sind weniger betroffen durch Zauber und Magie. Sämtliche magischen Auswirkungen (Schaden, aber auch Heilung, Trankeffekte oder die Zauberdauer u.ä.) werden bei ihnen halbiert, außer erlittener Elementarschaden.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349149, - "modifiedTime": 1740227862617, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!hPT9Q5DG9YFK1NTB" -} diff --git a/packs/racial-abilities/Magisch_begabt_sFgC2eZxZIvii9OP.json b/packs/racial-abilities/Magisch_begabt_sFgC2eZxZIvii9OP.json deleted file mode 100644 index ea681252..00000000 --- a/packs/racial-abilities/Magisch_begabt_sFgC2eZxZIvii9OP.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "sFgC2eZxZIvii9OP", - "name": "Magisch begabt", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "QxBn4JAl9dmgj5xH", - "changes": [ - { - "key": "system.combatValues.spellcasting.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Zaubern +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!sFgC2eZxZIvii9OP.QxBn4JAl9dmgj5xH" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes sind von der Magie berührt – es fällt ihnen unheimlich leicht, Zauber zu verstehen und zu wirken. Sie erhalten +1 auf Zaubern.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349156, - "modifiedTime": 1740227862618, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sFgC2eZxZIvii9OP" -} diff --git a/packs/racial-abilities/Magisch_unbegabt_FnyDr2OhywiARDPl.json b/packs/racial-abilities/Magisch_unbegabt_FnyDr2OhywiARDPl.json deleted file mode 100644 index 4abb5be0..00000000 --- a/packs/racial-abilities/Magisch_unbegabt_FnyDr2OhywiARDPl.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "FnyDr2OhywiARDPl", - "name": "Magisch unbegabt", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes können überhaupt nicht zaubern.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349053, - "modifiedTime": 1740227862614, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FnyDr2OhywiARDPl" -} diff --git a/packs/racial-abilities/Nachtsicht_jv1fgwHuCG6I8vMa.json b/packs/racial-abilities/Nachtsicht_jv1fgwHuCG6I8vMa.json deleted file mode 100644 index 2a2cb855..00000000 --- a/packs/racial-abilities/Nachtsicht_jv1fgwHuCG6I8vMa.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "jv1fgwHuCG6I8vMa", - "name": "Nachtsicht", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes erhalten die Volksfähigkeit Nachtsicht (DS4 S. 83).
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349151, - "modifiedTime": 1740227862617, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!jv1fgwHuCG6I8vMa" -} diff --git a/packs/racial-abilities/Schnell_qC9HBqm6nPRFg62e.json b/packs/racial-abilities/Schnell_qC9HBqm6nPRFg62e.json deleted file mode 100644 index 74bcbfd7..00000000 --- a/packs/racial-abilities/Schnell_qC9HBqm6nPRFg62e.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "qC9HBqm6nPRFg62e", - "name": "Schnell", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "jXtkQik1kgzTNeDC", - "changes": [ - { - "key": "system.combatValues.movement.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Laufen +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!qC9HBqm6nPRFg62e.jXtkQik1kgzTNeDC" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses flinke Volk erhält +1 auf Laufen.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349154, - "modifiedTime": 1740227862618, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!qC9HBqm6nPRFg62e" -} diff --git a/packs/racial-abilities/Talentiert_gIacfUxo5FToVbux.json b/packs/racial-abilities/Talentiert_gIacfUxo5FToVbux.json deleted file mode 100644 index 5ce85514..00000000 --- a/packs/racial-abilities/Talentiert_gIacfUxo5FToVbux.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "gIacfUxo5FToVbux", - "name": "Talentiert", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes erhalten einen zusätzlichen Talentpunkt bei der Charaktererschaffung.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349146, - "modifiedTime": 1740227862617, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gIacfUxo5FToVbux" -} diff --git a/packs/racial-abilities/Tollpatschig_43nqAxNU6hpBtMiY.json b/packs/racial-abilities/Tollpatschig_43nqAxNU6hpBtMiY.json deleted file mode 100644 index 91703606..00000000 --- a/packs/racial-abilities/Tollpatschig_43nqAxNU6hpBtMiY.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "_id": "43nqAxNU6hpBtMiY", - "name": "Tollpatschig", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "RSs2hV25q3KJkFmg", - "changes": [ - { - "key": "system.combatValues.rangedAttack.total", - "mode": 2, - "value": "-4", - "priority": null - }, - { - "key": "system.checks.climb", - "mode": 2, - "value": "-4", - "priority": null - }, - { - "key": "system.checks.hide", - "mode": 2, - "value": "-4", - "priority": null - }, - { - "key": "system.checks.jump", - "mode": 2, - "value": "-4", - "priority": null - }, - { - "key": "system.checks.pickPocket", - "mode": 2, - "value": "-4", - "priority": null - }, - { - "key": "system.checks.ride", - "mode": 2, - "value": "-4", - "priority": null - }, - { - "key": "system.checks.sneak", - "mode": 2, - "value": "-4", - "priority": null - }, - { - "key": "system.checks.swim", - "mode": 2, - "value": "-4", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Proben mit Agilität -4", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!43nqAxNU6hpBtMiY.RSs2hV25q3KJkFmg" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Tollpatschige Völker sind sehr ungeschickt und grobmotorisch – sie erhalten auf alle Proben mit Agilität einen Malus von -4.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349022, - "modifiedTime": 1740227862612, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!43nqAxNU6hpBtMiY" -} diff --git a/packs/racial-abilities/Ungepflegt_yUyyyPRE3LvUUIGI.json b/packs/racial-abilities/Ungepflegt_yUyyyPRE3LvUUIGI.json deleted file mode 100644 index 3ff51881..00000000 --- a/packs/racial-abilities/Ungepflegt_yUyyyPRE3LvUUIGI.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "yUyyyPRE3LvUUIGI", - "name": "Ungepflegt", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes erhalten auf alle Proben sozialer Interaktion mit Vertretern anderer Völker einen Malus von -2.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349161, - "modifiedTime": 1740227862620, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yUyyyPRE3LvUUIGI" -} diff --git a/packs/racial-abilities/Unsterblich_QIjVVVMR4PcO2NZc.json b/packs/racial-abilities/Unsterblich_QIjVVVMR4PcO2NZc.json deleted file mode 100644 index 77056151..00000000 --- a/packs/racial-abilities/Unsterblich_QIjVVVMR4PcO2NZc.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "QIjVVVMR4PcO2NZc", - "name": "Unsterblich", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes altern, nachdem sie erwachsen sind, nicht wie Normalsterbliche. Das Alter rafft sie nicht dahin, sie sterben nur durch Gewalt oder aus Lebensüberdruß.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349099, - "modifiedTime": 1740227862614, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QIjVVVMR4PcO2NZc" -} diff --git a/packs/racial-abilities/Untalentiert_5hd2Tk6MzudSxM2M.json b/packs/racial-abilities/Untalentiert_5hd2Tk6MzudSxM2M.json deleted file mode 100644 index 8271528b..00000000 --- a/packs/racial-abilities/Untalentiert_5hd2Tk6MzudSxM2M.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "5hd2Tk6MzudSxM2M", - "name": "Untalentiert", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der erste Rang eines Talentes kostet dieses Volk jeweils einen Talentpunkt mehr.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349037, - "modifiedTime": 1740227862613, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5hd2Tk6MzudSxM2M" -} diff --git a/packs/racial-abilities/Verabscheuungsw_rdig_YV9KiRebanh28Jk2.json b/packs/racial-abilities/Verabscheuungsw_rdig_YV9KiRebanh28Jk2.json deleted file mode 100644 index 433b5e3a..00000000 --- a/packs/racial-abilities/Verabscheuungsw_rdig_YV9KiRebanh28Jk2.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "_id": "YV9KiRebanh28Jk2", - "name": "Verabscheuungswürdig", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes werden von anderen Völkern verabscheut und gemieden. Sie verkaufen Waren nur zögerlich oder gegen extremen Aufpreis an dieses Volk. Ausrüstung und andere Dienstleistungen kosten das Doppelte.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349134, - "modifiedTime": 1740227862615, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!YV9KiRebanh28Jk2" -} diff --git a/packs/racial-abilities/Z_h_8RPj5bUguaxQ6RLK.json b/packs/racial-abilities/Z_h_8RPj5bUguaxQ6RLK.json deleted file mode 100644 index ef60c834..00000000 --- a/packs/racial-abilities/Z_h_8RPj5bUguaxQ6RLK.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "8RPj5bUguaxQ6RLK", - "name": "Zäh", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "tP2fgQrHbvuZT4eM", - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Abwehr +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!8RPj5bUguaxQ6RLK.tP2fgQrHbvuZT4eM" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes erhalten einen Bonus von +1 auf Abwehr.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349043, - "modifiedTime": 1740227862613, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8RPj5bUguaxQ6RLK" -} diff --git a/packs/racial-abilities/Z_her_als_sie_aussehen_Du32O8lxUjCTchh4.json b/packs/racial-abilities/Z_her_als_sie_aussehen_Du32O8lxUjCTchh4.json deleted file mode 100644 index 0551f4eb..00000000 --- a/packs/racial-abilities/Z_her_als_sie_aussehen_Du32O8lxUjCTchh4.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "Du32O8lxUjCTchh4", - "name": "Zäher als sie aussehen", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "rTPqUWomhHvmzLbv", - "changes": [ - { - "key": "system.combatValues.hitPoints.total", - "mode": 1, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Lebenskraft x 2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Du32O8lxUjCTchh4.rTPqUWomhHvmzLbv" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder eines kleinen Volkes können den LK-Malus auf Grund ihrer Größe mit dieser Volksfähigkeit ignorieren.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349048, - "modifiedTime": 1740227862613, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Du32O8lxUjCTchh4" -} diff --git a/packs/racial-abilities/Zielsicher_V5S2BMm7vWJiD2hD.json b/packs/racial-abilities/Zielsicher_V5S2BMm7vWJiD2hD.json deleted file mode 100644 index bdb38a6b..00000000 --- a/packs/racial-abilities/Zielsicher_V5S2BMm7vWJiD2hD.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "_id": "V5S2BMm7vWJiD2hD", - "name": "Zielsicher", - "type": "racialAbility", - "img": "icons/svg/aura.svg", - "effects": [ - { - "_id": "YxpZ3gaKzgnl1T7S", - "changes": [ - { - "key": "system.combatValues.rangedAttack.total", - "mode": 2, - "value": "1", - "priority": null - }, - { - "key": "system.combatValues.targetedSpellcasting.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "Schießen, Zielzaubern +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!V5S2BMm7vWJiD2hD.YxpZ3gaKzgnl1T7S" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mitglieder dieses Volkes erhalten einen Bonus von +1 auf Fernkampf und Zielzauber.
" - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349115, - "modifiedTime": 1740227862615, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!V5S2BMm7vWJiD2hD" -} diff --git a/packs/special-creature-abilities/Alterung__1_Jahr_pro_Schadenspunkt__mVs6A48mWnfV9hcL.json b/packs/special-creature-abilities/Alterung__1_Jahr_pro_Schadenspunkt__mVs6A48mWnfV9hcL.json deleted file mode 100644 index 17cd9d67..00000000 --- a/packs/special-creature-abilities/Alterung__1_Jahr_pro_Schadenspunkt__mVs6A48mWnfV9hcL.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "mVs6A48mWnfV9hcL", - "name": "Alterung (1 Jahr pro Schadenspunkt)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/aging.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei einem Treffer altert das Ziel pro erlittenen Schadenspunkt um 1 Jahr.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342120, - "modifiedTime": 1740227862512, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!mVs6A48mWnfV9hcL" -} diff --git a/packs/special-creature-abilities/Alterung__1_Jahr_pro_Treffer__e9F812racwKeZPgR.json b/packs/special-creature-abilities/Alterung__1_Jahr_pro_Treffer__e9F812racwKeZPgR.json deleted file mode 100644 index 9be8e53e..00000000 --- a/packs/special-creature-abilities/Alterung__1_Jahr_pro_Treffer__e9F812racwKeZPgR.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "e9F812racwKeZPgR", - "name": "Alterung (1 Jahr pro Treffer)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/aging.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei einem Treffer altert das Ziel um 1 Jahr.
", - "experiencePoints": 1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342096, - "modifiedTime": 1740227862511, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!e9F812racwKeZPgR" -} diff --git a/packs/special-creature-abilities/Anf_llig__Erde__mAWyVCfTFH6JiEIu.json b/packs/special-creature-abilities/Anf_llig__Erde__mAWyVCfTFH6JiEIu.json deleted file mode 100644 index c8bb97a5..00000000 --- a/packs/special-creature-abilities/Anf_llig__Erde__mAWyVCfTFH6JiEIu.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "mAWyVCfTFH6JiEIu", - "name": "Anfällig (Erde)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhält doppelten Schaden durch Erd-, Fels- und Steinangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342118, - "modifiedTime": 1740227862512, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!mAWyVCfTFH6JiEIu" -} diff --git a/packs/special-creature-abilities/Anf_llig__Feuer__XhAfEVVoSADC880C.json b/packs/special-creature-abilities/Anf_llig__Feuer__XhAfEVVoSADC880C.json deleted file mode 100644 index c2d5c8ee..00000000 --- a/packs/special-creature-abilities/Anf_llig__Feuer__XhAfEVVoSADC880C.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "XhAfEVVoSADC880C", - "name": "Anfällig (Feuer)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhält doppelten Schaden durch Feuerangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342080, - "modifiedTime": 1740227862510, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!XhAfEVVoSADC880C" -} diff --git a/packs/special-creature-abilities/Anf_llig__Licht__aOsmsf7jIK7hU9U8.json b/packs/special-creature-abilities/Anf_llig__Licht__aOsmsf7jIK7hU9U8.json deleted file mode 100644 index 0d87f4ba..00000000 --- a/packs/special-creature-abilities/Anf_llig__Licht__aOsmsf7jIK7hU9U8.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "aOsmsf7jIK7hU9U8", - "name": "Anfällig (Licht)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhält doppelten Schaden durch Lichtangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342088, - "modifiedTime": 1740227862510, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!aOsmsf7jIK7hU9U8" -} diff --git a/packs/special-creature-abilities/Anf_llig__Luft__ImVvi7XqDvf6D2vY.json b/packs/special-creature-abilities/Anf_llig__Luft__ImVvi7XqDvf6D2vY.json deleted file mode 100644 index a967a1b0..00000000 --- a/packs/special-creature-abilities/Anf_llig__Luft__ImVvi7XqDvf6D2vY.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "ImVvi7XqDvf6D2vY", - "name": "Anfällig (Luft)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhält doppelten Schaden durch Blitz-, Sturm- und Windangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342055, - "modifiedTime": 1740227862507, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ImVvi7XqDvf6D2vY" -} diff --git a/packs/special-creature-abilities/Anf_llig__Wasser__E5WqX3Em2HOAkP2e.json b/packs/special-creature-abilities/Anf_llig__Wasser__E5WqX3Em2HOAkP2e.json deleted file mode 100644 index 009127d8..00000000 --- a/packs/special-creature-abilities/Anf_llig__Wasser__E5WqX3Em2HOAkP2e.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "E5WqX3Em2HOAkP2e", - "name": "Anfällig (Wasser)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/susceptible.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhält doppelten Schaden durch Eis-, Frost- und Wasserangriffe.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342040, - "modifiedTime": 1740227862506, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!E5WqX3Em2HOAkP2e" -} diff --git a/packs/special-creature-abilities/Angst__1__rUA7XVCeDkREYfi8.json b/packs/special-creature-abilities/Angst__1__rUA7XVCeDkREYfi8.json deleted file mode 100644 index b7c060b6..00000000 --- a/packs/special-creature-abilities/Angst__1__rUA7XVCeDkREYfi8.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "rUA7XVCeDkREYfi8", - "name": "Angst (1)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342142, - "modifiedTime": 1740227862514, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!rUA7XVCeDkREYfi8" -} diff --git a/packs/special-creature-abilities/Angst__2__3LGUHTPC3tbVC13X.json b/packs/special-creature-abilities/Angst__2__3LGUHTPC3tbVC13X.json deleted file mode 100644 index 28ae9ba7..00000000 --- a/packs/special-creature-abilities/Angst__2__3LGUHTPC3tbVC13X.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "3LGUHTPC3tbVC13X", - "name": "Angst (2)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -2 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 20 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342010, - "modifiedTime": 1740227862504, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!3LGUHTPC3tbVC13X" -} diff --git a/packs/special-creature-abilities/Angst__3__blDuh7uVVhaNSUVU.json b/packs/special-creature-abilities/Angst__3__blDuh7uVVhaNSUVU.json deleted file mode 100644 index 3997a6e0..00000000 --- a/packs/special-creature-abilities/Angst__3__blDuh7uVVhaNSUVU.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "blDuh7uVVhaNSUVU", - "name": "Angst (3)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -3 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 30 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342090, - "modifiedTime": 1740227862510, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!blDuh7uVVhaNSUVU" -} diff --git a/packs/special-creature-abilities/Angst__4__Dt7AvP3fUbOQB4Yn.json b/packs/special-creature-abilities/Angst__4__Dt7AvP3fUbOQB4Yn.json deleted file mode 100644 index 3c889c94..00000000 --- a/packs/special-creature-abilities/Angst__4__Dt7AvP3fUbOQB4Yn.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "Dt7AvP3fUbOQB4Yn", - "name": "Angst (4)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -4 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 40 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342037, - "modifiedTime": 1740227862506, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Dt7AvP3fUbOQB4Yn" -} diff --git a/packs/special-creature-abilities/Angst__5__X3UfX2rmUKDUXmrC.json b/packs/special-creature-abilities/Angst__5__X3UfX2rmUKDUXmrC.json deleted file mode 100644 index 49a3b726..00000000 --- a/packs/special-creature-abilities/Angst__5__X3UfX2rmUKDUXmrC.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "X3UfX2rmUKDUXmrC", - "name": "Angst (5)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/fear.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingeschüchert und erhält bis zum Ende des Kampfes -5 auf alle Proben. Bei einem Patzer ergreift man die Flucht.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342074, - "modifiedTime": 1740227862509, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!X3UfX2rmUKDUXmrC" -} diff --git a/packs/special-creature-abilities/Antimagie__10_Meter__oUR6JglLxmJZduZz.json b/packs/special-creature-abilities/Antimagie__10_Meter__oUR6JglLxmJZduZz.json deleted file mode 100644 index 4ed208f8..00000000 --- a/packs/special-creature-abilities/Antimagie__10_Meter__oUR6JglLxmJZduZz.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "oUR6JglLxmJZduZz", - "name": "Antimagie (10 Meter)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/anti-magic.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Sämtliche Magie in einem Radius von 10 Metern um die Kreatur herum ist wirkungslos. Dies gilt nicht für die eigene Magie der Kreatur oder deren Zauber.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342127, - "modifiedTime": 1740227862513, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oUR6JglLxmJZduZz" -} diff --git a/packs/special-creature-abilities/Bezaubern_HMCFkxVzU2b3KkSA.json b/packs/special-creature-abilities/Bezaubern_HMCFkxVzU2b3KkSA.json deleted file mode 100644 index 416c9b91..00000000 --- a/packs/special-creature-abilities/Bezaubern_HMCFkxVzU2b3KkSA.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "HMCFkxVzU2b3KkSA", - "name": "Bezaubern", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charm.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann Gegner mit einem „Lockruf“ bezaubern. Dieser Zauber funktioniert wie der Zauberspruch @Compendium[ds4.spells.wZYElRaDmhqgzUvQ]{Gehorche}. Abklingzeit des Lockrufs: 10 Kampfrunden
", - "experiencePoints": 25 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342052, - "modifiedTime": 1740227862507, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!HMCFkxVzU2b3KkSA" -} diff --git a/packs/special-creature-abilities/Blickangriff_l4ewILWP2zbiSM97.json b/packs/special-creature-abilities/Blickangriff_l4ewILWP2zbiSM97.json deleted file mode 100644 index 36fd5126..00000000 --- a/packs/special-creature-abilities/Blickangriff_l4ewILWP2zbiSM97.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "l4ewILWP2zbiSM97", - "name": "Blickangriff", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/gaze-attack.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Greift mit seinem Blick aktionsfrei jeden an, dem GEI+AU misslingt. Wer gegen die Kreatur vorgeht, ohne ihr in die Augen zu sehen, erhält -4 auf alle Proben, ist aber nicht mehr Ziel ihrer Blickangriffe.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342114, - "modifiedTime": 1740227862512, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!l4ewILWP2zbiSM97" -} diff --git a/packs/special-creature-abilities/Dunkelsicht_75iKq2PTrfyTw0s4.json b/packs/special-creature-abilities/Dunkelsicht_75iKq2PTrfyTw0s4.json deleted file mode 100644 index ee8fe73b..00000000 --- a/packs/special-creature-abilities/Dunkelsicht_75iKq2PTrfyTw0s4.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "75iKq2PTrfyTw0s4", - "name": "Dunkelsicht", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/darkvision.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann selbst in völliger Dunkelheit noch sehen.
", - "experiencePoints": 7 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342024, - "modifiedTime": 1740227862505, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!75iKq2PTrfyTw0s4" -} diff --git a/packs/special-creature-abilities/Fliegen_uX7wuGyUjOPpYR5W.json b/packs/special-creature-abilities/Fliegen_uX7wuGyUjOPpYR5W.json deleted file mode 100644 index 72b255fe..00000000 --- a/packs/special-creature-abilities/Fliegen_uX7wuGyUjOPpYR5W.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "uX7wuGyUjOPpYR5W", - "name": "Fliegen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flight.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion „Rennen“ im Flug ausgeführt, erhöht sich die Geschwindigkeit somit auf Laufen x 4.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342144, - "modifiedTime": 1740227862514, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!uX7wuGyUjOPpYR5W" -} diff --git a/packs/special-creature-abilities/Geistesimmun_ziB3j0RSbWMtq1LX.json b/packs/special-creature-abilities/Geistesimmun_ziB3j0RSbWMtq1LX.json deleted file mode 100644 index 0265937f..00000000 --- a/packs/special-creature-abilities/Geistesimmun_ziB3j0RSbWMtq1LX.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "ziB3j0RSbWMtq1LX", - "name": "Geistesimmun", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/mind-immunity.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschläferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342149, - "modifiedTime": 1740227862515, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ziB3j0RSbWMtq1LX" -} diff --git a/packs/special-creature-abilities/Gift__1__TY1ZV1YsyaFtfX7U.json b/packs/special-creature-abilities/Gift__1__TY1ZV1YsyaFtfX7U.json deleted file mode 100644 index addc64eb..00000000 --- a/packs/special-creature-abilities/Gift__1__TY1ZV1YsyaFtfX7U.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "TY1ZV1YsyaFtfX7U", - "name": "Gift (1)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/poison.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird Schaden verursacht, würfelt das Ziel eine „Gift trotzen“-Probe, ansonsten erhält es W20 Kampfrunden lang 1 nicht abwehrbaren Schadenspunkt pro Runde.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342071, - "modifiedTime": 1740227862509, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TY1ZV1YsyaFtfX7U" -} diff --git a/packs/special-creature-abilities/Gift__2__jywCKRNCWLQFCFmu.json b/packs/special-creature-abilities/Gift__2__jywCKRNCWLQFCFmu.json deleted file mode 100644 index ae147a25..00000000 --- a/packs/special-creature-abilities/Gift__2__jywCKRNCWLQFCFmu.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "jywCKRNCWLQFCFmu", - "name": "Gift (2)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/poison.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird Schaden verursacht, würfelt das Ziel eine „Gift trotzen“-Probe, ansonsten erhält es W20 Kampfrunden lang 2 nicht abwehrbaren Schadenspunkt pro Runde.
", - "experiencePoints": 20 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342111, - "modifiedTime": 1740227862511, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!jywCKRNCWLQFCFmu" -} diff --git a/packs/special-creature-abilities/Gift__3__xBZDRJORSen8qcRb.json b/packs/special-creature-abilities/Gift__3__xBZDRJORSen8qcRb.json deleted file mode 100644 index 9b0bd1eb..00000000 --- a/packs/special-creature-abilities/Gift__3__xBZDRJORSen8qcRb.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "xBZDRJORSen8qcRb", - "name": "Gift (3)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/poison.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird Schaden verursacht, würfelt das Ziel eine „Gift trotzen“-Probe, ansonsten erhält es W20 Kampfrunden lang 3 nicht abwehrbaren Schadenspunkt pro Runde.
", - "experiencePoints": 30 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342147, - "modifiedTime": 1740227862514, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!xBZDRJORSen8qcRb" -} diff --git a/packs/special-creature-abilities/Gift__4__fYLkdhA3Xlw2cctC.json b/packs/special-creature-abilities/Gift__4__fYLkdhA3Xlw2cctC.json deleted file mode 100644 index 690edf87..00000000 --- a/packs/special-creature-abilities/Gift__4__fYLkdhA3Xlw2cctC.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "fYLkdhA3Xlw2cctC", - "name": "Gift (4)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/poison.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird Schaden verursacht, würfelt das Ziel eine „Gift trotzen“-Probe, ansonsten erhält es W20 Kampfrunden lang 4 nicht abwehrbaren Schadenspunkt pro Runde.
", - "experiencePoints": 40 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342109, - "modifiedTime": 1740227862511, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fYLkdhA3Xlw2cctC" -} diff --git a/packs/special-creature-abilities/Gift__5__oTLaMcZOW0eiUZCL.json b/packs/special-creature-abilities/Gift__5__oTLaMcZOW0eiUZCL.json deleted file mode 100644 index 6e81d1ef..00000000 --- a/packs/special-creature-abilities/Gift__5__oTLaMcZOW0eiUZCL.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "oTLaMcZOW0eiUZCL", - "name": "Gift (5)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/poison.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird Schaden verursacht, würfelt das Ziel eine „Gift trotzen“-Probe, ansonsten erhält es W20 Kampfrunden lang 5 nicht abwehrbaren Schadenspunkt pro Runde.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342126, - "modifiedTime": 1740227862513, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oTLaMcZOW0eiUZCL" -} diff --git a/packs/special-creature-abilities/Kletterl_ufer_Kbb8qlLeVahzxy5N.json b/packs/special-creature-abilities/Kletterl_ufer_Kbb8qlLeVahzxy5N.json deleted file mode 100644 index a651d578..00000000 --- a/packs/special-creature-abilities/Kletterl_ufer_Kbb8qlLeVahzxy5N.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "Kbb8qlLeVahzxy5N", - "name": "Kletterläufer", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/climber.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann mit normaler Laufen- Geschwindigkeit an Wänden und Decken aktionsfrei klettern.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342058, - "modifiedTime": 1740227862507, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Kbb8qlLeVahzxy5N" -} diff --git a/packs/special-creature-abilities/L_hmungseffekt_5maJ8tHAVZCxHGW6.json b/packs/special-creature-abilities/L_hmungseffekt_5maJ8tHAVZCxHGW6.json deleted file mode 100644 index 3ee68e9d..00000000 --- a/packs/special-creature-abilities/L_hmungseffekt_5maJ8tHAVZCxHGW6.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "5maJ8tHAVZCxHGW6", - "name": "Lähmungseffekt", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/paralysis-effect.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der lähmende Angriff (nur alle 10 Kampfrunden einsetzbar) macht Ziel für Probenergebnis in Kamprunden bewegungsunfähig, sofern ihm nicht KÖR+ST gelingt.
", - "experiencePoints": 25 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342020, - "modifiedTime": 1740227862505, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5maJ8tHAVZCxHGW6" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffe___1__oDM4ImE7PrIgn22E.json b/packs/special-creature-abilities/Mehrere_Angriffe___1__oDM4ImE7PrIgn22E.json deleted file mode 100644 index 1abdd377..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffe___1__oDM4ImE7PrIgn22E.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "oDM4ImE7PrIgn22E", - "name": "Mehrere Angriffe (+1)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann 1 zusätzlichen Angriff in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342122, - "modifiedTime": 1740227862513, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oDM4ImE7PrIgn22E" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffe___2__1zPOH37f7Q5Rwodx.json b/packs/special-creature-abilities/Mehrere_Angriffe___2__1zPOH37f7Q5Rwodx.json deleted file mode 100644 index b68c7d8a..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffe___2__1zPOH37f7Q5Rwodx.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "1zPOH37f7Q5Rwodx", - "name": "Mehrere Angriffe (+2)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann 2 zusätzlichen Angriffe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342007, - "modifiedTime": 1740227862504, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1zPOH37f7Q5Rwodx" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffe___3__LM5xia0xVIlhQsLG.json b/packs/special-creature-abilities/Mehrere_Angriffe___3__LM5xia0xVIlhQsLG.json deleted file mode 100644 index f9a0fe19..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffe___3__LM5xia0xVIlhQsLG.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "LM5xia0xVIlhQsLG", - "name": "Mehrere Angriffe (+3)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann 3 zusätzlichen Angriffe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342060, - "modifiedTime": 1740227862507, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!LM5xia0xVIlhQsLG" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffe___4__1JDyMkVOlho7IuiN.json b/packs/special-creature-abilities/Mehrere_Angriffe___4__1JDyMkVOlho7IuiN.json deleted file mode 100644 index afe8d126..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffe___4__1JDyMkVOlho7IuiN.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "1JDyMkVOlho7IuiN", - "name": "Mehrere Angriffe (+4)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann 4 zusätzlichen Angriffe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342005, - "modifiedTime": 1740227862504, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1JDyMkVOlho7IuiN" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffe___5__YvkRgHyCkwhn3uzg.json b/packs/special-creature-abilities/Mehrere_Angriffe___5__YvkRgHyCkwhn3uzg.json deleted file mode 100644 index eefb2bd0..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffe___5__YvkRgHyCkwhn3uzg.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "YvkRgHyCkwhn3uzg", - "name": "Mehrere Angriffe (+5)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-attacks.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann 5 zusätzlichen Angriffe in jeder Runde aktionsfrei ausführen.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342084, - "modifiedTime": 1740227862510, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!YvkRgHyCkwhn3uzg" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffglieder___1__Sig4tVDj8zLWZCEP.json b/packs/special-creature-abilities/Mehrere_Angriffglieder___1__Sig4tVDj8zLWZCEP.json deleted file mode 100644 index 5566cbd8..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffglieder___1__Sig4tVDj8zLWZCEP.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "Sig4tVDj8zLWZCEP", - "name": "Mehrere Angriffglieder (+1)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Greift mit 1 zusätzlichem Angriffsglied an, das Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen / zertrümmern, wodurch die Angriffszahl letztendlich sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342070, - "modifiedTime": 1740227862509, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Sig4tVDj8zLWZCEP" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffglieder___2__VvzGK9lxAD7kuowL.json b/packs/special-creature-abilities/Mehrere_Angriffglieder___2__VvzGK9lxAD7kuowL.json deleted file mode 100644 index 236b71bd..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffglieder___2__VvzGK9lxAD7kuowL.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "VvzGK9lxAD7kuowL", - "name": "Mehrere Angriffglieder (+2)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Greift mit 2 zusätzlichen Angriffsgliedern an, die Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen / zertrümmern, wodurch die Angriffszahl letztendlich sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342073, - "modifiedTime": 1740227862509, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VvzGK9lxAD7kuowL" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffglieder___3__8HmrA97ZqN7nEYgm.json b/packs/special-creature-abilities/Mehrere_Angriffglieder___3__8HmrA97ZqN7nEYgm.json deleted file mode 100644 index 3ec6159e..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffglieder___3__8HmrA97ZqN7nEYgm.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "8HmrA97ZqN7nEYgm", - "name": "Mehrere Angriffglieder (+3)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Greift mit 3 zusätzlichen Angriffsgliedern an, die Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen / zertrümmern, wodurch die Angriffszahl letztendlich sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342026, - "modifiedTime": 1740227862505, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8HmrA97ZqN7nEYgm" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffglieder___4__R6jT1GYF13ZijtM0.json b/packs/special-creature-abilities/Mehrere_Angriffglieder___4__R6jT1GYF13ZijtM0.json deleted file mode 100644 index 6513d336..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffglieder___4__R6jT1GYF13ZijtM0.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "R6jT1GYF13ZijtM0", - "name": "Mehrere Angriffglieder (+4)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Greift mit 4 zusätzlichen Angriffsgliedern an, die Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen / zertrümmern, wodurch die Angriffszahl letztendlich sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342066, - "modifiedTime": 1740227862508, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!R6jT1GYF13ZijtM0" -} diff --git a/packs/special-creature-abilities/Mehrere_Angriffglieder___5__e6VuJIL8ocXQDQ2V.json b/packs/special-creature-abilities/Mehrere_Angriffglieder___5__e6VuJIL8ocXQDQ2V.json deleted file mode 100644 index 6d71117c..00000000 --- a/packs/special-creature-abilities/Mehrere_Angriffglieder___5__e6VuJIL8ocXQDQ2V.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "e6VuJIL8ocXQDQ2V", - "name": "Mehrere Angriffglieder (+5)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/multiple-limbs.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Greift mit 5 zusätzlichen Angriffsgliedern an, die Gegner bei einem erfolgreichen Schlagen-Immersieg abtrennen / zertrümmern, wodurch die Angriffszahl letztendlich sinkt.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342092, - "modifiedTime": 1740227862511, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!e6VuJIL8ocXQDQ2V" -} diff --git a/packs/special-creature-abilities/Nachtsicht_pJjtHe2Rd0YCa35n.json b/packs/special-creature-abilities/Nachtsicht_pJjtHe2Rd0YCa35n.json deleted file mode 100644 index 2c503dc0..00000000 --- a/packs/special-creature-abilities/Nachtsicht_pJjtHe2Rd0YCa35n.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "pJjtHe2Rd0YCa35n", - "name": "Nachtsicht", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/night-vision.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann bei einem Mindestmaß an Licht noch sehen wie am helllichten Tag.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342130, - "modifiedTime": 1740227862514, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pJjtHe2Rd0YCa35n" -} diff --git a/packs/special-creature-abilities/Nat_rliche_Waffen_YrmJo8dg4CF3lJdH.json b/packs/special-creature-abilities/Nat_rliche_Waffen_YrmJo8dg4CF3lJdH.json deleted file mode 100644 index 81acb893..00000000 --- a/packs/special-creature-abilities/Nat_rliche_Waffen_YrmJo8dg4CF3lJdH.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "YrmJo8dg4CF3lJdH", - "name": "Natürliche Waffen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/natural-weapons.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene würfelt augenblicklich & aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342082, - "modifiedTime": 1740227862510, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!YrmJo8dg4CF3lJdH" -} diff --git a/packs/special-creature-abilities/Nur_durch_Magie_verletzbar_FCxjdPJ1L8EJd0IF.json b/packs/special-creature-abilities/Nur_durch_Magie_verletzbar_FCxjdPJ1L8EJd0IF.json deleted file mode 100644 index d92dfa36..00000000 --- a/packs/special-creature-abilities/Nur_durch_Magie_verletzbar_FCxjdPJ1L8EJd0IF.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "FCxjdPJ1L8EJd0IF", - "name": "Nur durch Magie verletzbar", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/only-vulnerable-to-magic.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Nur Angriffe mit magischen Waffen oder durch Zauber richten Schaden an. Ausgenommen sind eventuelle Anfälligkeiten, durch die ebenfalls Schaden erlitten wird.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342047, - "modifiedTime": 1740227862506, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FCxjdPJ1L8EJd0IF" -} diff --git a/packs/special-creature-abilities/Odem_sDffbUUXg88Vn2Pq.json b/packs/special-creature-abilities/Odem_sDffbUUXg88Vn2Pq.json deleted file mode 100644 index 57d250e4..00000000 --- a/packs/special-creature-abilities/Odem_sDffbUUXg88Vn2Pq.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "sDffbUUXg88Vn2Pq", - "name": "Odem", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/breath-weapon.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schießen-Angriff) – nur für magische Abwehrboni wird gewürfelt (PW: Bonushöhe). GE x 5 m langer Kegel (am Ende GE x 3 m breit).
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342143, - "modifiedTime": 1740227862514, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sDffbUUXg88Vn2Pq" -} diff --git a/packs/special-creature-abilities/Regeneration_Mh6bLPD3N29ybeLq.json b/packs/special-creature-abilities/Regeneration_Mh6bLPD3N29ybeLq.json deleted file mode 100644 index 84e4f3a5..00000000 --- a/packs/special-creature-abilities/Regeneration_Mh6bLPD3N29ybeLq.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "Mh6bLPD3N29ybeLq", - "name": "Regeneration", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/regeneration.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Regeneriert jede Kampfrunde aktionsfrei LK in Höhe des Probenergebnisses der Regenerations-Probe (PW: KÖR). Durch Feuer oder Säure verlorene LK können nicht regeneriert werden.
", - "experiencePoints": -1 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342062, - "modifiedTime": 1740227862508, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Mh6bLPD3N29ybeLq" -} diff --git a/packs/special-creature-abilities/Rost_oPTuLvZOEsXnRPed.json b/packs/special-creature-abilities/Rost_oPTuLvZOEsXnRPed.json deleted file mode 100644 index 24f8b996..00000000 --- a/packs/special-creature-abilities/Rost_oPTuLvZOEsXnRPed.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "oPTuLvZOEsXnRPed", - "name": "Rost", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/rust.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Jeder Treffer reduziert die PA eines zufälligen, metallischen, nichtmagischen Rüstungsstückes des Ziels um 1. Gleiches gilt für den WB nichtmagischer Metallwaffen, die die Kreatur treffen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342124, - "modifiedTime": 1740227862513, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oPTuLvZOEsXnRPed" -} diff --git a/packs/special-creature-abilities/Schleudern_5PdSHi6PY4TNV9rP.json b/packs/special-creature-abilities/Schleudern_5PdSHi6PY4TNV9rP.json deleted file mode 100644 index 2d07c74f..00000000 --- a/packs/special-creature-abilities/Schleudern_5PdSHi6PY4TNV9rP.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "5PdSHi6PY4TNV9rP", - "name": "Schleudern", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/flinging.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Schlagen-Immersieg schleudert das Ziel (sofern 1+ Größenkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet für die Distanz Sturzschaden, gegen den es normal Abwehr würfelt, und liegt am Boden.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342014, - "modifiedTime": 1740227862504, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5PdSHi6PY4TNV9rP" -} diff --git a/packs/special-creature-abilities/Schwarm_rPbbTLUtSXZpdFjp.json b/packs/special-creature-abilities/Schwarm_rPbbTLUtSXZpdFjp.json deleted file mode 100644 index b50db1e7..00000000 --- a/packs/special-creature-abilities/Schwarm_rPbbTLUtSXZpdFjp.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "rPbbTLUtSXZpdFjp", - "name": "Schwarm", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swarm.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Gilt als einzelner Gegner. Der Schwarmwert (SCW) entspricht seiner aktuellen Mitgliederanzahl / 10 (zu Beginn und max. 200 Mitglieder pro Schwarm = SCW 20). Pro 1 LK Schaden sterben 10 Mitglieder (= SCW -1). Schwärme können Mitglieder an benachbarte Felder abgeben und ihr eigenes sowie jedes angrenzende Feld gleichzeitig angreifen (mit jeweils vollen Schlagen-Wert).
\nSchlagen/Abwehr/LK entsprechen dem aktuellen SCW
", - "experiencePoints": 0 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342134, - "modifiedTime": 1740227862514, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!rPbbTLUtSXZpdFjp" -} diff --git a/packs/special-creature-abilities/Schweben_05D4DdnbcQFoIllF.json b/packs/special-creature-abilities/Schweben_05D4DdnbcQFoIllF.json deleted file mode 100644 index 65655aaf..00000000 --- a/packs/special-creature-abilities/Schweben_05D4DdnbcQFoIllF.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "05D4DdnbcQFoIllF", - "name": "Schweben", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/hover.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann, statt zu laufen, auch schweben. Wird die Aktion „Rennen“ ausgeführt, erhöht sich die Geschwindigkeit wie am Boden auf Laufen x 2.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995341997, - "modifiedTime": 1740227862503, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!05D4DdnbcQFoIllF" -} diff --git a/packs/special-creature-abilities/Schwimmen_18PDF4gqWrIRWudN.json b/packs/special-creature-abilities/Schwimmen_18PDF4gqWrIRWudN.json deleted file mode 100644 index e898d27a..00000000 --- a/packs/special-creature-abilities/Schwimmen_18PDF4gqWrIRWudN.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "18PDF4gqWrIRWudN", - "name": "Schwimmen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/swim.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann, statt zu laufen, schwimmen. Wird die Aktion „Rennen“ schwimmend ausgeführt, erhöht sich die Geschwindigkeit ganz normal auf Laufen x 2.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342002, - "modifiedTime": 1740227862503, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!18PDF4gqWrIRWudN" -} diff --git a/packs/special-creature-abilities/Sonar_BtjiEmhGyje6YghP.json b/packs/special-creature-abilities/Sonar_BtjiEmhGyje6YghP.json deleted file mode 100644 index e870e874..00000000 --- a/packs/special-creature-abilities/Sonar_BtjiEmhGyje6YghP.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "BtjiEmhGyje6YghP", - "name": "Sonar", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/sonar.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "„Sieht“ per Sonar.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342035, - "modifiedTime": 1740227862506, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!BtjiEmhGyje6YghP" -} diff --git a/packs/special-creature-abilities/Sturmangriff_L0dxlrCY14bLyUdQ.json b/packs/special-creature-abilities/Sturmangriff_L0dxlrCY14bLyUdQ.json deleted file mode 100644 index f7adf23c..00000000 --- a/packs/special-creature-abilities/Sturmangriff_L0dxlrCY14bLyUdQ.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "L0dxlrCY14bLyUdQ", - "name": "Sturmangriff", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/charge.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird mindestens eine Distanz in Höhe von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342059, - "modifiedTime": 1740227862507, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!L0dxlrCY14bLyUdQ" -} diff --git a/packs/special-creature-abilities/Sturzangriff_eWuQlQYF3VmyR0kt.json b/packs/special-creature-abilities/Sturzangriff_eWuQlQYF3VmyR0kt.json deleted file mode 100644 index 03308c9d..00000000 --- a/packs/special-creature-abilities/Sturzangriff_eWuQlQYF3VmyR0kt.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "eWuQlQYF3VmyR0kt", - "name": "Sturzangriff", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/dive-attack.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird fliegend mindestens eine Distanz in Höhe von Laufen x 2 „rennend“ geflogen, kann in der Runde noch ein Angriff mit Schlagen + KÖR erfolgen, während der Bewegung, also nicht nur davor oder danach.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342099, - "modifiedTime": 1740227862511, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eWuQlQYF3VmyR0kt" -} diff --git a/packs/special-creature-abilities/Totenkraft_ZkgZiFI5xy8aevG8.json b/packs/special-creature-abilities/Totenkraft_ZkgZiFI5xy8aevG8.json deleted file mode 100644 index 40380dc5..00000000 --- a/packs/special-creature-abilities/Totenkraft_ZkgZiFI5xy8aevG8.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "_id": "ZkgZiFI5xy8aevG8", - "name": "Totenkraft", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/power-of-the-dead.png", - "effects": [ - { - "_id": "xw1OyyTdDwkNe2jC", - "changes": [ - { - "key": "system.traits.strength.total", - "mode": 2, - "value": "@system.attributes.mind.total + @system.traits.aura.total", - "priority": null - }, - { - "key": "system.traits.constitution.total", - "mode": 2, - "value": "@system.attributes.mind.total + @system.traits.aura.total", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": {}, - "tint": "#ffffff", - "origin": null, - "name": "GEI + AU als Bonus auf Stärke und Härte", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ZkgZiFI5xy8aevG8.xw1OyyTdDwkNe2jC" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Erhält GEI+AU als Bonus auf Stärke und Härte.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342086, - "modifiedTime": 1740227862510, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ZkgZiFI5xy8aevG8" -} diff --git a/packs/special-creature-abilities/Umschlingen_AjPsjbxcuNslQEuE.json b/packs/special-creature-abilities/Umschlingen_AjPsjbxcuNslQEuE.json deleted file mode 100644 index 899a10c3..00000000 --- a/packs/special-creature-abilities/Umschlingen_AjPsjbxcuNslQEuE.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "AjPsjbxcuNslQEuE", - "name": "Umschlingen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/entangle.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Schlagen-Immersieg umschlingt Ziel (sofern 1+ Größenkategorie kleiner), welches fortan ST Punkte abwehrbaren Schaden erleidet, sich nicht frei bewegen kann und einen Malus von -2 auf alle Proben pro Größenunterschied erhält. Befreien: Opfer mit AGI+ST vergleichende Probe gegen KÖR+ST des Umschlingers.
", - "experiencePoints": 10 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342029, - "modifiedTime": 1740227862505, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!AjPsjbxcuNslQEuE" -} diff --git a/packs/special-creature-abilities/Verschlingen_fY7yRpxhQTIV5G2p.json b/packs/special-creature-abilities/Verschlingen_fY7yRpxhQTIV5G2p.json deleted file mode 100644 index 75b4fbc0..00000000 --- a/packs/special-creature-abilities/Verschlingen_fY7yRpxhQTIV5G2p.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "fY7yRpxhQTIV5G2p", - "name": "Verschlingen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/devourer.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Schlagen-Immersieg (mit einem Biss-Angriff) verschlingt Ziel (sofern 2+ Größenkategorien kleiner), welches fortan einen nicht abwehrbaren Schadenspunkt pro Kampfrunde und einen Malus von -8 auf alle Proben erhält. Befreien: Nur mit einem Schlagen-Immersieg, der Schaden verursacht, kann sich der Verschlungene augenblicklich aus dem Leib seines Verschlingers befreien, wenn dieser noch lebt.
", - "experiencePoints": 25 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342107, - "modifiedTime": 1740227862511, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fY7yRpxhQTIV5G2p" -} diff --git a/packs/special-creature-abilities/Versteinern_5eB5a0FnygbaqWPe.json b/packs/special-creature-abilities/Versteinern_5eB5a0FnygbaqWPe.json deleted file mode 100644 index fbeb17f1..00000000 --- a/packs/special-creature-abilities/Versteinern_5eB5a0FnygbaqWPe.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "5eB5a0FnygbaqWPe", - "name": "Versteinern", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/petrification.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei einem erfolgreichen Blickangriff versteinert das Ziel, sofern diesem KÖR+AU misslingt. Eine Versteinerung kann durch den Zauber @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} aufgehoben werden.
", - "experiencePoints": 50 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342017, - "modifiedTime": 1740227862504, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5eB5a0FnygbaqWPe" -} diff --git a/packs/special-creature-abilities/Werteverlust__AGI__602AkdkLqx6NWprb.json b/packs/special-creature-abilities/Werteverlust__AGI__602AkdkLqx6NWprb.json deleted file mode 100644 index 20bb6c72..00000000 --- a/packs/special-creature-abilities/Werteverlust__AGI__602AkdkLqx6NWprb.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "602AkdkLqx6NWprb", - "name": "Werteverlust (AGI)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/attribute-loss.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro schadensverursachendem Treffer wird AGI um 1 gesenkt (bei AGI Null ist das Opfer bewegungsunfähig). Pro Tag oder Anwendung des Zaubers @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} wird 1 verlorener Attributspunkt regeneriert.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342022, - "modifiedTime": 1740227862505, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!602AkdkLqx6NWprb" -} diff --git a/packs/special-creature-abilities/Werteverlust__GEI__m52MTRs1GMXScTki.json b/packs/special-creature-abilities/Werteverlust__GEI__m52MTRs1GMXScTki.json deleted file mode 100644 index 35760d98..00000000 --- a/packs/special-creature-abilities/Werteverlust__GEI__m52MTRs1GMXScTki.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "m52MTRs1GMXScTki", - "name": "Werteverlust (GEI)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/attribute-loss.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro schadensverursachendem Treffer wird GEI um 1 gesenkt (bei GEI Null ist das Opfer wahnsinnig). Pro Tag oder Anwendung des Zaubers @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} wird 1 verlorener Attributspunkt regeneriert.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342116, - "modifiedTime": 1740227862512, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!m52MTRs1GMXScTki" -} diff --git a/packs/special-creature-abilities/Werteverlust__K_R__RwT0NBwkc1TuAR1e.json b/packs/special-creature-abilities/Werteverlust__K_R__RwT0NBwkc1TuAR1e.json deleted file mode 100644 index e898b99f..00000000 --- a/packs/special-creature-abilities/Werteverlust__K_R__RwT0NBwkc1TuAR1e.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "RwT0NBwkc1TuAR1e", - "name": "Werteverlust (KÖR)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/attribute-loss.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro schadensverursachendem Treffer wird KÖR um 1 gesenkt (bei KÖR Null ist das Opfer tot). Pro Tag oder Anwendung des Zaubers @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} wird 1 verlorener Attributspunkt regeneriert.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342068, - "modifiedTime": 1740227862509, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RwT0NBwkc1TuAR1e" -} diff --git a/packs/special-creature-abilities/Wesen_der_Dunkelheit__Settingoption__R3j1CjXJckUH0CBG.json b/packs/special-creature-abilities/Wesen_der_Dunkelheit__Settingoption__R3j1CjXJckUH0CBG.json deleted file mode 100644 index e5ac40b7..00000000 --- a/packs/special-creature-abilities/Wesen_der_Dunkelheit__Settingoption__R3j1CjXJckUH0CBG.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "R3j1CjXJckUH0CBG", - "name": "Wesen der Dunkelheit (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-darkness.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln für Wesen der Dunkelheit gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342064, - "modifiedTime": 1740227862508, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!R3j1CjXJckUH0CBG" -} diff --git a/packs/special-creature-abilities/Wesen_des_Lichts__Settingoption__KDDlwN9as9B4ljeA.json b/packs/special-creature-abilities/Wesen_des_Lichts__Settingoption__KDDlwN9as9B4ljeA.json deleted file mode 100644 index 328e04eb..00000000 --- a/packs/special-creature-abilities/Wesen_des_Lichts__Settingoption__KDDlwN9as9B4ljeA.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "KDDlwN9as9B4ljeA", - "name": "Wesen des Lichts (Settingoption)", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/creature-of-light.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Gilt in den meisten Settings als ein Wesen des Lichts. Angewendete Regeln für Wesen des Lichts gelten für diese Kreatur.
", - "experiencePoints": 5 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995342057, - "modifiedTime": 1740227862507, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KDDlwN9as9B4ljeA" -} diff --git a/packs/special-creature-abilities/Zerstampfen_02QMKm8MHzz8yAxL.json b/packs/special-creature-abilities/Zerstampfen_02QMKm8MHzz8yAxL.json deleted file mode 100644 index 3b2d11b0..00000000 --- a/packs/special-creature-abilities/Zerstampfen_02QMKm8MHzz8yAxL.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "_id": "02QMKm8MHzz8yAxL", - "name": "Zerstampfen", - "type": "specialCreatureAbility", - "img": "systems/ds4/assets/icons/official/special-creature-abilities/crush.png", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Kann einen Angriff pro Kampfrunde mit -6 ausführen, um das Ziel (sofern 1+ Größenkategorie kleiner) zu zerstampfen. Pro Größenunterschied wird der -6 Malus um 2 gemindert. Bei einem erfolgreichen Angriff wird nicht abwehrbarer Schaden verursacht.
", - "experiencePoints": 15 - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995341991, - "modifiedTime": 1740227862503, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!02QMKm8MHzz8yAxL" -} diff --git a/packs/spells/Allheilung_pmYcjLXv1EB9bM59.json b/packs/spells/Allheilung_pmYcjLXv1EB9bM59.json deleted file mode 100644 index c0bb02d7..00000000 --- a/packs/spells/Allheilung_pmYcjLXv1EB9bM59.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "pmYcjLXv1EB9bM59", - "name": "Allheilung", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/healing.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber heilt sämtliche Verletzungen und schließt jede noch so große Wunde, ohne Narben zu hinterlassen. Selbst abgetrennte Gliedmaßen (sofern nicht mehr als W20 Stunden abgetrennt) lassen sich mit diesem Spruch wieder anfügen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 10, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344883, - "modifiedTime": 1740227862587, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pmYcjLXv1EB9bM59" -} diff --git a/packs/spells/Arkanes_Schwert_VjvrapwDmBvGYmfj.json b/packs/spells/Arkanes_Schwert_VjvrapwDmBvGYmfj.json deleted file mode 100644 index f6b819ee..00000000 --- a/packs/spells/Arkanes_Schwert_VjvrapwDmBvGYmfj.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "VjvrapwDmBvGYmfj", - "name": "Arkanes Schwert", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sword-wound.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein Schwert aus hellem (oder je nach Belieben auch dunklem) Licht erscheint innerhalb eines Radius von VE in Metern um den Zauberwirker herum.
\nInnerhalb dieses Wirkungsbereiches kämpft es völlig selbstständig, hört jedoch auf gedankliche Kampfkommandos seines Beschwöreres wie „Greif den großen Troll an“ oder „Schütze mich“.
\nBewegt sich der Zauberwirker, wandert der Wirkungsbereich des Schwertes mit ihm mit, so dass die magische Klinge niemals mehr als VE in Metern von ihm getrennt sein kann.
\nDas Schwert löst sich in seine arkanen Bestandteile auf, sobald seine (nicht heilbaren) LK auf Null oder niedriger sinken bzw. die Zauberdauer verstrichen ist.
\nSämtliche Kampfwerte des Schwertes entsprechen der Stufe des Zauberwirkers +10.
\nDie einzige Ausnahme bildet der Laufen-Wert, der dem doppelten Laufen-Wert des Zauberwirkers entspricht.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE x 2", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344678, - "modifiedTime": 1740227862575, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VjvrapwDmBvGYmfj" -} diff --git a/packs/spells/Balancieren_QZW2p3k9uGuYKCbN.json b/packs/spells/Balancieren_QZW2p3k9uGuYKCbN.json deleted file mode 100644 index 2898b0db..00000000 --- a/packs/spells/Balancieren_QZW2p3k9uGuYKCbN.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "QZW2p3k9uGuYKCbN", - "name": "Balancieren", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/tightrope.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel kann absolut sicher mit seinem reinen Laufen-Wert über dünne Seile u. ä. balancieren.
\nSobald der Zauber gewirkt wurde, gilt der Balancieren-Effekt und endet, nachdem der Charakter eine Strecke in Höhe des eigenen, doppelten Laufen-Wertes in Metern zurückgelegt hat.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Bis Strecke zurückgelegt", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 2, - "wizard": 3, - "sorcerer": 6 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344604, - "modifiedTime": 1740227862571, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QZW2p3k9uGuYKCbN" -} diff --git a/packs/spells/Bannen_VIRaUl51s1vnDHUt.json b/packs/spells/Bannen_VIRaUl51s1vnDHUt.json deleted file mode 100644 index 77e97004..00000000 --- a/packs/spells/Bannen_VIRaUl51s1vnDHUt.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "VIRaUl51s1vnDHUt", - "name": "Bannen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/magic-palm.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber vernichtet feindliche Dämonen, Elementare und Untote im Wirkungsradius. Maximal wird eine Anzahl von Wesenheiten vernichtet, die der halbierten Stufe des Zauberwirkers entspricht. Bei zu vielen Wesenheiten entscheidet der Zufall, welche betroffen sind. Alternativ können auch bestimmte, einzelne Wesenheiten als Ziel des Bannes bestimmt werden. Pro misslungenen Bannversuch steigt die Schwierigkeit um 2.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 der Wesenheit" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "", - "unit": "custom" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 8, - "wizard": 18, - "sorcerer": 14 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344676, - "modifiedTime": 1740227862575, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VIRaUl51s1vnDHUt" -} diff --git a/packs/spells/Blenden_JldAx8a91vVO2wUf.json b/packs/spells/Blenden_JldAx8a91vVO2wUf.json deleted file mode 100644 index 1f0d78c1..00000000 --- a/packs/spells/Blenden_JldAx8a91vVO2wUf.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "JldAx8a91vVO2wUf", - "name": "Blenden", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/laser-sparks.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein gleißender Lichtstrahl schießt aus der Hand des Zauberwirkers und blendet bei Erfolg das Ziel (welches dagegen keine Abwehr würfeln darf).
Ein geblendetes Ziel hat -8 auf alle Handlungen, bei denen es sehen können sollte.
Selbst augenlose Untote, wie beispielsweise Skelette, werden durch das magische Licht geblendet. Blinde Lebewesen sind dagegen nicht betroffen.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(AGI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": 1, - "wizard": 5, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344548, - "modifiedTime": 1740227862566, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JldAx8a91vVO2wUf" -} diff --git a/packs/spells/Blitz_Senq5ub2Cx0agJgi.json b/packs/spells/Blitz_Senq5ub2Cx0agJgi.json deleted file mode 100644 index 51b63b77..00000000 --- a/packs/spells/Blitz_Senq5ub2Cx0agJgi.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "Senq5ub2Cx0agJgi", - "name": "Blitz", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/bolt-spell-cast.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker schießt einen Blitz auf einen Feind. Gegner in Metallrüstung dürfen keine Abwehr gegen Blitze würfeln.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 3, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": true, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1r", - "minimumLevels": { - "healer": 10, - "wizard": 7, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344630, - "modifiedTime": 1740227862573, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Senq5ub2Cx0agJgi" -} diff --git a/packs/spells/Blut_kochen_GPaDrKIFw2kjzryU.json b/packs/spells/Blut_kochen_GPaDrKIFw2kjzryU.json deleted file mode 100644 index 41996396..00000000 --- a/packs/spells/Blut_kochen_GPaDrKIFw2kjzryU.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "GPaDrKIFw2kjzryU", - "name": "Blut kochen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/skoll/blood.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Blut des Ziels beginnt auf magische Art und Weise zu kochen, ohne dass es gerinnt.
Der innerlich wirkende Schaden entspricht dem doppelten Probenergebnis, das Ziel würfelt seine Abwehr ohne die Panzerungsboni seiner Gegenstände.
Der Zauber ist gegen Wesen ohne Blut – wie beispielsweise viele Untote – nicht einsetzbar.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 17, - "sorcerer": 13 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344518, - "modifiedTime": 1740227862564, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GPaDrKIFw2kjzryU" -} diff --git a/packs/spells/Botschaft_wnYRgIjVtIhL26eg.json b/packs/spells/Botschaft_wnYRgIjVtIhL26eg.json deleted file mode 100644 index f70733ce..00000000 --- a/packs/spells/Botschaft_wnYRgIjVtIhL26eg.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "wnYRgIjVtIhL26eg", - "name": "Botschaft", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/envelope.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Beauftragt ein geisterhaftes Abbild des Zaubernden bei einem ihm bekannten Wesen in Reichweite zu erscheinen und bis zu VE x 2 Wortsilben zu zitieren.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "kilometer" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Bis ausformuliert", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 8, - "wizard": 6, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344902, - "modifiedTime": 1740227862590, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!wnYRgIjVtIhL26eg" -} diff --git a/packs/spells/D_monen_beschw_ren_yy43TiBbip28QRhs.json b/packs/spells/D_monen_beschw_ren_yy43TiBbip28QRhs.json deleted file mode 100644 index e84cd039..00000000 --- a/packs/spells/D_monen_beschw_ren_yy43TiBbip28QRhs.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "yy43TiBbip28QRhs", - "name": "Dämonen beschwören", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/skoll/pentacle.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mit diesem Zauber beschwört der Zauberwirker einen Dämon aus einer anderen Existenzebene. Der Charakter kann dabei frei wählen, was für eine Dämonenart (@Compendium[ds4.creatures.RxSUSzQBSTFYHOlV]{Niederer Dämon}, @Compendium[ds4.creatures.LtsbT2DHYKs9Catm]{Hoher Dämon}, @Compendium[ds4.creatures.LgtcLrKtCa496ih6]{Kampfdämon}, @Compendium[ds4.creatures.JGpIh3oCK1Vx3NnZ]{Kriegsdämon},@Compendium[ds4.creatures.PKPmkOMLDGwS9QZJ]{Dämonenfürst}, DS4 S. 107-108) er beschwören will und ob die Kreatur fliegen können soll (was ihre Beschwörung aber auch erschwert). Alle Dämonen hassen die niederen Wesen, die es wagen, sie zu beschwören, können ihnen bei einer erfolgreichen Beschwörung aber nichts anhaben. Beschworene Dämonen können nur jemanden angreifen, wenn ihr Beschwörer es ihnen befiehlt oder sie selbst angegriffen werden.
\nAufträge: Ein Dämon kann erst auf seine Existenzebene zurückkehren, wenn er für seinen Beschwörer eine Anzahl von Aufträgen gleich dessen VE ausgeführt hat (Dämonen verstehen immer die Sprache ihres Beschwörers).
\nDabei kann es sich um das simple Beantworten von Fragen handeln, aber auch komplexere Anweisungen enthalten wie: „Folge der Straße bis zur nächsten Ortschaft (Auftrag 1) und vernichte jeden, dem Du unterwegs begegnest (Auftrag 2).“
\nWird der Dämon von seinem Beschwörer vor Ablauf der Zauberdauer (VE x 2 Stunden) entlassen oder hat er alle seine Aufträge erfüllt, kehrt er augenblicklich zurück auf seine Existenzebene.
\nBeschwörungskreise: Um einen Dämon zu beschwören, wird immer ein Beschwörungskreis benötigt. Dieser kann hastig auf den Boden gekritzelt oder in langen Stunden aufwendig gezeichnet werden.
\nJe mehr Arbeit in einem Beschwörungskreis steckt, desto eher gelingt die Beschwörung: Jeder Beschwörungskreis verfügt über einen Beschwörenbonus (BB), der die Zaubern-Probe beim Beschwören erleichtert.
\nBeschwörungskreis zeichnen | \nBB | \n
---|---|
Innerhalb 1 Kampfrunde gekritzelt | \n-2 | \n
Innerhalb weniger Minuten gefertigt | \n+0 | \n
Pro Zeichenstunde (max. VE Stunden) | \n+1 | \n
Mit Blut gezeichnet | \n+2 | \n
Nachts gezeichnet | \n+2 | \n
13 brennende Kerzen auf Kreis stellen | \n+1 | \n
Weitere Modifikatoren (Kreis nötig) | \nBB | \n
---|---|
Bestimmter Dämon (Name bekannt) | \n+2 | \n
Dämon soll fliegen können | \n-KÖR / 2* | \n
Singsang zum Ende (max. VE / 2 Rd.) | \n+1 / Rd. | \n
Todesopfer (intelligentes Wesen) | \n+KÖR** | \n
*: KÖR des Dämonen
**: KÖR des Opfers
Beispiel:
Ein hoher Dämon (KÖR 7 AU 3 = ZB -10), der zudem auch noch fliegen können soll (KÖR 7 / 2 = 3,5, aufgerundet zu 4), würde die Zaubern-Probe um -14 erschweren.
Ein Beschwörer mit VE 8 könnte, um diesen Malus zu reduzieren, maximal 8 Stunden (+8) in der Nacht (+2) den Beschwörungskreis zeichnen und 13 Kerzen ringsum entzünden (+2).
\nWürde er die ihm möglichen 4 Kampfrunden (VE / 2) vor der eigentlichen Beschwörung noch einen Singsang anstimmen, wäre der endgültige ZB sogar +2 (= -14 + 8 + 2 + 2 + 4).
\nMisslungenes Beschwören: Ein Dämon wird auch beschworen, wenn die Zaubern-Probe misslingt, steht dann jedoch nicht unter der Kontrolle seines Beschwörers und kann frei handeln. Ein fehlerhaft beschworener Dämon hat nur ein Ziel vor Augen: Augenblicklich seinen Beschwörer zu vernichten, wodurch er wieder auf seine Existenzebene zurückkehren kann (ansonsten müsste er die Zauberdauer abwarten, ein inakzeptabler Zustand).
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können den Zauber nicht anwenden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU) des Dämonen und +BB" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": true, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE x 2", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 17, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344906, - "modifiedTime": 1740227862591, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yy43TiBbip28QRhs" -} diff --git a/packs/spells/Duftnote_A9c19uUSIH4kvvHS.json b/packs/spells/Duftnote_A9c19uUSIH4kvvHS.json deleted file mode 100644 index f07f65ee..00000000 --- a/packs/spells/Duftnote_A9c19uUSIH4kvvHS.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "A9c19uUSIH4kvvHS", - "name": "Duftnote", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/fragrance.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel wird vom Zauberwirker mit einem Duft versehen.
Dieser Geruch kann angenehm oder unangenehm sein und erleichtert bzw. erschwert sämtliche sozialen Proben des Ziels für die Wirkungsdauer um 2.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "minutes" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 1, - "wizard": 1, - "sorcerer": 2 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344482, - "modifiedTime": 1740227862561, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!A9c19uUSIH4kvvHS" -} diff --git a/packs/spells/Durchl_ssig_yHUqMy4NoAtu9Tnh.json b/packs/spells/Durchl_ssig_yHUqMy4NoAtu9Tnh.json deleted file mode 100644 index 342efbc1..00000000 --- a/packs/spells/Durchl_ssig_yHUqMy4NoAtu9Tnh.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "yHUqMy4NoAtu9Tnh", - "name": "Durchlässig", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/icicles-aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker wird mit samt seiner getragenen Ausrüstung durchlässig und kann für VE/2 Kampfrunden durch nichtmagische, unbelebte Objekte schreiten.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -4, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE/2", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344905, - "modifiedTime": 1740227862591, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yHUqMy4NoAtu9Tnh" -} diff --git a/packs/spells/Durchsicht_eNefaoD15JrT4ixR.json b/packs/spells/Durchsicht_eNefaoD15JrT4ixR.json deleted file mode 100644 index 95170f40..00000000 --- a/packs/spells/Durchsicht_eNefaoD15JrT4ixR.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "eNefaoD15JrT4ixR", - "name": "Durchsicht", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/sunglasses.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann durch nichtmagische, unbelebte Objekte VE/2 Meter weit sehen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 7, - "wizard": 3, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344798, - "modifiedTime": 1740227862582, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eNefaoD15JrT4ixR" -} diff --git a/packs/spells/Ebenentor_MKlGqhjQa3GZu4gq.json b/packs/spells/Ebenentor_MKlGqhjQa3GZu4gq.json deleted file mode 100644 index 9bd3b0be..00000000 --- a/packs/spells/Ebenentor_MKlGqhjQa3GZu4gq.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "MKlGqhjQa3GZu4gq", - "name": "Ebenentor", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/magic-portal.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Öffnet ein Tor zu einer anderen Existenzebene, die der Zauberwirker namentlich nennen muss. Das Tor schließt sich, sobald VE/2 Wesen es durchschritten haben, oder die Spruchdauer abgelaufen ist.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -8, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "minutes" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": null, - "wizard": 18, - "sorcerer": 16 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344563, - "modifiedTime": 1740227862568, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!MKlGqhjQa3GZu4gq" -} diff --git a/packs/spells/Einschl_fern_CrZ8L7oaWvPjLou0.json b/packs/spells/Einschl_fern_CrZ8L7oaWvPjLou0.json deleted file mode 100644 index 211d95d8..00000000 --- a/packs/spells/Einschl_fern_CrZ8L7oaWvPjLou0.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "CrZ8L7oaWvPjLou0", - "name": "Einschläfern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sleepy.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber schläfert eine maximale Anzahl von Zielen gleich der Stufe des Zauberwirkers ein. Es handelt sich dabei um einen natürlichen Schlaf, aus dem man durch Kampflärm u. ä. erwachen kann.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+VE)/2 des jeweiligen Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 2, - "wizard": 5, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344499, - "modifiedTime": 1740227862563, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!CrZ8L7oaWvPjLou0" -} diff --git a/packs/spells/Elementar_herbeirufen__Erde__9GBDoyVXPXjWoLix.json b/packs/spells/Elementar_herbeirufen__Erde__9GBDoyVXPXjWoLix.json deleted file mode 100644 index f0ad18e2..00000000 --- a/packs/spells/Elementar_herbeirufen__Erde__9GBDoyVXPXjWoLix.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "9GBDoyVXPXjWoLix", - "name": "Elementar herbeirufen (Erde)", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/ifrit.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber ruft ein Erdelementar von seiner Ebene herbei. Erdelementare (@Compendium[ds4.creatures.1PYYg60DHC6RA3oO]{Erdelementar I}, @Compendium[ds4.creatures.S8DNL5XpmNRSNJhD]{Erdelementar II}, @Compendium[ds4.creatures.mOQ21HFNisTfu7ve]{Erdelementar III}, DS4 S. 110-112) existieren in drei verschiedenen Elementarstufen (I-III), zwischen denen man frei wählen kann. Elementare verachten die niederen Wesen, die es wagen, sie herbeizurufen, können ihnen bei einer erfolgreichen Herbeirufung aber nichts anhaben und kämpfen nur, wenn man sie angreift oder ihr Herbeirufer es befiehlt.
\nAufträge: Ein Elementar kann erst auf seine Existenzebene zurückkehren, wenn es für seinen Beschwörer eine Anzahl von Aufträgen gleich dessen hablierter VE ausgeführt hat (Elementare verstehen immer die Sprache ihres Herbeirufers). Dabei kann es sich um das simple Beantworten von Fragen handeln, aber auch komplexere Anweisungen enthalten wie: „Begebe Dich zu dem Dorf dort vorne (Auftrag 1) und entzünde die Strohdächer (Auftrag 2).“ Wird das Elementar vor Ablauf der Zauberdauer entlassen oder hat es alle Aufträge erfüllt, kehrt es augenblicklich zurück auf seine Ebene. Nach jeder Stunde besteht zudem eine Chance von 1–5 auf W20, dass es sich befreit und sofort verschwindet.
\nElementarportale: Um ein Elementar zu beschwören, wird immer sein Element in irgendeiner Form benötigt, das als Portal dient, um das Elementar von seiner Ebene zu rufen. So kann man unter Wasser keine Feuer- oder Luftelementare beschwören, wohl aber Wasserlementare. Die Größe des Portals regelt, wieviel Elementarstufen insgesamt herbeigerufen werden können. Dabei ist die Stufe senk- und aufsplittbar: Beispielsweise kann man mit einem Lagerfeuer ein Elementar der Stufe II herbeirufen. Alternativ kann man auch zwei Elementare der Stufe I herbeirufen oder gar nur eins. Die Stufensumme, die am Ende insgesamt herbeigerufen wird (I-III), wird mit 5 multipliziert und ergibt den Malus auf den ZB. Die Größe des Elementarportals gibt wiederum einen Herbeirufungsbonus (HB) auf die Zaubern-Probe.
\nMisslungenes Herbeirufen: Ein Elementar wird auch herbeigerufen, wenn die Zaubern-Probe misslingt, steht dann jedoch nicht unter der Kontrolle seines Herbeirufers. Ein fehlerhaft herbeigerufenes Elementar hat nur ein Ziel im Sinn: Seinen Herbeirufer zu vernichten, damit es bereits vor Ablauf der Zauberdauer wieder auf seine eigene Heimatebene zurückkehren kann.
\nElementarportal | \nStufe | \n
---|---|
Erdboden/Kiesel/Sand | \nI | \n
Felsen/Findling | \nII | \n
Steinhügel oder größer | \nIII | \n
Größe des Elementarportals | \nHB | \n
---|---|
Pro m³ Erde/Gestein | \n+1* | \n
*: Maximal erreichbarer Bonus entspricht VE
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-Elementarstufe x 5" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": true, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 16 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344476, - "modifiedTime": 1740227862561, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9GBDoyVXPXjWoLix" -} diff --git a/packs/spells/Elementar_herbeirufen__Feuer__8BT2TqPHC0v2OzNe.json b/packs/spells/Elementar_herbeirufen__Feuer__8BT2TqPHC0v2OzNe.json deleted file mode 100644 index f38896ea..00000000 --- a/packs/spells/Elementar_herbeirufen__Feuer__8BT2TqPHC0v2OzNe.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "8BT2TqPHC0v2OzNe", - "name": "Elementar herbeirufen (Feuer)", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/ifrit.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber ruft ein Feuerelementar von seiner Ebene herbei. Feuerelementare (@Compendium[ds4.creatures.tYcKw69Feoy3B6hG]{Feuerelementar I}, @Compendium[ds4.creatures.huPL6cx3RadJNhL0]{Feuerelementar II}, @Compendium[ds4.creatures.mPcmJ9nHpy1AbKVr]{Feuerelementar III}, DS4 S. 110-112) existieren in drei verschiedenen Elementarstufen (I-III), zwischen denen man frei wählen kann. Elementare verachten die niederen Wesen, die es wagen, sie herbeizurufen, können ihnen bei einer erfolgreichen Herbeirufung aber nichts anhaben und kämpfen nur, wenn man sie angreift oder ihr Herbeirufer es befiehlt.
\nAufträge: Ein Elementar kann erst auf seine Existenzebene zurückkehren, wenn es für seinen Beschwörer eine Anzahl von Aufträgen gleich dessen hablierter VE ausgeführt hat (Elementare verstehen immer die Sprache ihres Herbeirufers). Dabei kann es sich um das simple Beantworten von Fragen handeln, aber auch komplexere Anweisungen enthalten wie: „Begebe Dich zu dem Dorf dort vorne (Auftrag 1) und entzünde die Strohdächer (Auftrag 2).“ Wird das Elementar vor Ablauf der Zauberdauer entlassen oder hat es alle Aufträge erfüllt, kehrt es augenblicklich zurück auf seine Ebene. Nach jeder Stunde besteht zudem eine Chance von 1–5 auf W20, dass es sich befreit und sofort verschwindet.
\nElementarportale: Um ein Elementar zu beschwören, wird immer sein Element in irgendeiner Form benötigt, das als Portal dient, um das Elementar von seiner Ebene zu rufen. So kann man unter Wasser keine Feuer- oder Luftelementare beschwören, wohl aber Wasserlementare. Die Größe des Portals regelt, wieviel Elementarstufen insgesamt herbeigerufen werden können. Dabei ist die Stufe senk- und aufsplittbar: Beispielsweise kann man mit einem Lagerfeuer ein Elementar der Stufe II herbeirufen. Alternativ kann man auch zwei Elementare der Stufe I herbeirufen oder gar nur eins. Die Stufensumme, die am Ende insgesamt herbeigerufen wird (I-III), wird mit 5 multipliziert und ergibt den Malus auf den ZB. Die Größe des Elementarportals gibt wiederum einen Herbeirufungsbonus (HB) auf die Zaubern-Probe.
\nMisslungenes Herbeirufen: Ein Elementar wird auch herbeigerufen, wenn die Zaubern-Probe misslingt, steht dann jedoch nicht unter der Kontrolle seines Herbeirufers. Ein fehlerhaft herbeigerufenes Elementar hat nur ein Ziel im Sinn: Seinen Herbeirufer zu vernichten, damit es bereits vor Ablauf der Zauberdauer wieder auf seine eigene Heimatebene zurückkehren kann.
\nElementarportal | \nStufe | \n
---|---|
Kerzenflamme bis Fackel | \nI | \n
Lagerfeuer | \nII | \n
Brand/Lava | \nIII | \n
Größe des Elementarportals | \nHB | \n
---|---|
Pro m² Feuer-/Lavafläche | \n+1* | \n
*: Maximal erreichbarer Bonus entspricht VE
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-Elementarstufe x 5" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 16 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344471, - "modifiedTime": 1740227862559, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8BT2TqPHC0v2OzNe" -} diff --git a/packs/spells/Elementar_herbeirufen__Luft__PXIVHRBpLwlzrk3L.json b/packs/spells/Elementar_herbeirufen__Luft__PXIVHRBpLwlzrk3L.json deleted file mode 100644 index 622eafb2..00000000 --- a/packs/spells/Elementar_herbeirufen__Luft__PXIVHRBpLwlzrk3L.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "PXIVHRBpLwlzrk3L", - "name": "Elementar herbeirufen (Luft)", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/ifrit.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber ruft ein Luftelementar von seiner Ebene herbei. Luftlementare (@Compendium[ds4.creatures.CIzMY691MK016h4E]{Luftelementar I}, @Compendium[ds4.creatures.wYVw1a5UjPS09YxS]{Luftelementar II}, @Compendium[ds4.creatures.DNbOkqUg7jitTTbw]{Luftelementar III}, DS4 S. 110-112) existieren in drei verschiedenen Elementarstufen (I-III), zwischen denen man frei wählen kann. Elementare verachten die niederen Wesen, die es wagen, sie herbeizurufen, können ihnen bei einer erfolgreichen Herbeirufung aber nichts anhaben und kämpfen nur, wenn man sie angreift oder ihr Herbeirufer es befiehlt.
\nAufträge: Ein Elementar kann erst auf seine Existenzebene zurückkehren, wenn es für seinen Beschwörer eine Anzahl von Aufträgen gleich dessen hablierter VE ausgeführt hat (Elementare verstehen immer die Sprache ihres Herbeirufers). Dabei kann es sich um das simple Beantworten von Fragen handeln, aber auch komplexere Anweisungen enthalten wie: „Begebe Dich zu dem Dorf dort vorne (Auftrag 1) und entzünde die Strohdächer (Auftrag 2).“ Wird das Elementar vor Ablauf der Zauberdauer entlassen oder hat es alle Aufträge erfüllt, kehrt es augenblicklich zurück auf seine Ebene. Nach jeder Stunde besteht zudem eine Chance von 1–5 auf W20, dass es sich befreit und sofort verschwindet.
\nElementarportale: Um ein Elementar zu beschwören, wird immer sein Element in irgendeiner Form benötigt, das als Portal dient, um das Elementar von seiner Ebene zu rufen. So kann man unter Wasser keine Feuer- oder Luftelementare beschwören, wohl aber Wasserlementare. Die Größe des Portals regelt, wieviel Elementarstufen insgesamt herbeigerufen werden können. Dabei ist die Stufe senk- und aufsplittbar: Beispielsweise kann man mit einem Lagerfeuer ein Elementar der Stufe II herbeirufen. Alternativ kann man auch zwei Elementare der Stufe I herbeirufen oder gar nur eins. Die Stufensumme, die am Ende insgesamt herbeigerufen wird (I-III), wird mit 5 multipliziert und ergibt den Malus auf den ZB. Die Größe des Elementarportals gibt wiederum einen Herbeirufungsbonus (HB) auf die Zaubern-Probe.
\nMisslungenes Herbeirufen: Ein Elementar wird auch herbeigerufen, wenn die Zaubern-Probe misslingt, steht dann jedoch nicht unter der Kontrolle seines Herbeirufers. Ein fehlerhaft herbeigerufenes Elementar hat nur ein Ziel im Sinn: Seinen Herbeirufer zu vernichten, damit es bereits vor Ablauf der Zauberdauer wieder auf seine eigene Heimatebene zurückkehren kann.
\nElementarportal | \nStufe | \n
---|---|
Leichte Brise/Windiges Wetter | \nI | \n
Stürmisch | \nII | \n
Gewittersturm | \nIII | \n
Größe des Elementarportals | \nHB | \n
---|---|
Pro m³ Luft | \n+1* | \n
*: Maximal erreichbarer Bonus entspricht VE
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-Elementarstufe x 5" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": true, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 16 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344601, - "modifiedTime": 1740227862570, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!PXIVHRBpLwlzrk3L" -} diff --git a/packs/spells/Elementar_herbeirufen__Wasser__ftDPIhLCVRLRpOix.json b/packs/spells/Elementar_herbeirufen__Wasser__ftDPIhLCVRLRpOix.json deleted file mode 100644 index 0953430a..00000000 --- a/packs/spells/Elementar_herbeirufen__Wasser__ftDPIhLCVRLRpOix.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ftDPIhLCVRLRpOix", - "name": "Elementar herbeirufen (Wasser)", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/ifrit.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber ruft ein Wasserelementar von seiner Ebene herbei. Wasserelementare (@Compendium[ds4.creatures.ZJF6ieo8O0GXfgwz]{Wasserelementar I}, @Compendium[ds4.creatures.Xn7g2PB1rXvllwRi]{Wasserelementar II}, @Compendium[ds4.creatures.dlrDPQ3is4NkzZJB]{Wasserelementar III}, DS4 S. 110-112) existieren in drei verschiedenen Elementarstufen (I-III), zwischen denen man frei wählen kann. Elementare verachten die niederen Wesen, die es wagen, sie herbeizurufen, können ihnen bei einer erfolgreichen Herbeirufung aber nichts anhaben und kämpfen nur, wenn man sie angreift oder ihr Herbeirufer es befiehlt.
\nAufträge: Ein Elementar kann erst auf seine Existenzebene zurückkehren, wenn es für seinen Beschwörer eine Anzahl von Aufträgen gleich dessen hablierter VE ausgeführt hat (Elementare verstehen immer die Sprache ihres Herbeirufers). Dabei kann es sich um das simple Beantworten von Fragen handeln, aber auch komplexere Anweisungen enthalten wie: „Begebe Dich zu dem Dorf dort vorne (Auftrag 1) und entzünde die Strohdächer (Auftrag 2).“ Wird das Elementar vor Ablauf der Zauberdauer entlassen oder hat es alle Aufträge erfüllt, kehrt es augenblicklich zurück auf seine Ebene. Nach jeder Stunde besteht zudem eine Chance von 1–5 auf W20, dass es sich befreit und sofort verschwindet.
\nElementarportale: Um ein Elementar zu beschwören, wird immer sein Element in irgendeiner Form benötigt, das als Portal dient, um das Elementar von seiner Ebene zu rufen. So kann man unter Wasser keine Feuer- oder Luftelementare beschwören, wohl aber Wasserlementare. Die Größe des Portals regelt, wieviel Elementarstufen insgesamt herbeigerufen werden können. Dabei ist die Stufe senk- und aufsplittbar: Beispielsweise kann man mit einem Lagerfeuer ein Elementar der Stufe II herbeirufen. Alternativ kann man auch zwei Elementare der Stufe I herbeirufen oder gar nur eins. Die Stufensumme, die am Ende insgesamt herbeigerufen wird (I-III), wird mit 5 multipliziert und ergibt den Malus auf den ZB. Die Größe des Elementarportals gibt wiederum einen Herbeirufungsbonus (HB) auf die Zaubern-Probe.
\nMisslungenes Herbeirufen: Ein Elementar wird auch herbeigerufen, wenn die Zaubern-Probe misslingt, steht dann jedoch nicht unter der Kontrolle seines Herbeirufers. Ein fehlerhaft herbeigerufenes Elementar hat nur ein Ziel im Sinn: Seinen Herbeirufer zu vernichten, damit es bereits vor Ablauf der Zauberdauer wieder auf seine eigene Heimatebene zurückkehren kann.
\nElementarportal | \nStufe | \n
---|---|
Wasser: Pfütze/Regen/Wassertonne | \nI | \n
Wasser: Brunnen/Teich/Weiher o.ä. | \nII | \n
Wasser: Fluss/Meer/See | \nIII | \n
Größe des Elementarportals | \nHB | \n
---|---|
Pro m² Wasserfläche | \n+1* | \n
*: Maximal erreichbarer Bonus entspricht VE
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-Elementarstufe x 5" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": true, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 16 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344817, - "modifiedTime": 1740227862582, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ftDPIhLCVRLRpOix" -} diff --git a/packs/spells/Erdspalt_4R2OiLe4Ojht69Ea.json b/packs/spells/Erdspalt_4R2OiLe4Ojht69Ea.json deleted file mode 100644 index a26dc5d1..00000000 --- a/packs/spells/Erdspalt_4R2OiLe4Ojht69Ea.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "4R2OiLe4Ojht69Ea", - "name": "Erdspalt", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/earth-spit.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Auf festem Boden öffnet der Zauber einen Erdspalt. Der Erdspalt ist bis zu VE in Meter breit und VE/2 in Metern lang und tief. Stehen Wesen an der Stelle, unter der der Erdspalt erscheint, können sie mit AGI+BE augenblicklich versuchen, noch in Sicherheit zu springen (zählt als freie Aktion). Wesen, die sich in der Erdspalte befinden, wenn diese sich wieder schließt, erhalten augenblicklich 2W20 nicht abwehrbaren Schaden und sind – ohne noch richtig atmen zu können – eingeschlossen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -4, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": true, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 10, - "wizard": 10, - "sorcerer": 14 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344451, - "modifiedTime": 1740227862556, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!4R2OiLe4Ojht69Ea" -} diff --git a/packs/spells/Federgleich_eYy2tF4LpHth18t6.json b/packs/spells/Federgleich_eYy2tF4LpHth18t6.json deleted file mode 100644 index d4759ed3..00000000 --- a/packs/spells/Federgleich_eYy2tF4LpHth18t6.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "eYy2tF4LpHth18t6", - "name": "Federgleich", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/two-feathers.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel – samt seiner getragenen Ausrüstung – kann aus einer Höhe gleich dem doppelten Probenergebniss in Metern sanft wie ein Feder ungelenkt zu Boden gleiten (1 m pro Kampfrunde).
\nDer federgleiche Fall muss spätestens 1 Minute, nachdem der Zauber gewirkt wurde, begonnen werden, sonst verfällt sein Effekt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "1 Min & bis Distanz gefallen", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": 5, - "wizard": 3, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344808, - "modifiedTime": 1740227862582, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eYy2tF4LpHth18t6" -} diff --git a/packs/spells/Feueratem_AyTRXMB9PBeVsmus.json b/packs/spells/Feueratem_AyTRXMB9PBeVsmus.json deleted file mode 100644 index 639326aa..00000000 --- a/packs/spells/Feueratem_AyTRXMB9PBeVsmus.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "AyTRXMB9PBeVsmus", - "name": "Feueratem", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/fire-breath.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Aus dem Mund des Zauberwirkers schießt eine lodernde Säule, die alle hintereinander stehenden Gegner in einer 1 m breiten, geraden Schneise in Flammen hüllt. Der feurige Atem verursacht nicht abwehrbaren Schaden in Höhe des Probenergebnisses.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 3, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344487, - "modifiedTime": 1740227862562, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!AyTRXMB9PBeVsmus" -} diff --git a/packs/spells/Feuerball_ifRUXwqnjd1SCcRG.json b/packs/spells/Feuerball_ifRUXwqnjd1SCcRG.json deleted file mode 100644 index 68cf1fa3..00000000 --- a/packs/spells/Feuerball_ifRUXwqnjd1SCcRG.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ifRUXwqnjd1SCcRG", - "name": "Feuerball", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/fire-tail.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker schießt einen flammenden Ball auf seine Gegner, der in einer feurigen Explosion – ihr Radius entspricht der VE des Zauberwirkers in Metern – endet, welche nicht abwehrbaren Schaden in Höhe des Probenergebnisses verursacht.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 3, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344864, - "modifiedTime": 1740227862583, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ifRUXwqnjd1SCcRG" -} diff --git a/packs/spells/Feuerlanze_QuuHhHmliyC5N55q.json b/packs/spells/Feuerlanze_QuuHhHmliyC5N55q.json deleted file mode 100644 index adf103ce..00000000 --- a/packs/spells/Feuerlanze_QuuHhHmliyC5N55q.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "QuuHhHmliyC5N55q", - "name": "Feuerlanze", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/fire-ray.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dies ist eine mächtigere Variante des Zaubers @Compendium[ds4.spells.kudkdrpMU0C83vM7]{Feuerstrahl}.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 2, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": 5, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344608, - "modifiedTime": 1740227862571, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QuuHhHmliyC5N55q" -} diff --git a/packs/spells/Feuerstrahl_kudkdrpMU0C83vM7.json b/packs/spells/Feuerstrahl_kudkdrpMU0C83vM7.json deleted file mode 100644 index 47391424..00000000 --- a/packs/spells/Feuerstrahl_kudkdrpMU0C83vM7.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "kudkdrpMU0C83vM7", - "name": "Feuerstrahl", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/fire-ray-small.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker schießt einen Feuerstrahl auf einen Feind, dessen Schaden dem Probenergebnis entspricht.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 1, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344868, - "modifiedTime": 1740227862584, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!kudkdrpMU0C83vM7" -} diff --git a/packs/spells/Feuerwand_7yYxjxuGjTo29r10.json b/packs/spells/Feuerwand_7yYxjxuGjTo29r10.json deleted file mode 100644 index 6511f384..00000000 --- a/packs/spells/Feuerwand_7yYxjxuGjTo29r10.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "7yYxjxuGjTo29r10", - "name": "Feuerwand", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/firewall.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker lässt eine Feuerwand erscheinen, die Ausmaße von maximal 1 m x VE m x VE m annehmen kann. Wesen, die an der Stelle stehen, wo die Feuerwand erscheint, oder durch sie hindurch springen, erhalten 2W20 abwehrbaren Schaden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 8, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344467, - "modifiedTime": 1740227862559, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7yYxjxuGjTo29r10" -} diff --git a/packs/spells/Flackern_5RUGIWTftCyeJkDQ.json b/packs/spells/Flackern_5RUGIWTftCyeJkDQ.json deleted file mode 100644 index 62b58617..00000000 --- a/packs/spells/Flackern_5RUGIWTftCyeJkDQ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "5RUGIWTftCyeJkDQ", - "name": "Flackern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/duality.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker beginnt zu flackern und ist dadurch schwieriger zu treffen. Seine Abwehr wird für die Dauer des Zaubers um seinen halbierten Wert in GEI erhöht (nur nicht gegen alles einhüllenden Flächenschaden).
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. x 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 2, - "wizard": 4, - "sorcerer": 4 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344456, - "modifiedTime": 1740227862557, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5RUGIWTftCyeJkDQ" -} diff --git a/packs/spells/Flammeninferno_7ybmodIkWDP1z1D6.json b/packs/spells/Flammeninferno_7ybmodIkWDP1z1D6.json deleted file mode 100644 index 70ce25b3..00000000 --- a/packs/spells/Flammeninferno_7ybmodIkWDP1z1D6.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "7ybmodIkWDP1z1D6", - "name": "Flammeninferno", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/fire-wave.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine kreisrunde Fläche mit einem Radius von VE in Metern geht in Flammen auf. Jeder in dem Inferno erhält pro Kampfrunde nicht abwehrbaren Schaden in Höhe des Probenergebnisses.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 5, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 15, - "sorcerer": 15 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344469, - "modifiedTime": 1740227862559, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7ybmodIkWDP1z1D6" -} diff --git a/packs/spells/Flammenklinge_gJ3Z8y7i6LWjSMKJ.json b/packs/spells/Flammenklinge_gJ3Z8y7i6LWjSMKJ.json deleted file mode 100644 index f97ee591..00000000 --- a/packs/spells/Flammenklinge_gJ3Z8y7i6LWjSMKJ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "gJ3Z8y7i6LWjSMKJ", - "name": "Flammenklinge", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/shard-sword.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann eine Metallklinge in lodernde Flammen hüllen. Dabei handelt es sich um ein magisches Feuer, das keinen Sauerstoff benötigt und dessen Flammenfarbe der Zauberwirker frei bestimmen kann.
\nFür die Dauer des Zauberspruchs wird der WB der Waffe um +1 erhöht und ihr Schaden gilt als magisch.
\nEin Immersieg bei einem Angriff erzeugt eine kleine Explosion, wodurch der erwürfelte Schaden in dieser Kampfrunde um zusätzliche W20 erhöht wird.
\nFlammenklinge ist nicht mit @Compendium[ds4.spells.Gc5G9kixOqNbuwp1]{Frostwaffe} kombinierbar.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": true, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 4, - "sorcerer": 4 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344829, - "modifiedTime": 1740227862582, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gJ3Z8y7i6LWjSMKJ" -} diff --git a/packs/spells/Fliegen_NwLeietvcarS6zP5.json b/packs/spells/Fliegen_NwLeietvcarS6zP5.json deleted file mode 100644 index 1c60547a..00000000 --- a/packs/spells/Fliegen_NwLeietvcarS6zP5.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "NwLeietvcarS6zP5", - "name": "Fliegen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/hand-wing.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel kann fliegen. Die Fortbewegungsgeschwindigkeit ist im Flug doppelt so hoch wie am Boden (zusätzlich kann man sie wie beim „Rennen“ verdoppeln). Ein Charakter mit Laufen 4,5 m fliegt also 9 m in einer Kampfrunde, „rennend“ 18 m.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. x 5", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 20, - "wizard": 10, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344588, - "modifiedTime": 1740227862569, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NwLeietvcarS6zP5" -} diff --git a/packs/spells/Fluch_DjvQzdWEmm8h7G4X.json b/packs/spells/Fluch_DjvQzdWEmm8h7G4X.json deleted file mode 100644 index 27f821ec..00000000 --- a/packs/spells/Fluch_DjvQzdWEmm8h7G4X.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "DjvQzdWEmm8h7G4X", - "name": "Fluch", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/voodoo-doll.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker benötigt etwas vom Ziel in seinem Besitz, wie beispielsweise ein Haar, ein Kleidungsstück o. ä., das beim Zaubern – ob erfolgreich oder nicht – zerstört wird. Das Ziel wird verflucht und erhält auf alle Proben -2, bis die Zauberdauer verstrichen ist oder der Fluch mittels @Compendium[ds4.spells.tBWEyulMfJFzPuWM]{Magie bannen} schon vorher entfernt wird.
\nEin Ziel kann mehrmals verflucht werden. Alle Flüche müssen einzeln gebannt werden, stammen sie nicht vom selben Zauberwirker.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+AU)/2 des Ziel" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "days" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 6, - "sorcerer": 2 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344510, - "modifiedTime": 1740227862564, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!DjvQzdWEmm8h7G4X" -} diff --git a/packs/spells/Freund_NcK7zXn0IeCfqjkl.json b/packs/spells/Freund_NcK7zXn0IeCfqjkl.json deleted file mode 100644 index 28a05b94..00000000 --- a/packs/spells/Freund_NcK7zXn0IeCfqjkl.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "NcK7zXn0IeCfqjkl", - "name": "Freund", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/lovers.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Erfolg hält das Ziel den Zauberwirker (und nur ihn!) für einen sehr guten Freund.
\nDas Ziel wird ihm alles anvertrauen, was er auch einem sehr guten Freund verraten würde und alles für ihn machen, was er auch für einen guten Freund tun würde.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+VE)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "minutes" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 6, - "wizard": 7, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344584, - "modifiedTime": 1740227862569, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NcK7zXn0IeCfqjkl" -} diff --git a/packs/spells/Frostschock_iH2NtsJtMfG0ZAU3.json b/packs/spells/Frostschock_iH2NtsJtMfG0ZAU3.json deleted file mode 100644 index 5a20bb5f..00000000 --- a/packs/spells/Frostschock_iH2NtsJtMfG0ZAU3.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "iH2NtsJtMfG0ZAU3", - "name": "Frostschock", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/frozen-body.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein Eisstrahl schießt aus den Händen des Zauberwirkers. Gegen den Schaden dieses frostigen Zauber ist keine Abwehr zulässig.
\nZudem wird das Ziel magisch eingefroren, bis VE Kampfrunden verstrichen sind oder es Schaden erhält.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 3, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": true, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 12, - "sorcerer": 16 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344862, - "modifiedTime": 1740227862583, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!iH2NtsJtMfG0ZAU3" -} diff --git a/packs/spells/Frostwaffe_Gc5G9kixOqNbuwp1.json b/packs/spells/Frostwaffe_Gc5G9kixOqNbuwp1.json deleted file mode 100644 index 68de2765..00000000 --- a/packs/spells/Frostwaffe_Gc5G9kixOqNbuwp1.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "Gc5G9kixOqNbuwp1", - "name": "Frostwaffe", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sparkling-sabre.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann eine Waffe in eisige Kälte hüllen. Für die Dauer des Zauberspruchs wird der WB der Waffe um +1 erhöht und ihr Schaden gilt als magisch. Ein Immersieg bei einem Angriff friert den Gegner für eine Kampfrunde lang ein, als wirke auf ihn der Zauber @Compendium[ds4.spells.1hhpEYpQQ0oLNptl]{Halt}. Frostwaffe ist nicht mit @Compendium[ds4.spells.gJ3Z8y7i6LWjSMKJ]{Flammenklinge} kombinierbar.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": true, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 4, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344526, - "modifiedTime": 1740227862565, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Gc5G9kixOqNbuwp1" -} diff --git a/packs/spells/Gasgestalt_tZJoj1PGrRGe9eMV.json b/packs/spells/Gasgestalt_tZJoj1PGrRGe9eMV.json deleted file mode 100644 index a13f5270..00000000 --- a/packs/spells/Gasgestalt_tZJoj1PGrRGe9eMV.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "tZJoj1PGrRGe9eMV", - "name": "Gasgestalt", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/steam.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel – samt seiner getragenen Ausrüstung – wird gasförmig und kann durch jede noch so kleine Öffnung gleiten. Das Ziel kann jederzeit die Wirkung des Zaubers als freie Aktion beenden. In Gasform wird der Laufen-Wert vervierfacht, der Charakter kann seine Umgebung weiterhin wahrnehmen. In Gastgestalt ist es allerdings nicht möglich, zu zaubern, zu sprechen, anzugreifen oder in andere Wesen einzudringen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": true, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. x 5", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 15, - "sorcerer": 18 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344896, - "modifiedTime": 1740227862589, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tZJoj1PGrRGe9eMV" -} diff --git a/packs/spells/Geben_und_Nehmen_MpqPWr2l8qV4oQyL.json b/packs/spells/Geben_und_Nehmen_MpqPWr2l8qV4oQyL.json deleted file mode 100644 index ddc764a0..00000000 --- a/packs/spells/Geben_und_Nehmen_MpqPWr2l8qV4oQyL.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "MpqPWr2l8qV4oQyL", - "name": "Geben und Nehmen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/heart-inside.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel des Zaubers erhält 50 % des Schadens, den es per Schlagen im Nahkampf verursacht (also abzüglich des Abwehrwurfs des Gegners), in Form von heilender Magie auf die eigene Lebenskraft gutgeschrieben.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": 4, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344567, - "modifiedTime": 1740227862568, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!MpqPWr2l8qV4oQyL" -} diff --git a/packs/spells/Gehorche_wZYElRaDmhqgzUvQ.json b/packs/spells/Gehorche_wZYElRaDmhqgzUvQ.json deleted file mode 100644 index 537a1763..00000000 --- a/packs/spells/Gehorche_wZYElRaDmhqgzUvQ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "wZYElRaDmhqgzUvQ", - "name": "Gehorche", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/convince.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Erfolg wird das Ziel dem Zauberwirker hörig und führt bedingungslos jeden seiner Befehle aus (außer Selbstmord oder -verstümmelung). Es würde sogar seine eigenen Kameraden angreifen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+VE)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE / 2", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 12, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344901, - "modifiedTime": 1740227862590, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!wZYElRaDmhqgzUvQ" -} diff --git a/packs/spells/Giftbann_ONhSaLNmvvacgCjA.json b/packs/spells/Giftbann_ONhSaLNmvvacgCjA.json deleted file mode 100644 index f8235480..00000000 --- a/packs/spells/Giftbann_ONhSaLNmvvacgCjA.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ONhSaLNmvvacgCjA", - "name": "Giftbann", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/foamy-disc.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Neutralisiert augenblicklich ein nichtmagisches Gift, sofern es noch nicht zu spät ist.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 3, - "wizard": 6, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344594, - "modifiedTime": 1740227862570, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ONhSaLNmvvacgCjA" -} diff --git a/packs/spells/Giftschutz_lSIJsq1WJbNTpV9F.json b/packs/spells/Giftschutz_lSIJsq1WJbNTpV9F.json deleted file mode 100644 index c17efbc3..00000000 --- a/packs/spells/Giftschutz_lSIJsq1WJbNTpV9F.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "lSIJsq1WJbNTpV9F", - "name": "Giftschutz", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel erhält einen Bonus auf Abwehr-Proben gegen Gifte in Höhe der Stufe des Zauberwirkers. Der alleinige Bonus (ohne den normalen Abwehr-Wert) wirkt auch gegen Gifte, bei denen normalerweise keine Abwehr erlaubt ist.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 1, - "wizard": 2, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344871, - "modifiedTime": 1740227862585, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!lSIJsq1WJbNTpV9F" -} diff --git a/packs/spells/Gl_hender_Glaube_919AW6tITRT8WikD.json b/packs/spells/Gl_hender_Glaube_919AW6tITRT8WikD.json deleted file mode 100644 index d75163f7..00000000 --- a/packs/spells/Gl_hender_Glaube_919AW6tITRT8WikD.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "919AW6tITRT8WikD", - "name": "Glühender Glaube", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/glowing-hands.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Die berührte Waffe – das Ziel des Zaubers – erglüht vor heiliger Kraft. Für die Wirkungsdauer des Zaubers gilt der mit der Waffe verursachte Schaden als magisch und der WB wird um VE/2 erhöht, während die Abwehr getroffener Gegner gegen Angriffe mit dieser Waffe um VE/2 gesenkt wird.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 6, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344475, - "modifiedTime": 1740227862560, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!919AW6tITRT8WikD" -} diff --git a/packs/spells/Halt_1hhpEYpQQ0oLNptl.json b/packs/spells/Halt_1hhpEYpQQ0oLNptl.json deleted file mode 100644 index 92163e90..00000000 --- a/packs/spells/Halt_1hhpEYpQQ0oLNptl.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "1hhpEYpQQ0oLNptl", - "name": "Halt", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/skoll/halt.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Erfolg kann sich das Ziel, welches keine Abwehr gegen den Zauber würfeln darf, nicht mehr bewegen.
\nDie Starre endet vorzeitig, sollte das Ziel Schaden erhalten. Während der Starre ist es dem Ziel möglich, die Augen zu bewegen, zu atmen und klar zu denken. Ein erstarrter Zauberwirker könnte also immer noch seine Zauber wechseln oder gar versuchen, ohne Worte und Gesten (DS4 S. 47) einen Zauber zu wagen.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 2, - "wizard": 6, - "sorcerer": 6 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344449, - "modifiedTime": 1740227862556, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1hhpEYpQQ0oLNptl" -} diff --git a/packs/spells/Heilbeeren_htK3mzAMFbTwYRTR.json b/packs/spells/Heilbeeren_htK3mzAMFbTwYRTR.json deleted file mode 100644 index 7958892d..00000000 --- a/packs/spells/Heilbeeren_htK3mzAMFbTwYRTR.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "htK3mzAMFbTwYRTR", - "name": "Heilbeeren", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/cherry.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Heiler benötigt frische Beeren, kleine Nüsse, schmackhafte Blätter o. ä. für diesen Zauber. Insgesamt wird von ihnen eine Anzahl gleich dem Probenergebnis (bei Druiden x 2) mit einem Heileffekt versehen: Jede Heilbeere heilt augenblicklich 1 LK (pro Aktion können bis zu 10 Heilbeeren verzehrt werden). Die Heilbeeren verlieren nach VE Tagen ihre Wirkung, oder wenn der Heiler den Zauber erneut anwendet.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 1, - "wizard": 10, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344856, - "modifiedTime": 1740227862583, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!htK3mzAMFbTwYRTR" -} diff --git a/packs/spells/Heilende_Aura_pFPofa4TEi69slEy.json b/packs/spells/Heilende_Aura_pFPofa4TEi69slEy.json deleted file mode 100644 index f58cb2e8..00000000 --- a/packs/spells/Heilende_Aura_pFPofa4TEi69slEy.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "pFPofa4TEi69slEy", - "name": "Heilende Aura", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/beams-aura.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Heiler und alle seine Gefährten in einem Radius von VE in Metern erhalten 1 LK jede Kampfrunde geheilt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "VE", - "unit": "meter" - }, - "duration": { - "value": "Prb x 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 1, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344880, - "modifiedTime": 1740227862586, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pFPofa4TEi69slEy" -} diff --git a/packs/spells/Heilende_Hand_FJE2X2GXFDs9LT7J.json b/packs/spells/Heilende_Hand_FJE2X2GXFDs9LT7J.json deleted file mode 100644 index 9e58d5c9..00000000 --- a/packs/spells/Heilende_Hand_FJE2X2GXFDs9LT7J.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "FJE2X2GXFDs9LT7J", - "name": "Heilende Hand", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/sbed/health-normal.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Durch Hand auflegen wird bei dem Ziel Lebenskraft in Höhe des Probenergebnisses geheilt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 1, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berührung", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "custom" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": 1, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344515, - "modifiedTime": 1740227862564, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FJE2X2GXFDs9LT7J" -} diff --git a/packs/spells/Heilende_Strahlen_4StILfq4zNUWBAgz.json b/packs/spells/Heilende_Strahlen_4StILfq4zNUWBAgz.json deleted file mode 100644 index 9144ad00..00000000 --- a/packs/spells/Heilende_Strahlen_4StILfq4zNUWBAgz.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "4StILfq4zNUWBAgz", - "name": "Heilende Strahlen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sinusoidal-beam.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Lichtstrahlen schießen vom Heiler aus und heilen die Wunden von bis zu VE/2 Gefährten, die Lebenskraft in Höhe des Probenergebnisses dazu erhalten. Es wird nur eine Probe für diesen Zielzauber gewürfelt: Einzig der Distanzmalus (DS4 S. 43) des Ziels, das am weitesten entfernt steht, wird als Malus gewertet.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "2r", - "minimumLevels": { - "healer": 12, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344453, - "modifiedTime": 1740227862556, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!4StILfq4zNUWBAgz" -} diff --git a/packs/spells/Heilendes_Feld_HWjB5kPr3AZbFOFZ.json b/packs/spells/Heilendes_Feld_HWjB5kPr3AZbFOFZ.json deleted file mode 100644 index 745c7986..00000000 --- a/packs/spells/Heilendes_Feld_HWjB5kPr3AZbFOFZ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "HWjB5kPr3AZbFOFZ", - "name": "Heilendes Feld", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/chained-heart.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber heilt bei allen Gefährten im Wirkungsradius die Lebenskraft um das Probenergebnis.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "custom" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 18, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344535, - "modifiedTime": 1740227862565, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!HWjB5kPr3AZbFOFZ" -} diff --git a/packs/spells/Heilendes_Licht_9VLNUomSaxPTdfZY.json b/packs/spells/Heilendes_Licht_9VLNUomSaxPTdfZY.json deleted file mode 100644 index 9a6495fb..00000000 --- a/packs/spells/Heilendes_Licht_9VLNUomSaxPTdfZY.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "9VLNUomSaxPTdfZY", - "name": "Heilendes Licht", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sunbeams.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein vom Heiler ausgehender Lichtstrahl heilt die Lebenskraft des Ziels in Höhe des Probenergebnisses.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "2r", - "minimumLevels": { - "healer": 4, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344478, - "modifiedTime": 1740227862561, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9VLNUomSaxPTdfZY" -} diff --git a/packs/spells/Heiliger_Hammer_QzcgykKQKztABe2a.json b/packs/spells/Heiliger_Hammer_QzcgykKQKztABe2a.json deleted file mode 100644 index 4a17240a..00000000 --- a/packs/spells/Heiliger_Hammer_QzcgykKQKztABe2a.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "QzcgykKQKztABe2a", - "name": "Heiliger Hammer", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/hammer-drop.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein Hammer aus hellem Licht erscheint innerhalb eines Radius von VE in Metern um den Heiler herum.
\nInnerhalb dieses Wirkungsbereiches kämpft er völlig selbstständig, hört jedoch auf gedankliche Kampfkommandos des Zauberwirkers wie „Halte den Dämon auf“ oder „Helfe dem Paladin“.
\nBewegt sich der Charakter, wandert der Wirkungsbereich des Hammers mit ihm mit, so dass die heilige Waffe niemals mehr als VE x 2 in Metern von ihm entfernt sein kann. Der heilige Hammer verschwindet, sobald seine (nicht heilbaren) LK auf Null oder niedriger sinken bzw. die Zauberdauer abgelaufen ist.
\nSämtliche Kampfwerte des heiligen Hammers entsprechen der Stufe des Heilers +8. Die einzige Ausnahme bildet der Laufen-Wert, der dem doppelten Laufen-Wert des Heilers entspricht.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 10, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344613, - "modifiedTime": 1740227862571, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QzcgykKQKztABe2a" -} diff --git a/packs/spells/K_rperexplosion_apMuLg0knKnmC2Wv.json b/packs/spells/K_rperexplosion_apMuLg0knKnmC2Wv.json deleted file mode 100644 index 0c75f92f..00000000 --- a/packs/spells/K_rperexplosion_apMuLg0knKnmC2Wv.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "apMuLg0knKnmC2Wv", - "name": "Körperexplosion", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/mine-explosion.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauber versucht das Ziel zur Explosion zu bringen. Der verursachte Schaden entspricht dem vierfachen Probenergebnis, das Ziel würfelt Abwehr ohne Panzerungsboni von Gegenständen.
\nDer Zauber ist gegen körperlose Wesen – wie beispielsweise @Compendium[ds4.creatures.cE5kI3uqXWQrCaI5]{Geister} – nicht einsetzbar.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 20 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344714, - "modifiedTime": 1740227862578, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!apMuLg0knKnmC2Wv" -} diff --git a/packs/spells/Kettenblitz_gePnhgqnsmdEbj3Z.json b/packs/spells/Kettenblitz_gePnhgqnsmdEbj3Z.json deleted file mode 100644 index 35d054f0..00000000 --- a/packs/spells/Kettenblitz_gePnhgqnsmdEbj3Z.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "gePnhgqnsmdEbj3Z", - "name": "Kettenblitz", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/willdabeast/chain-lightning.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker schießt einen Blitz auf einen Feind, der auf bis zu VE weitere Gegner in seiner Nähe überspringt. Nur Gegner, die 2 oder mehr Meter von einem ihrer getroffenen Mitstreiter entfernt stehen, kann der Kettenblitz nicht erreichen.
\nGetroffene Gegner in Metallrüstung dürfen keine Abwehr gegen einen Kettenblitz würfeln.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 3, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": true, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": 16, - "wizard": 10, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344849, - "modifiedTime": 1740227862583, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gePnhgqnsmdEbj3Z" -} diff --git a/packs/spells/Kleiner_Terror_dt2E4g7iwVqTSlMl.json b/packs/spells/Kleiner_Terror_dt2E4g7iwVqTSlMl.json deleted file mode 100644 index 3148f2ff..00000000 --- a/packs/spells/Kleiner_Terror_dt2E4g7iwVqTSlMl.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "dt2E4g7iwVqTSlMl", - "name": "Kleiner Terror", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/cathelineau/dread.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Erfolg fliehen betroffene Ziele – maximal eine Anzahl gleich der halbierten Stufe des Zauberwirkers – so schnell wie möglich in panischer Angst und können erst nach Ablauf der Zauberdauer wieder umkehren. Der Effekt endet bei jedem Fliehenden, der Schaden erleidet.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+VE)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "custom" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 2, - "wizard": 6, - "sorcerer": 4 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344750, - "modifiedTime": 1740227862580, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dt2E4g7iwVqTSlMl" -} diff --git a/packs/spells/Kontrollieren_9gc1CF70165NXymH.json b/packs/spells/Kontrollieren_9gc1CF70165NXymH.json deleted file mode 100644 index 926f081e..00000000 --- a/packs/spells/Kontrollieren_9gc1CF70165NXymH.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "9gc1CF70165NXymH", - "name": "Kontrollieren", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/cathelineau/fomorian.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Erfolg bringt der Zauberwirker eine maximale Anzahl untoter Ziele gleich seiner Stufe unter Kontrolle, selbst wenn diese einem anderen Zauberwirker unterstehen.
\nBei zu vielen Untoten entscheidet der Zufall, welche durch den Zauber betroffen sind. Alternativ kann auch ein einzelner Untoter als Ziel bestimmt werden.
\nKontrollierte Untote unterstehen dem Zauberwirker, führen bedingungslos seine Befehle aus und können nur auf Wunsch des Zauberwirkers wieder ihren Frieden finden, oder wenn dieser stirbt.
\nEin Zauberwirker kann nicht mehr Untote gleichzeitig kontrollieren, als seine eigene Stufe beträgt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Bis erlöst", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 8, - "sorcerer": 4 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344481, - "modifiedTime": 1740227862561, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9gc1CF70165NXymH" -} diff --git a/packs/spells/Lauschen_WkZBOsMblhcrPRUF.json b/packs/spells/Lauschen_WkZBOsMblhcrPRUF.json deleted file mode 100644 index adeedc8d..00000000 --- a/packs/spells/Lauschen_WkZBOsMblhcrPRUF.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "WkZBOsMblhcrPRUF", - "name": "Lauschen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/human-ear.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann sein Hörzentrum an einen bis zu VE x 5 Meter entfernten Punkt verlagern (eine klare Sichtlinie vorausgesetzt) und vernimmt dadurch alles, was dort zu hören ist, als würde er sich dort befinden.
Dieser Punkt kann eine freie Stelle im Raum sein oder auch ein Kleidungsstück des Belauschten.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-1 pro 10 m Entfernung" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE x 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 6, - "wizard": 2, - "sorcerer": 2 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344685, - "modifiedTime": 1740227862576, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!WkZBOsMblhcrPRUF" -} diff --git a/packs/spells/Licht_L4pdDXSYAOgtWIbd.json b/packs/spells/Licht_L4pdDXSYAOgtWIbd.json deleted file mode 100644 index 2e73dc39..00000000 --- a/packs/spells/Licht_L4pdDXSYAOgtWIbd.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "L4pdDXSYAOgtWIbd", - "name": "Licht", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/explosion-rays.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das berührte, leblose Ziel – beipielsweise ein Stab oder eine kleine, abdeckbare Münze – leuchtet fackelhell auf.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 5, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "minutes" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 1, - "wizard": 1, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344558, - "modifiedTime": 1740227862567, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!L4pdDXSYAOgtWIbd" -} diff --git a/packs/spells/Lichtlanze_1b32mq9AWEMuoBAs.json b/packs/spells/Lichtlanze_1b32mq9AWEMuoBAs.json deleted file mode 100644 index bbdcedfd..00000000 --- a/packs/spells/Lichtlanze_1b32mq9AWEMuoBAs.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "1b32mq9AWEMuoBAs", - "name": "Lichtlanze", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/sun-spear.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dies ist eine mächtigere Variante des Zaubers @Compendium[ds4.spells.lj8NQ5l4wLWmYcEt]{Lichtpfeil}, gegen dessen Schaden @Compendium[ds4.special-creature-abilities.R3j1CjXJckUH0CBG]{Wesen der Dunkelheit (Settingoption)} einen Malus von 2 auf ihre Abwehr erhalten.
\nCharaktere mit dem Talent @Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Diener der Dunkelheit} können diesen Zauber nicht anwenden.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 5, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "custom" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1r", - "minimumLevels": { - "healer": 10, - "wizard": 12, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344448, - "modifiedTime": 1740227862555, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1b32mq9AWEMuoBAs" -} diff --git a/packs/spells/Lichtpfeil_lj8NQ5l4wLWmYcEt.json b/packs/spells/Lichtpfeil_lj8NQ5l4wLWmYcEt.json deleted file mode 100644 index 95e3d9b3..00000000 --- a/packs/spells/Lichtpfeil_lj8NQ5l4wLWmYcEt.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "lj8NQ5l4wLWmYcEt", - "name": "Lichtpfeil", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/middle-arrow.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Gegen den Schaden dieses Zielzaubers erhalten @Compendium[ds4.special-creature-abilities.R3j1CjXJckUH0CBG]{Wesen der Dunkelheit (Settingoption)} einen Malus von 2 auf ihre Abwehr.
\nCharaktere mit dem Talent @Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Diener der Dunkelheit} können diesen Zauber nicht anwenden.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 2, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1r", - "minimumLevels": { - "healer": 2, - "wizard": 5, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344872, - "modifiedTime": 1740227862585, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!lj8NQ5l4wLWmYcEt" -} diff --git a/packs/spells/Lichts_ule_6bptWPrq5gkX2UaT.json b/packs/spells/Lichts_ule_6bptWPrq5gkX2UaT.json deleted file mode 100644 index 57e14134..00000000 --- a/packs/spells/Lichts_ule_6bptWPrq5gkX2UaT.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "6bptWPrq5gkX2UaT", - "name": "Lichtsäule", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/laser-precision.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dies ist eine mächtigere Variante des Zaubers @Compendium[ds4.spells.6bptWPrq5gkX2UaT]{Lichtsäule}, gegen dessen Schaden @Compendium[ds4.special-creature-abilities.R3j1CjXJckUH0CBG]{Wesen der Dunkelheit (Settingoption)} ebenfalls einen Malus von 2 auf ihre Abwehr erhalten.
\nCharaktere mit dem Talent @Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Diener der Dunkelheit} können diesen Zauber nicht anwenden.
\nCharaktere mit dem Talent @Compendium[ds4.talents.AT9Bi7Tsr8k3HujP]{Vergeltung} addieren ihren Talentrang auf den PW der Zielzaubern-Probe der Lichtsäule.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 8, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1r", - "minimumLevels": { - "healer": 16, - "wizard": 19, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344460, - "modifiedTime": 1740227862558, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!6bptWPrq5gkX2UaT" -} diff --git a/packs/spells/Magie_bannen_tBWEyulMfJFzPuWM.json b/packs/spells/Magie_bannen_tBWEyulMfJFzPuWM.json deleted file mode 100644 index 3a1e61be..00000000 --- a/packs/spells/Magie_bannen_tBWEyulMfJFzPuWM.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "tBWEyulMfJFzPuWM", - "name": "Magie bannen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/magic-swirl.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker bannt permanent einen Zauberspruch oder magischen Effekt. Die Probe wird durch die Stufe des Wesens, welches den Zauber wirkte, gemindert.
\nVersucht man den Zauberspruch gegen ein magisches Wesen (worunter auch Zauberwirker fallen) anzuwenden, gilt dessen halbierte LK als Malus auf die Probe. Bei einem Erfolg wird das Ziel aber nicht automatisch gebannt, sondern erhält nicht abwehrbaren Schaden in Höhe des doppelten Probenergebnisses. Stirbt das Ziel, verschwindet es spurlos samt seiner getragenen Ausrüstung.
\nSollte der bannende Charakter die Probe jedoch nicht schaffen, kann er selbst zum Ziel des Zaubers werden: Der Zauberwirker würfelt augenblicklich und aktionsfrei erneut den Zauber – allerdings ist er diesmal selbst das Ziel. Alle angewendeten, verstärkenden Zaubereffekte (beispielsweise durch Talente), gelten auch bei diesem zweiten Wurf.
\nDie gleiche Prozedur kommt zur Anwendung, wenn der Zauberwirker versucht, den magischen Effekt eines Gegenstandes zu bannen. Der ZB-Malus bei Gegenständen entspricht dabei der Stufesumme all derjenigen, die diesen Gegenstand erschufen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "- Wirkerstufe bzw. -LK / 2" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 12, - "wizard": 7, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344893, - "modifiedTime": 1740227862589, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tBWEyulMfJFzPuWM" -} diff --git a/packs/spells/Magie_entdecken_d1PUhzL8wuBe3mTl.json b/packs/spells/Magie_entdecken_d1PUhzL8wuBe3mTl.json deleted file mode 100644 index 8f8d8e53..00000000 --- a/packs/spells/Magie_entdecken_d1PUhzL8wuBe3mTl.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "d1PUhzL8wuBe3mTl", - "name": "Magie entdecken", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/sparkles.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Scheitert ein Zauberwirker, die Magie einer Örtlichkeit, eines Objektes oder eines Wesen zu erspüren (DS4 S. 47), kann er sämtliche Magie im Wirkungsbreich – nur für ihn sichtbar – mit Hilfe dieses Zaubers für kurze Zeit aufleuchten sehen, sofern sie nicht verborgen ist (unter einem Umhang, in einer Truhe usw.).
\nBetrachtet man Zauberwirker, leuchten diese ebenfalls kurz auf, je heller, desto mächtiger ist die Magie in ihnen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 1, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344738, - "modifiedTime": 1740227862579, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!d1PUhzL8wuBe3mTl" -} diff --git a/packs/spells/Magie_identifizieren_pUhIT77TSIDrv9Pi.json b/packs/spells/Magie_identifizieren_pUhIT77TSIDrv9Pi.json deleted file mode 100644 index 555741ba..00000000 --- a/packs/spells/Magie_identifizieren_pUhIT77TSIDrv9Pi.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "pUhIT77TSIDrv9Pi", - "name": "Magie identifizieren", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/magic-axe.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Offenbart dem Zauberwirker die Quelle und/oder Funktion der Magie eines Objektes oder einer Örtlichkeit.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1r", - "minimumLevels": { - "healer": 5, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344882, - "modifiedTime": 1740227862587, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pUhIT77TSIDrv9Pi" -} diff --git a/packs/spells/Magische_Barriere_KhmJCaFuP7Tgdw7q.json b/packs/spells/Magische_Barriere_KhmJCaFuP7Tgdw7q.json deleted file mode 100644 index 8b7e8bbc..00000000 --- a/packs/spells/Magische_Barriere_KhmJCaFuP7Tgdw7q.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "KhmJCaFuP7Tgdw7q", - "name": "Magische Barriere", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/stone-wall.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker erschafft ein unbewegliches, würfelförmiges Kraftfeld mit einer Größe von maximal VE/2 m³, welches sämtliche Magie- und Zaubersprucheffekte nach innen und außen hin komplett abblockt. Weder @Compendium[ds4.spells.ifRUXwqnjd1SCcRG]{Feuerbälle}, noch @Compendium[ds4.spells.WkZBOsMblhcrPRUF]{Lauschen}- oder @Compendium[ds4.spells.ANV77WNlbZFRMssv]{Teleport}-Zauber können diese magische Barriere durchbrechen.
\nDie magische Barriere verschwindet, sofern der Zauerwirker sie nicht – nach Ablauf der Spruchdauer – durch ununterbrochene Konzentration (zählt als ganze Aktion) aufrecht erhält.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE min oder Konzentration", - "unit": "minutes" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 14, - "wizard": 10, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344555, - "modifiedTime": 1740227862567, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KhmJCaFuP7Tgdw7q" -} diff --git a/packs/spells/Magische_R_stung_ZdlsX5F803JJEat6.json b/packs/spells/Magische_R_stung_ZdlsX5F803JJEat6.json deleted file mode 100644 index 2761314d..00000000 --- a/packs/spells/Magische_R_stung_ZdlsX5F803JJEat6.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ZdlsX5F803JJEat6", - "name": "Magische Rüstung", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/willdabeast/chain-mail.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Die Lebenskraft des Charakters erhöht sich um das Wurfergebnis. Erhält der Zauberwirker Schaden, kostet ihn das zuerst immer die (nicht heilbare) Lebenskraft der magischen Rüstung, bevor es an die eigene Lebenskraft geht. Die LK der magischen Rüstung bleiben erhalten, bis sie durch Schaden verloren sind, oder wenn der Charakter den Zauber abermals anwendet.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 4, - "wizard": 8, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344699, - "modifiedTime": 1740227862577, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ZdlsX5F803JJEat6" -} diff --git a/packs/spells/Magische_Waffe_ASvdS1fyjmRS1Xb6.json b/packs/spells/Magische_Waffe_ASvdS1fyjmRS1Xb6.json deleted file mode 100644 index 83260ca4..00000000 --- a/packs/spells/Magische_Waffe_ASvdS1fyjmRS1Xb6.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ASvdS1fyjmRS1Xb6", - "name": "Magische Waffe", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/pointy-sword.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber verleiht einer Waffe magische Kräfte. Ihr WB erhöht sich für die Dauer des Zaubers um +1 und der mit ihr verursachte Schaden gilt als magisch, verletzt beispielsweise also auch körperlose Wesen wie Geister.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "minutes" - }, - "cooldownDuration": "1r", - "minimumLevels": { - "healer": 1, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344485, - "modifiedTime": 1740227862562, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ASvdS1fyjmRS1Xb6" -} diff --git a/packs/spells/Magisches_Schloss_dzYAc9ti7ghhkyiX.json b/packs/spells/Magisches_Schloss_dzYAc9ti7ghhkyiX.json deleted file mode 100644 index 27398e13..00000000 --- a/packs/spells/Magisches_Schloss_dzYAc9ti7ghhkyiX.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "dzYAc9ti7ghhkyiX", - "name": "Magisches Schloss", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/padlock.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber verschließt auf magische Weise eine Klappe, Truhe, Tür oder ähnliche Öffnung.
\nDas Probenergebnis stellt die Erschwernis dar, um dieses Schloss zu öffnen (ob nun mit einem Dietrich, roher Gewalt oder Magie), nur der Zauberwirker selbst kann es ohne Probleme öffnen.
\nDer Zauber kann auch auf ein mechanisches Schloss gesprochen werden, um dessen Schlosswert (SW) zu verstärken.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Bis Schloss geöffnet", - "unit": "custom" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": 3, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344760, - "modifiedTime": 1740227862581, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dzYAc9ti7ghhkyiX" -} diff --git a/packs/spells/Manabrot_JvK5b8DXdHgaByjP.json b/packs/spells/Manabrot_JvK5b8DXdHgaByjP.json deleted file mode 100644 index 30c94342..00000000 --- a/packs/spells/Manabrot_JvK5b8DXdHgaByjP.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "JvK5b8DXdHgaByjP", - "name": "Manabrot", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/sliced-bread.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker bündelt die magische Energien um sich herum und erschafft daraus warmes, aber geschmackloses Manabrot.
\nMaximal kann der Zauberwirker eine Anzahl von Manabrot gleich seiner halbierten Stufe erschaffen. Jeder der blau-violetten, teigähnlichen Klumpen, entspricht einer ganzen Mahlzeit (von denen ein Erwachsener 3 pro Tag benötigt) für eine Person.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 5, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344550, - "modifiedTime": 1740227862566, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JvK5b8DXdHgaByjP" -} diff --git a/packs/spells/Nahrung_zaubern_l8o3vG0kW9qvFmBY.json b/packs/spells/Nahrung_zaubern_l8o3vG0kW9qvFmBY.json deleted file mode 100644 index c789d594..00000000 --- a/packs/spells/Nahrung_zaubern_l8o3vG0kW9qvFmBY.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "l8o3vG0kW9qvFmBY", - "name": "Nahrung zaubern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/potato.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker bündelt die magische Energien um sich herum und erschafft daraus die Grundzutat einer einfachen Mahlzeit, wie etwa Linsen, Reis oder Rüben.
Maximal kann der Zauberwirker genügend Zutaten für eine Anzahl von Mahlzeiten (von denen ein Erwachsener 3 pro Tag benötigt) gleich seiner Stufe erschaffen
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 2, - "wizard": 7, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344869, - "modifiedTime": 1740227862584, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!l8o3vG0kW9qvFmBY" -} diff --git a/packs/spells/Netz_73bT47FtQgPp9Snq.json b/packs/spells/Netz_73bT47FtQgPp9Snq.json deleted file mode 100644 index 4af51994..00000000 --- a/packs/spells/Netz_73bT47FtQgPp9Snq.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "73bT47FtQgPp9Snq", - "name": "Netz", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/spider-web.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein Netz aus klebriger Astralmasse mit einem Radius von VE/2 in Metern erscheint.
\nVom Netz getroffene Wesen, welche keine Abwehr dagegen würfeln dürfen, halbieren für die Dauer des Zaubers Initiative, Laufen und Schlagen.
\nDer Zauber wirkt nicht gegen Wesen, die 2+ Größenkategorien (DS4 S. 104) größer sind.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(AGI+ST)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "rounds" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 4, - "wizard": 9, - "sorcerer": 9 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344461, - "modifiedTime": 1740227862558, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!73bT47FtQgPp9Snq" -} diff --git a/packs/spells/Niesanfall_c9confMPTK2Q7AfX.json b/packs/spells/Niesanfall_c9confMPTK2Q7AfX.json deleted file mode 100644 index 15cedc91..00000000 --- a/packs/spells/Niesanfall_c9confMPTK2Q7AfX.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "c9confMPTK2Q7AfX", - "name": "Niesanfall", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/energy-breath.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Erfolg kann das Ziel, welches keine Abwehr gegen den Zauber würfeln darf, sich vor lauter Niesen nur (mit halbiertem Laufen-Wert) bewegen, bis der Spruchwirker wieder an der Reihe ist.
\nDer Niesanfall endet vorzeitig, sollte das Ziel Schaden erhalten.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "1", - "unit": "rounds" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": 1, - "wizard": 3, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344729, - "modifiedTime": 1740227862578, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!c9confMPTK2Q7AfX" -} diff --git a/packs/spells/Putzteufel_gLzyooEA8RBya37o.json b/packs/spells/Putzteufel_gLzyooEA8RBya37o.json deleted file mode 100644 index 5365f60a..00000000 --- a/packs/spells/Putzteufel_gLzyooEA8RBya37o.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "gLzyooEA8RBya37o", - "name": "Putzteufel", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/magic-broom.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker erschafft einen kleinen, magischen Diener, der für ihn unglaublich flink putzt, aufräumt und packt.
\nAnsonsten ist der Putzteufel völlig unütz, befolgt keine andersartigen Befehle und verpufft bei Schaden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "bis zu VE / 2", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 5, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344835, - "modifiedTime": 1740227862582, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gLzyooEA8RBya37o" -} diff --git a/packs/spells/Reinigen_ZXBYdYAtcs3FoTAx.json b/packs/spells/Reinigen_ZXBYdYAtcs3FoTAx.json deleted file mode 100644 index b655da2c..00000000 --- a/packs/spells/Reinigen_ZXBYdYAtcs3FoTAx.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ZXBYdYAtcs3FoTAx", - "name": "Reinigen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/shower.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber reinigt eine ungewaschene Person, einen Gegenstand (wie einen schlammbesudelten Umhang) oder auch eine Mahlzeit (von Bakterien, Fäulnis und Gift).
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": 3, - "wizard": 7, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344695, - "modifiedTime": 1740227862577, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ZXBYdYAtcs3FoTAx" -} diff --git a/packs/spells/Rost_eMeuOnBODch7D9dm.json b/packs/spells/Rost_eMeuOnBODch7D9dm.json deleted file mode 100644 index 86be76a4..00000000 --- a/packs/spells/Rost_eMeuOnBODch7D9dm.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "eMeuOnBODch7D9dm", - "name": "Rost", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/rusty-sword.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber lässt bei Erfolg eine nichtmagische Waffe oder ein nichtmagisches Rüstungsteil aus Metall augenblicklich zu rostigem Staub zerfallen.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-WB der Waffe bzw. -PA der Rüstung" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 5, - "wizard": 7, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344764, - "modifiedTime": 1740227862581, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eMeuOnBODch7D9dm" -} diff --git a/packs/spells/Schatten_5mF59XCsZffF0cSp.json b/packs/spells/Schatten_5mF59XCsZffF0cSp.json deleted file mode 100644 index 560184a0..00000000 --- a/packs/spells/Schatten_5mF59XCsZffF0cSp.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "5mF59XCsZffF0cSp", - "name": "Schatten", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/shadow-follower.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dunkle Schatten umhüllen das Ziel (welches keine Abwehr dagegen würfeln darf), wodurch es -8 auf alle Handlungen hat, bei denen es besser sehen können sollte. Augenlosen Untoten, wie beispielsweise @Compendium[ds4.creatures.Rvu16XzEjizdqNsu]{Skeletten}, aber auch blinden Lebewesen, kann der Zauber nichts anhaben.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(AGI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "rounds" - }, - "cooldownDuration": "5r", - "minimumLevels": { - "healer": null, - "wizard": 6, - "sorcerer": 2 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344458, - "modifiedTime": 1740227862557, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5mF59XCsZffF0cSp" -} diff --git a/packs/spells/Schatten_erwecken_dPGm1Ji2U0fJxnT3.json b/packs/spells/Schatten_erwecken_dPGm1Ji2U0fJxnT3.json deleted file mode 100644 index 24eadfca..00000000 --- a/packs/spells/Schatten_erwecken_dPGm1Ji2U0fJxnT3.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "dPGm1Ji2U0fJxnT3", - "name": "Schatten erwecken", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/two-shadows.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Schwarzmagier kann die Seelen von einer maximalen Anzahl von Toten im Wirkungsradius gleich seiner eigenen Stufe verderben und in Form tödlicher @Compendium[ds4.creatures.T9YRYe0vnR4Qg4UM]{Schatten} (DS4 S. 121) zu gequältem Unleben erwecken. Die Schatten benötigen drei Kampfrunden, um sich zu bilden, danach wollen sie ihren Erwecker vernichten, um wieder Erlösung zu finden, gelingt es diesem nicht, sie mit dem Zauber @Compendium[ds4.spells.9gc1CF70165NXymH]{Kontrollieren} zu beherrschen.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können den Zauber nicht anwenden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 5", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 13 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344742, - "modifiedTime": 1740227862579, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dPGm1Ji2U0fJxnT3" -} diff --git a/packs/spells/Schattenklinge_RUfE7hqqHCKMEMbh.json b/packs/spells/Schattenklinge_RUfE7hqqHCKMEMbh.json deleted file mode 100644 index 1fafd734..00000000 --- a/packs/spells/Schattenklinge_RUfE7hqqHCKMEMbh.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "RUfE7hqqHCKMEMbh", - "name": "Schattenklinge", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/blade-fall.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Die verzauberte Klinge verströmt rauchartige Schatten voll dunkler Magie. Die folgenden Effekte gelten nur, wenn ein Charakter mit dem Talent @Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Diener der Dunkelheit} die Waffe benutzt:
\nFür die Dauer des Zauberspruchs wird der WB der Waffe um +1 erhöht und ihr Schaden gilt als magisch. Jedesmal, wenn mit der Waffe Schaden verursacht wird, sinkt die Abwehr des Ziels um 1. Dieser Effekt endet, wenn die Zauberdauer abgelaufen ist.
\nSchattenklinge ist nicht mit @Compendium[ds4.spells.gJ3Z8y7i6LWjSMKJ]{Flammenklinge}, @Compendium[ds4.spells.Gc5G9kixOqNbuwp1]{Frostwaffe}, @Compendium[ds4.spells.919AW6tITRT8WikD]{Glühender Glaube} oder @Compendium[ds4.spells.cggG4v6EBPmEZuAQ]{Waffe des Lichts} kombinierbar.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können diesen Zauber nicht anwenden.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 8, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344617, - "modifiedTime": 1740227862572, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RUfE7hqqHCKMEMbh" -} diff --git a/packs/spells/Schattenlanze_b5RFJWPaYbpXNpsv.json b/packs/spells/Schattenlanze_b5RFJWPaYbpXNpsv.json deleted file mode 100644 index 32511554..00000000 --- a/packs/spells/Schattenlanze_b5RFJWPaYbpXNpsv.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "b5RFJWPaYbpXNpsv", - "name": "Schattenlanze", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/spear-hook.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dies ist eine mächtigere Variante des Zaubers @Compendium[ds4.spells.tPFiElqQuvih76gd]{Schattenpfeil}, gegen dessen Schaden @Compendium[ds4.special-creature-abilities.KDDlwN9as9B4ljeA]{Wesen des Lichts (Settingoption)} einen Malus von 2 auf ihre Abwehr erhalten.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können diesen Zauber nicht anwenden.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 5, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": 15, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344719, - "modifiedTime": 1740227862578, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!b5RFJWPaYbpXNpsv" -} diff --git a/packs/spells/Schattenpfeil_tPFiElqQuvih76gd.json b/packs/spells/Schattenpfeil_tPFiElqQuvih76gd.json deleted file mode 100644 index 267985d8..00000000 --- a/packs/spells/Schattenpfeil_tPFiElqQuvih76gd.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "tPFiElqQuvih76gd", - "name": "Schattenpfeil", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/energy-arrow.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Gegen den Schaden dieses Zielzaubers erhalten @Compendium[ds4.special-creature-abilities.KDDlwN9as9B4ljeA]{Wesen des Lichts (Settingoption)} einen Malus von 2 auf ihre Abwehr.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können diesen Zauber nicht anwenden.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 2, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": 6, - "sorcerer": 2 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344895, - "modifiedTime": 1740227862589, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tPFiElqQuvih76gd" -} diff --git a/packs/spells/Schattens_ule_mg3rChUVQrZ09gCW.json b/packs/spells/Schattens_ule_mg3rChUVQrZ09gCW.json deleted file mode 100644 index 585fe8a0..00000000 --- a/packs/spells/Schattens_ule_mg3rChUVQrZ09gCW.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "mg3rChUVQrZ09gCW", - "name": "Schattensäule", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/bubbling-beam.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dies ist eine mächtigere Variante des Zaubers @Compendium[ds4.spells.b5RFJWPaYbpXNpsv]{Schattenlanze}, gegen dessen Schaden @Compendium[ds4.special-creature-abilities.KDDlwN9as9B4ljeA]{Wesen des Lichts (Settingoption)} ebenfalls einen Malus von 2 auf ihre Abwehr erhalten.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können diesen Zauber nicht anwenden.
\nCharaktere mit dem Talent @Compendium[ds4.talents.AT9Bi7Tsr8k3HujP]{Vergeltung} addieren ihren Talentrang auf den PW der Zielzaubern-Probe Schattensäule.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 8, - "complex": "" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 10", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1r", - "minimumLevels": { - "healer": null, - "wizard": 20, - "sorcerer": 15 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344876, - "modifiedTime": 1740227862586, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!mg3rChUVQrZ09gCW" -} diff --git a/packs/spells/Schleudern_bKCGwIne0uoWZiY0.json b/packs/spells/Schleudern_bKCGwIne0uoWZiY0.json deleted file mode 100644 index 5654d63a..00000000 --- a/packs/spells/Schleudern_bKCGwIne0uoWZiY0.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "bKCGwIne0uoWZiY0", - "name": "Schleudern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/heavenly-dog/catapult.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauberspruch, gegen den das Ziel keine Abwehr würfeln kann, schleudert das Ziel (Probenergebnis/3) Meter weit fort.
\nDas Ziel erhält für die Distanz, die es geschleudert wird (auch wenn eine Wand den Flug bremst) Sturzschaden (DS4 S. 85), gegen den es ganz normal Abwehr würfelt.
\nNach dem Fortschleudern liegt das Ziel immer am Boden.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE / 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 16, - "wizard": 12, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344726, - "modifiedTime": 1740227862578, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!bKCGwIne0uoWZiY0" -} diff --git a/packs/spells/Schutzfeld_NWPoiZHCmZ7ZJud4.json b/packs/spells/Schutzfeld_NWPoiZHCmZ7ZJud4.json deleted file mode 100644 index 646ba6d7..00000000 --- a/packs/spells/Schutzfeld_NWPoiZHCmZ7ZJud4.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "NWPoiZHCmZ7ZJud4", - "name": "Schutzfeld", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/omega.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein Schutzfeld mit einem Radius von VE in Metern erscheint um den Zauberwirker herum, an dem nichtmagische Geschosse von außen her wirkungslos abprallen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 4, - "wizard": 8, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344578, - "modifiedTime": 1740227862569, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NWPoiZHCmZ7ZJud4" -} diff --git a/packs/spells/Schutzkuppel_TKx3LO5ZWQuKpK04.json b/packs/spells/Schutzkuppel_TKx3LO5ZWQuKpK04.json deleted file mode 100644 index f07bbc57..00000000 --- a/packs/spells/Schutzkuppel_TKx3LO5ZWQuKpK04.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "TKx3LO5ZWQuKpK04", - "name": "Schutzkuppel", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/shiny-omega.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine Schutzkuppel mit einem Radius von VE in Metern erscheint um den Zauberwirker herum, solange er sich konzentriert (zählt als ganze Aktion).
\nDie unbewegliche Kuppel ist von beiden Seiten unpassierbar – weder Angriffe, Personen noch Zauber wie @Compendium[ds4.spells.ANV77WNlbZFRMssv]{Teleport} gelangen hindurch.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Konzentration", - "unit": "custom" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": 8, - "wizard": 12, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344643, - "modifiedTime": 1740227862574, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TKx3LO5ZWQuKpK04" -} diff --git a/packs/spells/Schutzschild_dehnen_s31yIj9viKMLyaen.json b/packs/spells/Schutzschild_dehnen_s31yIj9viKMLyaen.json deleted file mode 100644 index d2af2909..00000000 --- a/packs/spells/Schutzschild_dehnen_s31yIj9viKMLyaen.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "s31yIj9viKMLyaen", - "name": "Schutzschild dehnen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/alarm-clock.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Verdoppelt die erwürfelte Dauer eines @Compendium[ds4.spells.dpz383XbGFXEsGot]{Schutzschild}-Zaubers, der bereits auf das Ziel wirkt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 4, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344888, - "modifiedTime": 1740227862588, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!s31yIj9viKMLyaen" -} diff --git a/packs/spells/Schutzschild_dpz383XbGFXEsGot.json b/packs/spells/Schutzschild_dpz383XbGFXEsGot.json deleted file mode 100644 index f015ab16..00000000 --- a/packs/spells/Schutzschild_dpz383XbGFXEsGot.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "dpz383XbGFXEsGot", - "name": "Schutzschild", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/bell-shield.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel erhält das Probenergebnis als Bonus auf seine Abwehr, bis die Dauer des Zaubers abgelaufen ist.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 4, - "wizard": 8, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344746, - "modifiedTime": 1740227862580, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dpz383XbGFXEsGot" -} diff --git a/packs/spells/Schutzschild_st_rken_0O56S0JDXi2y71Pu.json b/packs/spells/Schutzschild_st_rken_0O56S0JDXi2y71Pu.json deleted file mode 100644 index b80d24b8..00000000 --- a/packs/spells/Schutzschild_st_rken_0O56S0JDXi2y71Pu.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "0O56S0JDXi2y71Pu", - "name": "Schutzschild stärken", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/diamond-hard.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Verdoppelt den Bonus auf die Abwehr eines @Compendium[ds4.spells.dpz383XbGFXEsGot]{Schutzschild}-Zaubers, der bereits auf das Ziel wirkt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 4, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344446, - "modifiedTime": 1740227862555, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0O56S0JDXi2y71Pu" -} diff --git a/packs/spells/Schweben_SPnYNGggFb8XRICE.json b/packs/spells/Schweben_SPnYNGggFb8XRICE.json deleted file mode 100644 index 1843856f..00000000 --- a/packs/spells/Schweben_SPnYNGggFb8XRICE.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "SPnYNGggFb8XRICE", - "name": "Schweben", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/angel-wings.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel kann statt zu laufen auch lotrecht hoch und runter schweben.
Der Laufen-Wert beim Schweben ist dabei genau so hoch, wie am Boden (man kann im Schweben nicht rennen).
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "custom" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": 7, - "wizard": 5, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344620, - "modifiedTime": 1740227862572, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!SPnYNGggFb8XRICE" -} diff --git a/packs/spells/Schweig_rojd8AL3iXmGfc5m.json b/packs/spells/Schweig_rojd8AL3iXmGfc5m.json deleted file mode 100644 index c973b3b9..00000000 --- a/packs/spells/Schweig_rojd8AL3iXmGfc5m.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "rojd8AL3iXmGfc5m", - "name": "Schweig", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/silenced.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel, welches keine Abwehr gegen den Zauber würfeln darf, verstummt für die Dauer des Zauberspruchs. Verstummte Zauberwirker können solange nur wortlos zaubern (DS4 S. 47).
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE/2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 12, - "wizard": 10, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344886, - "modifiedTime": 1740227862588, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!rojd8AL3iXmGfc5m" -} diff --git a/packs/spells/Segen_ZF5cwMCnw4Uf1MCz.json b/packs/spells/Segen_ZF5cwMCnw4Uf1MCz.json deleted file mode 100644 index 2fcb65dc..00000000 --- a/packs/spells/Segen_ZF5cwMCnw4Uf1MCz.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ZF5cwMCnw4Uf1MCz", - "name": "Segen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/holy-hand-grenade.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker und bis zu VE x 2 Kameraden in VE x 2 Meter Umkreis werden gesegnet.
\nFür die Dauer des Zauberspruchs erhalten sie auf alle Proben einen PW-Bonus von +1.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 2, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344690, - "modifiedTime": 1740227862576, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ZF5cwMCnw4Uf1MCz" -} diff --git a/packs/spells/Skelette_erwecken_bGs9MiTMj6k4d1Nl.json b/packs/spells/Skelette_erwecken_bGs9MiTMj6k4d1Nl.json deleted file mode 100644 index 86c87c54..00000000 --- a/packs/spells/Skelette_erwecken_bGs9MiTMj6k4d1Nl.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "bGs9MiTMj6k4d1Nl", - "name": "Skelette erwecken", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/skoll/raise-skeleton.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Schwarzmagier kann eine maximale Anzahl von @Compendium[ds4.creatures.Rvu16XzEjizdqNsu]{Skeletten} (DS4 S. 122) im Wirkungsradius gleich seiner eigenen Stufe zu untotem Leben erwecken. Die Skelette benötigen drei Kampfrunden, um sich zu erheben, danach wollen sie ihren Erwecker vernichten, um wieder Erlösung zu finden, gelingt es diesem nicht, sie mit dem Zauber @Compendium[ds4.spells.9gc1CF70165NXymH]{Kontrollieren} zu beherrschen.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können den Zauber nicht anwenden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 5", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 6 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344722, - "modifiedTime": 1740227862578, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!bGs9MiTMj6k4d1Nl" -} diff --git a/packs/spells/Spionage_xR5aBGFz3916e82x.json b/packs/spells/Spionage_xR5aBGFz3916e82x.json deleted file mode 100644 index 05150494..00000000 --- a/packs/spells/Spionage_xR5aBGFz3916e82x.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "xR5aBGFz3916e82x", - "name": "Spionage", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/spy.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker begibt sich in einen tranceähnlichen Zustand, in dem seine optischen und akustischen Sinne sich von seinem Körper lösen können.
\nSein unsichtbarer, hörender Blick bewegt sich mit einer konstanten Geschwindigkeit von VE Meter pro Kampfrunde und kann durch die kleinsten Öffnungen dringen. Der Zauberwirker sieht und hört dabei alles, als wäre er selbst vor Ort.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE x 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 8, - "wizard": 6, - "sorcerer": 4 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344903, - "modifiedTime": 1740227862591, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!xR5aBGFz3916e82x" -} diff --git a/packs/spells/Springen_L6NrH3AEmS2I3NWG.json b/packs/spells/Springen_L6NrH3AEmS2I3NWG.json deleted file mode 100644 index 06b0e5bc..00000000 --- a/packs/spells/Springen_L6NrH3AEmS2I3NWG.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "L6NrH3AEmS2I3NWG", - "name": "Springen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/jump-across.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker springt augenblicklich bis zu Probenergebnis/2 Meter weit und landet dabei wieder sicher auf seinen Beinen. Alternativ kann man auch hoch oder runter springen, beispielsweise um einen Balkon zu erreichen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 5, - "wizard": 2, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344560, - "modifiedTime": 1740227862568, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!L6NrH3AEmS2I3NWG" -} diff --git a/packs/spells/Spurt_KUbT1gBeThcLY7vU.json b/packs/spells/Spurt_KUbT1gBeThcLY7vU.json deleted file mode 100644 index f4e72bf9..00000000 --- a/packs/spells/Spurt_KUbT1gBeThcLY7vU.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "KUbT1gBeThcLY7vU", - "name": "Spurt", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/run.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Laufen-Wert des Ziels wird für die Dauer des Zaubers verdoppelt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 7, - "wizard": 7, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344553, - "modifiedTime": 1740227862567, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KUbT1gBeThcLY7vU" -} diff --git a/packs/spells/Steinwand_NRfYtF7tFoNMe1cR.json b/packs/spells/Steinwand_NRfYtF7tFoNMe1cR.json deleted file mode 100644 index 59e9d8f2..00000000 --- a/packs/spells/Steinwand_NRfYtF7tFoNMe1cR.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "NRfYtF7tFoNMe1cR", - "name": "Steinwand", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/brick-wall.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker erschafft eine Steinwand, die Ausmaße von bis zu 1 m x VE m x VE m annehmen kann und nicht wieder verschwindet.
\nDie Steinwand muss auf festen Boden stehen und kann nicht an einem Ort erscheinen, wo sich bereits etwas befindet.
\nDie Steinwand hat eine Abwehr gleich der dreifachen Stufe des Zauberwirkers, für den Fall, dass jemand sie mit Gewalt durchdringen will. Jeder einzelne Kubikmeter der Steinwand verfügt über LK in Höhe der Stufe des Zauberwirkers.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": true, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 14 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344573, - "modifiedTime": 1740227862569, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NRfYtF7tFoNMe1cR" -} diff --git a/packs/spells/Sto_gebet_DPFRVvfvmhCfcm7E.json b/packs/spells/Sto_gebet_DPFRVvfvmhCfcm7E.json deleted file mode 100644 index 747915c7..00000000 --- a/packs/spells/Sto_gebet_DPFRVvfvmhCfcm7E.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "DPFRVvfvmhCfcm7E", - "name": "Stoßgebet", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/kneeling.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine Druckwelle heiliger Macht schießt aus dem Heiler und bringt Gegner in einem Radius gleich seiner doppelten Stufe in Metern zu Fall.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 5, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344507, - "modifiedTime": 1740227862563, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!DPFRVvfvmhCfcm7E" -} diff --git a/packs/spells/Stolpern_KIyVOdiXZnXJIAh6.json b/packs/spells/Stolpern_KIyVOdiXZnXJIAh6.json deleted file mode 100644 index 4b30b53f..00000000 --- a/packs/spells/Stolpern_KIyVOdiXZnXJIAh6.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "KIyVOdiXZnXJIAh6", - "name": "Stolpern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/tripwire.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel, welches keine Abwehr gegen den Zauber würfeln darf, stürzt augenblicklich zu Boden.
Misslingt ihm außerdem eine Probe auf AGI+GE, lässt er alles Gehaltene fallen.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(AGI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 4, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344552, - "modifiedTime": 1740227862567, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KIyVOdiXZnXJIAh6" -} diff --git a/packs/spells/Tanz_lQJvJQFzSxfriOlc.json b/packs/spells/Tanz_lQJvJQFzSxfriOlc.json deleted file mode 100644 index 0ee9e8ac..00000000 --- a/packs/spells/Tanz_lQJvJQFzSxfriOlc.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "lQJvJQFzSxfriOlc", - "name": "Tanz", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/ballerina-shoes.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel, welches keine Abwehr gegen den Zauber würfeln darf, kann für die Dauer des Zauberspruchs nur tanzen (und dabei höchstens 1 m pro Kampfrunde laufen).
Das groteske Schauspiel endet vorzeitig, sollte das Ziel Schaden erhalten.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE / 2", - "unit": "minutes" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 8, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344870, - "modifiedTime": 1740227862584, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!lQJvJQFzSxfriOlc" -} diff --git a/packs/spells/Tarnender_Nebel_BdBUObZr9RahUqxA.json b/packs/spells/Tarnender_Nebel_BdBUObZr9RahUqxA.json deleted file mode 100644 index 00c9ec01..00000000 --- a/packs/spells/Tarnender_Nebel_BdBUObZr9RahUqxA.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "BdBUObZr9RahUqxA", - "name": "Tarnender Nebel", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/fog.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine Nebelwolke mit einem Radius von maximal VE in Metern entsteht.
Angriffe gegen Ziele in der Nebelwolke werden um 8 erschwert, gleichsam erhalten alle innerhalb des Nebels -8 auf alle Proben, bei denen man besser sehen können sollte. Eine Nebelwolke kann durch Wind bewegt oder gar auseinander geweht werden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": true, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE x 2", - "unit": "rounds" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 4, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344494, - "modifiedTime": 1740227862563, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!BdBUObZr9RahUqxA" -} diff --git a/packs/spells/Telekinese_VGeMfTNSKWzNGm6r.json b/packs/spells/Telekinese_VGeMfTNSKWzNGm6r.json deleted file mode 100644 index 068385bd..00000000 --- a/packs/spells/Telekinese_VGeMfTNSKWzNGm6r.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "VGeMfTNSKWzNGm6r", - "name": "Telekinese", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/sbed/weight-crush.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mit diesem Zauber lässt der Zauberwirker einen unbelebten Gegenstand mit einer Geschwindigkeit von 1 m pro Kampfrunde schweben, solange er sich ununterbrochen konzentriert (zählt als ganze Aktion).
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-1 pro (Stufe x 5) kg Gewicht" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Konzentration", - "unit": "custom" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": null, - "wizard": 6, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344670, - "modifiedTime": 1740227862575, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VGeMfTNSKWzNGm6r" -} diff --git a/packs/spells/Teleport_ANV77WNlbZFRMssv.json b/packs/spells/Teleport_ANV77WNlbZFRMssv.json deleted file mode 100644 index cf4e5a1e..00000000 --- a/packs/spells/Teleport_ANV77WNlbZFRMssv.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ANV77WNlbZFRMssv", - "name": "Teleport", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/teleport.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber teleportiert den Zauberwirker und bis zu VE Begleiter an einen ihm bekannten Ort. War der Zauberwirker nur einmal dort und kennt ihn nur flüchtig, wird der PW der Zaubern-Probe halbiert. Bei einem Teleport-Patzer erscheinen die Charaktere in einem Objekt (zu tief im Boden, ein naher Baum) und erhalten W20 nicht abwehrbaren Schaden (2W20, wenn der Ort nur flüchtig bekannt ist).
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-1 pro Begleiter" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 20, - "wizard": 10, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344484, - "modifiedTime": 1740227862562, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ANV77WNlbZFRMssv" -} diff --git a/packs/spells/Terror_SgDFje4OTxqPEzoA.json b/packs/spells/Terror_SgDFje4OTxqPEzoA.json deleted file mode 100644 index 747c421e..00000000 --- a/packs/spells/Terror_SgDFje4OTxqPEzoA.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "SgDFje4OTxqPEzoA", - "name": "Terror", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/terror.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Erfolg fliehen betroffene Ziele – maximal eine Anzahl gleich der Stufe des Zauberwirkers – so schnell wie möglich in panischer Angst und können erst nach Ablauf der Zauberdauer wieder umkehren.
Der Effekt endet bei jedem Fliehenden, der Schaden erleidet.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+VE)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 5", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "minutes" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 5, - "wizard": 9, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344636, - "modifiedTime": 1740227862573, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!SgDFje4OTxqPEzoA" -} diff --git a/packs/spells/Tierbeherschung_TVsayZ3WkUxyzKbL.json b/packs/spells/Tierbeherschung_TVsayZ3WkUxyzKbL.json deleted file mode 100644 index 6db20c31..00000000 --- a/packs/spells/Tierbeherschung_TVsayZ3WkUxyzKbL.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "TVsayZ3WkUxyzKbL", - "name": "Tierbeherschung", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/charging-bull.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Erfolg wird das Tier zu einem willenlosen Sklaven des Zauberwirkers. Es befolgt alle seine einsilbigen Befehle, auch wenn diese den eigenen Tod bedeuten können.
Ein Zauberwirker kann niemals mehr als VE Tiere gleichzeitig durch diesen Zauber beherrschen.
Endet der Zauber, nimmt das Tier wieder sein ursprüngliches Verhalten an.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-LK / 2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 9, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344646, - "modifiedTime": 1740227862574, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TVsayZ3WkUxyzKbL" -} diff --git a/packs/spells/Tiere_bes_nftigen_GpdYH1BAO4tIf6Fj.json b/packs/spells/Tiere_bes_nftigen_GpdYH1BAO4tIf6Fj.json deleted file mode 100644 index 38970d36..00000000 --- a/packs/spells/Tiere_bes_nftigen_GpdYH1BAO4tIf6Fj.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "GpdYH1BAO4tIf6Fj", - "name": "Tiere besänftigen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/paw-heart.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Aggressive Tiere im Wirkungsradius können mit diesem Zauber besänftigt werden. Magische Wesen (wie beispielsweise @Compendium[ds4.creatures.SQv63FQBjA5jW5xv]{Einhörner} oder @Compendium[ds4.creatures.O2maANGDJHPLX8aE]{Unwölfe}) sind gegen den Zauber immun, ebenso Tiere, die unter einem Kontrollzauber wie @Compendium[ds4.spells.TVsayZ3WkUxyzKbL]{Tierbeherschung} o.ä. stehen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-LK / 5 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 5", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 1, - "wizard": 7, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344530, - "modifiedTime": 1740227862565, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GpdYH1BAO4tIf6Fj" -} diff --git a/packs/spells/Totengespr_ch_sKCHnXV6c4w1CJWf.json b/packs/spells/Totengespr_ch_sKCHnXV6c4w1CJWf.json deleted file mode 100644 index cabe7bb4..00000000 --- a/packs/spells/Totengespr_ch_sKCHnXV6c4w1CJWf.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "sKCHnXV6c4w1CJWf", - "name": "Totengespräch", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/half-dead.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann den Geist eines Toten befragen, dieser muss ihm antworten, allerdings nicht automatisch wahrheitsgemäß.
\nMaximal wirkt der Zauber VE Minuten oder bis dem Geist VE Fragen gestellt wurden, die dieser nur mit „Ja“ oder „Nein“ beantwortet. Der Geist versteht die Sprache des Zauberwirkers und antwortet in dieser.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE Fragen, bzw. VE Minuten", - "unit": "custom" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 9 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344891, - "modifiedTime": 1740227862588, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sKCHnXV6c4w1CJWf" -} diff --git a/packs/spells/Trugbild_eMilydZd4gqDUsff.json b/packs/spells/Trugbild_eMilydZd4gqDUsff.json deleted file mode 100644 index 96445252..00000000 --- a/packs/spells/Trugbild_eMilydZd4gqDUsff.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "eMilydZd4gqDUsff", - "name": "Trugbild", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/mirror-mirror.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber erschafft eine rein optische, unbewegliche Illusion, deren Ausmaße maximal VE/2 Kubikmeter betragen können. Die Illusion ist mit einer erfolgreichen Bemerken-Probe (DS4 S. 89) – abzüglich des halbierten Probenergebnisses der Trugbild Zaubern-Probe – durchschaubar.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE / 2", - "unit": "hours" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 5, - "sorcerer": 7 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344792, - "modifiedTime": 1740227862581, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!eMilydZd4gqDUsff" -} diff --git a/packs/spells/Unsichtbares_sehen_nR6Wbt9k2c8SBVpT.json b/packs/spells/Unsichtbares_sehen_nR6Wbt9k2c8SBVpT.json deleted file mode 100644 index 9448292b..00000000 --- a/packs/spells/Unsichtbares_sehen_nR6Wbt9k2c8SBVpT.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "nR6Wbt9k2c8SBVpT", - "name": "Unsichtbares sehen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/invisible-face.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel erhält für die Dauer des Zauberspruchs die Fähigkeit, unsichtbare Objekte und Lebewesen ganz normal erkennen zu können.
\nMagie, magische Effekte – bis auf den Zauberspruch @Compendium[ds4.spells.EXqdD6yddQ4c0zAw]{Unsichtbarkeit} – oder auch verborgene Fallen gelten nicht als unsichtbar in Bezug auf diesen Zauberspruch.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 10, - "wizard": 12, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344878, - "modifiedTime": 1740227862586, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!nR6Wbt9k2c8SBVpT" -} diff --git a/packs/spells/Unsichtbarkeit_EXqdD6yddQ4c0zAw.json b/packs/spells/Unsichtbarkeit_EXqdD6yddQ4c0zAw.json deleted file mode 100644 index cf9cfab8..00000000 --- a/packs/spells/Unsichtbarkeit_EXqdD6yddQ4c0zAw.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "EXqdD6yddQ4c0zAw", - "name": "Unsichtbarkeit", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/invisible.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Macht ein Lebewesen (samt seiner getragenen Ausrüstung) oder ein Objekt für die Dauer des Zauberspruchs unsichtbar.
Der Zauberspruch endet vorzeitig, wenn das Ziel jemanden angreift, zaubert oder selbst Schaden erhält.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "minutes" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 20, - "wizard": 12, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344512, - "modifiedTime": 1740227862564, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!EXqdD6yddQ4c0zAw" -} diff --git a/packs/spells/Verborgenes_sehen_zWol1q702sjg2b7K.json b/packs/spells/Verborgenes_sehen_zWol1q702sjg2b7K.json deleted file mode 100644 index a6835906..00000000 --- a/packs/spells/Verborgenes_sehen_zWol1q702sjg2b7K.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "zWol1q702sjg2b7K", - "name": "Verborgenes sehen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/secret-door.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann unbelebte Dinge – die verborgen oder absichtlich versteckt sind (Fallen, Geheimtüren u.ä.) – mit Hilfe dieses Zaubers für kurze Zeit aufleuchten sehen, selbst wenn sie durch etwas verdeckt sind, wie ein Vorhang oder ein Behältnis.
Der Zauber funktioniert nicht bei magischen oder unsichtbaren Objekten.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 8, - "wizard": 8, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344907, - "modifiedTime": 1740227862592, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zWol1q702sjg2b7K" -} diff --git a/packs/spells/Verdampfen_s3nfDjJjDtiHGKzm.json b/packs/spells/Verdampfen_s3nfDjJjDtiHGKzm.json deleted file mode 100644 index 7878c249..00000000 --- a/packs/spells/Verdampfen_s3nfDjJjDtiHGKzm.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "s3nfDjJjDtiHGKzm", - "name": "Verdampfen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/smoking-orb.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel beginnt vor magischer Hitze regelrecht zu verdampfen. Der innerlich wirkende Schaden entspricht dem dreifachen Probenergebnis, das Ziel würfelt seine Abwehr ohne die Panzerungsboni von seinen Gegenständen.
\nDer Zauber ist gegen wasserlose Wesen – wie beispielsweise @Compendium[ds4.creatures.Rvu16XzEjizdqNsu]{Skelette} oder @Compendium[ds4.creatures.tYcKw69Feoy3B6hG]{Feuerelementare} – nicht einsetzbar.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": true, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": true, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 20, - "sorcerer": 18 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344889, - "modifiedTime": 1740227862588, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!s3nfDjJjDtiHGKzm" -} diff --git a/packs/spells/Vergr__ern_uryiDdwKAwbASnuH.json b/packs/spells/Vergr__ern_uryiDdwKAwbASnuH.json deleted file mode 100644 index 3723a8fd..00000000 --- a/packs/spells/Vergr__ern_uryiDdwKAwbASnuH.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "uryiDdwKAwbASnuH", - "name": "Vergrößern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/expand.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Die Körpergröße des freiwilligen Ziels – samt seiner Ausrüstung – verdoppelt sich augenblicklich. Charaktere nehmen die Größenkategorie „groß“ (DS4 S. 104) an.
Für die Dauer des Zauberspruchs werden KÖR, ST und HÄ sowie Laufen verdoppelt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -4, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "rounds" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344899, - "modifiedTime": 1740227862590, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!uryiDdwKAwbASnuH" -} diff --git a/packs/spells/Verkleinern_ITWKevUdrtyBHjgR.json b/packs/spells/Verkleinern_ITWKevUdrtyBHjgR.json deleted file mode 100644 index eae0020b..00000000 --- a/packs/spells/Verkleinern_ITWKevUdrtyBHjgR.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ITWKevUdrtyBHjgR", - "name": "Verkleinern", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/contract.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das freiwillige Ziel – samt seiner Ausrüstung – wird auf ein Zehntel seiner Körpergröße verkleinert. Charaktere nehmen die Größenkategorie „winzig“ (DS4 S. 104) an.
Für die Dauer des Zauberspruchs werden KÖR, ST und HÄ halbiert und Laufen durch 10 geteilt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -4, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "minutes" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 10, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344543, - "modifiedTime": 1740227862565, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ITWKevUdrtyBHjgR" -} diff --git a/packs/spells/Verlangsamen_tqJ8DBLXcnCfrG3t.json b/packs/spells/Verlangsamen_tqJ8DBLXcnCfrG3t.json deleted file mode 100644 index 2a4f7dcc..00000000 --- a/packs/spells/Verlangsamen_tqJ8DBLXcnCfrG3t.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "tqJ8DBLXcnCfrG3t", - "name": "Verlangsamen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/snail.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber halbiert den Laufen-Wert von einer maximalen Anzahl von Zielen gleich der halbierten Stufe des Zauberwirkers.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 5", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "rounds" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 3, - "wizard": 8, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344897, - "modifiedTime": 1740227862589, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tqJ8DBLXcnCfrG3t" -} diff --git a/packs/spells/Versetzen_WETUfLs0pbo1odAp.json b/packs/spells/Versetzen_WETUfLs0pbo1odAp.json deleted file mode 100644 index 4fb194fd..00000000 --- a/packs/spells/Versetzen_WETUfLs0pbo1odAp.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "WETUfLs0pbo1odAp", - "name": "Versetzen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/body-swapping.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das einwilligende Ziel wird bis zu Probenergebnis / 2 Meter weit teleportiert, eine klare Sichtlinie vorausgesetzt.
Reicht die ermittelte Entfernung nicht aus, um den Zielpunkt zu erreichen, wird der Charakter dennoch – so weit wie möglich – in dessen Richtung versetzt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 10, - "wizard": 6, - "sorcerer": 6 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344681, - "modifiedTime": 1740227862576, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!WETUfLs0pbo1odAp" -} diff --git a/packs/spells/Versetzte_Stimme_SaLY0K9FQRb1TQoQ.json b/packs/spells/Versetzte_Stimme_SaLY0K9FQRb1TQoQ.json deleted file mode 100644 index 31020498..00000000 --- a/packs/spells/Versetzte_Stimme_SaLY0K9FQRb1TQoQ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "SaLY0K9FQRb1TQoQ", - "name": "Versetzte Stimme", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/lips.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann das von ihm Gesagte an einen bis zu VE x 10 Meter entfernten Punkt verlagern (eine klare Sichtlinie vorausgesetzt).
\nDieser Punkt kann eine freie Stelle im Raum sein oder auch ein Kleidungsstück einer Person.
\nJeder in Hörweite dieses Punktes kann den Zauberwirker hören.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-1 pro 10 Meter Entfernung" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE x 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 2, - "sorcerer": 3 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344624, - "modifiedTime": 1740227862572, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!SaLY0K9FQRb1TQoQ" -} diff --git a/packs/spells/Verteidigung_0Jp3WM3Aba8VKcrb.json b/packs/spells/Verteidigung_0Jp3WM3Aba8VKcrb.json deleted file mode 100644 index 20f9384b..00000000 --- a/packs/spells/Verteidigung_0Jp3WM3Aba8VKcrb.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "0Jp3WM3Aba8VKcrb", - "name": "Verteidigung", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/templar-shield.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel erhält das Probenergebnis als Bonus auf seine Abwehr, bis der Zauberwirker in der nächsten Kampfrunde wieder an der Reihe ist.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": true, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "1", - "unit": "rounds" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": 1, - "wizard": 4, - "sorcerer": 4 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344444, - "modifiedTime": 1740227862555, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!0Jp3WM3Aba8VKcrb" -} diff --git a/packs/spells/Vertreiben_QVcmtKpmT5HzIwur.json b/packs/spells/Vertreiben_QVcmtKpmT5HzIwur.json deleted file mode 100644 index 55d6fcfe..00000000 --- a/packs/spells/Vertreiben_QVcmtKpmT5HzIwur.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "QVcmtKpmT5HzIwur", - "name": "Vertreiben", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/chalk-outline-murder.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Vertreibt eine Anzahl von Untoten im Wirkungsbereich gleich der halbierten Stufe des Zauberwirkers.
\nFür die Dauer der Vertreibung ziehen sich die Untoten so schnell wie möglich von dem Zauberwirker zurück bis auf eine Distanz von Probenergebnis x 5 m.
\nBis zum Ablauf des Zaubers können die Untoten niemanden in seinem Wirkungsbereich angreifen.
\nDer Effekt endet bei jedem Untoten, der Schaden erleidet.
\nBei zu vielen Untoten entscheidet der Zufall, welche betroffen sind. Alternativ kann auch ein bestimmter Untoter als Ziel der Vertreibung bestimmt werden.
\nWird beim Vertreiben ein Immersieg gewürfelt, erhalten die betroffenen Untoten zusätzlichen abwehrbaren Schaden in der tatsächlichen Höhe des Immersiegs.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(KÖR+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 2", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "minutes" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 1, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344603, - "modifiedTime": 1740227862570, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!QVcmtKpmT5HzIwur" -} diff --git a/packs/spells/Verwandlung_4Wlx1LdkUK3BYctJ.json b/packs/spells/Verwandlung_4Wlx1LdkUK3BYctJ.json deleted file mode 100644 index 4c02e993..00000000 --- a/packs/spells/Verwandlung_4Wlx1LdkUK3BYctJ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "4Wlx1LdkUK3BYctJ", - "name": "Verwandlung", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/ghost-ally.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker nimmt das Aussehen einer anderen Person an, die seinem Volk angehören und gleichen Geschlechts sein muss.
\nHandelt es sich um eine bestimmte Person, die der Charakter jedoch nur flüchtig oder aus der Ferne kennt, können ihm Fehler unterlaufen, wodurch Bekannte der Zielperson mit einer Bemerken-Probe den Zauber durchschauen können.
\nUntote Wesen u. ä. kann man mit diesem rein optischen Effekt nicht täuschen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": true, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 5, - "sorcerer": 10 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344455, - "modifiedTime": 1740227862557, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!4Wlx1LdkUK3BYctJ" -} diff --git a/packs/spells/Verwirren_niQVUxJHzdMDlwXc.json b/packs/spells/Verwirren_niQVUxJHzdMDlwXc.json deleted file mode 100644 index 34d9b959..00000000 --- a/packs/spells/Verwirren_niQVUxJHzdMDlwXc.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "niQVUxJHzdMDlwXc", - "name": "Verwirren", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/misdirection.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauberspruch verwirrt bei Erfolg das Ziel, dessen Handeln für die gesamte Zauberdauer auf folgender Tabelle jede Kampfrunde neu ermittelt wird:
\nW20 | \nDer Verwirrte… | \n
---|---|
1–5 | \n… greift die Charaktere an | \n
6–10 | \n… läuft verwirrt in eine zufällige Richtung | \n
11–15 | \n… steht verwirrt herum | \n
16+ | \n… greift die eigenen Verbündeten an | \n
Bis zu VE einwilligende, humanoide Ziele (zu denen natürlich auch der Zauberwirker selbst gehören kann) in Reichweite werden in die Gestalt eines anderen humanoiden Volkes der gleichen Größenkategorie (DS4 S. 104) verwandelt (nicht jedoch seine Ausrüstung).
\nBeispielsweise könnte man einen Menschen in einen Ork oder sogar in einen uralten Zwerg verwandeln.
\nDer Charakter behält dabei all seine Fähigkeiten und erhält umgekehrt auch keine Fähigkeiten des Volkes, in das er verwandelt wurde.
\nWährend die Stimme sich dem neuen Volk anpasst, erinnern Augen und Gesichtzüge weiterhin an die eigentliche Gestalt des verwandelten Charakters.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -4, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": true, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": 5, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344473, - "modifiedTime": 1740227862560, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8Y5rUQhP8XCQM9xL" -} diff --git a/packs/spells/W_chter_7HCeOPLYvb1SQxcV.json b/packs/spells/W_chter_7HCeOPLYvb1SQxcV.json deleted file mode 100644 index 18afc937..00000000 --- a/packs/spells/W_chter_7HCeOPLYvb1SQxcV.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "7HCeOPLYvb1SQxcV", - "name": "Wächter", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/static-guard.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Ein magischer Wächter alarmiert bzw. weckt den Zauberwirker, sobald ein Wesen sich bis auf VE x 2 Meter oder weniger dem Zielpunkt nähert.
\nDies gilt nicht für Wesen, die sich während des Zaubervorgangs bereits in diesem Bereich aufhielten.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 4, - "wizard": 6, - "sorcerer": 5 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344463, - "modifiedTime": 1740227862558, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7HCeOPLYvb1SQxcV" -} diff --git a/packs/spells/Waffe_des_Lichts_cggG4v6EBPmEZuAQ.json b/packs/spells/Waffe_des_Lichts_cggG4v6EBPmEZuAQ.json deleted file mode 100644 index f66a4e08..00000000 --- a/packs/spells/Waffe_des_Lichts_cggG4v6EBPmEZuAQ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "cggG4v6EBPmEZuAQ", - "name": "Waffe des Lichts", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/aspergillum.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Die anvisierte Waffe erstrahlt mit der heiligen Kraft des Lichts.
\nDie folgenden Effekte gelten nur, wenn ein Charakter mit dem Talent Diener des Lichts die Waffe benutzt:
\nFür die Dauer des Zauberspruchs wird der WB der Waffe um +1 erhöht und ihr Schaden gilt als magisch.
\nJedesmal, wenn mit der Waffe Schaden verursacht wird, erhöht sich die Abwehr des Waffenträgers um 1.
\nDieser Effekt endet, wenn die Zauberdauer abgelaufen ist oder der Charakter die Waffe fallen lässt.
\nWaffe des Lichts kann man nicht mit @Compendium[ds4.spells.gJ3Z8y7i6LWjSMKJ]{Flammenklinge}, @Compendium[ds4.spells.Gc5G9kixOqNbuwp1]{Frostwaffe} oder @Compendium[ds4.spells.RUfE7hqqHCKMEMbh]{Schattenklinge} kombinieren.
\nCharaktere mit dem Talent Diener der Dunkelheit können diesen Zauber nicht anwenden.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": true, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 7, - "wizard": 8, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344734, - "modifiedTime": 1740227862579, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!cggG4v6EBPmEZuAQ" -} diff --git a/packs/spells/Wahnsinn_OODDFguw5Y113ywm.json b/packs/spells/Wahnsinn_OODDFguw5Y113ywm.json deleted file mode 100644 index 4cb08b56..00000000 --- a/packs/spells/Wahnsinn_OODDFguw5Y113ywm.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "OODDFguw5Y113ywm", - "name": "Wahnsinn", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/mad-scientist.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel des Zaubers wird auf der Stelle wahnsinnig und zu einem sabbernden Schwachsinnigen, dessen Geist fortan auf 0 gesenkt ist.
\nNur der Zauberspruch @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} kann diesen Effekt bannen, wofür pro wiederherzustellenden Punkt in GEI der Spruch jeweils einmal auf das Ziel angewendet werden muss.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-(GEI+AU)/2 des Ziels" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 15 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344599, - "modifiedTime": 1740227862570, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!OODDFguw5Y113ywm" -} diff --git a/packs/spells/Wand_ffnung_7foZzrxZuX0dCh3C.json b/packs/spells/Wand_ffnung_7foZzrxZuX0dCh3C.json deleted file mode 100644 index fbd55d98..00000000 --- a/packs/spells/Wand_ffnung_7foZzrxZuX0dCh3C.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "7foZzrxZuX0dCh3C", - "name": "Wandöffnung", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/hole.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker öffnet ein kreisrundes Loch von 1 m Durchmesser in einer bis zu VE x 10 cm dicken, nichtmagischen Steinwand.
\nNach Ablauf des Zaubers verschwindet das Loch ohne Spuren zu hinterlassen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": true, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. / 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": 6, - "sorcerer": 14 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344466, - "modifiedTime": 1740227862558, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7foZzrxZuX0dCh3C" -} diff --git a/packs/spells/Wasser_teilen_zcuCpowoHDs7eIHn.json b/packs/spells/Wasser_teilen_zcuCpowoHDs7eIHn.json deleted file mode 100644 index 26f7cb63..00000000 --- a/packs/spells/Wasser_teilen_zcuCpowoHDs7eIHn.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "zcuCpowoHDs7eIHn", - "name": "Wasser teilen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/zigzag-hieroglyph.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann jegliche Gewässer teilen und eine 1 m breite Schneise bis zu Grund in sie schlagen, ihre Länge einzig und allein begrenzt durch den Entfernungsmalus auf Zielzauber (DS4 S. 43).
\nWird der Zauber gegen flüssige Wesen wie beispielsweise @Compendium[ds4.creatures.ZJF6ieo8O0GXfgwz]{Wasserelementare} eingesetzt, entspricht das Wurfergebnis nicht abwehrbaren Schaden, während die Zauberdauer nur noch augenblicklich ist.
", - "equipped": false, - "spellType": "targetedSpellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": true, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Konzentration", - "unit": "custom" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": 12, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344908, - "modifiedTime": 1740227862592, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zcuCpowoHDs7eIHn" -} diff --git a/packs/spells/Wasser_weihen_TKkpNdYo6cbFq7Pt.json b/packs/spells/Wasser_weihen_TKkpNdYo6cbFq7Pt.json deleted file mode 100644 index 4df3b242..00000000 --- a/packs/spells/Wasser_weihen_TKkpNdYo6cbFq7Pt.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "TKkpNdYo6cbFq7Pt", - "name": "Wasser weihen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/holy-water.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Berührtes, reines Wasser wird zu heiligem @Compendium[ds4.equipment.RoXGTPdisjn6AdYK]{Weihwasser}. Bei jeder Anwendung des Zaubers stellt der Heiler eine Anzahl an Weihwassereinheiten (etwa 1/2 Liter) gleich dem halbierten Probenergebnis her, genügend „normales“ Wasser als Rohstoff vorausgesetzt.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 1, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344639, - "modifiedTime": 1740227862573, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TKkpNdYo6cbFq7Pt" -} diff --git a/packs/spells/Wasserwandeln_mYZ3gFtRJASLL9pv.json b/packs/spells/Wasserwandeln_mYZ3gFtRJASLL9pv.json deleted file mode 100644 index 04786c32..00000000 --- a/packs/spells/Wasserwandeln_mYZ3gFtRJASLL9pv.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "mYZ3gFtRJASLL9pv", - "name": "Wasserwandeln", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/walk.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Das Ziel des Zaubers kann eine Anzahl von Runden gleich dem Probenergebnis auf Wasser laufen, als befände es sich an Land.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": true, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": true, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "VE", - "unit": "hours" - }, - "cooldownDuration": "0r", - "minimumLevels": { - "healer": 5, - "wizard": 9, - "sorcerer": 9 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344875, - "modifiedTime": 1740227862585, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!mYZ3gFtRJASLL9pv" -} diff --git a/packs/spells/Wechselzauber_DNplbUwfxszg5UbZ.json b/packs/spells/Wechselzauber_DNplbUwfxszg5UbZ.json deleted file mode 100644 index 4763840f..00000000 --- a/packs/spells/Wechselzauber_DNplbUwfxszg5UbZ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "DNplbUwfxszg5UbZ", - "name": "Wechselzauber", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/magick-trick.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Präpariert einen Zauberspruch des Zauberwirkers, um einmalig aktionsfrei zu diesem zu wechseln.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 12, - "wizard": 10, - "sorcerer": 12 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344503, - "modifiedTime": 1740227862563, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!DNplbUwfxszg5UbZ" -} diff --git a/packs/spells/Wiederbelebung_duf86LKvOIyDXJbc.json b/packs/spells/Wiederbelebung_duf86LKvOIyDXJbc.json deleted file mode 100644 index 896e07ed..00000000 --- a/packs/spells/Wiederbelebung_duf86LKvOIyDXJbc.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "duf86LKvOIyDXJbc", - "name": "Wiederbelebung", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/heart-wings.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauber belebt einen Charakter, der nicht eines natürlichen Todes starb, wieder zum Leben mit 1 LK.
\nDas Ziel darf höchstens seit W20 Tagen tot sein und verliert bei der Wiederbelebung permanent 1 Punkt KÖR (DS4 S. 42).
\nCharaktere mit KÖR 1 können folglich also nicht mehr mit Hilfe dieses Zauberspruchs wiederbelebt bleiben.
\nZu beachten ist, dass dieser Zauber keine besonderen Verletzungen heilt – beispielsweise sollte ein aufgeschlitzte Kehle oder ein zerstampfter Körper vor der Wiederbelebung mit dem Zauber @Compendium[ds4.spells.pmYcjLXv1EB9bM59]{Allheilung} behandelt werden, um ein erneutes Ableben gleich nach der Wiederbelebung zu verhindern.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": true, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 10, - "wizard": null, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344757, - "modifiedTime": 1740227862580, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!duf86LKvOIyDXJbc" -} diff --git a/packs/spells/Wolke_der_Reue_aDitBSXiHFI67zDZ.json b/packs/spells/Wolke_der_Reue_aDitBSXiHFI67zDZ.json deleted file mode 100644 index 8987ad8e..00000000 --- a/packs/spells/Wolke_der_Reue_aDitBSXiHFI67zDZ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "aDitBSXiHFI67zDZ", - "name": "Wolke der Reue", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/tear-tracks.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine unsichtbare Wolke der Reue mit einem Radius von maximal VE in Metern entsteht.
Jeder Charakter innerhalb der Wolke empfindet ein unterschwelliges Schuldgefühl, wirkt leicht verunsichert und erhält dadurch -1 auf alle Proben.
Eine Wolke kann durch Wind bewegt oder gar auseinander geweht werden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -2, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": true, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": 1, - "wizard": 6, - "sorcerer": null - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344707, - "modifiedTime": 1740227862577, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!aDitBSXiHFI67zDZ" -} diff --git a/packs/spells/Wolke_des_Todes_xs7tx8K3ZdQ76u0b.json b/packs/spells/Wolke_des_Todes_xs7tx8K3ZdQ76u0b.json deleted file mode 100644 index f76af558..00000000 --- a/packs/spells/Wolke_des_Todes_xs7tx8K3ZdQ76u0b.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "xs7tx8K3ZdQ76u0b", - "name": "Wolke des Todes", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/skull-mask.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine schwarze, qualmende Wolke des Todes mit einem Radius von maximal VE in Metern entsteht.
\nZwar ist die Wolke nicht undurchsichtig, dennoch werden Angriffe gegen Ziele darin um 2 erschwert, gleichsam erhalten alle innerhalb der Wolke -2 auf alle Proben, bei denen man besser sehen können sollte.
\nJeder Charakter innerhalb der Wolke erleidet pro Runde automatisch einen nicht abwehrbaren Punkt Schaden.
\nSollte der Schwarzmagier über das Talent @Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Diener der Dunkelheit} verfügen, wird sein Talentrang auf den nicht abwehrbaren Schaden, den jedes Opfer pro Kampfrunde erleidet, addiert.
\nEine Wolke kann durch Wind bewegt oder gar auseinander geweht werden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -4, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": true, - "transport": false, - "damage": true, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": true - }, - "maxDistance": { - "value": "VE x 5", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb. x 2", - "unit": "rounds" - }, - "cooldownDuration": "100r", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 13 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344904, - "modifiedTime": 1740227862591, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!xs7tx8K3ZdQ76u0b" -} diff --git a/packs/spells/Zauberabklang_uAgln8KHIaeK9G1I.json b/packs/spells/Zauberabklang_uAgln8KHIaeK9G1I.json deleted file mode 100644 index 27853e84..00000000 --- a/packs/spells/Zauberabklang_uAgln8KHIaeK9G1I.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "uAgln8KHIaeK9G1I", - "name": "Zauberabklang", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/backward-time.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Mit diesem Zauber kann versucht werden, die Abklingzeit eines zuvor (innerhalb der letzten VE Kamfprunden) erfolgreich gewirkten Zauberspruchs wieder auf Null zu senken.
Misslingt die Probe, kann man den Zauberabklang bei diesem speziellen Zauberspruch erst wieder versuchen, wenn der Zauberwirker ihn abermals gewirkt hat.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "- eigene Zugangsstufe für den Spruch" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 10, - "wizard": 5, - "sorcerer": 9 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344898, - "modifiedTime": 1740227862590, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!uAgln8KHIaeK9G1I" -} diff --git a/packs/spells/Zauberleiter_USNJNNF2jDaS6BDQ.json b/packs/spells/Zauberleiter_USNJNNF2jDaS6BDQ.json deleted file mode 100644 index 8df3393e..00000000 --- a/packs/spells/Zauberleiter_USNJNNF2jDaS6BDQ.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "USNJNNF2jDaS6BDQ", - "name": "Zauberleiter", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/ladder.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Eine magische Leiter entsteht, die bis zu VE x Zauberwirkerstufe Meter hoch sein kann.
Die Leiter steht fest im Raum und benötigt keinen Halt. Sie bleibt, solange der Zauberwirker sich ununterbrochen konzentriert (zählt als ganze Aktion).
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Konzentration", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": 8, - "wizard": 4, - "sorcerer": 4 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344664, - "modifiedTime": 1740227862574, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!USNJNNF2jDaS6BDQ" -} diff --git a/packs/spells/Zaubertrick_kOCHuBrtIXOwoZ1J.json b/packs/spells/Zaubertrick_kOCHuBrtIXOwoZ1J.json deleted file mode 100644 index fd93b2e4..00000000 --- a/packs/spells/Zaubertrick_kOCHuBrtIXOwoZ1J.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "kOCHuBrtIXOwoZ1J", - "name": "Zaubertrick", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/magic-hat.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieser Zauberspruch erzeugt kleine, unschädliche Illusionen. Beispielsweise kann der Zauberwirker schwebende Bälle zaubern oder die Illusion eines Kaninchens aus einem Hut ziehen.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "VE x 2", - "unit": "meter" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": null, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344867, - "modifiedTime": 1740227862584, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!kOCHuBrtIXOwoZ1J" -} diff --git a/packs/spells/Zeitstop_BGnY1p1qZXwpzXFA.json b/packs/spells/Zeitstop_BGnY1p1qZXwpzXFA.json deleted file mode 100644 index 2cdd4189..00000000 --- a/packs/spells/Zeitstop_BGnY1p1qZXwpzXFA.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "BGnY1p1qZXwpzXFA", - "name": "Zeitstop", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/lorc/time-trap.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker hält die Zeit an, bis die Zauberdauer endet oder er Schaden verursacht bzw. selber erleidet.
Andere Objekte und Lebewesen können nicht bewegt werden – sie sind starr in der Zeit eingefroren.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": -5, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Selbst", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Prb.", - "unit": "rounds" - }, - "cooldownDuration": "d20d", - "minimumLevels": { - "healer": null, - "wizard": 15, - "sorcerer": 20 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344490, - "modifiedTime": 1740227862562, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!BGnY1p1qZXwpzXFA" -} diff --git a/packs/spells/Zombies_erwecken_mBFPKvtK3Rmq7CFY.json b/packs/spells/Zombies_erwecken_mBFPKvtK3Rmq7CFY.json deleted file mode 100644 index 5e989850..00000000 --- a/packs/spells/Zombies_erwecken_mBFPKvtK3Rmq7CFY.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "mBFPKvtK3Rmq7CFY", - "name": "Zombies erwecken", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/skoll/raise-zombie.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Schwarzmagier kann eine maximale Anzahl an Leichen gleich seiner eigenen Stufe im Wirkungsradius zu untotem Leben erwecken.
\nDie @Compendium[ds4.creatures.rLUCyWfSBebB8cSC]{Zombies} (DS4 S. 125) benötigen drei Kampfrunden, um sich zu erheben, danach wollen sie ihren Erwecker vernichten, um wieder Erlösung zu finden, gelingt es diesem nicht, sie mit dem Zauber @Compendium[ds4.spells.9gc1CF70165NXymH]{Kontrollieren} zu beherrschen.
\nCharaktere mit dem Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} können den Zauber nicht anwenden.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": true, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": true, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "", - "unit": "meter" - }, - "effectRadius": { - "value": "VE x 5", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "1d", - "minimumLevels": { - "healer": null, - "wizard": null, - "sorcerer": 8 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344873, - "modifiedTime": 1740227862585, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!mBFPKvtK3Rmq7CFY" -} diff --git a/packs/spells/_ffnen_ip0DVeb1YeNrEeUu.json b/packs/spells/_ffnen_ip0DVeb1YeNrEeUu.json deleted file mode 100644 index 46484376..00000000 --- a/packs/spells/_ffnen_ip0DVeb1YeNrEeUu.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "_id": "ip0DVeb1YeNrEeUu", - "name": "Öffnen", - "type": "spell", - "img": "systems/ds4/assets/icons/game-icons/delapouite/padlock-open.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Öffnet ein Schloss, ohne es zu beschädigen. Der normalerweise immer +0 betragende Schlosswert (SW) kann durch bessere Qualität oder den Zauberspruch @Compendium[ds4.spells.dzYAc9ti7ghhkyiX]{Magisches Schloss} erhöht werden.
\nMisslingt der Zauber, kann der Zauberwirker es erneut versuchen. Jeder Folgewurf senkt den PW der Zaubern-Proben bei diesem speziellen Schloss jedoch um jeweils 2.
\nDieser kumulative Malus gegen dieses eine Schloss erlischt erst, wenn der Zauberwirker eine neue Stufe erreicht.
", - "equipped": false, - "spellType": "spellcasting", - "spellModifier": { - "numerical": 0, - "complex": "-SW" - }, - "allowsDefense": false, - "spellGroups": { - "lightning": false, - "earth": false, - "water": false, - "ice": false, - "fire": false, - "healing": false, - "light": false, - "air": false, - "transport": false, - "damage": false, - "shadow": false, - "protection": false, - "mindAffecting": false, - "demonology": false, - "necromancy": false, - "transmutation": false, - "area": false - }, - "maxDistance": { - "value": "Berühren", - "unit": "custom" - }, - "effectRadius": { - "value": "", - "unit": "meter" - }, - "duration": { - "value": "Sofort", - "unit": "custom" - }, - "cooldownDuration": "10r", - "minimumLevels": { - "healer": 2, - "wizard": 1, - "sorcerer": 1 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995344866, - "modifiedTime": 1740227862584, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ip0DVeb1YeNrEeUu" -} diff --git a/packs/talents/Abklingen_w2Dn16q2f0gBxTch.json b/packs/talents/Abklingen_w2Dn16q2f0gBxTch.json deleted file mode 100644 index 2f50fb88..00000000 --- a/packs/talents/Abklingen_w2Dn16q2f0gBxTch.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "w2Dn16q2f0gBxTch", - "name": "Abklingen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent senkt die Zauberabklingzeit jedes Zaubers um 1 Runde pro Talentrang. Es ist jedoch nicht möglich, die Abklingzeit eines Zaubers unter Null zu senken.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349656, - "modifiedTime": 1740227862745, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!w2Dn16q2f0gBxTch" -} diff --git a/packs/talents/Abklingendes_Blut_yIcgnr9Xr7Kwocaj.json b/packs/talents/Abklingendes_Blut_yIcgnr9Xr7Kwocaj.json deleted file mode 100644 index 5fc5bc57..00000000 --- a/packs/talents/Abklingendes_Blut_yIcgnr9Xr7Kwocaj.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "yIcgnr9Xr7Kwocaj", - "name": "Abklingendes Blut", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Blutmagier kann für das Opfern von bis zu 1 LK pro Talentrang (zählt als freie Aktion) die Abklingzeit eines gerade abklingenden Zauberspruchs um jeweils 1 Runde senken.
\nPro weiterem Talentrang kann ein weiterer LK geopfert werden, wodurch die Abklingzeit um eine weitere Runde gesenkt wird.
\nAbklingendes Blut ist mit dem Talent @Compendium[ds4.talents.w2Dn16q2f0gBxTch]{Abklingen} kombinierbar.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349660, - "modifiedTime": 1740227862746, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yIcgnr9Xr7Kwocaj" -} diff --git a/packs/talents/Aderschlitzer_JbGKvhxVEAdczQib.json b/packs/talents/Aderschlitzer_JbGKvhxVEAdczQib.json deleted file mode 100644 index 1a2fb7ae..00000000 --- a/packs/talents/Aderschlitzer_JbGKvhxVEAdczQib.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "JbGKvhxVEAdczQib", - "name": "Aderschlitzer", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird bei einem Angriff mit einem Messer, Dolch oder Einhandschwert bzw. mit einer Schußwaffe ein Würfelergebnis erzielt, welches gleich oder kleiner als der Talentrang in Aderschlitzer ist, wird die Abwehr des Gegners gegen diesen Angriff pro Talentrang um 5 gesenkt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349509, - "modifiedTime": 1740227862727, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JbGKvhxVEAdczQib" -} diff --git a/packs/talents/Adlergestalt_sSKiZ5hdQMBnAYRA.json b/packs/talents/Adlergestalt_sSKiZ5hdQMBnAYRA.json deleted file mode 100644 index 6320b68c..00000000 --- a/packs/talents/Adlergestalt_sSKiZ5hdQMBnAYRA.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "sSKiZ5hdQMBnAYRA", - "name": "Adlergestalt", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Druide kann sich pro Talentrang einmal alle 24 Stunden samt seiner Ausrüstung (magische Boni von Gegenständen wirken dadurch weiterhin) in einen flugfähigen @Compendium[ds4.creatures.HjpxMlpyjPr3hd3r]{Adler} (DS4 S. 106) verwandeln. Auch kann er die Gestalt kleinerer Vögel annehmen. Die Verwandlung dauert 1 Runde. Der Effekt endet auf Wunsch des Druiden oder durch seinen Tod. Erlittener Schaden bleibt nach der Rückverwandlung gänzlich bestehen.
\nGEI, VE und AU des Druiden verändern sich dabei nicht, jedoch nehmen alle anderen Attribute, Eigenschaften und Kampfwerte die Werte eines Adlers an.
\nIn Adlergestalt ist es dem Druiden nicht möglich, zu sprechen oder zu zaubern, wohl aber, Gesprochenes zu verstehen und die Sinne des Adlers einzusetzen. Zauber, die beispielsweise Tiere kontrollieren, haben auf den Druiden in Adlergestalt keinen Einfluss.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349641, - "modifiedTime": 1740227862743, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sSKiZ5hdQMBnAYRA" -} diff --git a/packs/talents/Akrobat_9qdc56F4XTntYoo9.json b/packs/talents/Akrobat_9qdc56F4XTntYoo9.json deleted file mode 100644 index 3d4133ef..00000000 --- a/packs/talents/Akrobat_9qdc56F4XTntYoo9.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "_id": "9qdc56F4XTntYoo9", - "name": "Akrobat", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "ouQeQaI46fM2mq4D", - "changes": [ - { - "key": "system.checks.climb", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.jump", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Akrobatische Proben +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!9qdc56F4XTntYoo9.ouQeQaI46fM2mq4D" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein geübter Kletterer und Turner. Auf alle Proben, bei denen es um athletisches Geschick, Balancieren oder Kletterkunst geht, erhält der Charakter einen Bonus von +2 pro Talentrang.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349488, - "modifiedTime": 1740227862724, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9qdc56F4XTntYoo9" -} diff --git a/packs/talents/Alchemie_XUyuomVVOxuSSKXl.json b/packs/talents/Alchemie_XUyuomVVOxuSSKXl.json deleted file mode 100644 index 7eb4b2dd..00000000 --- a/packs/talents/Alchemie_XUyuomVVOxuSSKXl.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "XUyuomVVOxuSSKXl", - "name": "Alchemie", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent wird benötigt, um magische Tränke zu brauen (DS4 S. 101).
\nJeder Talentrang reduziert die Zubereitungsdauer von Tränken und gibt +1 auf Proben, um diese herzustellen oder zu identifizieren (DS4 S. 47).
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349553, - "modifiedTime": 1740227862733, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!XUyuomVVOxuSSKXl" -} diff --git a/packs/talents/Arkane_Explosion_hGuQT644hBIM8G4J.json b/packs/talents/Arkane_Explosion_hGuQT644hBIM8G4J.json deleted file mode 100644 index 15e3881a..00000000 --- a/packs/talents/Arkane_Explosion_hGuQT644hBIM8G4J.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "hGuQT644hBIM8G4J", - "name": "Arkane Explosion", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal alle 24 Stunden sein magisches Potenzial in einer kugelförmigen, arkanen Explosion entladen, deren Mittelpunkt er bildet.
\nDie Kugel hat einen festen Durchmesser von Stufe/2 Meter und verursacht nicht abwehrbaren Schaden mit einem Probenwert von 10 pro Talentrang.
\nPro Gefährten, der im Explosionsradius steht, kann der Charakter GEI+VE würfeln, um ihn vor dem Schaden zu bewahren.
\nDas Talent @Compendium[ds4.talents.2ASdMhcx0hN3ZpPc]{Explosionskontrolle} kann hier ebenfalls angewendet werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349605, - "modifiedTime": 1740227862738, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!hGuQT644hBIM8G4J" -} diff --git a/packs/talents/Ausweichen_h8rhfVd2pINsa4d2.json b/packs/talents/Ausweichen_h8rhfVd2pINsa4d2.json deleted file mode 100644 index da6f3912..00000000 --- a/packs/talents/Ausweichen_h8rhfVd2pINsa4d2.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "h8rhfVd2pINsa4d2", - "name": "Ausweichen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal pro Kampf einen gegen ihn gerichteten Nahkampfangriff komplett ignorieren (zählt als freie Aktion). Dass der Charakter einem Angriff ausweichen will, muss angesagt werden, bevor feststeht, ob dieser Schlag ihn trifft oder nicht. Gegen Angriffe von Gegnern, die 2+ Größenkategorien (DS4 S. 104) größer sind, ist das Talent wirkungslos.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349602, - "modifiedTime": 1740227862737, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!h8rhfVd2pINsa4d2" -} diff --git a/packs/talents/B_ndiger_kqm5iBvDGn8NQ4BR.json b/packs/talents/B_ndiger_kqm5iBvDGn8NQ4BR.json deleted file mode 100644 index 24cc8d50..00000000 --- a/packs/talents/B_ndiger_kqm5iBvDGn8NQ4BR.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "kqm5iBvDGn8NQ4BR", - "name": "Bändiger", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Einmal pro Talentrang kann der Charakter mit GEI+AU versuchen, einer selbst beschworenen bzw. selbst herbeigerufenen Wesenheit, die er nicht unter seine Kontrolle bringen konnte (die Probe auf Zaubern also misslang), dennoch seinen Willen aufzuzwingen (jeder Versuch zählt als eine ganze Aktion). Bei einem Erfolg kann der Charakter versuchen, noch ein weiteres Wesen (sofern vorhanden) in der gleichen Runde zu bändigen (zählt nun als freie Aktion), insgesamt jedoch nicht mehr zusätzliche Wesenheiten pro Runde, als sein Talentrang beträgt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349615, - "modifiedTime": 1740227862739, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!kqm5iBvDGn8NQ4BR" -} diff --git a/packs/talents/B_rengestalt_8pylauN1hY933vrQ.json b/packs/talents/B_rengestalt_8pylauN1hY933vrQ.json deleted file mode 100644 index 8925940a..00000000 --- a/packs/talents/B_rengestalt_8pylauN1hY933vrQ.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "8pylauN1hY933vrQ", - "name": "Bärengestalt", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Druide kann sich pro Talentrang einmal alle 24 Stunden samt seiner Ausrüstung (magische Boni von Gegenständen wirken dadurch weiterhin) in einen @Compendium[ds4.creatures.InLjj4RGxfkDrtXr]{Bären} (DS4 S. 106) verwandeln. Alternativ kann in Absprache mit dem Spielleiter bei Talenterwerb auch ein anderes „großes“ (DS4 S. 104) Tier gewählt werden. Die Verwandlung dauert 1 Runde. Der Effekt endet auf Wunsch des Druiden oder durch seinen Tod. Erlittener Schaden bleibt nach der Rückverwandlung gänzlich bestehen.
\nGEI, VE und AU des Druiden verändern sich nicht, jedoch nehmen alle anderen Attribute, Eigenschaften und Kampfwerte die Werte des Tieres an.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349484, - "modifiedTime": 1740227862723, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8pylauN1hY933vrQ" -} diff --git a/packs/talents/Beschw_rer_MIYh9GTkm7xIquWK.json b/packs/talents/Beschw_rer_MIYh9GTkm7xIquWK.json deleted file mode 100644 index 721ec6a0..00000000 --- a/packs/talents/Beschw_rer_MIYh9GTkm7xIquWK.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "MIYh9GTkm7xIquWK", - "name": "Beschwörer", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "1Lrnk4tNGWXSdCd1", - "changes": [ - { - "key": "system.spellModifier.numerical", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.spellGroups.demonology" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Dämonologie +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!MIYh9GTkm7xIquWK.1Lrnk4tNGWXSdCd1" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein Experte im Beschwören von Dämonen. Er erhält auf alle Versuche, Dämonen zu beschwören und diese zu kontrollieren einen Bonus von +2 pro Talentrang.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349517, - "modifiedTime": 1740227862728, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!MIYh9GTkm7xIquWK" -} diff --git a/packs/talents/Beute_Sch_tzen_5eEaKiUSzWBhG8Bn.json b/packs/talents/Beute_Sch_tzen_5eEaKiUSzWBhG8Bn.json deleted file mode 100644 index 4b3a54c4..00000000 --- a/packs/talents/Beute_Sch_tzen_5eEaKiUSzWBhG8Bn.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "5eEaKiUSzWBhG8Bn", - "name": "Beute Schätzen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "HHnWhHQf9ibLVCAP", - "changes": [ - { - "key": "system.checks.appraise", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Schätzen +3", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!5eEaKiUSzWBhG8Bn.HHnWhHQf9ibLVCAP" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter erhält pro Talentrang einen Bonus von +3, wenn er den Wert eines Gegenstandes schätzt.
\nAuch kann er mit GEI+AU spüren, ob dieser magisch ist (nicht aber im Anschluss mit GEI+VE, wie Zauberwirker, seine Funktionsweise erkennen), worauf der gleiche Bonus angerechnet wird.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349465, - "modifiedTime": 1740227862721, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5eEaKiUSzWBhG8Bn" -} diff --git a/packs/talents/Bildung_KgOHPx5oQHKBuVPc.json b/packs/talents/Bildung_KgOHPx5oQHKBuVPc.json deleted file mode 100644 index b9601058..00000000 --- a/packs/talents/Bildung_KgOHPx5oQHKBuVPc.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "_id": "KgOHPx5oQHKBuVPc", - "name": "Bildung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "JbL6BC0HyUKyxBvd", - "changes": [ - { - "key": "system.checks.decipherScript", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.communicate", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Bildungsproben +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!KgOHPx5oQHKBuVPc.JbL6BC0HyUKyxBvd" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter hat einen gewissen Grad an Bildung erworben.
\nIm Gegensatz zu dem Talent @Compendium[ds4.talents.IB1OJ65TseuSw9ZI]{Wissensegebiet}, welches nur einzelne Themengebiete umfasst, erhält man durch das Talent Bildung einen +2 Bonus pro Talentrang auf alle Proben, bei denen es um Allgemeinwissen oder das Lösen von Rätseln geht.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349513, - "modifiedTime": 1740227862728, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KgOHPx5oQHKBuVPc" -} diff --git a/packs/talents/Blitzmacher_zhzVJz6WhSMMeTuY.json b/packs/talents/Blitzmacher_zhzVJz6WhSMMeTuY.json deleted file mode 100644 index b9474c28..00000000 --- a/packs/talents/Blitzmacher_zhzVJz6WhSMMeTuY.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "zhzVJz6WhSMMeTuY", - "name": "Blitzmacher", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "zcVXFPGvCoUuso15", - "changes": [ - { - "key": "system.spellModifier.numerical", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.spellGroups.lightning && @item.system.spellGroups.damage" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Blitzschadenszauber +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!zhzVJz6WhSMMeTuY.zcVXFPGvCoUuso15" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker ist geübt im Umgang mit Zaubersprüchen, die Blitze erzeugen.
\nEr erhält auf alle Zauber, die Blitzschaden verursachen, einen Bonus von +1 pro Talentrang.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349662, - "modifiedTime": 1740227862747, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zhzVJz6WhSMMeTuY" -} diff --git a/packs/talents/Blocker_9y7I3NIFuFC5lG4s.json b/packs/talents/Blocker_9y7I3NIFuFC5lG4s.json deleted file mode 100644 index 6c911229..00000000 --- a/packs/talents/Blocker_9y7I3NIFuFC5lG4s.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "9y7I3NIFuFC5lG4s", - "name": "Blocker", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter versteht es, im Kampf seinen Schild geschickt einzusetzen.
\nIn jeder Kampfrunde, in der er keine offensive Handlung unternimmt, dabei einen Schild führt und sich nicht einen Schritt bewegt, erhält er pro Talentrang +2 auf seine Abwehr gegen alle Angriffe, derer er sich bewusst ist und die nicht von hinten erfolgen. Zusätzlich kann er mit demselben Bonus KÖR+HÄ aktionsfrei würfeln, um im Kampf nicht zurückgedrängt zu werden (DS4 S. 44). Einmal pro Kampf kann ein Blocker pro Talentrang einen Patzer bei der Abwehr wiederholen, auch wenn er gerade eine offensiv Handlung unternimmt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349489, - "modifiedTime": 1740227862724, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9y7I3NIFuFC5lG4s" -} diff --git a/packs/talents/Blutige_Heilung_ODepf0g8Us5jBqLm.json b/packs/talents/Blutige_Heilung_ODepf0g8Us5jBqLm.json deleted file mode 100644 index 276dd512..00000000 --- a/packs/talents/Blutige_Heilung_ODepf0g8Us5jBqLm.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "ODepf0g8Us5jBqLm", - "name": "Blutige Heilung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Blutmagier einmal pro Kampf (außerhalb eines Kampfes beliebig oft) versuchen, sich mit der Kraft des eigenen Blutes zu heilen (zählt als eine freie Aktion, die einmal pro Runde möglich ist), was allerdings auch misslingen kann.
\nDer Charakter würfelt dafür mit einem Probenwert gleich seiner eigenen Stufe.
\nBei einem Erfolg wird er um das doppelte Probenergebnis geheilt, bei einem Misserfolg erleidet er jedoch nicht abwehrbaren Schaden gleich seinem doppelten Talentrang. Bei einem Patzer ist das Talent außerdem W20 Stunden nicht mehr einsetzbar.
\nWird bei der blutigen Heilung das Talent @Compendium[ds4.talents.AM8Wp2ZVwWgbUXQz]{Macht des Blutes} angewendet, wird als dessen Bonus das Attribut KÖR bzw. GEI verwendet, was immer höher ist.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349530, - "modifiedTime": 1740227862730, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ODepf0g8Us5jBqLm" -} diff --git a/packs/talents/Blutschild_hUfTQbzMpbOH03qq.json b/packs/talents/Blutschild_hUfTQbzMpbOH03qq.json deleted file mode 100644 index d6f52e39..00000000 --- a/packs/talents/Blutschild_hUfTQbzMpbOH03qq.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "hUfTQbzMpbOH03qq", - "name": "Blutschild", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Blutmagier kann für das Opfern von 2 LK seine Abwehr für W20 Runden um +2 erhöhen (zählt als freie Aktion).
\nPro weiteren Talentrang können zwei weitere LK geopfert werden, welche die Abwehr um weitere +2 erhöhen.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349606, - "modifiedTime": 1740227862738, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!hUfTQbzMpbOH03qq" -} diff --git a/packs/talents/Brutaler_Hieb_ZnT8LMCRqZS3zpJO.json b/packs/talents/Brutaler_Hieb_ZnT8LMCRqZS3zpJO.json deleted file mode 100644 index 3f9d2c70..00000000 --- a/packs/talents/Brutaler_Hieb_ZnT8LMCRqZS3zpJO.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "ZnT8LMCRqZS3zpJO", - "name": "Brutaler Hieb", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "aC7UEoDRrwhs7j3U", - "changes": [ - { - "key": "system.checks.featOfStrength", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Kraftakt +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ZnT8LMCRqZS3zpJO.aC7UEoDRrwhs7j3U" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal pro Kampf seinen Wert in Schlagen für einen Angriff um den Wert von KÖR erhöhen.
\nEs ist möglich, mehrere Talentränge in einem einzigen Schlag zu vereinen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349558, - "modifiedTime": 1740227862734, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ZnT8LMCRqZS3zpJO" -} diff --git a/packs/talents/Charmant_pAOP7wkvhtsNIPQ8.json b/packs/talents/Charmant_pAOP7wkvhtsNIPQ8.json deleted file mode 100644 index 28a2f671..00000000 --- a/packs/talents/Charmant_pAOP7wkvhtsNIPQ8.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "_id": "pAOP7wkvhtsNIPQ8", - "name": "Charmant", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "PzOc07kYoWYygECD", - "changes": [ - { - "key": "system.checks.flirt", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.haggle", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Soziale Proben +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!pAOP7wkvhtsNIPQ8.PzOc07kYoWYygECD" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Auf sämtliche Proben sozialer Interaktion, beispielsweise um sympathisch aufzutreten oder eine Geschichte glaubhafter zu berichten, erhält der Charakter pro Talentrang einen Bonus von +2 (bei Vertretern des anderen Geschlechts sogar +3).
\nSettingoption:
In vielen Settings ist es Zwergen verwehrt, dieses Talent zu erlernen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349630, - "modifiedTime": 1740227862741, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pAOP7wkvhtsNIPQ8" -} diff --git a/packs/talents/D_monen_zerschmettern_DZcu8KQFWChBVPRR.json b/packs/talents/D_monen_zerschmettern_DZcu8KQFWChBVPRR.json deleted file mode 100644 index 7eb95447..00000000 --- a/packs/talents/D_monen_zerschmettern_DZcu8KQFWChBVPRR.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "DZcu8KQFWChBVPRR", - "name": "Dämonen zerschmettern", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "
Pro Talentrang kann der Charakter einmal alle 24 Stunden einen Nahkampfangriff gegen einen Dämonen führen, der nicht abgewehrt werden kann.
\nVor dem Angriffswurf muss angesagt werden, dass das Talent zum Einsatz kommen soll, welches mit Talenten wie @Compendium[ds4.talents.ZnT8LMCRqZS3zpJO]{Brutaler Hieb} und/oder @Compendium[ds4.talents.AT9Bi7Tsr8k3HujP]{Vergeltung} kombiniert werden kann.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349497, - "modifiedTime": 1740227862725, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!DZcu8KQFWChBVPRR" -} diff --git a/packs/talents/D_monenbrut_7H5VfdfMACJbv8bz.json b/packs/talents/D_monenbrut_7H5VfdfMACJbv8bz.json deleted file mode 100644 index 53165336..00000000 --- a/packs/talents/D_monenbrut_7H5VfdfMACJbv8bz.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "7H5VfdfMACJbv8bz", - "name": "Dämonenbrut", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Dämonologe auf Wunsch bei einer Beschwörung einen weiteren Dämon gleichen Typs beschwören. Ein zusätzlicher Beschwörungskreis oder eine weitere Probe werden dafür nicht benötigt.
\nSollte die Beschwörung misslingen, wendet sich die gesamte Dämonenbrut gegen ihren Beschwörer.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349478, - "modifiedTime": 1740227862722, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7H5VfdfMACJbv8bz" -} diff --git a/packs/talents/D_monenzauber_sThruiUnwaN9KHrP.json b/packs/talents/D_monenzauber_sThruiUnwaN9KHrP.json deleted file mode 100644 index bf018a58..00000000 --- a/packs/talents/D_monenzauber_sThruiUnwaN9KHrP.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "sThruiUnwaN9KHrP", - "name": "Dämonenzauber", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Dämonologe einem einzelnen seiner beschworenen Dämonen einen seiner eigenen Zaubersprüche beibringen (dauert eine Aktion), mit Ausnahme des Zauberspruchs @Compendium[ds4.spells.yy43TiBbip28QRhs]{Dämonen beschwören}. Der jeweilige Dämon hat für die Dauer seiner Beschwörung den jeweiligen Zauber aktiv und kann ihn nach den normalen Regeln einsetzen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349643, - "modifiedTime": 1740227862743, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sThruiUnwaN9KHrP" -} diff --git a/packs/talents/Diebeskunst_VqzpRGrHclPSGLP0.json b/packs/talents/Diebeskunst_VqzpRGrHclPSGLP0.json deleted file mode 100644 index 22106f9d..00000000 --- a/packs/talents/Diebeskunst_VqzpRGrHclPSGLP0.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "_id": "VqzpRGrHclPSGLP0", - "name": "Diebeskunst", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "HQXZuzxIk1xmD1FQ", - "changes": [ - { - "key": "system.checks.disableTraps", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.openLock", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.pickPocket", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.workMechanism", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.search", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Diebeskunstproben +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!VqzpRGrHclPSGLP0.HQXZuzxIk1xmD1FQ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter erhält einen Bonus von +2 pro Talentrang auf alle Proben, bei denen es darum geht, Fallen zu entdecken und zu entschärfen, fremde Taschen zu leeren, Schlösser zu öffnen oder Glücksspiele zu manipulieren.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349546, - "modifiedTime": 1740227862733, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!VqzpRGrHclPSGLP0" -} diff --git a/packs/talents/Diener_der_Dunkelheit_hAfZhfLqCjPvho3u.json b/packs/talents/Diener_der_Dunkelheit_hAfZhfLqCjPvho3u.json deleted file mode 100644 index fbb9c721..00000000 --- a/packs/talents/Diener_der_Dunkelheit_hAfZhfLqCjPvho3u.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "hAfZhfLqCjPvho3u", - "name": "Diener der Dunkelheit", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter dient den Mächten der Dunkelheit. Er erhält auf alle Angriffe gegen @Compendium[ds4.special-creature-abilities.KDDlwN9as9B4ljeA]{Wesen des Lichts}/@Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} einen Bonus von +1 pro Talentrang. Gleiches gilt für seine Abwehr gegen Schaden von Lichtzaubern.
\nCharakter mit diesem Talent können nicht das Talent @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} erlernen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349604, - "modifiedTime": 1740227862737, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!hAfZhfLqCjPvho3u" -} diff --git a/packs/talents/Diener_des_Lichts_Wwvj3V65hIe0JWul.json b/packs/talents/Diener_des_Lichts_Wwvj3V65hIe0JWul.json deleted file mode 100644 index 16992060..00000000 --- a/packs/talents/Diener_des_Lichts_Wwvj3V65hIe0JWul.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "Wwvj3V65hIe0JWul", - "name": "Diener des Lichts", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter dient den Mächten des Lichts. Er erhält gegen alle Angriffe von @Compendium[ds4.special-creature-abilities.R3j1CjXJckUH0CBG]{Wesen der Dunkelheit}/@Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Dienern der Dunkelheit} einen Bonus von +1 pro Talentrang auf seine Abwehr. Gleiches gilt bei Schaden von Schattenzaubern.
\nCharaktere, die gegen die Prinzipien des Lichts verstoßen (beispielsweise sinnlos Morden) verlieren Talentränge ersatzlos.
\nCharaktere mit diesem Talent können nicht das Talent @Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Diener der Dunkelheit} erlernen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349549, - "modifiedTime": 1740227862733, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Wwvj3V65hIe0JWul" -} diff --git a/packs/talents/Einbetten_MbPRlVBm0JsBoA6X.json b/packs/talents/Einbetten_MbPRlVBm0JsBoA6X.json deleted file mode 100644 index 78f2508c..00000000 --- a/packs/talents/Einbetten_MbPRlVBm0JsBoA6X.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "MbPRlVBm0JsBoA6X", - "name": "Einbetten", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent wird benötigt, um magische Gegenstände herzustellen (DS4 S. 101). Jeder Talentrang reduziert die Herstellungsdauer von magischen Gegenständen und gibt +1 auf Einbetten- Proben, um diese zu fertigen.
\nEinbetten hilft zwar auch bei der Herstellung von Tränken bzw. Schriftrollen, dennoch wird dafür zunächst immer noch das Talent @Compendium[ds4.talents.XUyuomVVOxuSSKXl]{Alchemie} bzw. @Compendium[ds4.talents.t56WOCnxZwQWhajW]{Runenkunde} benötigt.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349520, - "modifiedTime": 1740227862729, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!MbPRlVBm0JsBoA6X" -} diff --git a/packs/talents/Einstecker_ZvswuU2GqxDQwgpM.json b/packs/talents/Einstecker_ZvswuU2GqxDQwgpM.json deleted file mode 100644 index 76a52529..00000000 --- a/packs/talents/Einstecker_ZvswuU2GqxDQwgpM.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "_id": "ZvswuU2GqxDQwgpM", - "name": "Einstecker", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "2rmByR3ov2nUHHEj", - "changes": [ - { - "key": "system.combatValues.hitPoints.total", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Lebenskraft +3", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ZvswuU2GqxDQwgpM.2rmByR3ov2nUHHEj" - }, - { - "_id": "ulUx8SX4R1q1ikhw", - "changes": [ - { - "key": "system.checks.defyPoison", - "mode": 2, - "value": "1", - "priority": null - }, - { - "key": "system.checks.resistDisease", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Gift/Krankheit trotzen +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!ZvswuU2GqxDQwgpM.ulUx8SX4R1q1ikhw" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter versteht es, ordentlich Schaden einzustecken.
\nPro Talentrang steigt die Lebenskraft (LK) um +3.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349560, - "modifiedTime": 1740227862735, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ZvswuU2GqxDQwgpM" -} diff --git a/packs/talents/Elementare_b_ndeln_11ZOcPcDIigrXvww.json b/packs/talents/Elementare_b_ndeln_11ZOcPcDIigrXvww.json deleted file mode 100644 index 8bf36806..00000000 --- a/packs/talents/Elementare_b_ndeln_11ZOcPcDIigrXvww.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "11ZOcPcDIigrXvww", - "name": "Elementare bündeln", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Elementarist auf Wunsch bei einer Herbeirufung eine weitere Elementarstufe (I) herbeirufen.
\nDer Elementarist muss vor der Herbeirufung schon festlegen, wie viele der zusätzlichen Elementare einzeln oder gebündelt – wodurch sich ihre Stufen (DS4 S. 53) bis maximal III addieren – erscheinen sollen. Ein zusätzliches Elementarportal oder Proben werden dafür nicht benötigt, aber der ZB entsprechend gesenkt.
\nSollte die Herbeirufung misslingen, wenden sich alle Elementare – gebündelte wie ungebündelte – gegen den Elementaristen.
", - "rank": { - "base": 0, - "max": 10, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349428, - "modifiedTime": 1740227862719, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!11ZOcPcDIigrXvww" -} diff --git a/packs/talents/Elementen_trotzen_HFCY3fxIbeXapRan.json b/packs/talents/Elementen_trotzen_HFCY3fxIbeXapRan.json deleted file mode 100644 index a512603a..00000000 --- a/packs/talents/Elementen_trotzen_HFCY3fxIbeXapRan.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "HFCY3fxIbeXapRan", - "name": "Elementen trotzen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal alle 24 Stunden erlittenen Schaden durch die Elemente (beispielsweise durch Blitze, Eis oder Feuer) aller Art ignorieren.
\nDies gilt auch für Schaden, der normalerweise nicht abgewehrt werden kann (beispielsweise durch den Zauberspruch @Compendium[ds4.spells.ifRUXwqnjd1SCcRG]{Feuerball}).
\nDie schützende Wirkung wird als freie Aktion ausgelöst und hält eine ununterbrochene Anzahl von Runden gleich dem dreifachen Talentrang an.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349504, - "modifiedTime": 1740227862726, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!HFCY3fxIbeXapRan" -} diff --git a/packs/talents/Explosionskontrolle_2ASdMhcx0hN3ZpPc.json b/packs/talents/Explosionskontrolle_2ASdMhcx0hN3ZpPc.json deleted file mode 100644 index 1ed55a17..00000000 --- a/packs/talents/Explosionskontrolle_2ASdMhcx0hN3ZpPc.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "2ASdMhcx0hN3ZpPc", - "name": "Explosionskontrolle", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter eine Person (auch sich selbst) vor der Wirkung eines seiner eigenen Flächenzauber verschonen. Pro Talentrang kann er das Talent einmal pro Kampf einsetzen.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349453, - "modifiedTime": 1740227862719, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2ASdMhcx0hN3ZpPc" -} diff --git a/packs/talents/F_rsorger_MdIritgH5eEAngSY.json b/packs/talents/F_rsorger_MdIritgH5eEAngSY.json deleted file mode 100644 index 0642fdba..00000000 --- a/packs/talents/F_rsorger_MdIritgH5eEAngSY.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "MdIritgH5eEAngSY", - "name": "Fürsorger", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "d2tT2smyOwGtpzlC", - "changes": [ - { - "key": "system.spellModifier.numerical", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && (@item.system.spellGroups.healing || @item.system.spellGroups.protection)" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Heil- und Schutzzauber +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!MdIritgH5eEAngSY.d2tT2smyOwGtpzlC" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist geübt im Umgang mit heilender und schützender Magie.
\nEr erhält auf alle Heil- und Schutzzauber +1 pro Talentrang.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349522, - "modifiedTime": 1740227862729, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!MdIritgH5eEAngSY" -} diff --git a/packs/talents/Feuermagier_8D01Z1kDIDcsuVCn.json b/packs/talents/Feuermagier_8D01Z1kDIDcsuVCn.json deleted file mode 100644 index d3425704..00000000 --- a/packs/talents/Feuermagier_8D01Z1kDIDcsuVCn.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "8D01Z1kDIDcsuVCn", - "name": "Feuermagier", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "MbXCCUny8g0DURC5", - "changes": [ - { - "key": "system.spellModifier.numerical", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.spellGroups.fire" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Feuerzauber +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!8D01Z1kDIDcsuVCn.MbXCCUny8g0DURC5" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker ist geübt im Umgang mit Feuermagie. Er erhält auf alle Zauber, die einen Feuereffekt haben, einen Bonus von +1 pro Talentrang.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349480, - "modifiedTime": 1740227862723, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8D01Z1kDIDcsuVCn" -} diff --git a/packs/talents/Fieser_Schuss_srLA4jC8lsZbp3nT.json b/packs/talents/Fieser_Schuss_srLA4jC8lsZbp3nT.json deleted file mode 100644 index ce6e43b3..00000000 --- a/packs/talents/Fieser_Schuss_srLA4jC8lsZbp3nT.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "srLA4jC8lsZbp3nT", - "name": "Fieser Schuss", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal pro Kampf seinen Wert in Schießen einen Angriff lang um den Wert von Agilität erhöhen. Es ist möglich, mehrere Talentränge in einem einzigen Schuß zu vereinen. Zielzauber profitieren nicht von diesem Talent.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349648, - "modifiedTime": 1740227862744, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!srLA4jC8lsZbp3nT" -} diff --git a/packs/talents/Flink_v5axYsQQ2w57Iu4p.json b/packs/talents/Flink_v5axYsQQ2w57Iu4p.json deleted file mode 100644 index 73dfc36a..00000000 --- a/packs/talents/Flink_v5axYsQQ2w57Iu4p.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "v5axYsQQ2w57Iu4p", - "name": "Flink", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "fDKyU3R0ACgW9uw3", - "changes": [ - { - "key": "system.combatValues.movement.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Laufen +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!v5axYsQQ2w57Iu4p.fDKyU3R0ACgW9uw3" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist schnell und gut zu Fuß. Der Wert für Laufen wird pro Erwerb des Talents um 1 erhöht.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349653, - "modifiedTime": 1740227862744, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!v5axYsQQ2w57Iu4p" -} diff --git a/packs/talents/Friedvoller_Hieb_lvBKtlBcyVldzsrw.json b/packs/talents/Friedvoller_Hieb_lvBKtlBcyVldzsrw.json deleted file mode 100644 index a95dbee0..00000000 --- a/packs/talents/Friedvoller_Hieb_lvBKtlBcyVldzsrw.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "lvBKtlBcyVldzsrw", - "name": "Friedvoller Hieb", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal alle 24 Stunden einen friedvollen Hieb mittels eines waffenlosen Angriffs ausführen. Das Resultat wird wie gewohnt ermittelt (also abzüglich der Abwehr), allerdings wird kein Schaden erzeugt, stattdessen ist das Opfer für 1 Runde pro letztendlich erhaltenem Schadenspunkt gelähmt.
\nWird das gelähmte Ziel anderweitig angegriffen, wozu auch geistesbeeinflussende Zauber u. ä. zählen, endet die Wirkung.
\nGegen Ziele, die 2+ Größenkategorien (DS4 S. 104) größer sind, ist das Talent wirkungslos.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349623, - "modifiedTime": 1740227862740, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!lvBKtlBcyVldzsrw" -} diff --git a/packs/talents/Frontheiler_2jZY66sVnHSIFq7P.json b/packs/talents/Frontheiler_2jZY66sVnHSIFq7P.json deleted file mode 100644 index d1750511..00000000 --- a/packs/talents/Frontheiler_2jZY66sVnHSIFq7P.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "2jZY66sVnHSIFq7P", - "name": "Frontheiler", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Heiler einmal alle 24 Stunden die Abklingzeit eines Heilzaubers (so auch @Compendium[ds4.spells.duf86LKvOIyDXJbc]{Wiederbelebung}) ignorieren.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349456, - "modifiedTime": 1740227862720, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2jZY66sVnHSIFq7P" -} diff --git a/packs/talents/Genesung_UUYS4u0DmEbGzXxI.json b/packs/talents/Genesung_UUYS4u0DmEbGzXxI.json deleted file mode 100644 index 19fde36f..00000000 --- a/packs/talents/Genesung_UUYS4u0DmEbGzXxI.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "UUYS4u0DmEbGzXxI", - "name": "Genesung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "j6Npl52FgDvkTwk7", - "changes": [ - { - "key": "system.attributes.body.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Körper +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!UUYS4u0DmEbGzXxI.j6Npl52FgDvkTwk7" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "War ein Charakter vorübergehend tot und hat dadurch Punkte des Attributs KÖR eingebüßt, kann pro Talentrang +1 KÖR wiederhergestellt werden.
\nEs ist mit diesem Talent nicht möglich, KÖR über den ursprünglichen Wert zu steigern.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349544, - "modifiedTime": 1740227862732, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!UUYS4u0DmEbGzXxI" -} diff --git a/packs/talents/Ger_stet_nMxDermxN1pUziUJ.json b/packs/talents/Ger_stet_nMxDermxN1pUziUJ.json deleted file mode 100644 index be421d9b..00000000 --- a/packs/talents/Ger_stet_nMxDermxN1pUziUJ.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "nMxDermxN1pUziUJ", - "name": "Gerüstet", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Jeder Rang dieses Talentes gestattet es dem Charakter, die nächste Klasse (Stoff, Leder, Kette, Platte) von Rüstungen zu tragen. So kann ein Kleriker, der das Talent erstmalig erwirbt, Rüstungen aus Kette wie ein Späher tragen (allerdings weiterhin keine Helme, DS4 S. 41), statt wie bislang nur Rüstungen aus Stoff oder Leder.
\nDie normalen Abzügen durch die Rüstung in Höhe ihrer PA, beispielsweise beim Zaubern, bleiben allerdings bestehen. Um diese zu senken, wird das Talent @Compendium[ds4.talents.lXzQsIobk5yaZ47a]{Rüstzauberer} benötigt.
", - "rank": { - "base": 0, - "max": 2, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349626, - "modifiedTime": 1740227862740, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!nMxDermxN1pUziUJ" -} diff --git a/packs/talents/Gezieltes_Gift_8nkrwGAE0HPoAAEm.json b/packs/talents/Gezieltes_Gift_8nkrwGAE0HPoAAEm.json deleted file mode 100644 index ab1eb747..00000000 --- a/packs/talents/Gezieltes_Gift_8nkrwGAE0HPoAAEm.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "8nkrwGAE0HPoAAEm", - "name": "Gezieltes Gift", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Attentäter kennt die Stellen, wo man im Kampf den Gegner treffen muss, damit ein Waffengift seine Wirkung ideal entfalten kann.
\nPro Talentrang werden bei seinen Angriffen mit vergifteten Waffen Schadensgifte um +2 Schaden, Betäubungsgifte um +2 Minuten und Lähmungsgifte um +2 Runden erhöht.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349482, - "modifiedTime": 1740227862723, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8nkrwGAE0HPoAAEm" -} diff --git a/packs/talents/Gl_ckspilz_Y6nYTc9XJnmV9ZxX.json b/packs/talents/Gl_ckspilz_Y6nYTc9XJnmV9ZxX.json deleted file mode 100644 index 73320c08..00000000 --- a/packs/talents/Gl_ckspilz_Y6nYTc9XJnmV9ZxX.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "Y6nYTc9XJnmV9ZxX", - "name": "Glückspilz", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein wahrer Glückspilz, kann er doch einmal pro Talentrang alle 24 Stunden einen Patzer ignorieren und den jeweiligen Wurf wiederholen.
\nSollte der neue Wurf ebenfalls ein Patzer sein, man aber über mehr als einen Talentrang verfügt, kann dieser ebenfalls ausgeglichen werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349556, - "modifiedTime": 1740227862734, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Y6nYTc9XJnmV9ZxX" -} diff --git a/packs/talents/Handwerk_vnEDVqVCsZuf8NYN.json b/packs/talents/Handwerk_vnEDVqVCsZuf8NYN.json deleted file mode 100644 index 6fae07b6..00000000 --- a/packs/talents/Handwerk_vnEDVqVCsZuf8NYN.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "vnEDVqVCsZuf8NYN", - "name": "Handwerk", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent wird für jede Handwerksart (Bogenbauer, Schreiner, Steinmetz, Waffenschmied usw.) individuell erlernt, kann also mehrmals bis Höchstrang III erworben werden.
\nMan beherrscht das jeweilige Handwerk und erhält auf alle diesbezüglichen Proben, sei es um Gegenstände herzustellen oder beschädigte Ausrüstung zu reparieren (DS4 S. 88), einen Bonus von +3 pro Talentrang, den man für dieses Handwerk erworben hat.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349655, - "modifiedTime": 1740227862745, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!vnEDVqVCsZuf8NYN" -} diff --git a/packs/talents/Heimlichkeit_sqGJRKlgFoD2vLCD.json b/packs/talents/Heimlichkeit_sqGJRKlgFoD2vLCD.json deleted file mode 100644 index a478d97d..00000000 --- a/packs/talents/Heimlichkeit_sqGJRKlgFoD2vLCD.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "_id": "sqGJRKlgFoD2vLCD", - "name": "Heimlichkeit", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "MBeD0OrohtuDdSFy", - "changes": [ - { - "key": "system.checks.hide", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.pickPocket", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.sneak", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.search", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Heimlichkeitsproben +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!sqGJRKlgFoD2vLCD.MBeD0OrohtuDdSFy" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein geübter Schleicher und versteht sich darauf, nicht bemerkt zu werden.
\nEr erhält +2 auf alle Proben, bei denen es darum geht, leise zu sein, sich zu verbergen, nicht bemerkt zu werden oder etwas heimlich zu tun, wie beispielsweise Taschendiebstahl.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349645, - "modifiedTime": 1740227862743, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sqGJRKlgFoD2vLCD" -} diff --git a/packs/talents/Heldengl_ck_WMXI5ckyEdlC29j4.json b/packs/talents/Heldengl_ck_WMXI5ckyEdlC29j4.json deleted file mode 100644 index 39130d3e..00000000 --- a/packs/talents/Heldengl_ck_WMXI5ckyEdlC29j4.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "WMXI5ckyEdlC29j4", - "name": "Heldenglück", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist wahrlich vom Glück gesegnet, kann er doch einmal pro Talentrang alle 24 Stunden einen beliebigen Würfelwurf wiederholen.
\nSollte das neue Wurfergebnis ebenfalls nicht gefallen, kann man erneut die Probe wiederholen, sofern man noch über weitere Talentränge verfügt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349548, - "modifiedTime": 1740227862733, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!WMXI5ckyEdlC29j4" -} diff --git a/packs/talents/Herausforderer_der_Elemente_6YJLvjCIUmhqlaFb.json b/packs/talents/Herausforderer_der_Elemente_6YJLvjCIUmhqlaFb.json deleted file mode 100644 index 6f8a550e..00000000 --- a/packs/talents/Herausforderer_der_Elemente_6YJLvjCIUmhqlaFb.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "6YJLvjCIUmhqlaFb", - "name": "Herausforderer der Elemente", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Elementarist einmal alle 24 Stunden die Abklingzeit des Zauberspruchs Elementar Harbeirufen (@Compendium[ds4.spells.9GBDoyVXPXjWoLix]{Erde}, @Compendium[ds4.spells.8BT2TqPHC0v2OzNe]{Feuer}, @Compendium[ds4.spells.PXIVHRBpLwlzrk3L]{Luft}, @Compendium[ds4.spells.ftDPIhLCVRLRpOix]{Wasser}) ignorieren. Alternativ kann dies auch bei einem Zauber angewendet werden, der Elementarschaden verursacht.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349472, - "modifiedTime": 1740227862722, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!6YJLvjCIUmhqlaFb" -} diff --git a/packs/talents/Herr_der_Elemente_w34myctr1EDmXSPI.json b/packs/talents/Herr_der_Elemente_w34myctr1EDmXSPI.json deleted file mode 100644 index 983da479..00000000 --- a/packs/talents/Herr_der_Elemente_w34myctr1EDmXSPI.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "w34myctr1EDmXSPI", - "name": "Herr der Elemente", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "UZeS8KqoBFS8oY35", - "changes": [ - { - "key": "system.spellModifier.numerical", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.spellGroups.damage && (@item.system.spellGroups.lightning || @item.system.spellGroups.earth || @item.system.spellGroups.water || @item.system.spellGroups.ice || @item.system.spellGroups.fire || @item.system.spellGroups.air)" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Elementarschadenszauber +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!w34myctr1EDmXSPI.UZeS8KqoBFS8oY35" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist geübt im Freisetzen elementarer Kräfte.
\nEr erhält auf alle Zauber, die Schaden verursachen, der auf den Elementen Erde, Feuer, Luft (hierzu zählen auch Blitzzauber) oder Wasser (hierzu zählen auch Eiszauber) basiert, einen Bonus von +1 pro Talentrang.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349657, - "modifiedTime": 1740227862745, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!w34myctr1EDmXSPI" -} diff --git a/packs/talents/Hinterh_ltiger_Angriff_8apgKsktW4pyWmMq.json b/packs/talents/Hinterh_ltiger_Angriff_8apgKsktW4pyWmMq.json deleted file mode 100644 index 5e51d5c4..00000000 --- a/packs/talents/Hinterh_ltiger_Angriff_8apgKsktW4pyWmMq.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "8apgKsktW4pyWmMq", - "name": "Hinterhältiger Angriff", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Einmal pro Kampf kann der Attentäter einen Gegner mit einem hinterhältigen Angriff im Nahkampf attackieren, sofern er einen Dolch, ein Messer oder eine Würgewaffe (Draht, Schur usw.) dafür benutzt und das Opfer sich des Angriffs nicht gewahr ist. Dafür wird in dieser Runde sein Wert in Schlagen um GE – multipliziert mit dem Talentrang – erhöht.
\nWurde durch den hinterhältigen Angriff der Kampf eröffnet, kann das Ziel (sofern der hinterhältigen Angriff auch gelang) in dieser Runde nicht mehr agieren.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349481, - "modifiedTime": 1740227862723, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8apgKsktW4pyWmMq" -} diff --git a/packs/talents/Homonkulus_de0VlXllMzMK8lga.json b/packs/talents/Homonkulus_de0VlXllMzMK8lga.json deleted file mode 100644 index ad9a2885..00000000 --- a/packs/talents/Homonkulus_de0VlXllMzMK8lga.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "de0VlXllMzMK8lga", - "name": "Homonkulus", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Erzmagier erschafft Kraft seiner Magie einen kleinen, magischen, humanoiden Begleiter, der ihm beim Zaubern helfen kann.
\nDer Homunkulus hat KÖR, AGI und GEI jeweils 4 und verfügt über 6 Punkte für Eigenschaften, die der Erzmagier frei verteilen kann.
\nHomunkuli sind klein (halbe LK, zu treffen -2) und können nur Grunzlaute von sich geben, verstehen aber simple Worte und einsilbige Befehle ihres Erschaffers.
\nBefindet sich der Homunkulus nicht mehr als AU x 5 (des Charakters) in Metern von dem Erzmagier entfernt, kann er ihm pro Talentrang einen aufteilbaren Bonus von +2 auf VE und/oder AU geben.
\nDie genaue Verteilung kann der Erzmagier jede Runde als freie Handlung umändern. Es ist nicht möglich, die Talente @Compendium[ds4.talents.KwGcyAzyqbz7oiTl]{Vertrauter} oder @Compendium[ds4.talents.tkLyvmSYvVslMXVE]{Vertrautenband} auf Homunkuli anzuwenden.
\nHomunkuli sind äußerst feige und scheuen den Kampf. Sie ergreifen die Flucht, sobald sie Schaden erhalten und kehren erst zu ihrem Erschaffer zurück, wenn die Gefahr vorüber ist, dann jedoch so schnell wie möglich. Dank der Fähigkeit, ihren Erschaffer und seine Gemütslage zu spüren, stellt dies für sie kein Problem dar.
\nStirbt ein Homunkulus, kann der Erzmagier innerhalb von W20 Stunden einen neuen erschaffen, sofern er in dieser Zeit Zugang zu einem Alchimistenlabor hat.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349576, - "modifiedTime": 1740227862736, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!de0VlXllMzMK8lga" -} diff --git a/packs/talents/Ich_muss_weg__42FNsShgm1B6MClC.json b/packs/talents/Ich_muss_weg__42FNsShgm1B6MClC.json deleted file mode 100644 index 8f33b059..00000000 --- a/packs/talents/Ich_muss_weg__42FNsShgm1B6MClC.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "42FNsShgm1B6MClC", - "name": "Ich muss weg!", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter in jedem Kampf für jeweils eine Runde sämtliche gegen ihn gerichteten Nahkampfangriffe komplett ignorieren.
\nDabei darf er aber seine Gegner nicht attackieren, sondern muss sich dabei um mindestens 2 m von ihnen entfernen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349462, - "modifiedTime": 1740227862720, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!42FNsShgm1B6MClC" -} diff --git a/packs/talents/In_Deckung_cLkCx5hxP7rVYUqD.json b/packs/talents/In_Deckung_cLkCx5hxP7rVYUqD.json deleted file mode 100644 index 8b9cc577..00000000 --- a/packs/talents/In_Deckung_cLkCx5hxP7rVYUqD.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "cLkCx5hxP7rVYUqD", - "name": "In Deckung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter versteht es, im Kampf geschickt in die Defensive zu gehen.
\nPro Talentrang werden in jeder Kampfrunde, in der er keine offensive Handlung unternimmt, alle Angriffe gegen ihn um 2 gesenkt, sofern er sich ihrer bewusst ist.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349573, - "modifiedTime": 1740227862736, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!cLkCx5hxP7rVYUqD" -} diff --git a/packs/talents/Instrument_Nu7TKGp987s5mHA0.json b/packs/talents/Instrument_Nu7TKGp987s5mHA0.json deleted file mode 100644 index 53777987..00000000 --- a/packs/talents/Instrument_Nu7TKGp987s5mHA0.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "Nu7TKGp987s5mHA0", - "name": "Instrument", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent wird für jedes Instrument (Flöte, Mandoline, Harfe, Trommel usw.) individuell erlernt, kann also mehrmals bis Höchstrang III erworben werden.
\nMan beherrscht das jeweilige Instrument und erhält auf alle diesbezüglichen Proben einen Bonus von +3 pro Talentrang, den man für dieses Instrument erworben hat.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349529, - "modifiedTime": 1740227862730, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Nu7TKGp987s5mHA0" -} diff --git a/packs/talents/J_ger_61Dz3XpStwlMfsbL.json b/packs/talents/J_ger_61Dz3XpStwlMfsbL.json deleted file mode 100644 index 1201dc4c..00000000 --- a/packs/talents/J_ger_61Dz3XpStwlMfsbL.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "_id": "61Dz3XpStwlMfsbL", - "name": "Jäger", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "1YQV8nWWzoU30KHR", - "changes": [ - { - "key": "system.checks.startFire", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.readTracks", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Jagdproben +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!61Dz3XpStwlMfsbL.1YQV8nWWzoU30KHR" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter wandert oft durch die Wildnis und erhält durch dieses Talent +2 auf Proben, mit denen Spuren gelesen, Wild gejagt oder die richtige Marschrichtung wiedergefunden werden soll.
\nPro Talentrang kann außerdem eine Mahlzeit (von denen 3 einer Tagesration entsprechen) problemlos beschafft werden (Beeren pflücken, Kleintier erlegen usw.).
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349470, - "modifiedTime": 1740227862721, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!61Dz3XpStwlMfsbL" -} diff --git a/packs/talents/K_mpfer_6z0JXGEqdzDTWQ7f.json b/packs/talents/K_mpfer_6z0JXGEqdzDTWQ7f.json deleted file mode 100644 index c431fd1f..00000000 --- a/packs/talents/K_mpfer_6z0JXGEqdzDTWQ7f.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "6z0JXGEqdzDTWQ7f", - "name": "Kämpfer", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "XkW7XqOCXg2e4OTo", - "changes": [ - { - "key": "system.combatValues.meleeAttack.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Schlagen +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!6z0JXGEqdzDTWQ7f.XkW7XqOCXg2e4OTo" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein geübter Nahkämpfer: Er erhält pro Talentrang auf Schlagen einen Bonus von +1.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349475, - "modifiedTime": 1740227862722, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!6z0JXGEqdzDTWQ7f" -} diff --git a/packs/talents/Kann_ich_mal_vorbei__XNjKX9xKkktkwAHk.json b/packs/talents/Kann_ich_mal_vorbei__XNjKX9xKkktkwAHk.json deleted file mode 100644 index 16ca561e..00000000 --- a/packs/talents/Kann_ich_mal_vorbei__XNjKX9xKkktkwAHk.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "XNjKX9xKkktkwAHk", - "name": "Kann ich mal vorbei?", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Meisterdieb kann einmal alle 24 Stunden pro Talentrang eine Zielperson durch Ansprechen, Vorbeidrängeln etc. derart ablenken, dass sämtliche Bemerken-Proben gegen Taschendiebstahl u.ä. dieser Person für Talentrang in Runden um die Stufe des Meisterdiebes erschwert werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349551, - "modifiedTime": 1740227862733, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!XNjKX9xKkktkwAHk" -} diff --git a/packs/talents/Kletterass_l0le4xG5t0gUh2Y1.json b/packs/talents/Kletterass_l0le4xG5t0gUh2Y1.json deleted file mode 100644 index 0b1a5d3c..00000000 --- a/packs/talents/Kletterass_l0le4xG5t0gUh2Y1.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "l0le4xG5t0gUh2Y1", - "name": "Kletterass", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "GlAlx4yvg5rCHu20", - "changes": [ - { - "key": "system.checks.climb", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Klettern +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!l0le4xG5t0gUh2Y1.GlAlx4yvg5rCHu20" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter erhält auf alle Klettern- Probe einen Bonus von +2 pro Talentrang und die normale Klettergeschwindigkeit von Laufen/2 wird pro Talentrang um 1 m erhöht.
\nAußerdem kann der Charakter an überhängenden Wänden oder gar kopfüber an Decken ganz „normal“ klettern (also diesbezügliche Mali ignorieren), sofern diese nicht gänzlich eben sind, sondern über Vorsprünge, Stalagtiten, Mauerfugen o. ä. verfügen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349617, - "modifiedTime": 1740227862739, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!l0le4xG5t0gUh2Y1" -} diff --git a/packs/talents/Knechtschaft_Bp7OVgurG40CR1Mw.json b/packs/talents/Knechtschaft_Bp7OVgurG40CR1Mw.json deleted file mode 100644 index 1764a520..00000000 --- a/packs/talents/Knechtschaft_Bp7OVgurG40CR1Mw.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "Bp7OVgurG40CR1Mw", - "name": "Knechtschaft", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter jeder selbst beschworenen bzw. selbst herbeigerufenen Wesenheit eine weitere Frage stellen bzw. einen weiteren Auftrag erteilen und die Zeit, die das Wesen ihm dienen muss, um 1 Stunde verlängern.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349493, - "modifiedTime": 1740227862725, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Bp7OVgurG40CR1Mw" -} diff --git a/packs/talents/Kraft_der_Bestie_lim7XMqSaQ0nrHkO.json b/packs/talents/Kraft_der_Bestie_lim7XMqSaQ0nrHkO.json deleted file mode 100644 index 4b816f97..00000000 --- a/packs/talents/Kraft_der_Bestie_lim7XMqSaQ0nrHkO.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "lim7XMqSaQ0nrHkO", - "name": "Kraft der Bestie", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Druide alle seine zur Verfügung stehenden Kampfwerte in @Compendium[ds4.talents.sSKiZ5hdQMBnAYRA]{Adler-}, @Compendium[ds4.talents.8pylauN1hY933vrQ]{Bären-} oder @Compendium[ds4.talents.iP5aZcqriVLjdVcd]{Tiergestalt} um jeweils +2 erhöhen.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349622, - "modifiedTime": 1740227862740, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!lim7XMqSaQ0nrHkO" -} diff --git a/packs/talents/Kreiszeichner_sqWBOfkvuv7ZTrVM.json b/packs/talents/Kreiszeichner_sqWBOfkvuv7ZTrVM.json deleted file mode 100644 index 80096ef3..00000000 --- a/packs/talents/Kreiszeichner_sqWBOfkvuv7ZTrVM.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "sqWBOfkvuv7ZTrVM", - "name": "Kreiszeichner", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein Meister im Zeichnen von Beschwörungskreisen und kann pro Talentrang 2 weitere Stunden Arbeit in sie investieren. Zusätzlich wird der Zeitaufwand von jeder Stunden, die an dem Kreis gezeichnet wird, um 15 Minuten pro Talentrang gesenkt. Außerdem gewährt das Talent +1 pro Talentrang beim Beschwören, selbst wenn dies nur mit einem improvisierten Beschwörungskreis geschieht.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349647, - "modifiedTime": 1740227862743, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!sqWBOfkvuv7ZTrVM" -} diff --git a/packs/talents/Langfinger_pDPVZpnhvlabmcvT.json b/packs/talents/Langfinger_pDPVZpnhvlabmcvT.json deleted file mode 100644 index 929b6977..00000000 --- a/packs/talents/Langfinger_pDPVZpnhvlabmcvT.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "pDPVZpnhvlabmcvT", - "name": "Langfinger", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Bei Versuchen, Leute zu bestehlen, kann der Meisterdieb einmal alle 24 Stunden pro Talentrang AGI zu seiner Probe auf Taschendiebstahl dazu addieren.
\nEs ist möglich, mehrere Talentränge in einer einzelnen Probe zu vereinen. Ebenso ist es natürlich mit @Compendium[ds4.talents.VqzpRGrHclPSGLP0]{Diebeskunst} kombinierbar.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349632, - "modifiedTime": 1740227862742, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pDPVZpnhvlabmcvT" -} diff --git a/packs/talents/M_chtige_Beschw_rung_pEH7q5M85j50f45J.json b/packs/talents/M_chtige_Beschw_rung_pEH7q5M85j50f45J.json deleted file mode 100644 index 14301cf4..00000000 --- a/packs/talents/M_chtige_Beschw_rung_pEH7q5M85j50f45J.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "pEH7q5M85j50f45J", - "name": "Mächtige Beschwörung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Dämonologe Punkte in Höhe von seinem Wert in GEI bei jedem seiner beschworenen Dämonen auf dessen Kampfwerte beliebig verteilen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349635, - "modifiedTime": 1740227862742, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pEH7q5M85j50f45J" -} diff --git a/packs/talents/M_chtige_Erweckung_2zY11r1tKxBzNB0e.json b/packs/talents/M_chtige_Erweckung_2zY11r1tKxBzNB0e.json deleted file mode 100644 index ffad02c9..00000000 --- a/packs/talents/M_chtige_Erweckung_2zY11r1tKxBzNB0e.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "2zY11r1tKxBzNB0e", - "name": "Mächtige Erweckung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Nekromant Punkte in Höhe von GEI/2 auf die Kampfwerte eines jeden von ihm erweckten Untoten beliebig verteilen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349457, - "modifiedTime": 1740227862720, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!2zY11r1tKxBzNB0e" -} diff --git a/packs/talents/M_chtige_Herbeirufung_wpZ1LCG8nLu4PSc9.json b/packs/talents/M_chtige_Herbeirufung_wpZ1LCG8nLu4PSc9.json deleted file mode 100644 index 91c9e47d..00000000 --- a/packs/talents/M_chtige_Herbeirufung_wpZ1LCG8nLu4PSc9.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "wpZ1LCG8nLu4PSc9", - "name": "Mächtige Herbeirufung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Elementarist Punkte in Höhe von seinem Wert in GEI bei jedem seiner herbeigerufenen Elementare auf dessen Kampfwerte beliebig verteilen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349657, - "modifiedTime": 1740227862745, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!wpZ1LCG8nLu4PSc9" -} diff --git a/packs/talents/Macht_des_Blutes_AM8Wp2ZVwWgbUXQz.json b/packs/talents/Macht_des_Blutes_AM8Wp2ZVwWgbUXQz.json deleted file mode 100644 index 58c888cc..00000000 --- a/packs/talents/Macht_des_Blutes_AM8Wp2ZVwWgbUXQz.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "AM8Wp2ZVwWgbUXQz", - "name": "Macht des Blutes", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Blutmagier einmal pro Tag den Probenwert einer beliebigen Probe um den Wert ihres enthaltenen Attributs erhöhen.
\nBeispielsweise könnte der Probenwert einer Klettern-Probe (AGI+ST) um den Wert in Agilität erhöht werden.
\nEs ist möglich, mehrere Talentränge in einer einzigen Probe zu vereinen.
\nAllerdings erhält der Blutmagier jedesmal beim Einsatz des Talents 2 Punkte nicht abwehrbaren Schaden pro eingesetzten Talentrang.
\nEine Kombination mit dem Talent @Compendium[ds4.talents.XiwLao8lZi3JL0ku]{Zaubermacht} ist möglich (dessen dabei eingesetzte Talentränge verursachen aber keinen Schaden beim Blutmagier).
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349491, - "modifiedTime": 1740227862725, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!AM8Wp2ZVwWgbUXQz" -} diff --git a/packs/talents/Macht_des_Blutes_bu9alxaRfnzzTyX1.json b/packs/talents/Macht_des_Blutes_bu9alxaRfnzzTyX1.json deleted file mode 100644 index cfb75b6e..00000000 --- a/packs/talents/Macht_des_Blutes_bu9alxaRfnzzTyX1.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "bu9alxaRfnzzTyX1", - "name": "Macht des Blutes", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Blutmagier einmal pro Tag den Probenwert einer beliebigen Probe um den Wert ihres enthaltenen Attributs erhöhen. Beispielsweise könnte der Probenwert einer Klettern-Probe (AGI+ST) um den Wert in Agilität erhöht werden. Es ist möglich, mehrere Talentränge in einer einzigen Probe zu vereinen. Allerdings erhält der Blutmagier jedesmal beim Einsatz des Talents 2 Punkte nicht abwehrbaren Schaden pro eingesetzten Talentrang.
\nEine Kombination mit dem Talent @Compendium[ds4.talents.XiwLao8lZi3JL0ku]{Zaubermacht} ist möglich (dessen dabei eingesetzte Talentränge verursachen aber keinen Schaden beim Blutmagier).
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349571, - "modifiedTime": 1740227862736, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!bu9alxaRfnzzTyX1" -} diff --git a/packs/talents/Magieresistent_yMVciLvr77vbTw6r.json b/packs/talents/Magieresistent_yMVciLvr77vbTw6r.json deleted file mode 100644 index 7d41d059..00000000 --- a/packs/talents/Magieresistent_yMVciLvr77vbTw6r.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "yMVciLvr77vbTw6r", - "name": "Magieresistent", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Gegen den Charakter gerichtete Zauber werden um +2 pro Talentrang erschwert. Dies gilt jedoch nicht für Zauber, die Elementarschaden (beispielsweise mit Blitzen, Eis oder Feuer) verursachen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349660, - "modifiedTime": 1740227862746, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yMVciLvr77vbTw6r" -} diff --git a/packs/talents/Manipulator_Mz5glQvRowlF5U8X.json b/packs/talents/Manipulator_Mz5glQvRowlF5U8X.json deleted file mode 100644 index b2583540..00000000 --- a/packs/talents/Manipulator_Mz5glQvRowlF5U8X.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "Mz5glQvRowlF5U8X", - "name": "Manipulator", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "WS2cnABb8FYRhtpJ", - "changes": [ - { - "key": "system.spellModifier.numerical", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.spellGroups.mindAffecting" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Geistesbeeinflusende Zauber +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!Mz5glQvRowlF5U8X.WS2cnABb8FYRhtpJ" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein Meister der magischen Beeinflussung des Geistes.
\nEr erhält auf alle geistesbeeinflussenden Zauber einen Bonus von +1.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349524, - "modifiedTime": 1740227862729, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Mz5glQvRowlF5U8X" -} diff --git a/packs/talents/Meister_aller_Klassen_nbDef1IPNyYcXmua.json b/packs/talents/Meister_aller_Klassen_nbDef1IPNyYcXmua.json deleted file mode 100644 index 5e60c9d7..00000000 --- a/packs/talents/Meister_aller_Klassen_nbDef1IPNyYcXmua.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "nbDef1IPNyYcXmua", - "name": "Meister aller Klassen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann eines seiner drei Attribute (KÖR, AGI oder GEI) um +1 steigern.
", - "rank": { - "base": 0, - "max": 1, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349627, - "modifiedTime": 1740227862741, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!nbDef1IPNyYcXmua" -} diff --git a/packs/talents/Meister_seiner_Klasse_DUexlPzqyH2xPxYP.json b/packs/talents/Meister_seiner_Klasse_DUexlPzqyH2xPxYP.json deleted file mode 100644 index 0a1a380d..00000000 --- a/packs/talents/Meister_seiner_Klasse_DUexlPzqyH2xPxYP.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "DUexlPzqyH2xPxYP", - "name": "Meister seiner Klasse", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann das primäre Attribut seiner Klasse um +1 steigern:
\nKrieger steigern KÖR, Späher steigern AGI und Zauberwirker steigern GEI.
", - "rank": { - "base": 0, - "max": 1, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349495, - "modifiedTime": 1740227862725, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!DUexlPzqyH2xPxYP" -} diff --git a/packs/talents/Meucheln_G3fbdAorLMCa2hGu.json b/packs/talents/Meucheln_G3fbdAorLMCa2hGu.json deleted file mode 100644 index 21ae69ae..00000000 --- a/packs/talents/Meucheln_G3fbdAorLMCa2hGu.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "G3fbdAorLMCa2hGu", - "name": "Meucheln", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Senkt die Abwehr des Gegners gegen Schaden durch das Talent @Compendium[ds4.talents.8apgKsktW4pyWmMq]{Hinterhältiger Angriff} um 5 pro Talentrang.
\nGegen Ziele, die 2+ Größenkategorien (DS4 S. 104) größer sind, ist das Talent wirkungslos.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349500, - "modifiedTime": 1740227862726, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!G3fbdAorLMCa2hGu" -} diff --git a/packs/talents/Nekromantie_oxWYfqhbcsDoaaUJ.json b/packs/talents/Nekromantie_oxWYfqhbcsDoaaUJ.json deleted file mode 100644 index d673a966..00000000 --- a/packs/talents/Nekromantie_oxWYfqhbcsDoaaUJ.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "oxWYfqhbcsDoaaUJ", - "name": "Nekromantie", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "pgGKKWy5nLTSdp8l", - "changes": [ - { - "key": "system.spellModifier.numerical", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.spellGroups.necromancy" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Nekromantie +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!oxWYfqhbcsDoaaUJ.pgGKKWy5nLTSdp8l" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kennt sich sehr gut mit nekromantischen Zaubern aus.
\nEr erhält auf alle Zauber, die Untote bannen, erwecken oder kontrollieren, einen Bonus von +2 pro Talentrang.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349628, - "modifiedTime": 1740227862741, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!oxWYfqhbcsDoaaUJ" -} diff --git a/packs/talents/Panzerung_zerschmettern_PRkbeuKFTWd8Ja3Q.json b/packs/talents/Panzerung_zerschmettern_PRkbeuKFTWd8Ja3Q.json deleted file mode 100644 index cb33bd76..00000000 --- a/packs/talents/Panzerung_zerschmettern_PRkbeuKFTWd8Ja3Q.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "PRkbeuKFTWd8Ja3Q", - "name": "Panzerung zerschmettern", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Jedesmal, wenn ein Charakter mit einem Nahkampfangriff bei einem Gegner Schaden verursacht, sinkt der PA-Wert eines zufällig zu ermittelnden Rüstungsteils des Opfers um 1 Punkt pro Talentrang.
\nWelches einzelne Rüstungsteil der getragenen Panzerung betroffen ist, wird zufällig ermittelt.
\nWird dabei ein magisches Rüstungsteil getroffen, zeigt das Talent allerdings keine Wirkung.
\nSinkt der PA-Wert eines Rüstungsteils auf Null oder niedriger, gilt es als zerstört, kann aber von einem findigen Handwerker wieder repariert werden (DS4 S. 88).
\nGegen natürliche Rüstungen (Chitinpanzer, Drachenschuppen, Hornpanzer u. ä.) ist das Talent dagegen wirkungslos.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349533, - "modifiedTime": 1740227862731, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!PRkbeuKFTWd8Ja3Q" -} diff --git a/packs/talents/Parade_8wHCsoZEQp3rScWe.json b/packs/talents/Parade_8wHCsoZEQp3rScWe.json deleted file mode 100644 index f1858811..00000000 --- a/packs/talents/Parade_8wHCsoZEQp3rScWe.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "8wHCsoZEQp3rScWe", - "name": "Parade", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter hat gelernt, die Nahkampfangriffe seiner Gegner zu parieren.
\nSofern er eine Nahkampfwaffe gezogen hat, erhält der Charakter pro Talentrang +1 auf seine Abwehr gegen jeden Nahkampfangriff, dessen er sich bewusst ist und der nicht von hinten erfolgt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349485, - "modifiedTime": 1740227862724, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!8wHCsoZEQp3rScWe" -} diff --git a/packs/talents/Perfektion_iI1SP1214SpIzBCW.json b/packs/talents/Perfektion_iI1SP1214SpIzBCW.json deleted file mode 100644 index 05d91fce..00000000 --- a/packs/talents/Perfektion_iI1SP1214SpIzBCW.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "iI1SP1214SpIzBCW", - "name": "Perfektion", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann die Boni auf Schlagen und Gegnerabwehr eines bereits erworbenen @Compendium[ds4.talents.v9ocoi91dKJahAe3]{Waffenkennertalents} für eine einzelne Waffenart pro Talentrang um +1 steigern.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349607, - "modifiedTime": 1740227862738, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!iI1SP1214SpIzBCW" -} diff --git a/packs/talents/Pr_gler_GVuVyP3uLw3Fkiwf.json b/packs/talents/Pr_gler_GVuVyP3uLw3Fkiwf.json deleted file mode 100644 index 73443373..00000000 --- a/packs/talents/Pr_gler_GVuVyP3uLw3Fkiwf.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "GVuVyP3uLw3Fkiwf", - "name": "Prügler", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Wird bei einem Angriff mit stumpfen Waffen, Äxten oder zweihändigen Waffen ein Immersieg erzielt, wird die Abwehr des Gegners gegen diesen Angriff pro Talentrang um 5 gesenkt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349501, - "modifiedTime": 1740227862726, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GVuVyP3uLw3Fkiwf" -} diff --git a/packs/talents/Pr_ziser_Schuss_NSBiWy4FTIu6Y2Vv.json b/packs/talents/Pr_ziser_Schuss_NSBiWy4FTIu6Y2Vv.json deleted file mode 100644 index 57003939..00000000 --- a/packs/talents/Pr_ziser_Schuss_NSBiWy4FTIu6Y2Vv.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "NSBiWy4FTIu6Y2Vv", - "name": "Präziser Schuss", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Späher einmal alle 24 Stunden mit einem Fernkampfangriff einen präzisen Schuss abfeuern, gegen den keine Abwehr gewürfelt wird.
\nDer präzise Schuss muss vor dem Würfeln der Schießen-Probe angesagt werden und kann pro Talentrang mit einem Talentrang eines anderen Talents (beispielsweise @Compendium[ds4.talents.srLA4jC8lsZbp3nT]{Fieser Schuss}) kombiniert werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349527, - "modifiedTime": 1740227862730, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NSBiWy4FTIu6Y2Vv" -} diff --git a/packs/talents/R_sttr_ger_3AkPGw4beW52LIAY.json b/packs/talents/R_sttr_ger_3AkPGw4beW52LIAY.json deleted file mode 100644 index e44d7675..00000000 --- a/packs/talents/R_sttr_ger_3AkPGw4beW52LIAY.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "3AkPGw4beW52LIAY", - "name": "Rüstträger", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist es gewohnt, schwere Rüstung zu tragen und sich in ihr zu bewegen. Der durch Rüstung verursachte Malus auf Laufen wird pro Talentrang um 0,5 gemindert.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349459, - "modifiedTime": 1740227862720, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!3AkPGw4beW52LIAY" -} diff --git a/packs/talents/R_stzauberer_lXzQsIobk5yaZ47a.json b/packs/talents/R_stzauberer_lXzQsIobk5yaZ47a.json deleted file mode 100644 index 728700bd..00000000 --- a/packs/talents/R_stzauberer_lXzQsIobk5yaZ47a.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "lXzQsIobk5yaZ47a", - "name": "Rüstzauberer", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "BBiQrltkYi3Jo0Am", - "changes": [ - { - "key": "system.armorValueSpellMalus", - "mode": 2, - "value": "-2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Panzerungs-Zaubermalus -2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!lXzQsIobk5yaZ47a.BBiQrltkYi3Jo0Am" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann ein Panzerungsmalus (PA) in Höhe von 2 beim Zaubern/Zielzaubern ignoriert werden. Beispielsweise benötigt es 2 Talentränge, um ungehindert in einem @Compendium[ds4.equipment.t13RJoXrsS0HAyIQ]{Plattenpanzer} (PA 3) samt @Compendium[ds4.equipment.fKhTsMO4YXDYY8GX]{Metallhelm} (PA 1) zaubern zu können.
", - "rank": { - "base": 0, - "max": 1, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349620, - "modifiedTime": 1740227862740, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!lXzQsIobk5yaZ47a" -} diff --git a/packs/talents/Raserei_pC1K0VHWTpaJqwtt.json b/packs/talents/Raserei_pC1K0VHWTpaJqwtt.json deleted file mode 100644 index 8f373674..00000000 --- a/packs/talents/Raserei_pC1K0VHWTpaJqwtt.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "_id": "pC1K0VHWTpaJqwtt", - "name": "Raserei", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "YPU4v5VXXeRcscmP", - "changes": [ - { - "key": "system.combatValues.meleeAttack.total", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": true, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Schlagen +2, Abwehr -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!pC1K0VHWTpaJqwtt.YPU4v5VXXeRcscmP" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Berserker kann pro Talentrang seine Abwehr um 1 Punkt mindern und dadurch seinen Wert in Schlagen um +2 erhöhen.
\nDiese Umschichtung kann jede Runde geändert werden (zählt als freie Aktion).
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349631, - "modifiedTime": 1740227862741, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!pC1K0VHWTpaJqwtt" -} diff --git a/packs/talents/Reiten_bA8wUU0bKouuxkQ5.json b/packs/talents/Reiten_bA8wUU0bKouuxkQ5.json deleted file mode 100644 index 6bb6ee60..00000000 --- a/packs/talents/Reiten_bA8wUU0bKouuxkQ5.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "bA8wUU0bKouuxkQ5", - "name": "Reiten", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "d5V2GjfkccIubrfY", - "changes": [ - { - "key": "system.checks.ride", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Reiten +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!bA8wUU0bKouuxkQ5.d5V2GjfkccIubrfY" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Charaktere mit diesem Talent haben reiten gelernt, können also problemlos die Richtung oder Geschwindigkeit ihres Reittieres um einen Schritt ändern und vom Pferderücken aus angreifen (DS4 S. 92).
\nPro Talentrang erhalten sie bei Sprüngen oder Proben, um die Reitrichtung oder die Geschwindigkeit um mehr als einen Schritt zu wechseln, einen Bonus von +2. Im berittenen Kampf erhalten sie pro Talentrang +1 auf Schlagen-Proben gegen unberittene Gegner.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349567, - "modifiedTime": 1740227862736, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!bA8wUU0bKouuxkQ5" -} diff --git a/packs/talents/Ritual_der_Narben_g4XI9wikUdxoCFNg.json b/packs/talents/Ritual_der_Narben_g4XI9wikUdxoCFNg.json deleted file mode 100644 index 7dd98e7c..00000000 --- a/packs/talents/Ritual_der_Narben_g4XI9wikUdxoCFNg.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "_id": "g4XI9wikUdxoCFNg", - "name": "Ritual der Narben", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "t1DVGkDGOwrjFccz", - "changes": [ - { - "key": "system.combatValues.defense.total", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.combatValues.hitPoints.total", - "mode": 2, - "value": "-1", - "priority": null - }, - { - "key": "system.checks.flirt", - "mode": 2, - "value": "-1", - "priority": null - }, - { - "key": "system.checks.haggle", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Abwehr +2, soziale Proben -1, Lebenskraft -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!g4XI9wikUdxoCFNg.t1DVGkDGOwrjFccz" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang erhält der Charakter permanent einen magischen Bonus von +2 auf seine Abwehr. Die gesamte Haut des Charakters ist nach diesem Ritual durch vernarbte Runen entstellt, was ihm bei Proben auf soziale Interaktion einen Malus von -1 pro Talentrang einbringt. Außerdem hat das Ritual seinen Preis:
\nDer Charakter verliert pro Talentrang permanent 1 Punkt Lebenskraft (LK).
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349592, - "modifiedTime": 1740227862737, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!g4XI9wikUdxoCFNg" -} diff --git a/packs/talents/Rundumschlag_RTLVQgPmjiPDdTFw.json b/packs/talents/Rundumschlag_RTLVQgPmjiPDdTFw.json deleted file mode 100644 index 0fd81e0d..00000000 --- a/packs/talents/Rundumschlag_RTLVQgPmjiPDdTFw.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "RTLVQgPmjiPDdTFw", - "name": "Rundumschlag", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann mit einer Zweihandwaffe per Rundumschlag pro Talentrang einen weiteren, angrenzende Gegner mit seinem Schlag treffen. Für jeden weiteren Feind, den er per Rundumschlag treffen will, wird der Schlagen-Wert (es wird nur eine einzige Probe für den ganzen Rundumschlag gewürfelt) um 1 und die Abwehr um 2 gesenkt, bis der Charakter wieder an der Reihe ist.
\nKampfmönche können dieses Talent nur waffenlos in Verbindung mit dem Talent @Compendium[ds4.talents.1VAiKGCnqKfNC8AE]{Waffenloser Meister} benutzen. Dabei kann der Talentrang von Rundumschlag nie höher sein als der von Waffenloser Meister.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349541, - "modifiedTime": 1740227862732, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RTLVQgPmjiPDdTFw" -} diff --git a/packs/talents/Runenkunde_t56WOCnxZwQWhajW.json b/packs/talents/Runenkunde_t56WOCnxZwQWhajW.json deleted file mode 100644 index ebb1583c..00000000 --- a/packs/talents/Runenkunde_t56WOCnxZwQWhajW.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "t56WOCnxZwQWhajW", - "name": "Runenkunde", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent wird benötigt, will man Schriftrollen herstellen (DS4 S. 101). Jeder Talentrang reduziert die Zubereitungsdauer von Schriftrollen und gibt +1 auf Proben, um diese zu fertigen, oder gefundene Schriftrollen zu identifizieren. Es handelt sich bei den magischen Runen auf einer Schriftrolle um keine tatsächlichen Schriftzeichen, die man lesen, geschweige denn übersetzen könnte.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349649, - "modifiedTime": 1740227862744, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!t56WOCnxZwQWhajW" -} diff --git a/packs/talents/Salve_zvZelUv5qQz3adKN.json b/packs/talents/Salve_zvZelUv5qQz3adKN.json deleted file mode 100644 index de3724db..00000000 --- a/packs/talents/Salve_zvZelUv5qQz3adKN.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "zvZelUv5qQz3adKN", - "name": "Salve", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Einmal pro Kampf kann der Charakter mit einer Fernkampfwaffe einen zusätzlichen Schuss pro Talentrang abfeuern. Bei mehreren Talenträngen können die zusätzlichen Schüsse alle zusammen in einer Runde gebündelt abgefeuert werden oder aufgeteilt in einzelnen Runden.
\nDie einzelnen Schüsse werden dabei als eigenständige Angriffe behandelt, können also beispielsweise nicht mehrfach durch das Talent @Compendium[ds4.talents.srLA4jC8lsZbp3nT]{Fieser Schuss} aufgebessert werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349663, - "modifiedTime": 1740227862747, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!zvZelUv5qQz3adKN" -} diff --git a/packs/talents/Sattelsch_tze_IIvsBSAqFFUFqALo.json b/packs/talents/Sattelsch_tze_IIvsBSAqFFUFqALo.json deleted file mode 100644 index 7e2a6014..00000000 --- a/packs/talents/Sattelsch_tze_IIvsBSAqFFUFqALo.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "IIvsBSAqFFUFqALo", - "name": "Sattelschütze", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent gestattet dem Charakter, während des Reitens mit einer Schusswaffe zu schießen, die mit beiden Händen gehalten wird.
\nDennoch gibt es bei diesem schwierigen Manöver immer noch einen Malus von -5 im Trab und -10 im Galopp auf die Schießen-Probe (DS4 S. 92).
\nDurch den zweiten und dritten Talentrang in Sattelschütze kann dieser Malus jedoch um jeweils 5 gemindert werden.
\nDer Charakter benötigt mindestens einen Talentrang im Talent @Compendium[ds4.talents.bA8wUU0bKouuxkQ5]{Reiten}, um Sattelschütze erwerben zu können.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349506, - "modifiedTime": 1740227862727, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!IIvsBSAqFFUFqALo" -} diff --git a/packs/talents/Sch_tze_GWVLcfQ2fm3Hc0zP.json b/packs/talents/Sch_tze_GWVLcfQ2fm3Hc0zP.json deleted file mode 100644 index d66e0616..00000000 --- a/packs/talents/Sch_tze_GWVLcfQ2fm3Hc0zP.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "_id": "GWVLcfQ2fm3Hc0zP", - "name": "Schütze", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "v4ruKzcrriNyrgvE", - "changes": [ - { - "key": "system.combatValues.rangedAttack.total", - "mode": 2, - "value": "1", - "priority": null - }, - { - "key": "system.combatValues.targetedSpellcasting.total", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Schießen und Zielzauber +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!GWVLcfQ2fm3Hc0zP.v4ruKzcrriNyrgvE" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein geübter Fernkämpfer: Er erhält auf Schießen und Zielzauber einen Bonus von +1 pro Talentrang.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349503, - "modifiedTime": 1740227862726, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!GWVLcfQ2fm3Hc0zP" -} diff --git a/packs/talents/Scharfsch_tze_OYneDZJStjhuDp41.json b/packs/talents/Scharfsch_tze_OYneDZJStjhuDp41.json deleted file mode 100644 index dfdbeb05..00000000 --- a/packs/talents/Scharfsch_tze_OYneDZJStjhuDp41.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "OYneDZJStjhuDp41", - "name": "Scharfschütze", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "jJ2oSM9Bs4dDApiH", - "changes": [ - { - "key": "system.opponentDefenseForAttackType.ranged", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'weapon' && ('@item.system.attackType' === 'ranged' || '@item.system.attackType' === 'meleeRanged')" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Gegnerabwehr bei Fernkampfangriffen", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!OYneDZJStjhuDp41.jJ2oSM9Bs4dDApiH" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Im Fernkampf zielt der Charakter auf die verletzliche Körperpartien seines Ziels:
\nDie Abwehr des Gegners wird gegen die Fernkampfangriffe des Charakters mittels Schießen um 1 pro Talentrang gesenkt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349532, - "modifiedTime": 1740227862731, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!OYneDZJStjhuDp41" -} diff --git a/packs/talents/Schlachtruf_jmjtmMy7DnG205xR.json b/packs/talents/Schlachtruf_jmjtmMy7DnG205xR.json deleted file mode 100644 index 94112359..00000000 --- a/packs/talents/Schlachtruf_jmjtmMy7DnG205xR.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "jmjtmMy7DnG205xR", - "name": "Schlachtruf", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal pro Kampf als freie Aktion einen Schlachtruf ausstoßen, der auf ihn und drei Kameraden pro Talentrang in Hörweite wirkt:
\nDurch den Schlachtruf ermutigt, erhalten sie für W20/2 Runden einen Bonus von +1 pro Talentrang auf alle Angriffe.
\nEin Charakter kann immer nur von einem Schlachtruf profitieren.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349612, - "modifiedTime": 1740227862739, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!jmjtmMy7DnG205xR" -} diff --git a/packs/talents/Schlitzohr_lDqu4RpV5Nr6BnPW.json b/packs/talents/Schlitzohr_lDqu4RpV5Nr6BnPW.json deleted file mode 100644 index 8dfbe444..00000000 --- a/packs/talents/Schlitzohr_lDqu4RpV5Nr6BnPW.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "lDqu4RpV5Nr6BnPW", - "name": "Schlitzohr", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "ZFoibqksWVXEfiOB", - "changes": [ - { - "key": "system.checks.haggle", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Feilschen +3", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!lDqu4RpV5Nr6BnPW.ZFoibqksWVXEfiOB" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Auf alle Proben sozialer Interaktion, bei denen geblufft, gefeilscht oder verhandelt wird, erhält der Charakter einen Bonus von +3 pro Talentrang.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349619, - "modifiedTime": 1740227862739, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!lDqu4RpV5Nr6BnPW" -} diff --git a/packs/talents/Schlossknacker_NR3BzKbROxHjpGrs.json b/packs/talents/Schlossknacker_NR3BzKbROxHjpGrs.json deleted file mode 100644 index ac9ffcc0..00000000 --- a/packs/talents/Schlossknacker_NR3BzKbROxHjpGrs.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "_id": "NR3BzKbROxHjpGrs", - "name": "Schlossknacker", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "8JquYZA8S06MnE0n", - "changes": [ - { - "key": "system.checks.openLock", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.workMechanism", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Schloss/Mechanismus öffnen +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!NR3BzKbROxHjpGrs.8JquYZA8S06MnE0n" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang erhält der Charakter einen Bonus von +2 auf sämtliche Proben, um Schlösser zu öffnen.
\nAußerdem kann pro Talentrang ein weiteres Mal versucht werden, ein und das selbe Schloss zu öffnen, ohne bereits einen Malus zu erhalten (DS4 S. 93).
\nSchlossknacker ist mit dem @Compendium[ds4.talents.VqzpRGrHclPSGLP0]{Diebeskunst} kombinierbar.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349526, - "modifiedTime": 1740227862729, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!NR3BzKbROxHjpGrs" -} diff --git a/packs/talents/Schmerzhafter_Wechsel_YPFshcSE5pZS0dto.json b/packs/talents/Schmerzhafter_Wechsel_YPFshcSE5pZS0dto.json deleted file mode 100644 index 18f087e3..00000000 --- a/packs/talents/Schmerzhafter_Wechsel_YPFshcSE5pZS0dto.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "YPFshcSE5pZS0dto", - "name": "Schmerzhafter Wechsel", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal pro Kampf zu einem beliebigen, nicht aktiven Zauber wechseln (zählt als freie Aktion), wodurch er jedoch augenblicklich W20/2 abwehrbaren Schaden erleidet.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349557, - "modifiedTime": 1740227862734, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!YPFshcSE5pZS0dto" -} diff --git a/packs/talents/Schnelle_Reflexe_TQG9TbBb9S0nHogC.json b/packs/talents/Schnelle_Reflexe_TQG9TbBb9S0nHogC.json deleted file mode 100644 index 3e73d9d8..00000000 --- a/packs/talents/Schnelle_Reflexe_TQG9TbBb9S0nHogC.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "TQG9TbBb9S0nHogC", - "name": "Schnelle Reflexe", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "XEVDTsOyhPJIytd9", - "changes": [ - { - "key": "system.combatValues.initiative.total", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Initiative +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!TQG9TbBb9S0nHogC.XEVDTsOyhPJIytd9" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann schnell reagieren. Im Kampf erhält er pro Talentrang einen Bonus von +2 auf seine Initiative.
\nZusätzlich kann man pro Talentrang einmal im Kampf eine Waffe als freie Aktion ziehen, wechseln oder vom Boden aufheben.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349543, - "modifiedTime": 1740227862732, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!TQG9TbBb9S0nHogC" -} diff --git a/packs/talents/Schnutz_vor_Elementen_yCHMzXoqCRrNU5Br.json b/packs/talents/Schnutz_vor_Elementen_yCHMzXoqCRrNU5Br.json deleted file mode 100644 index 9d36c4d7..00000000 --- a/packs/talents/Schnutz_vor_Elementen_yCHMzXoqCRrNU5Br.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "yCHMzXoqCRrNU5Br", - "name": "Schnutz vor Elementen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann jederzeit die Wirkung der Außentemperatur auf ihn um bis zu 15 °C pro Talentrang variieren und damit für ihn den Aufenthalt in besonders kalten oder heißen Gebieten angenehmer zu machen.
\nPro Talentrang kann er diese Wirkung auf zwei willige Gefährten in VE Meter Umkreis ausdehnen.
\nAußerdem kann er pro Talentrang einmal alle 24 Stunden – als freie Aktion – seine Abwehr gegen Elementarschaden (beispielsweise durch Blitz-, Eis- oder Feuerzauber), gegen den ein Abwehrwurf zulässig ist (also beispielsweise nicht beim Zauberspruch @Compendium[ds4.spells.ifRUXwqnjd1SCcRG]{Feuerball}), pro Talentrang um 5 erhöhen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349659, - "modifiedTime": 1740227862746, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!yCHMzXoqCRrNU5Br" -} diff --git a/packs/talents/Schwimmen_RJauLusDDQWo77JU.json b/packs/talents/Schwimmen_RJauLusDDQWo77JU.json deleted file mode 100644 index f3ffdb58..00000000 --- a/packs/talents/Schwimmen_RJauLusDDQWo77JU.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "RJauLusDDQWo77JU", - "name": "Schwimmen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "neVzXXAck47nnOFM", - "changes": [ - { - "key": "system.checks.swim", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Schwimmen +3", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!RJauLusDDQWo77JU.neVzXXAck47nnOFM" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann schwimmen (DS4 S. 93) und erhält pro Talentrang auf alle diesbezüglichen Proben +3.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349536, - "modifiedTime": 1740227862732, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!RJauLusDDQWo77JU" -} diff --git a/packs/talents/Sehnenschneider_s37iJhz4IQVhCWbe.json b/packs/talents/Sehnenschneider_s37iJhz4IQVhCWbe.json deleted file mode 100644 index bac43876..00000000 --- a/packs/talents/Sehnenschneider_s37iJhz4IQVhCWbe.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "s37iJhz4IQVhCWbe", - "name": "Sehnenschneider", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann im Kampf einmal pro Talentrang einem Gegner die „Sehnen schneiden“. Er muss dies vor dem entsprechendem Nahkampfangriff ansagen. Für diese Aktion wird die Abwehr des Charakters halbiert, bis er in der nächsten Kampfrunde wieder an der Reihe ist.
\nWird beim Gegner ein Schaden erzielt, wird dieser Schaden halbiert und der Laufen- Wert des Gegners um 0,5 pro Talentrang gesenkt. Wird kein Schaden verursacht, zählt dies nicht als Talenteinsatz und ein erneuter Versuch ist möglich. Die Verletzung kann nur auf magische Weise geheilt werden (einfachste Heilmagie reicht allerdings).
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349640, - "modifiedTime": 1740227862743, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!s37iJhz4IQVhCWbe" -} diff --git a/packs/talents/Sensensp_tter_7ZBxxxx32wacXkHS.json b/packs/talents/Sensensp_tter_7ZBxxxx32wacXkHS.json deleted file mode 100644 index 48aa9407..00000000 --- a/packs/talents/Sensensp_tter_7ZBxxxx32wacXkHS.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "7ZBxxxx32wacXkHS", - "name": "Sensenspötter", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Nekromant kann dem Tod ein Schnippchen schlagen:
\nSobald er regeltechnisch stirbt, kann er noch eine weitere Runde pro Talentrang handeln, als ober er noch am Leben wäre, vorausgesetzt, er ist nicht enthauptet, explodiert, zerstampft u. ä.
\nSollte der Nekromant bei Eintritt des Todes bereits bewusstlos sein, bleibt er dies weiterhin, kann allerdings in dieser Zeit verarztet und geheilt werden, als wäre er noch am Leben.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349479, - "modifiedTime": 1740227862723, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!7ZBxxxx32wacXkHS" -} diff --git a/packs/talents/Spruchmeister_JldVU3O4mmDWqk8s.json b/packs/talents/Spruchmeister_JldVU3O4mmDWqk8s.json deleted file mode 100644 index cae74e81..00000000 --- a/packs/talents/Spruchmeister_JldVU3O4mmDWqk8s.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "JldVU3O4mmDWqk8s", - "name": "Spruchmeister", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Zauberwirker kann einmal alle 24 Stunden die Abklingzeit eines bestimmten Zauberspruchs ignorieren. Bei Erwerb eines Talentranges muss festgelegt werden, um welchen Zauber es sich dabei handelt. Werden mehrere Talentränge in ein und den selben Zauberspruch investiert, kann seine Abklingzeit einmal mehr pro Talentrang innerhalb der 24 Stunden ignoriert werden. Zaubersprüche, deren reguläre Abklingzeit mehr als 24 Stunden beträgt, können nicht gewählt werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349511, - "modifiedTime": 1740227862728, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!JldVU3O4mmDWqk8s" -} diff --git a/packs/talents/Stabbindung_soobr7uyQgDm3DoN.json b/packs/talents/Stabbindung_soobr7uyQgDm3DoN.json deleted file mode 100644 index 52b3f3c1..00000000 --- a/packs/talents/Stabbindung_soobr7uyQgDm3DoN.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "soobr7uyQgDm3DoN", - "name": "Stabbindung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent wird rangweise an einen bestimmten Kampfstab gebunden – so kann der Charakter beispielsweise in einen Kampfstab zwei Talentränge investieren und einen dritten Talentrang beispielsweise in einen Ersatzkampfstab.
\nDer Kampfstab wird durch diesen Vorgang magisch, zerbricht also nicht einfach bei einem Schlagen-Patzer.
\nPro jeweiligen Talentrang erhält der Charakter +1 auf Zielzauber (zusätzlich zu dem normalen, nichtmagischen +1 Bonus des Kampfstabs), sofern er den Stab hält.
\nDesweiteren bindet er pro investierten Talentrang einen seiner Zauber an den Stab, wodurch er den Kampfstab wie einen Zauberstab für diesen Zauber benutzen kann. Wird ein Kampfstab wider Erwarten zerstört, sind die investierten Talentränge nicht verloren und können – nach Ablauf von W20 Wochen – an einen anderen Stab gebunden werden.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349644, - "modifiedTime": 1740227862743, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!soobr7uyQgDm3DoN" -} diff --git a/packs/talents/Standhaft_5LXCr1G1Hmx622V0.json b/packs/talents/Standhaft_5LXCr1G1Hmx622V0.json deleted file mode 100644 index 37c3072e..00000000 --- a/packs/talents/Standhaft_5LXCr1G1Hmx622V0.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "5LXCr1G1Hmx622V0", - "name": "Standhaft", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang sinkt die Lebenskraft-Grenze, ab der ein Charakter bewusstlos wird, um jeweils 3.
\nEin Charakter mit Standhaft III wird also erst mit -9 LK bewusstlos, statt schon bei Null. Alles natürlich nur unter der Voraussetzung, dass man so viele negative LK auch überleben kann (DS4 S. 42).
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349463, - "modifiedTime": 1740227862720, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5LXCr1G1Hmx622V0" -} diff --git a/packs/talents/Teufelchen_5nve4XNc1bJdfZNN.json b/packs/talents/Teufelchen_5nve4XNc1bJdfZNN.json deleted file mode 100644 index 0f35e0ba..00000000 --- a/packs/talents/Teufelchen_5nve4XNc1bJdfZNN.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "5nve4XNc1bJdfZNN", - "name": "Teufelchen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Beschwörer erhält pro Talentrang ein kleines, fliegendes Teufelchen als Begleiter, das ihn im Kampf unterstützt. Teufelchen können nur Knurrlaute von sich geben, verstehen aber simple Worte und einsilbige Befehle ihres Beschwörers.
\nSobald der Charakter es befiehlt oder das Teufelchen über weniger als 1 LK verfügt, kehrt es zurück auf seine Existenzebene, von wo es erst nach frühestens W20 Stunden wiederkehren kann, sofern der Charakter dies wünscht.
\nEs ist nicht möglich, die Talente @Compendium[ds4.talents.KwGcyAzyqbz7oiTl]{Vertrauter} oder @Compendium[ds4.talents.tkLyvmSYvVslMXVE]{Vertrautenband} auf ein Teufelchen anzuwenden.
\nEs gibt drei Arten von Teufelchen (@Compendium[ds4.creatures.aqbcBjeCJUHJ5uVj]{Teufelchen I}, @Compendium[ds4.creatures.SxbO1iTrXYGbdMoC]{Teufelchen II}, @Compendium[ds4.creatures.22pkyKnZoRLG0nnY]{Teufelchen III}), auf die man durch weitere Talentränge Zugang erhält. Bei Erwerb eines Talentranges wird festgelegt, um was für ein Teufelchen es sich dabei handelt. Es ist auch immer möglich, ein rangniedrigeres Teufelchen erneut auszuwählen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349466, - "modifiedTime": 1740227862721, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!5nve4XNc1bJdfZNN" -} diff --git a/packs/talents/Tiergestalt_iP5aZcqriVLjdVcd.json b/packs/talents/Tiergestalt_iP5aZcqriVLjdVcd.json deleted file mode 100644 index fc81ef13..00000000 --- a/packs/talents/Tiergestalt_iP5aZcqriVLjdVcd.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "iP5aZcqriVLjdVcd", - "name": "Tiergestalt", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Druide kann sich pro Talentrang einmal alle 24 Stunden samt seiner Ausrüstung (magische Boni von Gegenständen wirken dadurch weiterhin) in ein Tier der Größenkategorie „normal“ (DS4 S. 104) oder kleiner verwandeln, wie beispielsweise eine Maus, eine Katze oder ein Wolf, aber keine magischen, giftigen oder flugfähigen Tiere.
\nDie Verwandlung dauert eine Runde und kann jederzeit rückgängig gemacht werden, erlittener Schaden bleibt nach der Rückverwandlung gänzlich bestehen.
\nGEI, VE und AU des Druiden verändern sich in Tiergestalt nicht, jedoch nehmen alle anderen Attribute, Eigenschaften und Kampfwerte die Werte des Tieres an, nicht jedoch Spezialangriffe wie beispielsweise den Giftbiss einer Schlange.
\nIn Tiergestalt ist es dem Druiden nicht möglich, zu sprechen oder zu zaubern, wohl aber, Gesprochenes zu verstehen und die Sinne des Tieres einzusetzen.
\nZauber, die beispielsweise Tiere kontrollieren, haben auf den verwandelten Druiden keinen Einfluss.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349608, - "modifiedTime": 1740227862738, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!iP5aZcqriVLjdVcd" -} diff --git a/packs/talents/Tiermeister_IfyKb7y4YoUTssTs.json b/packs/talents/Tiermeister_IfyKb7y4YoUTssTs.json deleted file mode 100644 index 781bb6ca..00000000 --- a/packs/talents/Tiermeister_IfyKb7y4YoUTssTs.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "IfyKb7y4YoUTssTs", - "name": "Tiermeister", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "oelEFuhY9y6DsxXO", - "changes": [ - { - "key": "system.checks.ride", - "mode": 2, - "value": "3", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Reiten +3", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!IfyKb7y4YoUTssTs.oelEFuhY9y6DsxXO" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter hat ein Gespür für Tiere und erhält auf alle Proben im Umgang mit ihnen +3 (dieser Bonus zählt auch auf Reiten-Proben, um die Reitgeschwindigkeit oder die Richtung zu ändern).
\nEinmal alle 24 Stunden pro Talentrang kann er außerdem eine beliebige Anzahl wilder, aggressiver oder selbst ausgehungerter Tiere dazu bringen, ihn und zwei Begleiter pro Talentrang zu verschonen (es sei denn, sie greifen ihrerseits die Tiere an).
\nDies ist auch bei tollwütigen oder kontrollierten Tieren möglich, sofern hier dem Charakter eine Probe gegen GEI+AU+Talentrang gelingt (zählt als ganze Aktion, ein Versuch pro Talentrang).
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349508, - "modifiedTime": 1740227862727, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!IfyKb7y4YoUTssTs" -} diff --git a/packs/talents/Tod_entrinnen_9hpucJC8WArBiXUR.json b/packs/talents/Tod_entrinnen_9hpucJC8WArBiXUR.json deleted file mode 100644 index 196fe661..00000000 --- a/packs/talents/Tod_entrinnen_9hpucJC8WArBiXUR.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "9hpucJC8WArBiXUR", - "name": "Tod entrinnen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Sobald der Charakter weniger als 1 LK besitzt, aber immer noch lebt, heilt er automatisch nach 5 Runden (-1 Runde pro Talentrang) 1 LK pro Talentrang pro Runde.
\nSobald seine LK wieder im positiven Bereich sind, endet der Heileffekt und der Charakter ist augenblicklich voll einsatzfähig.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349487, - "modifiedTime": 1740227862724, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!9hpucJC8WArBiXUR" -} diff --git a/packs/talents/Todeskraft_Q98LHOFZmKVoafp8.json b/packs/talents/Todeskraft_Q98LHOFZmKVoafp8.json deleted file mode 100644 index 6c6905b2..00000000 --- a/packs/talents/Todeskraft_Q98LHOFZmKVoafp8.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "Q98LHOFZmKVoafp8", - "name": "Todeskraft", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Immer wenn in Reichweite von 2+Talentrang in Metern ein Lebewesen, von mindestens „kleiner“ Größenkategorie (DS4 S. 104), zu Tode kommt, regeneriert der Nekromant 2 LK pro Talentrang in Todeskraft.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349534, - "modifiedTime": 1740227862731, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!Q98LHOFZmKVoafp8" -} diff --git a/packs/talents/Totenrufer_rbHZFVutiQ25glBq.json b/packs/talents/Totenrufer_rbHZFVutiQ25glBq.json deleted file mode 100644 index 5db467c8..00000000 --- a/packs/talents/Totenrufer_rbHZFVutiQ25glBq.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "rbHZFVutiQ25glBq", - "name": "Totenrufer", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Nekromant einmal alle 24 Stunden die Abklingzeit eines Zaubers zum Erwecken von Untoten ignorieren.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349639, - "modifiedTime": 1740227862742, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!rbHZFVutiQ25glBq" -} diff --git a/packs/talents/Uners_ttliches_Beschw_ren_fIrcapAlXMqto18X.json b/packs/talents/Uners_ttliches_Beschw_ren_fIrcapAlXMqto18X.json deleted file mode 100644 index 790af2b5..00000000 --- a/packs/talents/Uners_ttliches_Beschw_ren_fIrcapAlXMqto18X.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "fIrcapAlXMqto18X", - "name": "Unersättliches Beschwören", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Dämonologe einmal alle 24 Stunden die Abklingzeit des Zauberspruchs Dämonen beschwören ignorieren.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349586, - "modifiedTime": 1740227862737, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!fIrcapAlXMqto18X" -} diff --git a/packs/talents/Untote_Horden_FoY7VbBTatyHOrb8.json b/packs/talents/Untote_Horden_FoY7VbBTatyHOrb8.json deleted file mode 100644 index e75f912c..00000000 --- a/packs/talents/Untote_Horden_FoY7VbBTatyHOrb8.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "FoY7VbBTatyHOrb8", - "name": "Untote Horden", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang erhöht sich die Anzahl der erweckbaren und kontrollierbaren Untoten (entspricht der Stufe des Charakters) um 3.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349498, - "modifiedTime": 1740227862725, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!FoY7VbBTatyHOrb8" -} diff --git a/packs/talents/Untote_zerschmettern_ml6GkLIsqDII9Mcp.json b/packs/talents/Untote_zerschmettern_ml6GkLIsqDII9Mcp.json deleted file mode 100644 index a5937dea..00000000 --- a/packs/talents/Untote_zerschmettern_ml6GkLIsqDII9Mcp.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "ml6GkLIsqDII9Mcp", - "name": "Untote zerschmettern", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal alle 24 Stunden einen Nahkampfangriff gegen einen Untoten führen, der nicht abgewehrt werden kann.
\nVor dem Angriffswurf muss angesagt werden, dass das Talent zum Einsatz kommen soll, welches mit Talenten wie @Compendium[ds4.talents.ZnT8LMCRqZS3zpJO]{Brutaler Hieb} und/oder @Compendium[ds4.talents.AT9Bi7Tsr8k3HujP]{Vergeltung} kombiniert werden kann.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349624, - "modifiedTime": 1740227862740, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!ml6GkLIsqDII9Mcp" -} diff --git a/packs/talents/Verdr_cken_inRlUNgoiaHm4pf6.json b/packs/talents/Verdr_cken_inRlUNgoiaHm4pf6.json deleted file mode 100644 index 6f52e489..00000000 --- a/packs/talents/Verdr_cken_inRlUNgoiaHm4pf6.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "inRlUNgoiaHm4pf6", - "name": "Verdrücken", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter kann sich bei den Aktionen Aufstehen und Rennen zusätzlich um einen Meter pro Talentrang bewegen.
\nZusätzlich kann er, gefesselt oder in Ketten gelegt, zweimal pro Talentrang versuchen, sich mit AGI+BE aus einer Fessel oder Schelle zu winden (man benötigt beispielsweise 2 erfolgreiche Proben, um beide Hände aus Handschellen zu befreien).
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349610, - "modifiedTime": 1740227862738, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!inRlUNgoiaHm4pf6" -} diff --git a/packs/talents/Vergeltung_AT9Bi7Tsr8k3HujP.json b/packs/talents/Vergeltung_AT9Bi7Tsr8k3HujP.json deleted file mode 100644 index 00baf5d0..00000000 --- a/packs/talents/Vergeltung_AT9Bi7Tsr8k3HujP.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "AT9Bi7Tsr8k3HujP", - "name": "Vergeltung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Im Kampf kann der Charakter einmal pro Talentrang seinen Wert in Schlagen für eine Runde um seinen vierfachen Talentrang in @Compendium[ds4.talents.hAfZhfLqCjPvho3u]{Diener der Dunkelheit} bzw. @Compendium[ds4.talents.Wwvj3V65hIe0JWul]{Diener des Lichts} erhöhen.
\nEs ist nicht mögliche, mehrere Talentränge von Vergeltung in einer einzelnen Probe zu vereinen.
\nEine Kombination mit Talenten wie beispielsweise @Compendium[ds4.talents.ZnT8LMCRqZS3zpJO]{Brutaler Hieb} ist allerdings uneingeschränkt möglich.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349492, - "modifiedTime": 1740227862725, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!AT9Bi7Tsr8k3HujP" -} diff --git a/packs/talents/Verheerer_6oXmRM21CLfELqKv.json b/packs/talents/Verheerer_6oXmRM21CLfELqKv.json deleted file mode 100644 index a1b05c4e..00000000 --- a/packs/talents/Verheerer_6oXmRM21CLfELqKv.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "6oXmRM21CLfELqKv", - "name": "Verheerer", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "aqgIfpGWXYeXn1y6", - "changes": [ - { - "key": "system.opponentDefense", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'spell' && @item.system.allowsDefense" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Gegnerabwehr bei Zaubern/Zielzaubern -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!6oXmRM21CLfELqKv.aqgIfpGWXYeXn1y6" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter versteht es, seine Magie verheerend einzusetzen:
\nDie Abwehr des Gegners wird gegen Schaden durch die Zauberangriffe des Charakters (mittels Zaubern oder Zielzaubern) um 1 pro Talentrang gesenkt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349474, - "modifiedTime": 1740227862722, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!6oXmRM21CLfELqKv" -} diff --git a/packs/talents/Verletzen_dtynnRNkxg59Nqz4.json b/packs/talents/Verletzen_dtynnRNkxg59Nqz4.json deleted file mode 100644 index f3b1b9a8..00000000 --- a/packs/talents/Verletzen_dtynnRNkxg59Nqz4.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "dtynnRNkxg59Nqz4", - "name": "Verletzen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "x1FVRsSyjHwOfYRs", - "changes": [ - { - "key": "system.opponentDefenseForAttackType.melee", - "mode": 2, - "value": "-1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": true, - "itemName": "", - "condition": "'@item.type' === 'weapon' && ('@item.system.attackType' === 'melee' || '@item.system.attackType' === 'meleeRanged')" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Gegnerabwehr bei Nahkampfangriffen -1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!dtynnRNkxg59Nqz4.x1FVRsSyjHwOfYRs" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Im Nahkampf zielt der Charakter auf die verletzlichen Körperpartien seines Gegenübers:
\nDie Abwehr des Gegners wird gegen die Nahkampfangriffe des Charakters mittels Schlagen um 1 pro Talentrang gesenkt.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349581, - "modifiedTime": 1740227862736, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!dtynnRNkxg59Nqz4" -} diff --git a/packs/talents/Vernichtender_Schlag_tmFeIA1PSVHqGGjx.json b/packs/talents/Vernichtender_Schlag_tmFeIA1PSVHqGGjx.json deleted file mode 100644 index ff0cf6be..00000000 --- a/packs/talents/Vernichtender_Schlag_tmFeIA1PSVHqGGjx.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "tmFeIA1PSVHqGGjx", - "name": "Vernichtender Schlag", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "rK7expqsrPV5t8f1", - "changes": [ - { - "key": "system.checks.featOfStrength", - "mode": 2, - "value": "1", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Kraftakt +1", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!tmFeIA1PSVHqGGjx.rK7expqsrPV5t8f1" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Krieger einmal alle 24 Stunden mit einem Nahkampfangriff einen vernichtenden Schlag ausführen, gegen den keine Abwehr gewürfelt wird.
\nDer vernichtende Schlag muss vor dem Würfeln der Schlagen-Probe angekündigt werden und kann pro Talentrang mit maximal einem Talentrang eines anderen Talents (beispielsweise @Compendium[ds4.talents.ZnT8LMCRqZS3zpJO]{Brutaler Hieb}) kombiniert werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349652, - "modifiedTime": 1740227862744, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tmFeIA1PSVHqGGjx" -} diff --git a/packs/talents/Vertrautenband_tkLyvmSYvVslMXVE.json b/packs/talents/Vertrautenband_tkLyvmSYvVslMXVE.json deleted file mode 100644 index cb3e0f49..00000000 --- a/packs/talents/Vertrautenband_tkLyvmSYvVslMXVE.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "tkLyvmSYvVslMXVE", - "name": "Vertrautenband", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Schafft ein besonderes Band zwischen dem Charakter und einem einzelnen seiner Vertrauten, wodurch beide sich telepathisch miteinander verständigen (einfache Kommunikation wie „Gefahr?“, „Flieh!“ oder „Hilf mir!“) können.
\nZusätzlich wird pro Talentrang ein Bonus von +3 auf die Eigenschaften des Vertrauten verteilt.
\nJedesmal, wenn der Charakter um eine Stufe aufsteigt, erhält dieses Tier außerdem +1 auf eine beliebige Eigenschaft. Wird das Tier getötet, erlischt das Band, wird jedoch bei Wiederbelebung des Tieres erneuert. Ist dies nicht der Fall, sind die Talentränge nicht verloren und können für ein neues Vertrautenband mit einem anderen Vertrauten eingesetzt werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349650, - "modifiedTime": 1740227862744, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!tkLyvmSYvVslMXVE" -} diff --git a/packs/talents/Vertrauter_KwGcyAzyqbz7oiTl.json b/packs/talents/Vertrauter_KwGcyAzyqbz7oiTl.json deleted file mode 100644 index 68c8dcf0..00000000 --- a/packs/talents/Vertrauter_KwGcyAzyqbz7oiTl.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "KwGcyAzyqbz7oiTl", - "name": "Vertrauter", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang schließt sich Spähern ein Tier (Falke, Hund, Pferd, Wolf usw.), Zauberwirkern ein Kleintier (Katze, Kröte, Rabe usw.) und Paladinen ein Schlachtross an. Ein Druide kann jede Art von Tier bis Größenkategorie “groß” (DS4 S. 104) wählen.
\nDie treuen Tiere befolgen einfache, einsilbige Befehle wie „Platz!“ und „Fass!“ und haben Verstand +1, auch wenn mit ihnen keine intelligente Kommunikation möglich ist und sie auch nicht zum heimlichen Auskundschaften etc. abgerichtet werden können. Ein Vertrauter gewährt seinem Besitzer, sofern er nicht mehr als AU x 5 (des Charakters) in Metern von ihm entfernt ist, einen Bonus von +1 auf einen von zwei Kampfwerten:
\nKlasse | \nVertrautenbonus | \n
---|---|
Späher | \nInitiative oder Schießen | \n
Zauberwirker | \nZaubern oder Zielzaubern | \n
Paladin | \nAbwehr oder Schlagen | \n
Der zu erhöhende Kampfwert wird bei Erhalt des Vertrauten ausgewählt.
\nWird ein Vertrauter getötet, erleidet der Charakter im selben Moment W20/2 nicht abwehrbaren Schaden und der Bonus auf den Kampfwert erlischt. Wird der Vertraute nicht wiederbelebt, kann für seinen Talentrang ein neuer Vertrauter gewählt werden, allerdings erst nach frühestens W20 Wochen. Bis dahin hat der Charakter temporär KÖR-1.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349514, - "modifiedTime": 1740227862728, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!KwGcyAzyqbz7oiTl" -} diff --git a/packs/talents/Waffenkenner_v9ocoi91dKJahAe3.json b/packs/talents/Waffenkenner_v9ocoi91dKJahAe3.json deleted file mode 100644 index 8dce687b..00000000 --- a/packs/talents/Waffenkenner_v9ocoi91dKJahAe3.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "v9ocoi91dKJahAe3", - "name": "Waffenkenner", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter besondere Kenntnisse im Umgang mit einer bestimmten Art von Nahkampfwaffe erlangen (beispielsweise Dolche, Langschwerter oder Streitäxte).
\nEr erhält im Kampf mit dieser Waffenart Schlagen +1 und die Abwehr des Gegners wird um 1 gesenkt. Es ist nicht möglich, Waffenkenner mehrmals für ein und dieselbe Waffenart zu erlangen, jedoch kann der Talentrang mit Hilfe des Talents @Compendium[ds4.talents.iI1SP1214SpIzBCW]{Perfektion} weiter ausgebaut werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349654, - "modifiedTime": 1740227862745, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!v9ocoi91dKJahAe3" -} diff --git a/packs/talents/Waffenloser_Meister_1VAiKGCnqKfNC8AE.json b/packs/talents/Waffenloser_Meister_1VAiKGCnqKfNC8AE.json deleted file mode 100644 index 105c2318..00000000 --- a/packs/talents/Waffenloser_Meister_1VAiKGCnqKfNC8AE.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "1VAiKGCnqKfNC8AE", - "name": "Waffenloser Meister", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Kampfmönch ist ein Meister des waffenlosen Kampfes, der WB seiner unbewaffneten Angriffe beträgt +1 pro Talentrang.
\nDer normalerweise gültige Bonus von +5 auf Abwehr gegen waffenlose Angriffe entfällt bei seinen Gegnern, deren Abwehr außerdem noch pro Talentrang um 1 gesenkt wird. Außerdem erhält ein waffenloser Meister +1 auf Abwehr und Initiative pro Talentrang, sofern er keinen Schild und keine Art von Rüstungen bis auf Stoff trägt.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349448, - "modifiedTime": 1740227862719, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!1VAiKGCnqKfNC8AE" -} diff --git a/packs/talents/Wahrnehmung_aojENPok9Guo3JN1.json b/packs/talents/Wahrnehmung_aojENPok9Guo3JN1.json deleted file mode 100644 index 11b17c5a..00000000 --- a/packs/talents/Wahrnehmung_aojENPok9Guo3JN1.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "_id": "aojENPok9Guo3JN1", - "name": "Wahrnehmung", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "qxrTP7Cs4mFS7lLU", - "changes": [ - { - "key": "system.checks.perception", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.wakeUp", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.decipherScript", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.readTracks", - "mode": 2, - "value": "2", - "priority": null - }, - { - "key": "system.checks.search", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Wahrnehmungsproben +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!aojENPok9Guo3JN1.qxrTP7Cs4mFS7lLU" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter ist ein aufmerksamer Beobachter. Auf alle Bemerken-Proben erhält er +2 pro Talentrang.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349562, - "modifiedTime": 1740227862735, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!aojENPok9Guo3JN1" -} diff --git a/packs/talents/Wechsler_gwCc6niwZL45wklE.json b/packs/talents/Wechsler_gwCc6niwZL45wklE.json deleted file mode 100644 index 1903d92b..00000000 --- a/packs/talents/Wechsler_gwCc6niwZL45wklE.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "_id": "gwCc6niwZL45wklE", - "name": "Wechsler", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [ - { - "_id": "nxzOItIzbsdQSbby", - "changes": [ - { - "key": "system.checks.changeSpell", - "mode": 2, - "value": "2", - "priority": null - } - ], - "disabled": false, - "duration": { - "startTime": null, - "seconds": null, - "combat": null, - "rounds": null, - "turns": null, - "startRound": null, - "startTurn": null - }, - "transfer": true, - "flags": { - "ds4": { - "itemEffectConfig": { - "applyToItems": false, - "itemName": "", - "condition": "" - } - } - }, - "tint": "#ffffff", - "origin": null, - "name": "Zauber wechseln +2", - "description": "", - "statuses": [], - "_stats": { - "coreVersion": "12.331", - "systemId": null, - "systemVersion": null, - "createdTime": null, - "modifiedTime": null, - "lastModifiedBy": null, - "compendiumSource": null, - "duplicateSource": null - }, - "img": "icons/svg/aura.svg", - "type": "base", - "system": {}, - "sort": 0, - "_key": "!items.effects!gwCc6niwZL45wklE.nxzOItIzbsdQSbby" - } - ], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Charakter hat gelernt, sich auf das Auswechseln seines aktiven Zaubers zu konzentrieren: Er erhält auf Proben, um seine Zauber zu wechseln, pro Talentrang einen Bonus von +2.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349596, - "modifiedTime": 1740227862737, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!gwCc6niwZL45wklE" -} diff --git a/packs/talents/Wissensegebiet_IB1OJ65TseuSw9ZI.json b/packs/talents/Wissensegebiet_IB1OJ65TseuSw9ZI.json deleted file mode 100644 index fcd834ef..00000000 --- a/packs/talents/Wissensegebiet_IB1OJ65TseuSw9ZI.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "IB1OJ65TseuSw9ZI", - "name": "Wissensegebiet", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent wird für jedes Wissensgebiet (Alte Sagen, Mathematik, Naturkunde, Sternenkunde, Zwergische Religion usw.) individuell erlernt, kann also mehrmals bis Höchstrang III erworben werden.
\nMan beherrscht das jeweilige Wissensgebiet und erhält auf alle diesbezüglichen Proben einen Bonus von +3 pro Talentrang, den man für dieses Wissensgebiet erworben hat.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349505, - "modifiedTime": 1740227862727, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!IB1OJ65TseuSw9ZI" -} diff --git a/packs/talents/Zauber_ausl_sen_kZti1KQIbf4UPvI7.json b/packs/talents/Zauber_ausl_sen_kZti1KQIbf4UPvI7.json deleted file mode 100644 index 0d85ea53..00000000 --- a/packs/talents/Zauber_ausl_sen_kZti1KQIbf4UPvI7.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "kZti1KQIbf4UPvI7", - "name": "Zauber auslösen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Meisterdieb kann, wie ein Zauberwirker, Zaubersprüche von Schriftrollen oder aus Zauberbüchern ablesen und dadurch auslösen, wodurch die Schrift des Zaubers verblasst und er verschwindet.
\nPro Talentrang wird eine der drei Zauberklassen Heiler, Zauberer oder Schwarzmagier gewählt und fortan kann der Charakter alle Zauber, die dieser Klasse zugänglich sind, unabhängig von seiner Stufe ablesen und auslösen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349613, - "modifiedTime": 1740227862739, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!kZti1KQIbf4UPvI7" -} diff --git a/packs/talents/Zaubermacht_XiwLao8lZi3JL0ku.json b/packs/talents/Zaubermacht_XiwLao8lZi3JL0ku.json deleted file mode 100644 index 2e93c1cb..00000000 --- a/packs/talents/Zaubermacht_XiwLao8lZi3JL0ku.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "XiwLao8lZi3JL0ku", - "name": "Zaubermacht", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang kann der Charakter einmal pro Kampf seinen Wert in Zaubern oder Zielzaubern eine Runde lang um den Wert von Geist erhöhen, sofern es sich dabei um einen Zauber handelt, der andere schädigt oder heilt. Es ist möglich, mehrere Talentränge in einem einzigen Zauber zu vereinen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349554, - "modifiedTime": 1740227862733, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!XiwLao8lZi3JL0ku" -} diff --git a/packs/talents/Zauberwaffe_rCRPchtSJye0K5nt.json b/packs/talents/Zauberwaffe_rCRPchtSJye0K5nt.json deleted file mode 100644 index f7693395..00000000 --- a/packs/talents/Zauberwaffe_rCRPchtSJye0K5nt.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "rCRPchtSJye0K5nt", - "name": "Zauberwaffe", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Dieses Talent wird pro Talentrang an eine bestimmte Nahkampfwaffe gebunden – so kann der Charakter beispielsweise in sein Lieblingsschwert zwei Talentränge investieren und einen dritten Talentrang beispielsweise in einen Bihänder. Pro Talentrang erhält der Charakter +1 auf Zielzaubern, sofern er die jeweilige Waffe in den Händen hält.
\nDesweiteren kann er pro gebundenen Talentrang einen seiner Zauber an die Waffe binden, um sie wie einen Zauberstab für diesen Zauber zu nutzen. Wird eine Zauberwaffe zerstört, sind die investierten Talentränge nicht verloren und können (nach Ablauf von W20 Wochen) an eine andere Waffe gebunden werden.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349637, - "modifiedTime": 1740227862742, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!rCRPchtSJye0K5nt" -} diff --git a/packs/talents/Zehrender_Spurt_qnYeR3a3LNUJ329t.json b/packs/talents/Zehrender_Spurt_qnYeR3a3LNUJ329t.json deleted file mode 100644 index 8403acbc..00000000 --- a/packs/talents/Zehrender_Spurt_qnYeR3a3LNUJ329t.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "qnYeR3a3LNUJ329t", - "name": "Zehrender Spurt", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Der Blutmagier kann für das Opfern von 1 LK (zählt als freie Aktion) seinen Wert in Laufen für W20/2 Runden um 2 m erhöhen. Pro weiterem Talentrang kann ein zusätzlicher LK geopfert werden, um Laufen um weitere 2 m zu erhöhen.
", - "rank": { - "base": 0, - "max": 3, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349636, - "modifiedTime": 1740227862742, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!qnYeR3a3LNUJ329t" -} diff --git a/packs/talents/Zwei_Waffen_rXXw5aS0pCr5amWa.json b/packs/talents/Zwei_Waffen_rXXw5aS0pCr5amWa.json deleted file mode 100644 index f65ab081..00000000 --- a/packs/talents/Zwei_Waffen_rXXw5aS0pCr5amWa.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "_id": "rXXw5aS0pCr5amWa", - "name": "Zwei Waffen", - "type": "talent", - "img": "icons/svg/item-bag.svg", - "effects": [], - "folder": null, - "sort": 0, - "flags": {}, - "system": { - "description": "Pro Talentrang wird der Malus von -10 auf Schlagen und Abwehr beim Kampf mit zwei Waffen um jeweils 2 Punkte gemindert.
", - "rank": { - "base": 0, - "max": 5, - "mod": 0 - } - }, - "ownership": { - "default": 0 - }, - "_stats": { - "systemId": "ds4", - "systemVersion": "1.21.1", - "coreVersion": "12.331", - "createdTime": 1668995349638, - "modifiedTime": 1740227862742, - "lastModifiedBy": "uxmyzF1AAOHwjAmE", - "compendiumSource": null, - "duplicateSource": null - }, - "_key": "!items!rXXw5aS0pCr5amWa" -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml deleted file mode 100644 index 86fb9412..00000000 --- a/pnpm-lock.yaml +++ /dev/null @@ -1,5332 +0,0 @@ -lockfileVersion: '9.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -importers: - - .: - devDependencies: - '@commitlint/cli': - specifier: 19.7.1 - version: 19.7.1(@types/node@18.19.76)(typescript@5.7.3) - '@commitlint/config-conventional': - specifier: 19.7.1 - version: 19.7.1 - '@eslint/js': - specifier: 9.21.0 - version: 9.21.0 - '@foundryvtt/foundryvtt-cli': - specifier: 1.0.4 - version: 1.0.4 - '@guanghechen/rollup-plugin-copy': - specifier: 6.0.4 - version: 6.0.4(rollup@4.34.8) - '@swc/core': - specifier: 1.10.18 - version: 1.10.18 - '@types/fs-extra': - specifier: 11.0.4 - version: 11.0.4 - '@types/jquery': - specifier: 3.5.32 - version: 3.5.32 - '@types/node': - specifier: 18.19.76 - version: 18.19.76 - conventional-changelog-cli: - specifier: 5.0.0 - version: 5.0.0(conventional-commits-filter@5.0.0) - conventional-changelog-conventionalcommits: - specifier: 8.0.0 - version: 8.0.0 - eslint: - specifier: 9.21.0 - version: 9.21.0(jiti@2.4.2) - eslint-config-prettier: - specifier: 10.0.1 - version: 10.0.1(eslint@9.21.0(jiti@2.4.2)) - fs-extra: - specifier: 11.3.0 - version: 11.3.0 - globals: - specifier: 16.0.0 - version: 16.0.0 - handlebars: - specifier: 4.7.8 - version: 4.7.8 - npm-run-all: - specifier: 4.1.5 - version: 4.1.5 - prettier: - specifier: 3.5.2 - version: 3.5.2 - rimraf: - specifier: 6.0.1 - version: 6.0.1 - rollup: - specifier: 4.34.8 - version: 4.34.8 - rollup-plugin-styler: - specifier: 2.0.0 - version: 2.0.0(rollup@4.34.8)(typescript@5.7.3) - rollup-plugin-swc3: - specifier: 0.12.1 - version: 0.12.1(@swc/core@1.10.18)(rollup@4.34.8) - sass: - specifier: 1.85.0 - version: 1.85.0 - semver: - specifier: 7.7.1 - version: 7.7.1 - tslib: - specifier: 2.8.1 - version: 2.8.1 - typescript: - specifier: 5.7.3 - version: 5.7.3 - typescript-eslint: - specifier: 8.24.1 - version: 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - vite: - specifier: 6.1.1 - version: 6.1.1(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0) - vitest: - specifier: 3.0.6 - version: 3.0.6(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0) - yargs: - specifier: 17.7.2 - version: 17.7.2 - -packages: - - '@aashutoshrathi/word-wrap@1.2.6': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - - '@babel/code-frame@7.24.7': - resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@7.24.7': - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} - engines: {node: '>=6.9.0'} - - '@babel/highlight@7.24.7': - resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} - engines: {node: '>=6.9.0'} - - '@commitlint/cli@19.7.1': - resolution: {integrity: sha512-iObGjR1tE/PfDtDTEfd+tnRkB3/HJzpQqRTyofS2MPPkDn1mp3DBC8SoPDayokfAy+xKhF8+bwRCJO25Nea0YQ==} - engines: {node: '>=v18'} - hasBin: true - - '@commitlint/config-conventional@19.7.1': - resolution: {integrity: sha512-fsEIF8zgiI/FIWSnykdQNj/0JE4av08MudLTyYHm4FlLWemKoQvPNUYU2M/3tktWcCEyq7aOkDDgtjrmgWFbvg==} - engines: {node: '>=v18'} - - '@commitlint/config-validator@19.5.0': - resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==} - engines: {node: '>=v18'} - - '@commitlint/ensure@19.5.0': - resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==} - engines: {node: '>=v18'} - - '@commitlint/execute-rule@19.5.0': - resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==} - engines: {node: '>=v18'} - - '@commitlint/format@19.5.0': - resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==} - engines: {node: '>=v18'} - - '@commitlint/is-ignored@19.7.1': - resolution: {integrity: sha512-3IaOc6HVg2hAoGleRK3r9vL9zZ3XY0rf1RsUf6jdQLuaD46ZHnXBiOPTyQ004C4IvYjSWqJwlh0/u2P73aIE3g==} - engines: {node: '>=v18'} - - '@commitlint/lint@19.7.1': - resolution: {integrity: sha512-LhcPfVjcOcOZA7LEuBBeO00o3MeZa+tWrX9Xyl1r9PMd5FWsEoZI9IgnGqTKZ0lZt5pO3ZlstgnRyY1CJJc9Xg==} - engines: {node: '>=v18'} - - '@commitlint/load@19.6.1': - resolution: {integrity: sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA==} - engines: {node: '>=v18'} - - '@commitlint/message@19.5.0': - resolution: {integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==} - engines: {node: '>=v18'} - - '@commitlint/parse@19.5.0': - resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==} - engines: {node: '>=v18'} - - '@commitlint/read@19.5.0': - resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==} - engines: {node: '>=v18'} - - '@commitlint/resolve-extends@19.5.0': - resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==} - engines: {node: '>=v18'} - - '@commitlint/rules@19.6.0': - resolution: {integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==} - engines: {node: '>=v18'} - - '@commitlint/to-lines@19.5.0': - resolution: {integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==} - engines: {node: '>=v18'} - - '@commitlint/top-level@19.5.0': - resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==} - engines: {node: '>=v18'} - - '@commitlint/types@19.5.0': - resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==} - engines: {node: '>=v18'} - - '@conventional-changelog/git-client@1.0.1': - resolution: {integrity: sha512-PJEqBwAleffCMETaVm/fUgHldzBE35JFk3/9LL6NUA5EXa3qednu+UT6M7E5iBu3zIQZCULYIiZ90fBYHt6xUw==} - engines: {node: '>=18'} - peerDependencies: - conventional-commits-filter: ^5.0.0 - conventional-commits-parser: ^6.0.0 - peerDependenciesMeta: - conventional-commits-filter: - optional: true - conventional-commits-parser: - optional: true - - '@dual-bundle/import-meta-resolve@4.1.0': - resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==} - - '@esbuild/aix-ppc64@0.24.2': - resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [aix] - - '@esbuild/android-arm64@0.24.2': - resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm@0.24.2': - resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} - engines: {node: '>=18'} - cpu: [arm] - os: [android] - - '@esbuild/android-x64@0.24.2': - resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} - engines: {node: '>=18'} - cpu: [x64] - os: [android] - - '@esbuild/darwin-arm64@0.24.2': - resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} - engines: {node: '>=18'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-x64@0.24.2': - resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} - engines: {node: '>=18'} - cpu: [x64] - os: [darwin] - - '@esbuild/freebsd-arm64@0.24.2': - resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.24.2': - resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} - engines: {node: '>=18'} - cpu: [x64] - os: [freebsd] - - '@esbuild/linux-arm64@0.24.2': - resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm@0.24.2': - resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} - engines: {node: '>=18'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-ia32@0.24.2': - resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} - engines: {node: '>=18'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-loong64@0.24.2': - resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} - engines: {node: '>=18'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-mips64el@0.24.2': - resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} - engines: {node: '>=18'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-ppc64@0.24.2': - resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-riscv64@0.24.2': - resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} - engines: {node: '>=18'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-s390x@0.24.2': - resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} - engines: {node: '>=18'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-x64@0.24.2': - resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} - engines: {node: '>=18'} - cpu: [x64] - os: [linux] - - '@esbuild/netbsd-arm64@0.24.2': - resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} - engines: {node: '>=18'} - cpu: [arm64] - os: [netbsd] - - '@esbuild/netbsd-x64@0.24.2': - resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} - engines: {node: '>=18'} - cpu: [x64] - os: [netbsd] - - '@esbuild/openbsd-arm64@0.24.2': - resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openbsd] - - '@esbuild/openbsd-x64@0.24.2': - resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} - engines: {node: '>=18'} - cpu: [x64] - os: [openbsd] - - '@esbuild/sunos-x64@0.24.2': - resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} - engines: {node: '>=18'} - cpu: [x64] - os: [sunos] - - '@esbuild/win32-arm64@0.24.2': - resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-ia32@0.24.2': - resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} - engines: {node: '>=18'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-x64@0.24.2': - resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} - engines: {node: '>=18'} - cpu: [x64] - os: [win32] - - '@eslint-community/eslint-utils@4.4.0': - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - - '@eslint-community/regexpp@4.12.1': - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - '@eslint/config-array@0.19.2': - resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/core@0.12.0': - resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/eslintrc@3.3.0': - resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/js@9.21.0': - resolution: {integrity: sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/object-schema@2.1.6': - resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/plugin-kit@0.2.7': - resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@fastify/deepmerge@2.0.0': - resolution: {integrity: sha512-fsaybTGDyQ5KpPsplQqb9yKdCf2x/pbNpMNk8Tvp3rRz7lVcupKysH4b2ELMN2P4Hak1+UqTYdTj/u4FNV2p0g==} - - '@foundryvtt/foundryvtt-cli@1.0.4': - resolution: {integrity: sha512-iEdNP3JbGwGQ0ZgawLFNCXvcSmSl2Xv/NjY2Fj35i+m0JYi1er9qfJl/hhECIEsrXG27tboEqbFXqFLMgXM4kg==} - engines: {node: '>17.0.0'} - hasBin: true - - '@guanghechen/chalk.types@1.0.3': - resolution: {integrity: sha512-Li14uVSkz4ZopzkANVZIZRCXHZdsfqZJ1loQli6Evme333Fp2e7Eo+ZTelgDVvyvfHMBh9pJixak4y+taBOnmg==} - - '@guanghechen/chalk@1.0.3': - resolution: {integrity: sha512-hTqwg1TioJdx8RfZI8e/V50oy3VaLWzwRUVJPZlNxbDlHVrPoAwH5b60P/Gr1rwMjfQESeVBiykepR7JkHeexg==} - - '@guanghechen/globby@1.0.2': - resolution: {integrity: sha512-lNj4TEIDxhkATP1COH8cyZfnfDteZ5Mk2jPg46mc3AblD0OQ5ihePOLYryOufENjaH7r2kLaGazeBAXyRJJGbQ==} - engines: {node: '>= 18.0.0'} - - '@guanghechen/rollup-plugin-copy@6.0.4': - resolution: {integrity: sha512-ytnHdaUAs3en3id8CZ/g1NEvtmlXUGEU1py3N8bR/vFKlZEFTcvh5VpuFUGalqJP+FWKy/g6xyPT4OBnLHHw1A==} - engines: {node: '>= 18.0.0'} - peerDependencies: - rollup: ^2.0.0 || ^3.0.0 || ^4.0.0 - - '@guanghechen/std@1.0.4': - resolution: {integrity: sha512-jjFX1ud5AULLaF6koHuiIHZQMgGkwKi22D6LzkIea05zZ/I7MmR+HRzQ4+XkfcY2YvHbt9zMGyhBqJrQaiPi+w==} - engines: {node: '>= 18.0.0'} - - '@humanfs/core@0.19.1': - resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} - engines: {node: '>=18.18.0'} - - '@humanfs/node@0.16.6': - resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} - engines: {node: '>=18.18.0'} - - '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - - '@humanwhocodes/retry@0.3.1': - resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} - engines: {node: '>=18.18'} - - '@humanwhocodes/retry@0.4.2': - resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} - engines: {node: '>=18.18'} - - '@hutson/parse-repository-url@5.0.0': - resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==} - engines: {node: '>=10.13.0'} - - '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@parcel/watcher-android-arm64@2.4.1': - resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [android] - - '@parcel/watcher-darwin-arm64@2.4.1': - resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [darwin] - - '@parcel/watcher-darwin-x64@2.4.1': - resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [darwin] - - '@parcel/watcher-freebsd-x64@2.4.1': - resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [freebsd] - - '@parcel/watcher-linux-arm-glibc@2.4.1': - resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==} - engines: {node: '>= 10.0.0'} - cpu: [arm] - os: [linux] - - '@parcel/watcher-linux-arm64-glibc@2.4.1': - resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [linux] - - '@parcel/watcher-linux-arm64-musl@2.4.1': - resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [linux] - - '@parcel/watcher-linux-x64-glibc@2.4.1': - resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [linux] - - '@parcel/watcher-linux-x64-musl@2.4.1': - resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [linux] - - '@parcel/watcher-win32-arm64@2.4.1': - resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [win32] - - '@parcel/watcher-win32-ia32@2.4.1': - resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==} - engines: {node: '>= 10.0.0'} - cpu: [ia32] - os: [win32] - - '@parcel/watcher-win32-x64@2.4.1': - resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [win32] - - '@parcel/watcher@2.4.1': - resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} - engines: {node: '>= 10.0.0'} - - '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - - '@rollup/pluginutils@5.1.2': - resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/rollup-android-arm-eabi@4.34.8': - resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm64@4.34.8': - resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-darwin-arm64@4.34.8': - resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-x64@4.34.8': - resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-freebsd-arm64@4.34.8': - resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==} - cpu: [arm64] - os: [freebsd] - - '@rollup/rollup-freebsd-x64@4.34.8': - resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==} - cpu: [x64] - os: [freebsd] - - '@rollup/rollup-linux-arm-gnueabihf@4.34.8': - resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm-musleabihf@4.34.8': - resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.34.8': - resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-musl@4.34.8': - resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-loongarch64-gnu@4.34.8': - resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==} - cpu: [loong64] - os: [linux] - - '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': - resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.34.8': - resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.34.8': - resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.34.8': - resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.34.8': - resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-win32-arm64-msvc@4.34.8': - resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.34.8': - resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.34.8': - resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==} - cpu: [x64] - os: [win32] - - '@seald-io/binary-search-tree@1.0.3': - resolution: {integrity: sha512-qv3jnwoakeax2razYaMsGI/luWdliBLHTdC6jU55hQt1hcFqzauH/HsBollQ7IR4ySTtYhT+xyHoijpA16C+tA==} - - '@seald-io/nedb@4.0.4': - resolution: {integrity: sha512-CUNcMio7QUHTA+sIJ/DC5JzVNNsHe743TPmC4H5Gij9zDLMbmrCT2li3eVB72/gF63BPS8pWEZrjlAMRKA8FDw==} - - '@swc/core-darwin-arm64@1.10.18': - resolution: {integrity: sha512-FdGqzAIKVQJu8ROlnHElP59XAUsUzCFSNsou+tY/9ba+lhu8R9v0OI5wXiPErrKGZpQFMmx/BPqqhx3X4SuGNg==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - - '@swc/core-darwin-x64@1.10.18': - resolution: {integrity: sha512-RZ73gZRituL/ZVLgrW6BYnQ5g8tuStG4cLUiPGJsUZpUm0ullSH6lHFvZTCBNFTfpQChG6eEhi2IdG6DwFp1lw==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - - '@swc/core-linux-arm-gnueabihf@1.10.18': - resolution: {integrity: sha512-8iJqI3EkxJuuq21UHoen1VS+QlS23RvynRuk95K+Q2HBjygetztCGGEc+Xelx9a0uPkDaaAtFvds4JMDqb9SAA==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - - '@swc/core-linux-arm64-gnu@1.10.18': - resolution: {integrity: sha512-8f1kSktWzMB6PG+r8lOlCfXz5E8Qhsmfwonn77T/OfjvGwQaWrcoASh2cdjpk3dydbf8jsKGPQE1lSc7GyjXRQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-arm64-musl@1.10.18': - resolution: {integrity: sha512-4rv+E4VLdgQw6zjbTAauCAEExxChvxMpBUMCiZweTNPKbJJ2dY6BX2WGJ1ea8+RcgqR/Xysj3AFbOz1LBz6dGA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-x64-gnu@1.10.18': - resolution: {integrity: sha512-vTNmyRBVP+sZca+vtwygYPGTNudTU6Gl6XhaZZ7cEUTBr8xvSTgEmYXoK/2uzyXpaTUI4Bmtp1x81cGN0mMoLQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-linux-x64-musl@1.10.18': - resolution: {integrity: sha512-1TZPReKhFCeX776XaT6wegknfg+g3zODve+r4oslFHI+g7cInfWlxoGNDS3niPKyuafgCdOjme2g3OF+zzxfsQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-win32-arm64-msvc@1.10.18': - resolution: {integrity: sha512-o/2CsaWSN3bkzVQ6DA+BiFKSVEYvhWGA1h+wnL2zWmIDs2Knag54sOEXZkCaf8YQyZesGeXJtPEy9hh/vjJgkA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - - '@swc/core-win32-ia32-msvc@1.10.18': - resolution: {integrity: sha512-eTPASeJtk4mJDfWiYEiOC6OYUi/N7meHbNHcU8e+aKABonhXrIo/FmnTE8vsUtC6+jakT1TQBdiQ8fzJ1kJVwA==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - - '@swc/core-win32-x64-msvc@1.10.18': - resolution: {integrity: sha512-1Dud8CDBnc34wkBOboFBQud9YlV1bcIQtKSg7zC8LtwR3h+XAaCayZPkpGmmAlCv1DLQPvkF+s0JcaVC9mfffQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - - '@swc/core@1.10.18': - resolution: {integrity: sha512-IUWKD6uQYGRy8w2X9EZrtYg1O3SCijlHbCXzMaHQYc1X7yjijQh4H3IVL9ssZZyVp2ZDfQZu4bD5DWxxvpyjvg==} - engines: {node: '>=10'} - peerDependencies: - '@swc/helpers': '*' - peerDependenciesMeta: - '@swc/helpers': - optional: true - - '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - - '@swc/types@0.1.17': - resolution: {integrity: sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==} - - '@trysound/sax@0.2.0': - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - - '@types/conventional-commits-parser@5.0.0': - resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} - - '@types/estree@1.0.6': - resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} - - '@types/fs-extra@11.0.4': - resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} - - '@types/jquery@3.5.32': - resolution: {integrity: sha512-b9Xbf4CkMqS02YH8zACqN1xzdxc3cO735Qe5AbSUFmyOiaWAbcpqh9Wna+Uk0vgACvoQHpWDg2rGdHkYPLmCiQ==} - - '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - - '@types/jsonfile@6.1.1': - resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==} - - '@types/node@18.19.76': - resolution: {integrity: sha512-yvR7Q9LdPz2vGpmpJX5LolrgRdWvB67MJKDPSgIIzpFbaf9a1j/f5DnLp5VDyHGMR0QZHlTr1afsD87QCXFHKw==} - - '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - - '@types/sizzle@2.3.3': - resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==} - - '@typescript-eslint/eslint-plugin@8.24.1': - resolution: {integrity: sha512-ll1StnKtBigWIGqvYDVuDmXJHVH4zLVot1yQ4fJtLpL7qacwkxJc1T0bptqw+miBQ/QfUbhl1TcQ4accW5KUyA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/parser@8.24.1': - resolution: {integrity: sha512-Tqoa05bu+t5s8CTZFaGpCH2ub3QeT9YDkXbPd3uQ4SfsLoh1/vv2GEYAioPoxCWJJNsenXlC88tRjwoHNts1oQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/scope-manager@8.24.1': - resolution: {integrity: sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/type-utils@8.24.1': - resolution: {integrity: sha512-/Do9fmNgCsQ+K4rCz0STI7lYB4phTtEXqqCAs3gZW0pnK7lWNkvWd5iW545GSmApm4AzmQXmSqXPO565B4WVrw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/types@8.24.1': - resolution: {integrity: sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/typescript-estree@8.24.1': - resolution: {integrity: sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/utils@8.24.1': - resolution: {integrity: sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/visitor-keys@8.24.1': - resolution: {integrity: sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@vitest/expect@3.0.6': - resolution: {integrity: sha512-zBduHf/ja7/QRX4HdP1DSq5XrPgdN+jzLOwaTq/0qZjYfgETNFCKf9nOAp2j3hmom3oTbczuUzrzg9Hafh7hNg==} - - '@vitest/mocker@3.0.6': - resolution: {integrity: sha512-KPztr4/tn7qDGZfqlSPQoF2VgJcKxnDNhmfR3VgZ6Fy1bO8T9Fc1stUiTXtqz0yG24VpD00pZP5f8EOFknjNuQ==} - peerDependencies: - msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 - peerDependenciesMeta: - msw: - optional: true - vite: - optional: true - - '@vitest/pretty-format@3.0.6': - resolution: {integrity: sha512-Zyctv3dbNL+67qtHfRnUE/k8qxduOamRfAL1BurEIQSyOEFffoMvx2pnDSSbKAAVxY0Ej2J/GH2dQKI0W2JyVg==} - - '@vitest/runner@3.0.6': - resolution: {integrity: sha512-JopP4m/jGoaG1+CBqubV/5VMbi7L+NQCJTu1J1Pf6YaUbk7bZtaq5CX7p+8sY64Sjn1UQ1XJparHfcvTTdu9cA==} - - '@vitest/snapshot@3.0.6': - resolution: {integrity: sha512-qKSmxNQwT60kNwwJHMVwavvZsMGXWmngD023OHSgn873pV0lylK7dwBTfYP7e4URy5NiBCHHiQGA9DHkYkqRqg==} - - '@vitest/spy@3.0.6': - resolution: {integrity: sha512-HfOGx/bXtjy24fDlTOpgiAEJbRfFxoX3zIGagCqACkFKKZ/TTOE6gYMKXlqecvxEndKFuNHcHqP081ggZ2yM0Q==} - - '@vitest/utils@3.0.6': - resolution: {integrity: sha512-18ktZpf4GQFTbf9jK543uspU03Q2qya7ZGya5yiZ0Gx0nnnalBvd5ZBislbl2EhLjM8A8rt4OilqKG7QwcGkvQ==} - - JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true - - abstract-level@1.0.3: - resolution: {integrity: sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==} - engines: {node: '>=12'} - - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn@8.14.0: - resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} - engines: {node: '>=0.4.0'} - hasBin: true - - add-stream@1.0.0: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} - - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - - ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} - - ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} - - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - - ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - - argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - - array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} - - array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} - - assertion-error@2.0.1: - resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} - engines: {node: '>=12'} - - available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} - - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - - base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - - boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - - braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} - - browserslist@4.24.4: - resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - - cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} - - call-bind@1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} - - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - - caniuse-lite@1.0.30001469: - resolution: {integrity: sha512-Rcp7221ScNqQPP3W+lVOYDyjdR6dC+neEQCttoNr5bAyz54AboB4iwpnWgyi8P4YUsPybVzT4LgWiBbI3drL4g==} - - caniuse-lite@1.0.30001699: - resolution: {integrity: sha512-b+uH5BakXZ9Do9iK+CkDmctUSEqZl+SP056vc5usa0PL+ev5OHw003rZXcnjNDv3L8P5j6rwT6C0BPKSikW08w==} - - catering@2.1.1: - resolution: {integrity: sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==} - engines: {node: '>=6'} - - chai@5.2.0: - resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==} - engines: {node: '>=12'} - - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - - chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - - chalk@5.4.1: - resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - - check-error@2.1.1: - resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} - engines: {node: '>= 16'} - - chokidar@4.0.3: - resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} - engines: {node: '>= 14.16.0'} - - classic-level@1.4.1: - resolution: {integrity: sha512-qGx/KJl3bvtOHrGau2WklEZuXhS3zme+jf+fsu6Ej7W7IP/C49v7KNlWIsT1jZu0YnfzSIYDGcEWpCa1wKGWXQ==} - engines: {node: '>=12'} - - cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} - - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - - color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - - colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - - commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - - compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} - - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - - conventional-changelog-angular@7.0.0: - resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} - engines: {node: '>=16'} - - conventional-changelog-angular@8.0.0: - resolution: {integrity: sha512-CLf+zr6St0wIxos4bmaKHRXWAcsCXrJU6F4VdNDrGRK3B8LDLKoX3zuMV5GhtbGkVR/LohZ6MT6im43vZLSjmA==} - engines: {node: '>=18'} - - conventional-changelog-atom@5.0.0: - resolution: {integrity: sha512-WfzCaAvSCFPkznnLgLnfacRAzjgqjLUjvf3MftfsJzQdDICqkOOpcMtdJF3wTerxSpv2IAAjX8doM3Vozqle3g==} - engines: {node: '>=18'} - - conventional-changelog-cli@5.0.0: - resolution: {integrity: sha512-9Y8fucJe18/6ef6ZlyIlT2YQUbczvoQZZuYmDLaGvcSBP+M6h+LAvf7ON7waRxKJemcCII8Yqu5/8HEfskTxJQ==} - engines: {node: '>=18'} - hasBin: true - - conventional-changelog-codemirror@5.0.0: - resolution: {integrity: sha512-8gsBDI5Y3vrKUCxN6Ue8xr6occZ5nsDEc4C7jO/EovFGozx8uttCAyfhRrvoUAWi2WMm3OmYs+0mPJU7kQdYWQ==} - engines: {node: '>=18'} - - conventional-changelog-conventionalcommits@7.0.2: - resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} - engines: {node: '>=16'} - - conventional-changelog-conventionalcommits@8.0.0: - resolution: {integrity: sha512-eOvlTO6OcySPyyyk8pKz2dP4jjElYunj9hn9/s0OB+gapTO8zwS9UQWrZ1pmF2hFs3vw1xhonOLGcGjy/zgsuA==} - engines: {node: '>=18'} - - conventional-changelog-core@8.0.0: - resolution: {integrity: sha512-EATUx5y9xewpEe10UEGNpbSHRC6cVZgO+hXQjofMqpy+gFIrcGvH3Fl6yk2VFKh7m+ffenup2N7SZJYpyD9evw==} - engines: {node: '>=18'} - - conventional-changelog-ember@5.0.0: - resolution: {integrity: sha512-RPflVfm5s4cSO33GH/Ey26oxhiC67akcxSKL8CLRT3kQX2W3dbE19sSOM56iFqUJYEwv9mD9r6k79weWe1urfg==} - engines: {node: '>=18'} - - conventional-changelog-eslint@6.0.0: - resolution: {integrity: sha512-eiUyULWjzq+ybPjXwU6NNRflApDWlPEQEHvI8UAItYW/h22RKkMnOAtfCZxMmrcMO1OKUWtcf2MxKYMWe9zJuw==} - engines: {node: '>=18'} - - conventional-changelog-express@5.0.0: - resolution: {integrity: sha512-D8Q6WctPkQpvr2HNCCmwU5GkX22BVHM0r4EW8vN0230TSyS/d6VQJDAxGb84lbg0dFjpO22MwmsikKL++Oo/oQ==} - engines: {node: '>=18'} - - conventional-changelog-jquery@6.0.0: - resolution: {integrity: sha512-2kxmVakyehgyrho2ZHBi90v4AHswkGzHuTaoH40bmeNqUt20yEkDOSpw8HlPBfvEQBwGtbE+5HpRwzj6ac2UfA==} - engines: {node: '>=18'} - - conventional-changelog-jshint@5.0.0: - resolution: {integrity: sha512-gGNphSb/opc76n2eWaO6ma4/Wqu3tpa2w7i9WYqI6Cs2fncDSI2/ihOfMvXveeTTeld0oFvwMVNV+IYQIk3F3g==} - engines: {node: '>=18'} - - conventional-changelog-preset-loader@5.0.0: - resolution: {integrity: sha512-SetDSntXLk8Jh1NOAl1Gu5uLiCNSYenB5tm0YVeZKePRIgDW9lQImromTwLa3c/Gae298tsgOM+/CYT9XAl0NA==} - engines: {node: '>=18'} - - conventional-changelog-writer@8.0.0: - resolution: {integrity: sha512-TQcoYGRatlAnT2qEWDON/XSfnVG38JzA7E0wcGScu7RElQBkg9WWgZd1peCWFcWDh1xfb2CfsrcvOn1bbSzztA==} - engines: {node: '>=18'} - hasBin: true - - conventional-changelog@6.0.0: - resolution: {integrity: sha512-tuUH8H/19VjtD9Ig7l6TQRh+Z0Yt0NZ6w/cCkkyzUbGQTnUEmKfGtkC9gGfVgCfOL1Rzno5NgNF4KY8vR+Jo3w==} - engines: {node: '>=18'} - - conventional-commits-filter@5.0.0: - resolution: {integrity: sha512-tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==} - engines: {node: '>=18'} - - conventional-commits-parser@5.0.0: - resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} - engines: {node: '>=16'} - hasBin: true - - conventional-commits-parser@6.0.0: - resolution: {integrity: sha512-TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA==} - engines: {node: '>=18'} - hasBin: true - - cosmiconfig-typescript-loader@6.1.0: - resolution: {integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==} - engines: {node: '>=v18'} - peerDependencies: - '@types/node': '*' - cosmiconfig: '>=9' - typescript: '>=5' - - cosmiconfig@8.3.6: - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true - - cosmiconfig@9.0.0: - resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true - - cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} - - cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} - engines: {node: '>= 8'} - - css-declaration-sorter@7.2.0: - resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - postcss: ^8.0.9 - - css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} - - css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - - css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} - - css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - - cssnano-preset-default@7.0.6: - resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - cssnano-utils@5.0.0: - resolution: {integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - cssnano@7.0.6: - resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} - - dargs@8.1.0: - resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} - engines: {node: '>=12'} - - debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - decode-uri-component@0.4.1: - resolution: {integrity: sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==} - engines: {node: '>=14.16'} - - deep-eql@5.0.2: - resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} - engines: {node: '>=6'} - - deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - - define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} - engines: {node: '>= 0.4'} - - detect-libc@1.0.3: - resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} - engines: {node: '>=0.10'} - hasBin: true - - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - - dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} - - domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - - domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} - - domutils@3.2.2: - resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} - - dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} - - eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - - electron-to-chromium@1.5.101: - resolution: {integrity: sha512-L0ISiQrP/56Acgu4/i/kfPwWSgrzYZUnQrC0+QPFuhqlLP1Ir7qzPPDVS9BcKIyWTRU8+o6CC8dKw38tSWhYIA==} - - emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - - emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - - entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - - env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - - es-abstract@1.21.2: - resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} - engines: {node: '>= 0.4'} - - es-module-lexer@1.6.0: - resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} - - es-set-tostringtag@2.0.1: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} - engines: {node: '>= 0.4'} - - es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} - - esbuild@0.24.2: - resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} - engines: {node: '>=18'} - hasBin: true - - escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} - - escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} - engines: {node: '>=6'} - - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - - eslint-config-prettier@10.0.1: - resolution: {integrity: sha512-lZBts941cyJyeaooiKxAtzoPHTN+GbQTJFAIdQbRhA4/8whaAraEh47Whw/ZFfrjNSnlAxqfm9i0XVAEkULjCw==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - - eslint-scope@8.2.0: - resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-visitor-keys@4.2.0: - resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - eslint@9.21.0: - resolution: {integrity: sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - hasBin: true - peerDependencies: - jiti: '*' - peerDependenciesMeta: - jiti: - optional: true - - esm@3.2.25: - resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} - engines: {node: '>=6'} - - espree@10.3.0: - resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} - - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - - estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - - estree-walker@3.0.3: - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} - - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - - eventemitter3@5.0.1: - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} - - expect-type@1.1.0: - resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} - engines: {node: '>=12.0.0'} - - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - - fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} - engines: {node: '>=8.6.0'} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - - fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - - fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} - - file-entry-cache@8.0.0: - resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} - engines: {node: '>=16.0.0'} - - fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} - - filter-obj@5.1.0: - resolution: {integrity: sha512-qWeTREPoT7I0bifpPUXtxkZJ1XJzxWtfoWWkdVGqa+eCr3SHW/Ocp89o8vLvbUuQnadybJpjOKu4V+RwO6sGng==} - engines: {node: '>=14.16'} - - find-up-simple@1.0.0: - resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} - engines: {node: '>=18'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - find-up@7.0.0: - resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} - engines: {node: '>=18'} - - flat-cache@4.0.1: - resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} - engines: {node: '>=16'} - - flatted@3.3.2: - resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} - - for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - - foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: '>=14'} - - fs-extra@11.3.0: - resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} - engines: {node: '>=14.14'} - - fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - - function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - - function.prototype.name@1.1.5: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} - engines: {node: '>= 0.4'} - - functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - - get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - - get-intrinsic@1.2.0: - resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} - - get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} - - get-tsconfig@4.8.1: - resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} - - git-raw-commits@4.0.0: - resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} - engines: {node: '>=16'} - hasBin: true - - git-raw-commits@5.0.0: - resolution: {integrity: sha512-I2ZXrXeOc0KrCvC7swqtIFXFN+rbjnC7b2T943tvemIOVNl+XP8YnA9UVwqFhzzLClnSA60KR/qEjLpXzs73Qg==} - engines: {node: '>=18'} - hasBin: true - - git-semver-tags@8.0.0: - resolution: {integrity: sha512-N7YRIklvPH3wYWAR2vysaqGLPRcpwQ0GKdlqTiVN5w1UmCdaeY3K8s6DMKRCh54DDdzyt/OAB6C8jgVtb7Y2Fg==} - engines: {node: '>=18'} - hasBin: true - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - glob@11.0.0: - resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==} - engines: {node: 20 || >=22} - hasBin: true - - global-directory@4.0.1: - resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} - engines: {node: '>=18'} - - globals@14.0.0: - resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} - engines: {node: '>=18'} - - globals@16.0.0: - resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==} - engines: {node: '>=18'} - - globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} - - gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - - graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - - handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true - - has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - has-property-descriptors@1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} - - has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} - - has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - - has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} - - has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} - - hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} - - hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - - hosted-git-info@7.0.0: - resolution: {integrity: sha512-ICclEpTLhHj+zCuSb2/usoNXSVkxUSIopre+b1w8NDY9Dntp9LO4vLdHYI336TH8sAqwrRgnSfdkBG2/YpisHA==} - engines: {node: ^16.14.0 || >=18.0.0} - - icss-utils@5.1.0: - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - - ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} - - ignore@7.0.3: - resolution: {integrity: sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==} - engines: {node: '>= 4'} - - immediate@3.0.6: - resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} - - immutable@5.0.3: - resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==} - - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - import-meta-resolve@4.1.0: - resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - index-to-position@0.1.2: - resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==} - engines: {node: '>=18'} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - ini@4.1.1: - resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - internal-slot@1.0.5: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} - engines: {node: '>= 0.4'} - - is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} - - is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} - - is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - - is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - - is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - - is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - - is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - - is-core-module@2.11.0: - resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} - - is-core-module@2.16.1: - resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} - engines: {node: '>= 0.4'} - - is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - - is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} - - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - - is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} - - is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - - is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} - - is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - - is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} - - is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - - is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - - is-text-path@2.0.0: - resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} - engines: {node: '>=8'} - - is-typed-array@1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} - engines: {node: '>= 0.4'} - - is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - - isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - - jackspeak@4.0.1: - resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==} - engines: {node: 20 || >=22} - - jiti@2.4.2: - resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} - hasBin: true - - js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} - - json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - - json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - - jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - - jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - - level-supports@4.0.1: - resolution: {integrity: sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==} - engines: {node: '>=12'} - - level-transcoder@1.0.1: - resolution: {integrity: sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==} - engines: {node: '>=12'} - - levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} - - lie@3.1.1: - resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} - - lilconfig@3.1.3: - resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} - engines: {node: '>=14'} - - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - - load-json-file@4.0.0: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: '>=4'} - - localforage@1.10.0: - resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - - lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - - lodash.kebabcase@4.1.1: - resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} - - lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - - lodash.mergewith@4.6.2: - resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} - - lodash.snakecase@4.1.1: - resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} - - lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - - lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - - lodash.upperfirst@4.3.1: - resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} - - loupe@3.1.3: - resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==} - - lru-cache@10.0.1: - resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==} - engines: {node: 14 || >=16.14} - - lru-cache@11.0.0: - resolution: {integrity: sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==} - engines: {node: 20 || >=22} - - magic-string@0.30.17: - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} - - mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - - mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - - memorystream@0.3.1: - resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} - engines: {node: '>= 0.10.0'} - - meow@12.1.0: - resolution: {integrity: sha512-SvSqzS5ktjGoySdCwxQI16iO/ID1LtxM03QvJ4FF2H5cCtXLN7YbfKBCL9btqXSSuJ5TNG4UH6wvWtXZuvgvrw==} - engines: {node: '>=16.10'} - - meow@13.2.0: - resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} - engines: {node: '>=18'} - - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - - micromatch@4.0.8: - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} - engines: {node: '>=8.6'} - - mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - - mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} - - minimatch@10.0.1: - resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} - engines: {node: 20 || >=22} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimatch@9.0.4: - resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} - engines: {node: '>=16 || 14 >=14.17'} - - minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - - minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} - - mkdirp@3.0.1: - resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} - engines: {node: '>=10'} - hasBin: true - - module-error@1.0.2: - resolution: {integrity: sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==} - engines: {node: '>=10'} - - ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - - nanoid@3.3.8: - resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - napi-macros@2.2.2: - resolution: {integrity: sha512-hmEVtAGYzVQpCKdbQea4skABsdXW4RUh5t5mJ2zzqowJS2OyXZTU1KhDVFhx+NlWZ4ap9mqR9TcDO3LTTttd+g==} - - natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - - nedb-promises@6.2.3: - resolution: {integrity: sha512-enq0IjNyBz9Qy9W/QPCcLGh/QORGBjXbIeZeWvIjO3OMLyAvlKT3hiJubP2BKEiFniUlR3L01o18ktqgn5jxqA==} - - neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - - nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} - - node-addon-api@7.1.1: - resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} - - node-gyp-build@4.6.0: - resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} - hasBin: true - - node-releases@2.0.19: - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} - - normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - - normalize-package-data@6.0.0: - resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==} - engines: {node: ^16.14.0 || >=18.0.0} - - npm-run-all@4.1.5: - resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} - engines: {node: '>= 4'} - hasBin: true - - nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - - object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} - - object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - - object.assign@4.1.4: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} - engines: {node: '>= 0.4'} - - optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - p-queue@8.1.0: - resolution: {integrity: sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==} - engines: {node: '>=18'} - - p-timeout@6.1.4: - resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} - engines: {node: '>=14.16'} - - package-json-from-dist@1.0.0: - resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} - - parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - - parse-json@8.1.0: - resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==} - engines: {node: '>=18'} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} - - path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - - path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - - path-scurry@2.0.0: - resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} - engines: {node: 20 || >=22} - - path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - pathe@2.0.3: - resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} - - pathval@2.0.0: - resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} - engines: {node: '>= 14.16'} - - picocolors@1.1.1: - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} - - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - pidtree@0.3.1: - resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} - engines: {node: '>=0.10'} - hasBin: true - - pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} - - postcss-calc@10.1.1: - resolution: {integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==} - engines: {node: ^18.12 || ^20.9 || >=22.0} - peerDependencies: - postcss: ^8.4.38 - - postcss-colormin@7.0.2: - resolution: {integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-convert-values@7.0.4: - resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-comments@7.0.3: - resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-duplicates@7.0.1: - resolution: {integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-empty@7.0.0: - resolution: {integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-discard-overridden@7.0.0: - resolution: {integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-merge-longhand@7.0.4: - resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-merge-rules@7.0.4: - resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-font-values@7.0.0: - resolution: {integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-gradients@7.0.0: - resolution: {integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-params@7.0.2: - resolution: {integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-minify-selectors@7.0.4: - resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-modules-extract-imports@3.0.0: - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-local-by-default@4.2.0: - resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-scope@3.0.0: - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-modules-values@4.0.0: - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - - postcss-normalize-charset@7.0.0: - resolution: {integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-display-values@7.0.0: - resolution: {integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-positions@7.0.0: - resolution: {integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-repeat-style@7.0.0: - resolution: {integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-string@7.0.0: - resolution: {integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-timing-functions@7.0.0: - resolution: {integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-unicode@7.0.2: - resolution: {integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-url@7.0.0: - resolution: {integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-normalize-whitespace@7.0.0: - resolution: {integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-ordered-values@7.0.1: - resolution: {integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-reduce-initial@7.0.2: - resolution: {integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-reduce-transforms@7.0.0: - resolution: {integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-selector-parser@6.0.11: - resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} - engines: {node: '>=4'} - - postcss-selector-parser@6.1.2: - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} - engines: {node: '>=4'} - - postcss-selector-parser@7.1.0: - resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} - engines: {node: '>=4'} - - postcss-svgo@7.0.1: - resolution: {integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==} - engines: {node: ^18.12.0 || ^20.9.0 || >= 18} - peerDependencies: - postcss: ^8.4.31 - - postcss-unique-selectors@7.0.3: - resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - - postcss@8.5.2: - resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==} - engines: {node: ^10 || ^12 || >=14} - - prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} - - prettier@3.5.2: - resolution: {integrity: sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==} - engines: {node: '>=14'} - hasBin: true - - punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: '>=6'} - - query-string@9.1.1: - resolution: {integrity: sha512-MWkCOVIcJP9QSKU52Ngow6bsAWAPlPK2MludXvcrS2bGZSl+T1qX9MZvRIkqUIkGLJquMJHWfsT6eRqUpp4aWg==} - engines: {node: '>=18'} - - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - - read-package-up@11.0.0: - resolution: {integrity: sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==} - engines: {node: '>=18'} - - read-pkg@3.0.0: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: '>=4'} - - read-pkg@9.0.1: - resolution: {integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==} - engines: {node: '>=18'} - - readdirp@4.0.1: - resolution: {integrity: sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==} - engines: {node: '>= 14.16.0'} - - regexp.prototype.flags@1.4.3: - resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} - engines: {node: '>= 0.4'} - - require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - - require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - - resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} - - resolve.exports@2.0.3: - resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} - engines: {node: '>=10'} - - resolve@1.22.1: - resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} - hasBin: true - - resolve@1.22.10: - resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} - engines: {node: '>= 0.4'} - hasBin: true - - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - rimraf@6.0.1: - resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==} - engines: {node: 20 || >=22} - hasBin: true - - rollup-plugin-styler@2.0.0: - resolution: {integrity: sha512-u96KK3hfA5RDeZFuE1kW0mu7FKS6sDu0RlGx9vijqQbzlmrzkhkBtge5gXZ6wF0CnTgcn7CfkwKOwIcWVZU/VQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - rollup: ^2.63.0 || ^3.0.0 || ^4.0.0 - - rollup-plugin-swc3@0.12.1: - resolution: {integrity: sha512-iNV1T432XvyejZ19/41C2gLbXxEOiiJynPPAFF0WzwwFT5FHx7SstAp0yjJRLyrbZjfIhoWJVl3hX3c3Stv/GQ==} - engines: {node: '>=16'} - peerDependencies: - '@swc/core': '>=1.2.165' - rollup: ^2.0.0 || ^3.0.0 || ^4.0.0 - - rollup-preserve-directives@1.1.2: - resolution: {integrity: sha512-OOaYh4zO0Dcd/eVWGB8H69CgTiohl+jJqc2TLtjLENVIQaV2rxO3OW6RILzCQOdDvPT+/rzwRp+97OXhem895Q==} - peerDependencies: - rollup: ^2.0.0 || ^3.0.0 || ^4.0.0 - - rollup@4.34.8: - resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - - safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} - - sass@1.85.0: - resolution: {integrity: sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==} - engines: {node: '>=14.0.0'} - hasBin: true - - semver@5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} - hasBin: true - - semver@7.7.1: - resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} - engines: {node: '>=10'} - hasBin: true - - shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - - shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - - shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - - shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - - shell-quote@1.8.0: - resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==} - - side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} - - siginfo@2.0.0: - resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} - - signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - - source-map-js@1.2.1: - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} - engines: {node: '>=0.10.0'} - - source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - - spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} - - spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - - spdx-license-ids@3.0.13: - resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} - - split-on-first@3.0.0: - resolution: {integrity: sha512-qxQJTx2ryR0Dw0ITYyekNQWpz6f8dGd7vffGNflQQ3Iqj9NJ6qiZ7ELpZsJ/QBhIVAiDfXdag3+Gp8RvWa62AA==} - engines: {node: '>=12'} - - split2@4.2.0: - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} - engines: {node: '>= 10.x'} - - stackback@0.0.2: - resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - - std-env@3.8.0: - resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} - - string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - - string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} - - string.prototype.padend@3.1.4: - resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==} - engines: {node: '>= 0.4'} - - string.prototype.trim@1.2.7: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} - engines: {node: '>= 0.4'} - - string.prototype.trimend@1.0.6: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} - - string.prototype.trimstart@1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} - - strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - - strip-ansi@7.0.1: - resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} - engines: {node: '>=12'} - - strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - stylehacks@7.0.4: - resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==} - engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} - peerDependencies: - postcss: ^8.4.31 - - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} - hasBin: true - - temp-dir@3.0.0: - resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} - engines: {node: '>=14.16'} - - tempfile@5.0.0: - resolution: {integrity: sha512-bX655WZI/F7EoTDw9JvQURqAXiPHi8o8+yFxPF2lWYyz1aHnmMRuXWqL6YB6GmeO0o4DIYWHLgGNi/X64T+X4Q==} - engines: {node: '>=14.18'} - - text-extensions@2.4.0: - resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} - engines: {node: '>=8'} - - through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - - tinybench@2.9.0: - resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - - tinyexec@0.3.2: - resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} - - tinypool@1.0.2: - resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} - engines: {node: ^18.0.0 || >=20.0.0} - - tinyrainbow@2.0.0: - resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} - engines: {node: '>=14.0.0'} - - tinyspy@3.0.2: - resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} - engines: {node: '>=14.0.0'} - - to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - - ts-api-utils@2.0.1: - resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==} - engines: {node: '>=18.12'} - peerDependencies: - typescript: '>=4.8.4' - - tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - - type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - - type-fest@4.20.0: - resolution: {integrity: sha512-MBh+PHUHHisjXf4tlx0CFWoMdjx8zCMLJHOjnV1prABYZFHqtFOyauCIK2/7w4oIfwkF8iNhLtnJEfVY2vn3iw==} - engines: {node: '>=16'} - - typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} - - typescript-eslint@8.24.1: - resolution: {integrity: sha512-cw3rEdzDqBs70TIcb0Gdzbt6h11BSs2pS0yaq7hDWDBtCCSei1pPSUXE9qUdQ/Wm9NgFg8mKtMt1b8fTHIl1jA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - - typescript@5.7.3: - resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} - engines: {node: '>=14.17'} - hasBin: true - - uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} - engines: {node: '>=0.8.0'} - hasBin: true - - unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} - - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - - unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} - - universalify@2.0.0: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} - engines: {node: '>= 10.0.0'} - - update-browserslist-db@1.1.2: - resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} - - validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - - vite-node@3.0.6: - resolution: {integrity: sha512-s51RzrTkXKJrhNbUzQRsarjmAae7VmMPAsRT7lppVpIg6mK3zGthP9Hgz0YQQKuNcF+Ii7DfYk3Fxz40jRmePw==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - - vite@6.1.1: - resolution: {integrity: sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - jiti: '>=1.21.0' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - '@types/node': - optional: true - jiti: - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - tsx: - optional: true - yaml: - optional: true - - vitest@3.0.6: - resolution: {integrity: sha512-/iL1Sc5VeDZKPDe58oGK4HUFLhw6b5XdY1MYawjuSaDA4sEfYlY9HnS6aCEG26fX+MgUi7MwlduTBHHAI/OvMA==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - peerDependencies: - '@edge-runtime/vm': '*' - '@types/debug': ^4.1.12 - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - '@vitest/browser': 3.0.6 - '@vitest/ui': 3.0.6 - happy-dom: '*' - jsdom: '*' - peerDependenciesMeta: - '@edge-runtime/vm': - optional: true - '@types/debug': - optional: true - '@types/node': - optional: true - '@vitest/browser': - optional: true - '@vitest/ui': - optional: true - happy-dom: - optional: true - jsdom: - optional: true - - which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - - which-typed-array@1.1.9: - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} - engines: {node: '>= 0.4'} - - which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - - which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - - why-is-node-running@2.3.0: - resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} - engines: {node: '>=8'} - hasBin: true - - wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - - wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} - - wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} - - y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - - yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - - yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - - yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} - -snapshots: - - '@aashutoshrathi/word-wrap@1.2.6': {} - - '@babel/code-frame@7.24.7': - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.1.1 - - '@babel/helper-validator-identifier@7.24.7': {} - - '@babel/highlight@7.24.7': - dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.1 - - '@commitlint/cli@19.7.1(@types/node@18.19.76)(typescript@5.7.3)': - dependencies: - '@commitlint/format': 19.5.0 - '@commitlint/lint': 19.7.1 - '@commitlint/load': 19.6.1(@types/node@18.19.76)(typescript@5.7.3) - '@commitlint/read': 19.5.0 - '@commitlint/types': 19.5.0 - tinyexec: 0.3.2 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - typescript - - '@commitlint/config-conventional@19.7.1': - dependencies: - '@commitlint/types': 19.5.0 - conventional-changelog-conventionalcommits: 7.0.2 - - '@commitlint/config-validator@19.5.0': - dependencies: - '@commitlint/types': 19.5.0 - ajv: 8.12.0 - - '@commitlint/ensure@19.5.0': - dependencies: - '@commitlint/types': 19.5.0 - lodash.camelcase: 4.3.0 - lodash.kebabcase: 4.1.1 - lodash.snakecase: 4.1.1 - lodash.startcase: 4.4.0 - lodash.upperfirst: 4.3.1 - - '@commitlint/execute-rule@19.5.0': {} - - '@commitlint/format@19.5.0': - dependencies: - '@commitlint/types': 19.5.0 - chalk: 5.3.0 - - '@commitlint/is-ignored@19.7.1': - dependencies: - '@commitlint/types': 19.5.0 - semver: 7.7.1 - - '@commitlint/lint@19.7.1': - dependencies: - '@commitlint/is-ignored': 19.7.1 - '@commitlint/parse': 19.5.0 - '@commitlint/rules': 19.6.0 - '@commitlint/types': 19.5.0 - - '@commitlint/load@19.6.1(@types/node@18.19.76)(typescript@5.7.3)': - dependencies: - '@commitlint/config-validator': 19.5.0 - '@commitlint/execute-rule': 19.5.0 - '@commitlint/resolve-extends': 19.5.0 - '@commitlint/types': 19.5.0 - chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.7.3) - cosmiconfig-typescript-loader: 6.1.0(@types/node@18.19.76)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3) - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - lodash.uniq: 4.5.0 - transitivePeerDependencies: - - '@types/node' - - typescript - - '@commitlint/message@19.5.0': {} - - '@commitlint/parse@19.5.0': - dependencies: - '@commitlint/types': 19.5.0 - conventional-changelog-angular: 7.0.0 - conventional-commits-parser: 5.0.0 - - '@commitlint/read@19.5.0': - dependencies: - '@commitlint/top-level': 19.5.0 - '@commitlint/types': 19.5.0 - git-raw-commits: 4.0.0 - minimist: 1.2.8 - tinyexec: 0.3.2 - - '@commitlint/resolve-extends@19.5.0': - dependencies: - '@commitlint/config-validator': 19.5.0 - '@commitlint/types': 19.5.0 - global-directory: 4.0.1 - import-meta-resolve: 4.1.0 - lodash.mergewith: 4.6.2 - resolve-from: 5.0.0 - - '@commitlint/rules@19.6.0': - dependencies: - '@commitlint/ensure': 19.5.0 - '@commitlint/message': 19.5.0 - '@commitlint/to-lines': 19.5.0 - '@commitlint/types': 19.5.0 - - '@commitlint/to-lines@19.5.0': {} - - '@commitlint/top-level@19.5.0': - dependencies: - find-up: 7.0.0 - - '@commitlint/types@19.5.0': - dependencies: - '@types/conventional-commits-parser': 5.0.0 - chalk: 5.3.0 - - '@conventional-changelog/git-client@1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0)': - dependencies: - '@types/semver': 7.5.8 - semver: 7.7.1 - optionalDependencies: - conventional-commits-filter: 5.0.0 - conventional-commits-parser: 6.0.0 - - '@dual-bundle/import-meta-resolve@4.1.0': {} - - '@esbuild/aix-ppc64@0.24.2': - optional: true - - '@esbuild/android-arm64@0.24.2': - optional: true - - '@esbuild/android-arm@0.24.2': - optional: true - - '@esbuild/android-x64@0.24.2': - optional: true - - '@esbuild/darwin-arm64@0.24.2': - optional: true - - '@esbuild/darwin-x64@0.24.2': - optional: true - - '@esbuild/freebsd-arm64@0.24.2': - optional: true - - '@esbuild/freebsd-x64@0.24.2': - optional: true - - '@esbuild/linux-arm64@0.24.2': - optional: true - - '@esbuild/linux-arm@0.24.2': - optional: true - - '@esbuild/linux-ia32@0.24.2': - optional: true - - '@esbuild/linux-loong64@0.24.2': - optional: true - - '@esbuild/linux-mips64el@0.24.2': - optional: true - - '@esbuild/linux-ppc64@0.24.2': - optional: true - - '@esbuild/linux-riscv64@0.24.2': - optional: true - - '@esbuild/linux-s390x@0.24.2': - optional: true - - '@esbuild/linux-x64@0.24.2': - optional: true - - '@esbuild/netbsd-arm64@0.24.2': - optional: true - - '@esbuild/netbsd-x64@0.24.2': - optional: true - - '@esbuild/openbsd-arm64@0.24.2': - optional: true - - '@esbuild/openbsd-x64@0.24.2': - optional: true - - '@esbuild/sunos-x64@0.24.2': - optional: true - - '@esbuild/win32-arm64@0.24.2': - optional: true - - '@esbuild/win32-ia32@0.24.2': - optional: true - - '@esbuild/win32-x64@0.24.2': - optional: true - - '@eslint-community/eslint-utils@4.4.0(eslint@9.21.0(jiti@2.4.2))': - dependencies: - eslint: 9.21.0(jiti@2.4.2) - eslint-visitor-keys: 3.4.3 - - '@eslint-community/regexpp@4.12.1': {} - - '@eslint/config-array@0.19.2': - dependencies: - '@eslint/object-schema': 2.1.6 - debug: 4.4.0 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - - '@eslint/core@0.12.0': - dependencies: - '@types/json-schema': 7.0.15 - - '@eslint/eslintrc@3.3.0': - dependencies: - ajv: 6.12.6 - debug: 4.4.0 - espree: 10.3.0 - globals: 14.0.0 - ignore: 5.3.1 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - '@eslint/js@9.21.0': {} - - '@eslint/object-schema@2.1.6': {} - - '@eslint/plugin-kit@0.2.7': - dependencies: - '@eslint/core': 0.12.0 - levn: 0.4.1 - - '@fastify/deepmerge@2.0.0': {} - - '@foundryvtt/foundryvtt-cli@1.0.4': - dependencies: - chalk: 5.4.1 - classic-level: 1.4.1 - esm: 3.2.25 - js-yaml: 4.1.0 - mkdirp: 3.0.1 - nedb-promises: 6.2.3 - yargs: 17.7.2 - - '@guanghechen/chalk.types@1.0.3': {} - - '@guanghechen/chalk@1.0.3': - dependencies: - '@guanghechen/chalk.types': 1.0.3 - - '@guanghechen/globby@1.0.2': - dependencies: - fast-glob: 3.3.3 - ignore: 7.0.3 - - '@guanghechen/rollup-plugin-copy@6.0.4(rollup@4.34.8)': - dependencies: - '@guanghechen/chalk': 1.0.3 - '@guanghechen/globby': 1.0.2 - '@guanghechen/std': 1.0.4 - chokidar: 4.0.3 - dir-glob: 3.0.1 - micromatch: 4.0.8 - rollup: 4.34.8 - - '@guanghechen/std@1.0.4': {} - - '@humanfs/core@0.19.1': {} - - '@humanfs/node@0.16.6': - dependencies: - '@humanfs/core': 0.19.1 - '@humanwhocodes/retry': 0.3.1 - - '@humanwhocodes/module-importer@1.0.1': {} - - '@humanwhocodes/retry@0.3.1': {} - - '@humanwhocodes/retry@0.4.2': {} - - '@hutson/parse-repository-url@5.0.0': {} - - '@isaacs/cliui@8.0.2': - dependencies: - string-width: 5.1.2 - string-width-cjs: string-width@4.2.3 - strip-ansi: 7.0.1 - strip-ansi-cjs: strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: wrap-ansi@7.0.0 - - '@jridgewell/sourcemap-codec@1.5.0': {} - - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 - - '@parcel/watcher-android-arm64@2.4.1': - optional: true - - '@parcel/watcher-darwin-arm64@2.4.1': - optional: true - - '@parcel/watcher-darwin-x64@2.4.1': - optional: true - - '@parcel/watcher-freebsd-x64@2.4.1': - optional: true - - '@parcel/watcher-linux-arm-glibc@2.4.1': - optional: true - - '@parcel/watcher-linux-arm64-glibc@2.4.1': - optional: true - - '@parcel/watcher-linux-arm64-musl@2.4.1': - optional: true - - '@parcel/watcher-linux-x64-glibc@2.4.1': - optional: true - - '@parcel/watcher-linux-x64-musl@2.4.1': - optional: true - - '@parcel/watcher-win32-arm64@2.4.1': - optional: true - - '@parcel/watcher-win32-ia32@2.4.1': - optional: true - - '@parcel/watcher-win32-x64@2.4.1': - optional: true - - '@parcel/watcher@2.4.1': - dependencies: - detect-libc: 1.0.3 - is-glob: 4.0.3 - micromatch: 4.0.8 - node-addon-api: 7.1.1 - optionalDependencies: - '@parcel/watcher-android-arm64': 2.4.1 - '@parcel/watcher-darwin-arm64': 2.4.1 - '@parcel/watcher-darwin-x64': 2.4.1 - '@parcel/watcher-freebsd-x64': 2.4.1 - '@parcel/watcher-linux-arm-glibc': 2.4.1 - '@parcel/watcher-linux-arm64-glibc': 2.4.1 - '@parcel/watcher-linux-arm64-musl': 2.4.1 - '@parcel/watcher-linux-x64-glibc': 2.4.1 - '@parcel/watcher-linux-x64-musl': 2.4.1 - '@parcel/watcher-win32-arm64': 2.4.1 - '@parcel/watcher-win32-ia32': 2.4.1 - '@parcel/watcher-win32-x64': 2.4.1 - optional: true - - '@pkgjs/parseargs@0.11.0': - optional: true - - '@rollup/pluginutils@5.1.2(rollup@4.34.8)': - dependencies: - '@types/estree': 1.0.6 - estree-walker: 2.0.2 - picomatch: 2.3.1 - optionalDependencies: - rollup: 4.34.8 - - '@rollup/rollup-android-arm-eabi@4.34.8': - optional: true - - '@rollup/rollup-android-arm64@4.34.8': - optional: true - - '@rollup/rollup-darwin-arm64@4.34.8': - optional: true - - '@rollup/rollup-darwin-x64@4.34.8': - optional: true - - '@rollup/rollup-freebsd-arm64@4.34.8': - optional: true - - '@rollup/rollup-freebsd-x64@4.34.8': - optional: true - - '@rollup/rollup-linux-arm-gnueabihf@4.34.8': - optional: true - - '@rollup/rollup-linux-arm-musleabihf@4.34.8': - optional: true - - '@rollup/rollup-linux-arm64-gnu@4.34.8': - optional: true - - '@rollup/rollup-linux-arm64-musl@4.34.8': - optional: true - - '@rollup/rollup-linux-loongarch64-gnu@4.34.8': - optional: true - - '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.34.8': - optional: true - - '@rollup/rollup-linux-s390x-gnu@4.34.8': - optional: true - - '@rollup/rollup-linux-x64-gnu@4.34.8': - optional: true - - '@rollup/rollup-linux-x64-musl@4.34.8': - optional: true - - '@rollup/rollup-win32-arm64-msvc@4.34.8': - optional: true - - '@rollup/rollup-win32-ia32-msvc@4.34.8': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.34.8': - optional: true - - '@seald-io/binary-search-tree@1.0.3': {} - - '@seald-io/nedb@4.0.4': - dependencies: - '@seald-io/binary-search-tree': 1.0.3 - localforage: 1.10.0 - util: 0.12.5 - - '@swc/core-darwin-arm64@1.10.18': - optional: true - - '@swc/core-darwin-x64@1.10.18': - optional: true - - '@swc/core-linux-arm-gnueabihf@1.10.18': - optional: true - - '@swc/core-linux-arm64-gnu@1.10.18': - optional: true - - '@swc/core-linux-arm64-musl@1.10.18': - optional: true - - '@swc/core-linux-x64-gnu@1.10.18': - optional: true - - '@swc/core-linux-x64-musl@1.10.18': - optional: true - - '@swc/core-win32-arm64-msvc@1.10.18': - optional: true - - '@swc/core-win32-ia32-msvc@1.10.18': - optional: true - - '@swc/core-win32-x64-msvc@1.10.18': - optional: true - - '@swc/core@1.10.18': - dependencies: - '@swc/counter': 0.1.3 - '@swc/types': 0.1.17 - optionalDependencies: - '@swc/core-darwin-arm64': 1.10.18 - '@swc/core-darwin-x64': 1.10.18 - '@swc/core-linux-arm-gnueabihf': 1.10.18 - '@swc/core-linux-arm64-gnu': 1.10.18 - '@swc/core-linux-arm64-musl': 1.10.18 - '@swc/core-linux-x64-gnu': 1.10.18 - '@swc/core-linux-x64-musl': 1.10.18 - '@swc/core-win32-arm64-msvc': 1.10.18 - '@swc/core-win32-ia32-msvc': 1.10.18 - '@swc/core-win32-x64-msvc': 1.10.18 - - '@swc/counter@0.1.3': {} - - '@swc/types@0.1.17': - dependencies: - '@swc/counter': 0.1.3 - - '@trysound/sax@0.2.0': {} - - '@types/conventional-commits-parser@5.0.0': - dependencies: - '@types/node': 18.19.76 - - '@types/estree@1.0.6': {} - - '@types/fs-extra@11.0.4': - dependencies: - '@types/jsonfile': 6.1.1 - '@types/node': 18.19.76 - - '@types/jquery@3.5.32': - dependencies: - '@types/sizzle': 2.3.3 - - '@types/json-schema@7.0.15': {} - - '@types/jsonfile@6.1.1': - dependencies: - '@types/node': 18.19.76 - - '@types/node@18.19.76': - dependencies: - undici-types: 5.26.5 - - '@types/normalize-package-data@2.4.4': {} - - '@types/semver@7.5.8': {} - - '@types/sizzle@2.3.3': {} - - '@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': - dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/scope-manager': 8.24.1 - '@typescript-eslint/type-utils': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/utils': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.24.1 - eslint: 9.21.0(jiti@2.4.2) - graphemer: 1.4.0 - ignore: 5.3.1 - natural-compare: 1.4.0 - ts-api-utils: 2.0.1(typescript@5.7.3) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': - dependencies: - '@typescript-eslint/scope-manager': 8.24.1 - '@typescript-eslint/types': 8.24.1 - '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.24.1 - debug: 4.4.0 - eslint: 9.21.0(jiti@2.4.2) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/scope-manager@8.24.1': - dependencies: - '@typescript-eslint/types': 8.24.1 - '@typescript-eslint/visitor-keys': 8.24.1 - - '@typescript-eslint/type-utils@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': - dependencies: - '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) - '@typescript-eslint/utils': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - debug: 4.4.0 - eslint: 9.21.0(jiti@2.4.2) - ts-api-utils: 2.0.1(typescript@5.7.3) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/types@8.24.1': {} - - '@typescript-eslint/typescript-estree@8.24.1(typescript@5.7.3)': - dependencies: - '@typescript-eslint/types': 8.24.1 - '@typescript-eslint/visitor-keys': 8.24.1 - debug: 4.4.0 - fast-glob: 3.3.3 - is-glob: 4.0.3 - minimatch: 9.0.4 - semver: 7.7.1 - ts-api-utils: 2.0.1(typescript@5.7.3) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.21.0(jiti@2.4.2)) - '@typescript-eslint/scope-manager': 8.24.1 - '@typescript-eslint/types': 8.24.1 - '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) - eslint: 9.21.0(jiti@2.4.2) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/visitor-keys@8.24.1': - dependencies: - '@typescript-eslint/types': 8.24.1 - eslint-visitor-keys: 4.2.0 - - '@vitest/expect@3.0.6': - dependencies: - '@vitest/spy': 3.0.6 - '@vitest/utils': 3.0.6 - chai: 5.2.0 - tinyrainbow: 2.0.0 - - '@vitest/mocker@3.0.6(vite@6.1.1(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0))': - dependencies: - '@vitest/spy': 3.0.6 - estree-walker: 3.0.3 - magic-string: 0.30.17 - optionalDependencies: - vite: 6.1.1(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0) - - '@vitest/pretty-format@3.0.6': - dependencies: - tinyrainbow: 2.0.0 - - '@vitest/runner@3.0.6': - dependencies: - '@vitest/utils': 3.0.6 - pathe: 2.0.3 - - '@vitest/snapshot@3.0.6': - dependencies: - '@vitest/pretty-format': 3.0.6 - magic-string: 0.30.17 - pathe: 2.0.3 - - '@vitest/spy@3.0.6': - dependencies: - tinyspy: 3.0.2 - - '@vitest/utils@3.0.6': - dependencies: - '@vitest/pretty-format': 3.0.6 - loupe: 3.1.3 - tinyrainbow: 2.0.0 - - JSONStream@1.3.5: - dependencies: - jsonparse: 1.3.1 - through: 2.3.8 - - abstract-level@1.0.3: - dependencies: - buffer: 6.0.3 - catering: 2.1.1 - is-buffer: 2.0.5 - level-supports: 4.0.1 - level-transcoder: 1.0.1 - module-error: 1.0.2 - queue-microtask: 1.2.3 - - acorn-jsx@5.3.2(acorn@8.14.0): - dependencies: - acorn: 8.14.0 - - acorn@8.14.0: {} - - add-stream@1.0.0: {} - - ajv@6.12.6: - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - - ajv@8.12.0: - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - - ansi-regex@5.0.1: {} - - ansi-regex@6.0.1: {} - - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - - ansi-styles@4.3.0: - dependencies: - color-convert: 2.0.1 - - ansi-styles@6.2.1: {} - - argparse@2.0.1: {} - - array-buffer-byte-length@1.0.0: - dependencies: - call-bind: 1.0.2 - is-array-buffer: 3.0.2 - - array-ify@1.0.0: {} - - assertion-error@2.0.1: {} - - available-typed-arrays@1.0.5: {} - - balanced-match@1.0.2: {} - - base64-js@1.5.1: {} - - boolbase@1.0.0: {} - - brace-expansion@1.1.11: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - - brace-expansion@2.0.1: - dependencies: - balanced-match: 1.0.2 - - braces@3.0.3: - dependencies: - fill-range: 7.1.1 - - browserslist@4.24.4: - dependencies: - caniuse-lite: 1.0.30001699 - electron-to-chromium: 1.5.101 - node-releases: 2.0.19 - update-browserslist-db: 1.1.2(browserslist@4.24.4) - - buffer@6.0.3: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - - cac@6.7.14: {} - - call-bind@1.0.2: - dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.0 - - callsites@3.1.0: {} - - caniuse-api@3.0.0: - dependencies: - browserslist: 4.24.4 - caniuse-lite: 1.0.30001469 - lodash.memoize: 4.1.2 - lodash.uniq: 4.5.0 - - caniuse-lite@1.0.30001469: {} - - caniuse-lite@1.0.30001699: {} - - catering@2.1.1: {} - - chai@5.2.0: - dependencies: - assertion-error: 2.0.1 - check-error: 2.1.1 - deep-eql: 5.0.2 - loupe: 3.1.3 - pathval: 2.0.0 - - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - chalk@5.3.0: {} - - chalk@5.4.1: {} - - check-error@2.1.1: {} - - chokidar@4.0.3: - dependencies: - readdirp: 4.0.1 - - classic-level@1.4.1: - dependencies: - abstract-level: 1.0.3 - catering: 2.1.1 - module-error: 1.0.2 - napi-macros: 2.2.2 - node-gyp-build: 4.6.0 - - cliui@8.0.1: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 - - color-convert@2.0.1: - dependencies: - color-name: 1.1.4 - - color-name@1.1.3: {} - - color-name@1.1.4: {} - - colord@2.9.3: {} - - commander@7.2.0: {} - - compare-func@2.0.0: - dependencies: - array-ify: 1.0.0 - dot-prop: 5.3.0 - - concat-map@0.0.1: {} - - conventional-changelog-angular@7.0.0: - dependencies: - compare-func: 2.0.0 - - conventional-changelog-angular@8.0.0: - dependencies: - compare-func: 2.0.0 - - conventional-changelog-atom@5.0.0: {} - - conventional-changelog-cli@5.0.0(conventional-commits-filter@5.0.0): - dependencies: - add-stream: 1.0.0 - conventional-changelog: 6.0.0(conventional-commits-filter@5.0.0) - meow: 13.2.0 - tempfile: 5.0.0 - transitivePeerDependencies: - - conventional-commits-filter - - conventional-changelog-codemirror@5.0.0: {} - - conventional-changelog-conventionalcommits@7.0.2: - dependencies: - compare-func: 2.0.0 - - conventional-changelog-conventionalcommits@8.0.0: - dependencies: - compare-func: 2.0.0 - - conventional-changelog-core@8.0.0(conventional-commits-filter@5.0.0): - dependencies: - '@hutson/parse-repository-url': 5.0.0 - add-stream: 1.0.0 - conventional-changelog-writer: 8.0.0 - conventional-commits-parser: 6.0.0 - git-raw-commits: 5.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0) - git-semver-tags: 8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0) - hosted-git-info: 7.0.0 - normalize-package-data: 6.0.0 - read-package-up: 11.0.0 - read-pkg: 9.0.1 - transitivePeerDependencies: - - conventional-commits-filter - - conventional-changelog-ember@5.0.0: {} - - conventional-changelog-eslint@6.0.0: {} - - conventional-changelog-express@5.0.0: {} - - conventional-changelog-jquery@6.0.0: {} - - conventional-changelog-jshint@5.0.0: - dependencies: - compare-func: 2.0.0 - - conventional-changelog-preset-loader@5.0.0: {} - - conventional-changelog-writer@8.0.0: - dependencies: - '@types/semver': 7.5.8 - conventional-commits-filter: 5.0.0 - handlebars: 4.7.8 - meow: 13.2.0 - semver: 7.7.1 - - conventional-changelog@6.0.0(conventional-commits-filter@5.0.0): - dependencies: - conventional-changelog-angular: 8.0.0 - conventional-changelog-atom: 5.0.0 - conventional-changelog-codemirror: 5.0.0 - conventional-changelog-conventionalcommits: 8.0.0 - conventional-changelog-core: 8.0.0(conventional-commits-filter@5.0.0) - conventional-changelog-ember: 5.0.0 - conventional-changelog-eslint: 6.0.0 - conventional-changelog-express: 5.0.0 - conventional-changelog-jquery: 6.0.0 - conventional-changelog-jshint: 5.0.0 - conventional-changelog-preset-loader: 5.0.0 - transitivePeerDependencies: - - conventional-commits-filter - - conventional-commits-filter@5.0.0: {} - - conventional-commits-parser@5.0.0: - dependencies: - JSONStream: 1.3.5 - is-text-path: 2.0.0 - meow: 12.1.0 - split2: 4.2.0 - - conventional-commits-parser@6.0.0: - dependencies: - meow: 13.2.0 - - cosmiconfig-typescript-loader@6.1.0(@types/node@18.19.76)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3): - dependencies: - '@types/node': 18.19.76 - cosmiconfig: 9.0.0(typescript@5.7.3) - jiti: 2.4.2 - typescript: 5.7.3 - - cosmiconfig@8.3.6(typescript@5.7.3): - dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - optionalDependencies: - typescript: 5.7.3 - - cosmiconfig@9.0.0(typescript@5.7.3): - dependencies: - env-paths: 2.2.1 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - optionalDependencies: - typescript: 5.7.3 - - cross-spawn@6.0.5: - dependencies: - nice-try: 1.0.5 - path-key: 2.0.1 - semver: 5.7.1 - shebang-command: 1.2.0 - which: 1.3.1 - - cross-spawn@7.0.6: - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - - css-declaration-sorter@7.2.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - - css-select@5.1.0: - dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 5.0.3 - domutils: 3.2.2 - nth-check: 2.1.1 - - css-tree@2.2.1: - dependencies: - mdn-data: 2.0.28 - source-map-js: 1.2.1 - - css-tree@2.3.1: - dependencies: - mdn-data: 2.0.30 - source-map-js: 1.2.1 - - css-what@6.1.0: {} - - cssesc@3.0.0: {} - - cssnano-preset-default@7.0.6(postcss@8.5.2): - dependencies: - browserslist: 4.24.4 - css-declaration-sorter: 7.2.0(postcss@8.5.2) - cssnano-utils: 5.0.0(postcss@8.5.2) - postcss: 8.5.2 - postcss-calc: 10.1.1(postcss@8.5.2) - postcss-colormin: 7.0.2(postcss@8.5.2) - postcss-convert-values: 7.0.4(postcss@8.5.2) - postcss-discard-comments: 7.0.3(postcss@8.5.2) - postcss-discard-duplicates: 7.0.1(postcss@8.5.2) - postcss-discard-empty: 7.0.0(postcss@8.5.2) - postcss-discard-overridden: 7.0.0(postcss@8.5.2) - postcss-merge-longhand: 7.0.4(postcss@8.5.2) - postcss-merge-rules: 7.0.4(postcss@8.5.2) - postcss-minify-font-values: 7.0.0(postcss@8.5.2) - postcss-minify-gradients: 7.0.0(postcss@8.5.2) - postcss-minify-params: 7.0.2(postcss@8.5.2) - postcss-minify-selectors: 7.0.4(postcss@8.5.2) - postcss-normalize-charset: 7.0.0(postcss@8.5.2) - postcss-normalize-display-values: 7.0.0(postcss@8.5.2) - postcss-normalize-positions: 7.0.0(postcss@8.5.2) - postcss-normalize-repeat-style: 7.0.0(postcss@8.5.2) - postcss-normalize-string: 7.0.0(postcss@8.5.2) - postcss-normalize-timing-functions: 7.0.0(postcss@8.5.2) - postcss-normalize-unicode: 7.0.2(postcss@8.5.2) - postcss-normalize-url: 7.0.0(postcss@8.5.2) - postcss-normalize-whitespace: 7.0.0(postcss@8.5.2) - postcss-ordered-values: 7.0.1(postcss@8.5.2) - postcss-reduce-initial: 7.0.2(postcss@8.5.2) - postcss-reduce-transforms: 7.0.0(postcss@8.5.2) - postcss-svgo: 7.0.1(postcss@8.5.2) - postcss-unique-selectors: 7.0.3(postcss@8.5.2) - - cssnano-utils@5.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - - cssnano@7.0.6(postcss@8.5.2): - dependencies: - cssnano-preset-default: 7.0.6(postcss@8.5.2) - lilconfig: 3.1.3 - postcss: 8.5.2 - - csso@5.0.5: - dependencies: - css-tree: 2.2.1 - - dargs@8.1.0: {} - - debug@4.4.0: - dependencies: - ms: 2.1.3 - - decode-uri-component@0.4.1: {} - - deep-eql@5.0.2: {} - - deep-is@0.1.4: {} - - define-properties@1.2.0: - dependencies: - has-property-descriptors: 1.0.0 - object-keys: 1.1.1 - - detect-libc@1.0.3: - optional: true - - dir-glob@3.0.1: - dependencies: - path-type: 4.0.0 - - dom-serializer@2.0.0: - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - entities: 4.5.0 - - domelementtype@2.3.0: {} - - domhandler@5.0.3: - dependencies: - domelementtype: 2.3.0 - - domutils@3.2.2: - dependencies: - dom-serializer: 2.0.0 - domelementtype: 2.3.0 - domhandler: 5.0.3 - - dot-prop@5.3.0: - dependencies: - is-obj: 2.0.0 - - eastasianwidth@0.2.0: {} - - electron-to-chromium@1.5.101: {} - - emoji-regex@8.0.0: {} - - emoji-regex@9.2.2: {} - - entities@4.5.0: {} - - env-paths@2.2.1: {} - - error-ex@1.3.2: - dependencies: - is-arrayish: 0.2.1 - - es-abstract@1.21.2: - dependencies: - array-buffer-byte-length: 1.0.0 - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.0 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 - has-proto: 1.0.1 - has-symbols: 1.0.3 - internal-slot: 1.0.5 - is-array-buffer: 3.0.2 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.10 - is-weakref: 1.0.2 - object-inspect: 1.12.3 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.4.3 - safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.9 - - es-module-lexer@1.6.0: {} - - es-set-tostringtag@2.0.1: - dependencies: - get-intrinsic: 1.2.0 - has: 1.0.3 - has-tostringtag: 1.0.0 - - es-to-primitive@1.2.1: - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - - esbuild@0.24.2: - optionalDependencies: - '@esbuild/aix-ppc64': 0.24.2 - '@esbuild/android-arm': 0.24.2 - '@esbuild/android-arm64': 0.24.2 - '@esbuild/android-x64': 0.24.2 - '@esbuild/darwin-arm64': 0.24.2 - '@esbuild/darwin-x64': 0.24.2 - '@esbuild/freebsd-arm64': 0.24.2 - '@esbuild/freebsd-x64': 0.24.2 - '@esbuild/linux-arm': 0.24.2 - '@esbuild/linux-arm64': 0.24.2 - '@esbuild/linux-ia32': 0.24.2 - '@esbuild/linux-loong64': 0.24.2 - '@esbuild/linux-mips64el': 0.24.2 - '@esbuild/linux-ppc64': 0.24.2 - '@esbuild/linux-riscv64': 0.24.2 - '@esbuild/linux-s390x': 0.24.2 - '@esbuild/linux-x64': 0.24.2 - '@esbuild/netbsd-arm64': 0.24.2 - '@esbuild/netbsd-x64': 0.24.2 - '@esbuild/openbsd-arm64': 0.24.2 - '@esbuild/openbsd-x64': 0.24.2 - '@esbuild/sunos-x64': 0.24.2 - '@esbuild/win32-arm64': 0.24.2 - '@esbuild/win32-ia32': 0.24.2 - '@esbuild/win32-x64': 0.24.2 - - escalade@3.1.1: {} - - escalade@3.2.0: {} - - escape-string-regexp@1.0.5: {} - - escape-string-regexp@4.0.0: {} - - eslint-config-prettier@10.0.1(eslint@9.21.0(jiti@2.4.2)): - dependencies: - eslint: 9.21.0(jiti@2.4.2) - - eslint-scope@8.2.0: - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - - eslint-visitor-keys@3.4.3: {} - - eslint-visitor-keys@4.2.0: {} - - eslint@9.21.0(jiti@2.4.2): - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.21.0(jiti@2.4.2)) - '@eslint-community/regexpp': 4.12.1 - '@eslint/config-array': 0.19.2 - '@eslint/core': 0.12.0 - '@eslint/eslintrc': 3.3.0 - '@eslint/js': 9.21.0 - '@eslint/plugin-kit': 0.2.7 - '@humanfs/node': 0.16.6 - '@humanwhocodes/module-importer': 1.0.1 - '@humanwhocodes/retry': 0.4.2 - '@types/estree': 1.0.6 - '@types/json-schema': 7.0.15 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.6 - debug: 4.4.0 - escape-string-regexp: 4.0.0 - eslint-scope: 8.2.0 - eslint-visitor-keys: 4.2.0 - espree: 10.3.0 - esquery: 1.5.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 8.0.0 - find-up: 5.0.0 - glob-parent: 6.0.2 - ignore: 5.3.1 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - json-stable-stringify-without-jsonify: 1.0.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.3 - optionalDependencies: - jiti: 2.4.2 - transitivePeerDependencies: - - supports-color - - esm@3.2.25: {} - - espree@10.3.0: - dependencies: - acorn: 8.14.0 - acorn-jsx: 5.3.2(acorn@8.14.0) - eslint-visitor-keys: 4.2.0 - - esquery@1.5.0: - dependencies: - estraverse: 5.3.0 - - esrecurse@4.3.0: - dependencies: - estraverse: 5.3.0 - - estraverse@5.3.0: {} - - estree-walker@2.0.2: {} - - estree-walker@3.0.3: - dependencies: - '@types/estree': 1.0.6 - - esutils@2.0.3: {} - - eventemitter3@5.0.1: {} - - expect-type@1.1.0: {} - - fast-deep-equal@3.1.3: {} - - fast-glob@3.3.3: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.8 - - fast-json-stable-stringify@2.1.0: {} - - fast-levenshtein@2.0.6: {} - - fastq@1.15.0: - dependencies: - reusify: 1.0.4 - - file-entry-cache@8.0.0: - dependencies: - flat-cache: 4.0.1 - - fill-range@7.1.1: - dependencies: - to-regex-range: 5.0.1 - - filter-obj@5.1.0: {} - - find-up-simple@1.0.0: {} - - find-up@5.0.0: - dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 - - find-up@7.0.0: - dependencies: - locate-path: 7.2.0 - path-exists: 5.0.0 - unicorn-magic: 0.1.0 - - flat-cache@4.0.1: - dependencies: - flatted: 3.3.2 - keyv: 4.5.4 - - flatted@3.3.2: {} - - for-each@0.3.3: - dependencies: - is-callable: 1.2.7 - - foreground-child@3.1.1: - dependencies: - cross-spawn: 7.0.6 - signal-exit: 4.1.0 - - fs-extra@11.3.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 - - fsevents@2.3.3: - optional: true - - function-bind@1.1.1: {} - - function-bind@1.1.2: {} - - function.prototype.name@1.1.5: - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - functions-have-names: 1.2.3 - - functions-have-names@1.2.3: {} - - get-caller-file@2.0.5: {} - - get-intrinsic@1.2.0: - dependencies: - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.3 - - get-symbol-description@1.0.0: - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.0 - - get-tsconfig@4.8.1: - dependencies: - resolve-pkg-maps: 1.0.0 - - git-raw-commits@4.0.0: - dependencies: - dargs: 8.1.0 - meow: 12.1.0 - split2: 4.2.0 - - git-raw-commits@5.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0): - dependencies: - '@conventional-changelog/git-client': 1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0) - meow: 13.2.0 - transitivePeerDependencies: - - conventional-commits-filter - - conventional-commits-parser - - git-semver-tags@8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0): - dependencies: - '@conventional-changelog/git-client': 1.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.0.0) - meow: 13.2.0 - transitivePeerDependencies: - - conventional-commits-filter - - conventional-commits-parser - - glob-parent@5.1.2: - dependencies: - is-glob: 4.0.3 - - glob-parent@6.0.2: - dependencies: - is-glob: 4.0.3 - - glob@11.0.0: - dependencies: - foreground-child: 3.1.1 - jackspeak: 4.0.1 - minimatch: 10.0.1 - minipass: 7.1.2 - package-json-from-dist: 1.0.0 - path-scurry: 2.0.0 - - global-directory@4.0.1: - dependencies: - ini: 4.1.1 - - globals@14.0.0: {} - - globals@16.0.0: {} - - globalthis@1.0.3: - dependencies: - define-properties: 1.2.0 - - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.0 - - graceful-fs@4.2.11: {} - - graphemer@1.4.0: {} - - handlebars@4.7.8: - dependencies: - minimist: 1.2.8 - neo-async: 2.6.2 - source-map: 0.6.1 - wordwrap: 1.0.0 - optionalDependencies: - uglify-js: 3.17.4 - - has-bigints@1.0.2: {} - - has-flag@3.0.0: {} - - has-flag@4.0.0: {} - - has-property-descriptors@1.0.0: - dependencies: - get-intrinsic: 1.2.0 - - has-proto@1.0.1: {} - - has-symbols@1.0.3: {} - - has-tostringtag@1.0.0: - dependencies: - has-symbols: 1.0.3 - - has@1.0.3: - dependencies: - function-bind: 1.1.1 - - hasown@2.0.2: - dependencies: - function-bind: 1.1.2 - - hosted-git-info@2.8.9: {} - - hosted-git-info@7.0.0: - dependencies: - lru-cache: 10.0.1 - - icss-utils@5.1.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - - ieee754@1.2.1: {} - - ignore@5.3.1: {} - - ignore@7.0.3: {} - - immediate@3.0.6: {} - - immutable@5.0.3: {} - - import-fresh@3.3.0: - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - - import-meta-resolve@4.1.0: {} - - imurmurhash@0.1.4: {} - - index-to-position@0.1.2: {} - - inherits@2.0.4: {} - - ini@4.1.1: {} - - internal-slot@1.0.5: - dependencies: - get-intrinsic: 1.2.0 - has: 1.0.3 - side-channel: 1.0.4 - - is-arguments@1.1.1: - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - - is-array-buffer@3.0.2: - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.0 - is-typed-array: 1.1.10 - - is-arrayish@0.2.1: {} - - is-bigint@1.0.4: - dependencies: - has-bigints: 1.0.2 - - is-boolean-object@1.1.2: - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - - is-buffer@2.0.5: {} - - is-callable@1.2.7: {} - - is-core-module@2.11.0: - dependencies: - has: 1.0.3 - - is-core-module@2.16.1: - dependencies: - hasown: 2.0.2 - - is-date-object@1.0.5: - dependencies: - has-tostringtag: 1.0.0 - - is-extglob@2.1.1: {} - - is-fullwidth-code-point@3.0.0: {} - - is-generator-function@1.0.10: - dependencies: - has-tostringtag: 1.0.0 - - is-glob@4.0.3: - dependencies: - is-extglob: 2.1.1 - - is-negative-zero@2.0.2: {} - - is-number-object@1.0.7: - dependencies: - has-tostringtag: 1.0.0 - - is-number@7.0.0: {} - - is-obj@2.0.0: {} - - is-regex@1.1.4: - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - - is-shared-array-buffer@1.0.2: - dependencies: - call-bind: 1.0.2 - - is-string@1.0.7: - dependencies: - has-tostringtag: 1.0.0 - - is-symbol@1.0.4: - dependencies: - has-symbols: 1.0.3 - - is-text-path@2.0.0: - dependencies: - text-extensions: 2.4.0 - - is-typed-array@1.1.10: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - - is-weakref@1.0.2: - dependencies: - call-bind: 1.0.2 - - isexe@2.0.0: {} - - jackspeak@4.0.1: - dependencies: - '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 - - jiti@2.4.2: {} - - js-tokens@4.0.0: {} - - js-yaml@4.1.0: - dependencies: - argparse: 2.0.1 - - json-buffer@3.0.1: {} - - json-parse-better-errors@1.0.2: {} - - json-parse-even-better-errors@2.3.1: {} - - json-schema-traverse@0.4.1: {} - - json-schema-traverse@1.0.0: {} - - json-stable-stringify-without-jsonify@1.0.1: {} - - jsonfile@6.1.0: - dependencies: - universalify: 2.0.0 - optionalDependencies: - graceful-fs: 4.2.11 - - jsonparse@1.3.1: {} - - keyv@4.5.4: - dependencies: - json-buffer: 3.0.1 - - level-supports@4.0.1: {} - - level-transcoder@1.0.1: - dependencies: - buffer: 6.0.3 - module-error: 1.0.2 - - levn@0.4.1: - dependencies: - prelude-ls: 1.2.1 - type-check: 0.4.0 - - lie@3.1.1: - dependencies: - immediate: 3.0.6 - - lilconfig@3.1.3: {} - - lines-and-columns@1.2.4: {} - - load-json-file@4.0.0: - dependencies: - graceful-fs: 4.2.11 - parse-json: 4.0.0 - pify: 3.0.0 - strip-bom: 3.0.0 - - localforage@1.10.0: - dependencies: - lie: 3.1.1 - - locate-path@6.0.0: - dependencies: - p-locate: 5.0.0 - - locate-path@7.2.0: - dependencies: - p-locate: 6.0.0 - - lodash.camelcase@4.3.0: {} - - lodash.isplainobject@4.0.6: {} - - lodash.kebabcase@4.1.1: {} - - lodash.memoize@4.1.2: {} - - lodash.merge@4.6.2: {} - - lodash.mergewith@4.6.2: {} - - lodash.snakecase@4.1.1: {} - - lodash.startcase@4.4.0: {} - - lodash.uniq@4.5.0: {} - - lodash.upperfirst@4.3.1: {} - - loupe@3.1.3: {} - - lru-cache@10.0.1: {} - - lru-cache@11.0.0: {} - - magic-string@0.30.17: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - - mdn-data@2.0.28: {} - - mdn-data@2.0.30: {} - - memorystream@0.3.1: {} - - meow@12.1.0: {} - - meow@13.2.0: {} - - merge2@1.4.1: {} - - micromatch@4.0.8: - dependencies: - braces: 3.0.3 - picomatch: 2.3.1 - - mime-db@1.52.0: {} - - mime-types@2.1.35: - dependencies: - mime-db: 1.52.0 - - minimatch@10.0.1: - dependencies: - brace-expansion: 2.0.1 - - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.11 - - minimatch@9.0.4: - dependencies: - brace-expansion: 2.0.1 - - minimist@1.2.8: {} - - minipass@7.1.2: {} - - mkdirp@3.0.1: {} - - module-error@1.0.2: {} - - ms@2.1.3: {} - - nanoid@3.3.8: {} - - napi-macros@2.2.2: {} - - natural-compare@1.4.0: {} - - nedb-promises@6.2.3: - dependencies: - '@seald-io/nedb': 4.0.4 - - neo-async@2.6.2: {} - - nice-try@1.0.5: {} - - node-addon-api@7.1.1: - optional: true - - node-gyp-build@4.6.0: {} - - node-releases@2.0.19: {} - - normalize-package-data@2.5.0: - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.1 - semver: 5.7.1 - validate-npm-package-license: 3.0.4 - - normalize-package-data@6.0.0: - dependencies: - hosted-git-info: 7.0.0 - is-core-module: 2.11.0 - semver: 7.7.1 - validate-npm-package-license: 3.0.4 - - npm-run-all@4.1.5: - dependencies: - ansi-styles: 3.2.1 - chalk: 2.4.2 - cross-spawn: 6.0.5 - memorystream: 0.3.1 - minimatch: 3.1.2 - pidtree: 0.3.1 - read-pkg: 3.0.0 - shell-quote: 1.8.0 - string.prototype.padend: 3.1.4 - - nth-check@2.1.1: - dependencies: - boolbase: 1.0.0 - - object-inspect@1.12.3: {} - - object-keys@1.1.1: {} - - object.assign@4.1.4: - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - has-symbols: 1.0.3 - object-keys: 1.1.1 - - optionator@0.9.3: - dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 - - p-limit@3.1.0: - dependencies: - yocto-queue: 0.1.0 - - p-limit@4.0.0: - dependencies: - yocto-queue: 1.0.0 - - p-locate@5.0.0: - dependencies: - p-limit: 3.1.0 - - p-locate@6.0.0: - dependencies: - p-limit: 4.0.0 - - p-queue@8.1.0: - dependencies: - eventemitter3: 5.0.1 - p-timeout: 6.1.4 - - p-timeout@6.1.4: {} - - package-json-from-dist@1.0.0: {} - - parent-module@1.0.1: - dependencies: - callsites: 3.1.0 - - parse-json@4.0.0: - dependencies: - error-ex: 1.3.2 - json-parse-better-errors: 1.0.2 - - parse-json@5.2.0: - dependencies: - '@babel/code-frame': 7.24.7 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 - - parse-json@8.1.0: - dependencies: - '@babel/code-frame': 7.24.7 - index-to-position: 0.1.2 - type-fest: 4.20.0 - - path-exists@4.0.0: {} - - path-exists@5.0.0: {} - - path-key@2.0.1: {} - - path-key@3.1.1: {} - - path-parse@1.0.7: {} - - path-scurry@2.0.0: - dependencies: - lru-cache: 11.0.0 - minipass: 7.1.2 - - path-type@3.0.0: - dependencies: - pify: 3.0.0 - - path-type@4.0.0: {} - - pathe@2.0.3: {} - - pathval@2.0.0: {} - - picocolors@1.1.1: {} - - picomatch@2.3.1: {} - - pidtree@0.3.1: {} - - pify@3.0.0: {} - - postcss-calc@10.1.1(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-selector-parser: 7.1.0 - postcss-value-parser: 4.2.0 - - postcss-colormin@7.0.2(postcss@8.5.2): - dependencies: - browserslist: 4.24.4 - caniuse-api: 3.0.0 - colord: 2.9.3 - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-convert-values@7.0.4(postcss@8.5.2): - dependencies: - browserslist: 4.24.4 - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-discard-comments@7.0.3(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-selector-parser: 6.1.2 - - postcss-discard-duplicates@7.0.1(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - - postcss-discard-empty@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - - postcss-discard-overridden@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - - postcss-merge-longhand@7.0.4(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - stylehacks: 7.0.4(postcss@8.5.2) - - postcss-merge-rules@7.0.4(postcss@8.5.2): - dependencies: - browserslist: 4.24.4 - caniuse-api: 3.0.0 - cssnano-utils: 5.0.0(postcss@8.5.2) - postcss: 8.5.2 - postcss-selector-parser: 6.1.2 - - postcss-minify-font-values@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-minify-gradients@7.0.0(postcss@8.5.2): - dependencies: - colord: 2.9.3 - cssnano-utils: 5.0.0(postcss@8.5.2) - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-minify-params@7.0.2(postcss@8.5.2): - dependencies: - browserslist: 4.24.4 - cssnano-utils: 5.0.0(postcss@8.5.2) - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-minify-selectors@7.0.4(postcss@8.5.2): - dependencies: - cssesc: 3.0.0 - postcss: 8.5.2 - postcss-selector-parser: 6.1.2 - - postcss-modules-extract-imports@3.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - - postcss-modules-local-by-default@4.2.0(postcss@8.5.2): - dependencies: - icss-utils: 5.1.0(postcss@8.5.2) - postcss: 8.5.2 - postcss-selector-parser: 7.1.0 - postcss-value-parser: 4.2.0 - - postcss-modules-scope@3.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-selector-parser: 6.0.11 - - postcss-modules-values@4.0.0(postcss@8.5.2): - dependencies: - icss-utils: 5.1.0(postcss@8.5.2) - postcss: 8.5.2 - - postcss-normalize-charset@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - - postcss-normalize-display-values@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-normalize-positions@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-normalize-repeat-style@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-normalize-string@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-normalize-timing-functions@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-normalize-unicode@7.0.2(postcss@8.5.2): - dependencies: - browserslist: 4.24.4 - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-normalize-url@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-normalize-whitespace@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-ordered-values@7.0.1(postcss@8.5.2): - dependencies: - cssnano-utils: 5.0.0(postcss@8.5.2) - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-reduce-initial@7.0.2(postcss@8.5.2): - dependencies: - browserslist: 4.24.4 - caniuse-api: 3.0.0 - postcss: 8.5.2 - - postcss-reduce-transforms@7.0.0(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - - postcss-selector-parser@6.0.11: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-selector-parser@6.1.2: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-selector-parser@7.1.0: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-svgo@7.0.1(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-value-parser: 4.2.0 - svgo: 3.3.2 - - postcss-unique-selectors@7.0.3(postcss@8.5.2): - dependencies: - postcss: 8.5.2 - postcss-selector-parser: 6.1.2 - - postcss-value-parser@4.2.0: {} - - postcss@8.5.2: - dependencies: - nanoid: 3.3.8 - picocolors: 1.1.1 - source-map-js: 1.2.1 - - prelude-ls@1.2.1: {} - - prettier@3.5.2: {} - - punycode@2.3.0: {} - - query-string@9.1.1: - dependencies: - decode-uri-component: 0.4.1 - filter-obj: 5.1.0 - split-on-first: 3.0.0 - - queue-microtask@1.2.3: {} - - read-package-up@11.0.0: - dependencies: - find-up-simple: 1.0.0 - read-pkg: 9.0.1 - type-fest: 4.20.0 - - read-pkg@3.0.0: - dependencies: - load-json-file: 4.0.0 - normalize-package-data: 2.5.0 - path-type: 3.0.0 - - read-pkg@9.0.1: - dependencies: - '@types/normalize-package-data': 2.4.4 - normalize-package-data: 6.0.0 - parse-json: 8.1.0 - type-fest: 4.20.0 - unicorn-magic: 0.1.0 - - readdirp@4.0.1: {} - - regexp.prototype.flags@1.4.3: - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 - - require-directory@2.1.1: {} - - require-from-string@2.0.2: {} - - resolve-from@4.0.0: {} - - resolve-from@5.0.0: {} - - resolve-pkg-maps@1.0.0: {} - - resolve.exports@2.0.3: {} - - resolve@1.22.1: - dependencies: - is-core-module: 2.11.0 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - - resolve@1.22.10: - dependencies: - is-core-module: 2.16.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - - reusify@1.0.4: {} - - rimraf@6.0.1: - dependencies: - glob: 11.0.0 - package-json-from-dist: 1.0.0 - - rollup-plugin-styler@2.0.0(rollup@4.34.8)(typescript@5.7.3): - dependencies: - '@rollup/pluginutils': 5.1.2(rollup@4.34.8) - cosmiconfig: 8.3.6(typescript@5.7.3) - cssnano: 7.0.6(postcss@8.5.2) - fs-extra: 11.3.0 - icss-utils: 5.1.0(postcss@8.5.2) - mime-types: 2.1.35 - p-queue: 8.1.0 - postcss: 8.5.2 - postcss-modules-extract-imports: 3.0.0(postcss@8.5.2) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.2) - postcss-modules-scope: 3.0.0(postcss@8.5.2) - postcss-modules-values: 4.0.0(postcss@8.5.2) - postcss-value-parser: 4.2.0 - query-string: 9.1.1 - resolve: 1.22.10 - resolve.exports: 2.0.3 - rollup: 4.34.8 - source-map-js: 1.2.1 - tslib: 2.8.1 - transitivePeerDependencies: - - typescript - - rollup-plugin-swc3@0.12.1(@swc/core@1.10.18)(rollup@4.34.8): - dependencies: - '@dual-bundle/import-meta-resolve': 4.1.0 - '@fastify/deepmerge': 2.0.0 - '@rollup/pluginutils': 5.1.2(rollup@4.34.8) - '@swc/core': 1.10.18 - get-tsconfig: 4.8.1 - rollup: 4.34.8 - rollup-preserve-directives: 1.1.2(rollup@4.34.8) - - rollup-preserve-directives@1.1.2(rollup@4.34.8): - dependencies: - magic-string: 0.30.17 - rollup: 4.34.8 - - rollup@4.34.8: - dependencies: - '@types/estree': 1.0.6 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.34.8 - '@rollup/rollup-android-arm64': 4.34.8 - '@rollup/rollup-darwin-arm64': 4.34.8 - '@rollup/rollup-darwin-x64': 4.34.8 - '@rollup/rollup-freebsd-arm64': 4.34.8 - '@rollup/rollup-freebsd-x64': 4.34.8 - '@rollup/rollup-linux-arm-gnueabihf': 4.34.8 - '@rollup/rollup-linux-arm-musleabihf': 4.34.8 - '@rollup/rollup-linux-arm64-gnu': 4.34.8 - '@rollup/rollup-linux-arm64-musl': 4.34.8 - '@rollup/rollup-linux-loongarch64-gnu': 4.34.8 - '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8 - '@rollup/rollup-linux-riscv64-gnu': 4.34.8 - '@rollup/rollup-linux-s390x-gnu': 4.34.8 - '@rollup/rollup-linux-x64-gnu': 4.34.8 - '@rollup/rollup-linux-x64-musl': 4.34.8 - '@rollup/rollup-win32-arm64-msvc': 4.34.8 - '@rollup/rollup-win32-ia32-msvc': 4.34.8 - '@rollup/rollup-win32-x64-msvc': 4.34.8 - fsevents: 2.3.3 - - run-parallel@1.2.0: - dependencies: - queue-microtask: 1.2.3 - - safe-regex-test@1.0.0: - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.0 - is-regex: 1.1.4 - - sass@1.85.0: - dependencies: - chokidar: 4.0.3 - immutable: 5.0.3 - source-map-js: 1.2.1 - optionalDependencies: - '@parcel/watcher': 2.4.1 - - semver@5.7.1: {} - - semver@7.7.1: {} - - shebang-command@1.2.0: - dependencies: - shebang-regex: 1.0.0 - - shebang-command@2.0.0: - dependencies: - shebang-regex: 3.0.0 - - shebang-regex@1.0.0: {} - - shebang-regex@3.0.0: {} - - shell-quote@1.8.0: {} - - side-channel@1.0.4: - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.0 - object-inspect: 1.12.3 - - siginfo@2.0.0: {} - - signal-exit@4.1.0: {} - - source-map-js@1.2.1: {} - - source-map@0.6.1: {} - - spdx-correct@3.2.0: - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 - - spdx-exceptions@2.3.0: {} - - spdx-expression-parse@3.0.1: - dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 - - spdx-license-ids@3.0.13: {} - - split-on-first@3.0.0: {} - - split2@4.2.0: {} - - stackback@0.0.2: {} - - std-env@3.8.0: {} - - string-width@4.2.3: - dependencies: - emoji-regex: 8.0.0 - is-fullwidth-code-point: 3.0.0 - strip-ansi: 6.0.1 - - string-width@5.1.2: - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.0.1 - - string.prototype.padend@3.1.4: - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - - string.prototype.trim@1.2.7: - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - - string.prototype.trimend@1.0.6: - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - - string.prototype.trimstart@1.0.6: - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - - strip-ansi@6.0.1: - dependencies: - ansi-regex: 5.0.1 - - strip-ansi@7.0.1: - dependencies: - ansi-regex: 6.0.1 - - strip-bom@3.0.0: {} - - strip-json-comments@3.1.1: {} - - stylehacks@7.0.4(postcss@8.5.2): - dependencies: - browserslist: 4.24.4 - postcss: 8.5.2 - postcss-selector-parser: 6.1.2 - - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - - supports-color@7.2.0: - dependencies: - has-flag: 4.0.0 - - supports-preserve-symlinks-flag@1.0.0: {} - - svgo@3.3.2: - dependencies: - '@trysound/sax': 0.2.0 - commander: 7.2.0 - css-select: 5.1.0 - css-tree: 2.3.1 - css-what: 6.1.0 - csso: 5.0.5 - picocolors: 1.1.1 - - temp-dir@3.0.0: {} - - tempfile@5.0.0: - dependencies: - temp-dir: 3.0.0 - - text-extensions@2.4.0: {} - - through@2.3.8: {} - - tinybench@2.9.0: {} - - tinyexec@0.3.2: {} - - tinypool@1.0.2: {} - - tinyrainbow@2.0.0: {} - - tinyspy@3.0.2: {} - - to-regex-range@5.0.1: - dependencies: - is-number: 7.0.0 - - ts-api-utils@2.0.1(typescript@5.7.3): - dependencies: - typescript: 5.7.3 - - tslib@2.8.1: {} - - type-check@0.4.0: - dependencies: - prelude-ls: 1.2.1 - - type-fest@4.20.0: {} - - typed-array-length@1.0.4: - dependencies: - call-bind: 1.0.2 - for-each: 0.3.3 - is-typed-array: 1.1.10 - - typescript-eslint@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3): - dependencies: - '@typescript-eslint/eslint-plugin': 8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/parser': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/utils': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - eslint: 9.21.0(jiti@2.4.2) - typescript: 5.7.3 - transitivePeerDependencies: - - supports-color - - typescript@5.7.3: {} - - uglify-js@3.17.4: - optional: true - - unbox-primitive@1.0.2: - dependencies: - call-bind: 1.0.2 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 - - undici-types@5.26.5: {} - - unicorn-magic@0.1.0: {} - - universalify@2.0.0: {} - - update-browserslist-db@1.1.2(browserslist@4.24.4): - dependencies: - browserslist: 4.24.4 - escalade: 3.2.0 - picocolors: 1.1.1 - - uri-js@4.4.1: - dependencies: - punycode: 2.3.0 - - util-deprecate@1.0.2: {} - - util@0.12.5: - dependencies: - inherits: 2.0.4 - is-arguments: 1.1.1 - is-generator-function: 1.0.10 - is-typed-array: 1.1.10 - which-typed-array: 1.1.9 - - validate-npm-package-license@3.0.4: - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - - vite-node@3.0.6(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0): - dependencies: - cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 - pathe: 2.0.3 - vite: 6.1.1(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0) - transitivePeerDependencies: - - '@types/node' - - jiti - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - - vite@6.1.1(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0): - dependencies: - esbuild: 0.24.2 - postcss: 8.5.2 - rollup: 4.34.8 - optionalDependencies: - '@types/node': 18.19.76 - fsevents: 2.3.3 - jiti: 2.4.2 - sass: 1.85.0 - - vitest@3.0.6(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0): - dependencies: - '@vitest/expect': 3.0.6 - '@vitest/mocker': 3.0.6(vite@6.1.1(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0)) - '@vitest/pretty-format': 3.0.6 - '@vitest/runner': 3.0.6 - '@vitest/snapshot': 3.0.6 - '@vitest/spy': 3.0.6 - '@vitest/utils': 3.0.6 - chai: 5.2.0 - debug: 4.4.0 - expect-type: 1.1.0 - magic-string: 0.30.17 - pathe: 2.0.3 - std-env: 3.8.0 - tinybench: 2.9.0 - tinyexec: 0.3.2 - tinypool: 1.0.2 - tinyrainbow: 2.0.0 - vite: 6.1.1(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0) - vite-node: 3.0.6(@types/node@18.19.76)(jiti@2.4.2)(sass@1.85.0) - why-is-node-running: 2.3.0 - optionalDependencies: - '@types/node': 18.19.76 - transitivePeerDependencies: - - jiti - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - - which-boxed-primitive@1.0.2: - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - - which-typed-array@1.1.9: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 - - which@1.3.1: - dependencies: - isexe: 2.0.0 - - which@2.0.2: - dependencies: - isexe: 2.0.0 - - why-is-node-running@2.3.0: - dependencies: - siginfo: 2.0.0 - stackback: 0.0.2 - - wordwrap@1.0.0: {} - - wrap-ansi@7.0.0: - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - - wrap-ansi@8.1.0: - dependencies: - ansi-styles: 6.2.1 - string-width: 5.1.2 - strip-ansi: 7.0.1 - - y18n@5.0.8: {} - - yargs-parser@21.1.1: {} - - yargs@17.7.2: - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - - yocto-queue@0.1.0: {} - - yocto-queue@1.0.0: {} diff --git a/pnpm-lock.yaml.license b/pnpm-lock.yaml.license deleted file mode 100644 index 31803f36..00000000 --- a/pnpm-lock.yaml.license +++ /dev/null @@ -1,3 +0,0 @@ -SPDX-FileCopyrightText: 2021 Johannes Loher - -SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/prettier.config.js b/prettier.config.js deleted file mode 100644 index c75da361..00000000 --- a/prettier.config.js +++ /dev/null @@ -1,16 +0,0 @@ -// SPDX-FileCopyrightText: 2021 Johannes Loher -// -// SPDX-License-Identifier: MIT - -// @ts-check - -/** - * @type {import("prettier").Config} - */ -export default { - semi: true, - trailingComma: "all", - singleQuote: false, - printWidth: 120, - tabWidth: 2, -}; diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 16438b93..00000000 --- a/renovate.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:base", ":automergeAll", ":automergePr", ":prHourlyLimitNone", ":prConcurrentLimitNone"], - "packageRules": [ - { - "matchPackagePatterns": ["^@pixi"], - "enabled": false - }, - { - "matchPackageNames": ["@types/node"], - "matchUpdateTypes": ["major"], - "enabled": false - } - ] -} diff --git a/renovate.json.license b/renovate.json.license deleted file mode 100644 index 31803f36..00000000 --- a/renovate.json.license +++ /dev/null @@ -1,3 +0,0 @@ -SPDX-FileCopyrightText: 2021 Johannes Loher - -SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/rollup.config.js b/rollup.config.js deleted file mode 100644 index af0c04d8..00000000 --- a/rollup.config.js +++ /dev/null @@ -1,63 +0,0 @@ -// SPDX-FileCopyrightText: 2021 Johannes Loher -// -// SPDX-License-Identifier: MIT - -import styles from "rollup-plugin-styler"; -import { swc } from "rollup-plugin-swc3"; - -import { copy } from "@guanghechen/rollup-plugin-copy"; - -import { distDirectory, name, sourceDirectory } from "./tools/const.js"; - -const staticFiles = [ - ".reuse", - "assets", - "ATTRIBUTION.md", - "fonts", - "lang", - "LICENSE.md", - "LICENSES", - "README.md", - "system.json.license", - "system.json", - "template.json.license", - "template.json", - "templates", -]; -const isProduction = process.env.NODE_ENV === "production"; - -/** - * @type {import('rollup').RollupOptions} - */ -const config = { - input: { [name]: `${sourceDirectory}/${name}.ts` }, - output: { - dir: distDirectory, - format: "es", - sourcemap: true, - assetFileNames: "[name].[ext]", - }, - plugins: [ - swc({ - jsc: { - minify: isProduction && { - sourceMap: true, - mangle: { - keepClassNames: true, - keepFnNames: true, - }, - }, - }, - sourceMaps: true, - }), - styles({ - mode: ["extract", `css/${name}.css`], - url: false, - sourceMap: true, - minimize: isProduction, - }), - copy({ targets: [{ src: staticFiles, dest: distDirectory }] }), - ], -}; - -export default config; diff --git a/scss/components/actor/_actor_header.scss b/scss/components/actor/_actor_header.scss deleted file mode 100644 index 068c0f1a..00000000 --- a/scss/components/actor/_actor_header.scss +++ /dev/null @@ -1,55 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/mixins"; - -.ds4-actor-header { - display: flex; - flex-grow: 0; - flex-shrink: 0; - gap: 1em; - - &__img { - border: none; - height: 100px; - width: 100px; - &--editable { - cursor: pointer; - } - } - - &__data { - display: flex; - flex-direction: column; - } - - &__data-row { - align-content: center; - display: flex; - flex: 1; - flex-direction: row; - gap: 0.5em; - > * { - flex: 1; - } - } - - &__name { - display: flex; - align-items: center; - border-bottom: 0; - margin: 0; - } - - &__name-input[type="text"] { - @include mixins.font-heading-upper; - background-color: transparent; - border: none; - flex: 1; - font-size: 1.25em; - height: auto; - } -} diff --git a/scss/components/actor/_actor_progression.scss b/scss/components/actor/_actor_progression.scss deleted file mode 100644 index 15ac258c..00000000 --- a/scss/components/actor/_actor_progression.scss +++ /dev/null @@ -1,48 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * SPDX-FileCopyrightText: 2021 Oliver Rümpelein - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/colors"; -@use "../../utils/mixins"; -@use "../../utils/variables"; - -.ds4-actor-progression { - @include mixins.mark-invalid-or-disabled-input; - display: flex; - gap: 0.5em; - - &__entry { - align-items: center; - display: flex; - flex: 1; - gap: 0.25em; - justify-content: flex-end; - } - - &__label { - @include mixins.font-heading-upper; - border: none; - color: colors.$c-light-grey; - margin: 0; - padding: 0; - text-align: right; - } - - &__input { - flex: 0 0 5ch; - - &--slayer-points { - &::-webkit-inner-spin-button, - &::-webkit-outer-spin-button { - -webkit-appearance: auto; - } - &:hover, - &:focus { - -moz-appearance: auto; - } - } - } -} diff --git a/scss/components/actor/_actor_properties.scss b/scss/components/actor/_actor_properties.scss deleted file mode 100644 index 78edeb28..00000000 --- a/scss/components/actor/_actor_properties.scss +++ /dev/null @@ -1,36 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * SPDX-FileCopyrightText: 2021 Oliver Rümpelein - * SPDX-FileCopyrightText: 2021 Gesina Schwalbe - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/mixins"; -@use "../../utils/variables"; - -.ds4-actor-properties { - @include mixins.mark-invalid-or-disabled-input; - display: flex; - gap: 0.25em; - - &__property { - flex: 1; - } - - &__property-label { - font-size: 0.9em; - font-weight: bold; - white-space: nowrap; - } - - &__property-select { - width: 100%; - height: var(--form-field-height); - } - - &__property-multi-input { - display: flex; - gap: 0.125em; - } -} diff --git a/scss/components/actor/_actor_sheet.scss b/scss/components/actor/_actor_sheet.scss deleted file mode 100644 index 7d21ec9c..00000000 --- a/scss/components/actor/_actor_sheet.scss +++ /dev/null @@ -1,10 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-actor-sheet { - min-height: 645px; - min-width: 650px; -} diff --git a/scss/components/actor/_biography.scss b/scss/components/actor/_biography.scss deleted file mode 100644 index cf033a71..00000000 --- a/scss/components/actor/_biography.scss +++ /dev/null @@ -1,11 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-biography-tab-content { - display: grid; - grid-template-columns: 1fr 3fr; - column-gap: 1em; -} diff --git a/scss/components/actor/_check.scss b/scss/components/actor/_check.scss deleted file mode 100644 index 2b64328b..00000000 --- a/scss/components/actor/_check.scss +++ /dev/null @@ -1,35 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/mixins"; - -.ds4-check { - background: transparent; - border: none; - cursor: pointer; - display: flex; - font-family: inherit; - font-size: inherit; - justify-content: space-between; - line-height: inherit; - margin: 0; - - &:focus { - box-shadow: none; - } - - &:hover { - @include mixins.foundry-highlight-text-shadow; - box-shadow: none; - } - - &[disabled] { - cursor: auto; - &:hover { - text-shadow: none; - } - } -} diff --git a/scss/components/actor/_checks.scss b/scss/components/actor/_checks.scss deleted file mode 100644 index 47f0c77a..00000000 --- a/scss/components/actor/_checks.scss +++ /dev/null @@ -1,15 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-checks { - column-gap: 2em; - display: grid; - grid-auto-flow: column; - grid-template-columns: 1fr 1fr 1fr; - grid-template-rows: repeat(10, 1fr); - row-gap: 0.25em; - white-space: nowrap; -} diff --git a/scss/components/actor/_combat_value.scss b/scss/components/actor/_combat_value.scss deleted file mode 100644 index 184aa31e..00000000 --- a/scss/components/actor/_combat_value.scss +++ /dev/null @@ -1,73 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/mixins"; -@use "../../utils/variables"; - -.ds4-combat-value { - $size: 3.75rem; - - display: grid; - place-items: center; - row-gap: 0.125em; - - &__value { - $combat-values-icons-path: "#{variables.$official-icons-path}/combat-values"; - @include mixins.centered-content; - - background-position: center; - background-repeat: no-repeat; - background-size: contain; - font-size: 1.5em; - height: $size; - width: $size; - - &--hitPoints { - background-image: url("#{$combat-values-icons-path}/hit-points.png"); - } - &--defense { - background-image: url("#{$combat-values-icons-path}/defense.png"); - } - &--initiative { - background-image: url("#{$combat-values-icons-path}/initiative.png"); - } - &--movement { - background-image: url("#{$combat-values-icons-path}/movement-rate.png"); - } - &--meleeAttack { - background-image: url("#{$combat-values-icons-path}/melee-attack.png"); - } - &--rangedAttack { - background-image: url("#{$combat-values-icons-path}/ranged-attack.png"); - } - &--spellcasting { - background-image: url("#{$combat-values-icons-path}/spellcasting.png"); - } - &--targetedSpellcasting { - background-image: url("#{$combat-values-icons-path}/targeted-spellcasting.png"); - } - } - - &__label { - @include mixins.font-heading-upper; - font-size: 1.2em; - white-space: nowrap; - } - - &__formula { - align-items: center; - justify-content: space-between; - display: flex; - gap: 0.15em; - text-align: center; - width: $size; - } - - &__formula-base, - &__formula-modifier { - flex: 1 1 4em; - } -} diff --git a/scss/components/actor/_combat_values.scss b/scss/components/actor/_combat_values.scss deleted file mode 100644 index def84140..00000000 --- a/scss/components/actor/_combat_values.scss +++ /dev/null @@ -1,15 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/variables"; - -.ds4-combat-values { - border-bottom: variables.$border-groove; - display: flex; - margin: variables.$margin-sm 0; - padding-bottom: variables.$margin-sm; - justify-content: space-between; -} diff --git a/scss/components/actor/_core_value.scss b/scss/components/actor/_core_value.scss deleted file mode 100644 index 140ca89e..00000000 --- a/scss/components/actor/_core_value.scss +++ /dev/null @@ -1,42 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/colors"; -@use "../../utils/mixins"; -@use "../../utils/variables"; - -.ds4-core-value { - align-items: center; - display: flex; - - &__label { - @include mixins.font-heading-upper; - flex: 1; - font-size: 2em; - text-align: center; - } - - &__value { - align-items: center; - display: flex; - flex: 1.1; - font-size: 1.2em; - gap: 0.15em; - text-align: center; - } - - &__value-input, - &__value-total { - flex: 1 1 4em; - } - - &--trait { - .ds4-core-value__label { - -webkit-text-stroke: 1px colors.$c-black; - color: transparent; - } - } -} diff --git a/scss/components/actor/_core_values.scss b/scss/components/actor/_core_values.scss deleted file mode 100644 index cf1dc459..00000000 --- a/scss/components/actor/_core_values.scss +++ /dev/null @@ -1,15 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/colors"; -@use "../../utils/variables"; - -.ds4-core-values { - column-gap: 0.5em; - display: grid; - grid-template-columns: repeat(3, 1fr); - row-gap: 0.5em; -} diff --git a/scss/components/actor/_currency.scss b/scss/components/actor/_currency.scss deleted file mode 100644 index 2cbe3c31..00000000 --- a/scss/components/actor/_currency.scss +++ /dev/null @@ -1,22 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/variables"; - -.ds4-currency { - align-items: center; - display: flex; - gap: 1em; - margin: 0.5em 0; -} - -.ds4-currency-title { - border-bottom: variables.$border-groove; - font-weight: bold; - margin-bottom: 0; - margin-top: 1em; - padding-left: 1em; -} diff --git a/scss/components/actor/_description.scss b/scss/components/actor/_description.scss deleted file mode 100644 index 37830530..00000000 --- a/scss/components/actor/_description.scss +++ /dev/null @@ -1,9 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2022 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-description { - height: 100%; -} diff --git a/scss/components/actor/_profile.scss b/scss/components/actor/_profile.scss deleted file mode 100644 index cad7b14c..00000000 --- a/scss/components/actor/_profile.scss +++ /dev/null @@ -1,28 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-profile { - display: flex; - flex-direction: column; - gap: 0.5em; - - &__entry { - display: flex; - flex-direction: column; - align-items: center; - } - - &__entry-input { - &--multiline { - resize: none; - } - } - - &__entry-label { - font-size: 0.8em; - font-weight: bold; - } -} diff --git a/scss/components/dice/_dice_total.scss b/scss/components/dice/_dice_total.scss deleted file mode 100644 index 5d041aef..00000000 --- a/scss/components/dice/_dice_total.scss +++ /dev/null @@ -1,26 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/colors"; - -// Needs to be nested in .dice-roll to win against foundry's style.css with respect to specificity -.dice-roll .ds4-dice-total { - @mixin color-filter($rotation) { - filter: sepia(0.5) hue-rotate($rotation); - } - - &--coup { - @include color-filter(60deg); - background-color: colors.$c-coup-bg; - color: colors.$c-coup; - } - - &--fumble { - @include color-filter(-60deg); - background-color: colors.$c-fumble-bg; - color: colors.$c-fumble; - } -} diff --git a/scss/components/item/_item_header.scss b/scss/components/item/_item_header.scss deleted file mode 100644 index 2e122a36..00000000 --- a/scss/components/item/_item_header.scss +++ /dev/null @@ -1,51 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/colors"; -@use "../../utils/mixins"; - -.ds4-item-header { - align-items: center; - display: flex; - gap: 1em; - - &__img { - border: none; - cursor: pointer; - height: 100px; - width: 100px; - } - - &__data { - flex: 1; - } - - &__type { - @include mixins.font-heading-upper; - border: none; - color: colors.$c-light-grey; - margin-bottom: 0; - } - - &__name { - border: none; - margin: 0; - } - - &__name-label { - display: none; - } - - &__name-input[type="text"] { - @include mixins.font-heading-upper; - background-color: transparent; - border: none; - font-size: 1.25em; - height: auto; - padding-left: 0; - padding-right: 0; - } -} diff --git a/scss/components/item/_item_properties.scss b/scss/components/item/_item_properties.scss deleted file mode 100644 index 903fa97e..00000000 --- a/scss/components/item/_item_properties.scss +++ /dev/null @@ -1,21 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * SPDX-FileCopyrightText: 2021 Gesina Schwalbe - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/mixins"; -@use "../../utils/variables"; - -.ds4-item-properties { - @include mixins.mark-invalid-or-disabled-input; - - &__title { - border-bottom: variables.$border-groove; - font-weight: bold; - margin-bottom: 0; - margin-top: 1em; - padding-left: 1em; - } -} diff --git a/scss/components/item/_item_sheet.scss b/scss/components/item/_item_sheet.scss deleted file mode 100644 index eef6e821..00000000 --- a/scss/components/item/_item_sheet.scss +++ /dev/null @@ -1,10 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-item-sheet { - min-height: 400px; - min-width: 540px; -} diff --git a/scss/components/shared/_add_button.scss b/scss/components/shared/_add_button.scss deleted file mode 100644 index 0b61713d..00000000 --- a/scss/components/shared/_add_button.scss +++ /dev/null @@ -1,9 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-add-button { - padding: 0 calc(1em / 3); -} diff --git a/scss/components/shared/_checkbox_grid.scss b/scss/components/shared/_checkbox_grid.scss deleted file mode 100644 index 52dd9ec3..00000000 --- a/scss/components/shared/_checkbox_grid.scss +++ /dev/null @@ -1,27 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2022 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-checkbox-grid { - $gap: 3px; - gap: $gap; - display: grid; - font-size: var(--font-size-12); - grid-template-columns: 1fr 1fr; - - &__item { - align-items: center; - display: flex; - gap: $gap; - justify-content: flex-start; - > * { - flex: 0 0 auto; - } - } - - &__checkbox[type="checkbox"] { - margin: 0; - } -} diff --git a/scss/components/shared/_control_button_group.scss b/scss/components/shared/_control_button_group.scss deleted file mode 100644 index faa39058..00000000 --- a/scss/components/shared/_control_button_group.scss +++ /dev/null @@ -1,16 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-control-button-group { - display: flex; - text-align: center; - width: 100%; - padding: 0 calc(1em / 3); - - &__button { - flex: 1; - } -} diff --git a/scss/components/shared/_editor.scss b/scss/components/shared/_editor.scss deleted file mode 100644 index dead15ce..00000000 --- a/scss/components/shared/_editor.scss +++ /dev/null @@ -1,18 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-sheet-form { - .editor { - height: 100%; - - .tox { - .tox-toolbar-overlord, - .tox-toolbar__primary { - background: transparent; - } - } - } -} diff --git a/scss/components/shared/_embedded_document_list.scss b/scss/components/shared/_embedded_document_list.scss deleted file mode 100644 index 50b8d5e1..00000000 --- a/scss/components/shared/_embedded_document_list.scss +++ /dev/null @@ -1,152 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * SPDX-FileCopyrightText: 2021 Gesina Schwalbe - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/mixins"; -@use "../../utils/variables"; - -.ds4-embedded-document-list { - @include mixins.mark-invalid-or-disabled-input; - - $row-height: 1.75em; - - display: grid; - grid-column-gap: 0.5em; - grid-row-gap: 0.2em; - margin: 0; - padding: 0.5em 0; - - &--weapon { - grid-template-columns: $row-height $row-height 3ch 3fr $row-height 1fr 3ch 5fr 5ch; - :nth-child(9n + 1), - :nth-child(9n + 5), - :nth-child(9n + 6), - :nth-child(9n + 7) { - justify-self: center; - } - } - &--armor { - grid-template-columns: $row-height $row-height 3ch 3fr 1fr 1fr 3ch 5fr 5ch; - :nth-child(9n + 1), - :nth-child(9n + 7) { - justify-self: center; - } - } - &--shield { - grid-template-columns: $row-height $row-height 3ch 1fr 3ch 3fr 5ch; - :nth-child(7n + 1), - :nth-child(7n + 5) { - justify-self: center; - } - } - &--equipment { - grid-template-columns: $row-height $row-height 3ch 1fr 10ch 3fr 5ch; - :nth-child(7n + 1) { - justify-self: center; - } - } - &--loot { - grid-template-columns: $row-height 3ch 1fr 10ch 3fr 5ch; - } - &--spell { - grid-template-columns: $row-height $row-height 2fr $row-height 1fr 1fr 1fr 1fr 5ch; - :nth-child(9n + 1), - :nth-child(9n + 4) { - justify-self: center; - } - } - &--talent { - grid-template-columns: $row-height 1fr 4ch 3fr 5ch; - :nth-child(9n + 3) { - justify-self: center; - } - } - &--racial-ability, - &--language, - &--alphabet, - &--special-creature-ability { - grid-template-columns: $row-height 1fr 3fr 5ch; - } - - &--effect { - grid-template-columns: $row-height $row-height $row-height 3fr 2fr $row-height 5ch; - :nth-child(7n + 1), - :nth-child(7n + 2), - :nth-child(7n + 6) { - justify-self: center; - } - } - - &--item-effect { - grid-template-columns: $row-height 1fr 5ch; - } - - &__row { - display: contents; // TODO: Once chromium supports `grid-template-columns: subgrid` (https://bugs.chromium.org/p/chromium/issues/detail?id=618969), switch to `display: grid; grid: 1/-1; grid-template-columns: subgrid` - - &--header { - font-weight: bold; - } - - > * { - height: $row-height; - line-height: $row-height; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - } - - &__image { - border: none; - } - - &__editable { - &[type="text"], - &[type="number"] { - background-color: transparent; - border: 0; - padding: 0; - height: 100%; - } - - &--checkbox { - &[type="checkbox"] { - width: 100%; - height: 100%; - margin: 0px; - } - } - } - - &__description { - overflow: hidden; - text-overflow: ellipsis; - - :not(:first-child) { - display: none; - } - - > * { - font-size: 0.75em; - margin: 0; - overflow: hidden; - text-overflow: ellipsis; - } - } - - &__clickable { - cursor: pointer; - } -} - -.ds4-embedded-document-list-title { - border-bottom: variables.$border-groove; - font-weight: bold; - margin-bottom: 0; - margin-top: 1em; - padding-left: 1em; -} diff --git a/scss/components/shared/_form_group.scss b/scss/components/shared/_form_group.scss deleted file mode 100644 index 12687e48..00000000 --- a/scss/components/shared/_form_group.scss +++ /dev/null @@ -1,27 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2022 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-form-group { - clear: both; - display: flex; - flex-direction: row; - flex-wrap: wrap; - margin: 3px 0; - align-items: center; - - &--start { - align-items: flex-start; - } - - & > * { - flex: 3; - } - - &__label { - flex: 2; - line-height: var(--form-field-height); - } -} diff --git a/scss/components/shared/_rollable_image.scss b/scss/components/shared/_rollable_image.scss deleted file mode 100644 index 53affbcd..00000000 --- a/scss/components/shared/_rollable_image.scss +++ /dev/null @@ -1,39 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-rollable-image { - position: relative; - - &--rollable { - cursor: pointer; - - &:hover { - .ds4-rollable-image__image { - opacity: 0.25; - } - - .ds4-rollable-image__overlay { - opacity: 1; - } - } - } - - &__image { - border: none; - transition: 0.1s ease; - } - - &__overlay { - border: none; - bottom: 0; - left: 0; - opacity: 0; - position: absolute; - right: 0; - top: 0; - transition: 0.1s ease; - } -} diff --git a/scss/components/shared/_sheet_body.scss b/scss/components/shared/_sheet_body.scss deleted file mode 100644 index 3b19d5ca..00000000 --- a/scss/components/shared/_sheet_body.scss +++ /dev/null @@ -1,10 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-sheet-body { - height: 100%; - overflow-y: auto; -} diff --git a/scss/components/shared/_sheet_form.scss b/scss/components/shared/_sheet_form.scss deleted file mode 100644 index 861de722..00000000 --- a/scss/components/shared/_sheet_form.scss +++ /dev/null @@ -1,13 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-sheet-form { - display: flex; - flex-direction: column; - flex-wrap: nowrap; - font-family: var(--ds4-font-primary); - height: 100%; -} diff --git a/scss/components/shared/_sheet_tab.scss b/scss/components/shared/_sheet_tab.scss deleted file mode 100644 index ea1d13fc..00000000 --- a/scss/components/shared/_sheet_tab.scss +++ /dev/null @@ -1,19 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-sheet-tab { - flex-direction: column; - flex-wrap: nowrap; - height: 100%; - - &[data-tab].active { - display: flex; - } - - > * { - flex-shrink: 0; - } -} diff --git a/scss/components/shared/_sheet_tab_nav.scss b/scss/components/shared/_sheet_tab_nav.scss deleted file mode 100644 index 676fea60..00000000 --- a/scss/components/shared/_sheet_tab_nav.scss +++ /dev/null @@ -1,28 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "../../utils/variables"; - -.ds4-sheet-tab-nav { - border-bottom: variables.$border-groove; - border-top: variables.$border-groove; - display: flex; - flex-wrap: nowrap; - height: calc(2 * var(--line-height-16)); - justify-content: space-around; - line-height: calc(2 * var(--line-height-16)); - margin: variables.$margin-sm 0; - - &__item { - flex: 0 1 auto !important; // necessary to override the styling from lang-de, see https://gitlab.com/henry4k/foundryvtt-lang-de/-/issues/9 - font-weight: bold; - white-space: nowrap; - - &.active { - text-shadow: 0 0 variables.$padding-md var(--color-shadow-primary); - } - } -} diff --git a/scss/ds4.scss b/scss/ds4.scss deleted file mode 100644 index 4f533640..00000000 --- a/scss/ds4.scss +++ /dev/null @@ -1,49 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * SPDX-FileCopyrightText: 2021 Oliver Rümpelein - * SPDX-FileCopyrightText: 2021 Gesina Schwalbe - * - * SPDX-License-Identifier: MIT - */ - -// global -@import "global/accessibility"; -@import "global/fonts"; -@import "global/utils"; - -// shared -@import "components/shared/add_button"; -@import "components/shared/control_button_group"; -@import "components/shared/checkbox_grid"; -@import "components/shared/editor"; -@import "components/shared/embedded_document_list"; -@import "components/shared/form_group"; -@import "components/shared/rollable_image"; -@import "components/shared/sheet_body"; -@import "components/shared/sheet_form"; -@import "components/shared/sheet_tab_nav"; -@import "components/shared/sheet_tab"; - -// actor -@import "components/actor/actor_header"; -@import "components/actor/actor_progression"; -@import "components/actor/actor_properties"; -@import "components/actor/actor_sheet"; -@import "components/actor/biography"; -@import "components/actor/check"; -@import "components/actor/checks"; -@import "components/actor/combat_value"; -@import "components/actor/combat_values"; -@import "components/actor/core_value"; -@import "components/actor/core_values"; -@import "components/actor/currency"; -@import "components/actor/description"; -@import "components/actor/profile"; - -// item -@import "components/item/item_header"; -@import "components/item/item_properties"; -@import "components/item/item_sheet"; - -// dice -@import "components/dice/dice_total"; diff --git a/scss/global/_accessibility.scss b/scss/global/_accessibility.scss deleted file mode 100644 index 6e82b2c9..00000000 --- a/scss/global/_accessibility.scss +++ /dev/null @@ -1,15 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * SPDX-FileCopyrightText: 2021 Oliver Rümpelein - * - * SPDX-License-Identifier: MIT - */ - -.ds4-hidden { - display: none; -} - -// This is needed for higher specifity -form .ds4-hidden { - display: none; -} diff --git a/scss/global/_fonts.scss b/scss/global/_fonts.scss deleted file mode 100644 index 4e79e4c0..00000000 --- a/scss/global/_fonts.scss +++ /dev/null @@ -1,60 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@font-face { - font-display: swap; - font-family: "Lora"; - font-style: normal; - font-weight: normal; - src: - local("Lora"), - url("../fonts/Lora/Lora.woff") format("woff"); -} - -@font-face { - font-display: swap; - font-family: "Lora"; - font-style: normal; - font-weight: bold; - src: - local("Lora"), - url("../fonts/Lora/Lora-Bold.woff") format("woff"); -} - -@font-face { - font-display: swap; - font-family: "Lora"; - font-style: italic; - font-weight: normal; - src: - local("Lora"), - url("../fonts/Lora/Lora-Italic.woff") format("woff"); -} - -@font-face { - font-display: swap; - font-family: "Lora"; - font-style: italic; - font-weight: bold; - src: - local("Lora"), - url("../fonts/Lora/Lora-BoldItalic.woff") format("woff"); -} - -@font-face { - font-display: swap; - font-family: "Wood Stamp"; - font-style: normal; - font-weight: normal; - src: - local("Wood Stamp"), - url("../fonts/Woodstamp/Woodstamp.woff") format("woff"); -} - -:root { - --ds4-font-primary: Lora, serif; - --ds4-font-heading: "Wood Stamp", sans-serif; -} diff --git a/scss/global/_utils.scss b/scss/global/_utils.scss deleted file mode 100644 index 4f982d05..00000000 --- a/scss/global/_utils.scss +++ /dev/null @@ -1,14 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2022 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -.ds4-code-input { - font-family: var(--font-mono); -} - -// This is needed for higher specifity -form .ds4-code-input { - font-family: var(--font-mono); -} diff --git a/scss/utils/_colors.scss b/scss/utils/_colors.scss deleted file mode 100644 index 490d3294..00000000 --- a/scss/utils/_colors.scss +++ /dev/null @@ -1,16 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * SPDX-FileCopyrightText: 2021 Gesina Schwalbe - * - * SPDX-License-Identifier: MIT - */ - -$c-white: #fff; -$c-black: #000; -$c-light-grey: #777; -$c-border-groove: #eeede0; -$c-invalid-input: rgba(lightcoral, 50%); -$c-coup: #18520b; -$c-coup-bg: #acc2a7; -$c-fumble: #aa0200; -$c-fumble-bg: #d8b5ba; diff --git a/scss/utils/_mixins.scss b/scss/utils/_mixins.scss deleted file mode 100644 index edd0775f..00000000 --- a/scss/utils/_mixins.scss +++ /dev/null @@ -1,31 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * SPDX-FileCopyrightText: 2021 Gesina Schwalbe - * - * SPDX-License-Identifier: MIT - */ - -@use "./colors"; - -@mixin centered-content { - display: grid; - place-items: center; -} - -@mixin mark-invalid-or-disabled-input { - input:invalid { - background-color: colors.$c-invalid-input; - } - input:disabled { - background-color: transparent; - } -} - -@mixin foundry-highlight-text-shadow { - text-shadow: 0 0 10px var(--color-shadow-primary); -} - -@mixin font-heading-upper { - font-family: var(--ds4-font-heading); - text-transform: uppercase; -} diff --git a/scss/utils/_variables.scss b/scss/utils/_variables.scss deleted file mode 100644 index 9909c4ed..00000000 --- a/scss/utils/_variables.scss +++ /dev/null @@ -1,18 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2021 Johannes Loher - * - * SPDX-License-Identifier: MIT - */ - -@use "./colors"; - -$padding-sm: 5px; -$padding-md: 10px; -$padding-lg: 20px; -$margin-sm: $padding-sm; -$margin-md: $padding-md; -$margin-lg: $padding-lg; - -$official-icons-path: "../assets/icons/official"; - -$border-groove: 2px groove colors.$c-border-groove; diff --git a/spec/dice/check-evaluation.spec.ts b/spec/dice/check-evaluation.spec.ts deleted file mode 100644 index f905426f..00000000 --- a/spec/dice/check-evaluation.spec.ts +++ /dev/null @@ -1,374 +0,0 @@ -// SPDX-FileCopyrightText: 2021 Johannes Loher -// SPDX-FileCopyrightText: 2021 Oliver Rümpelein -// -// SPDX-License-Identifier: MIT - -import { describe, expect, it } from "vitest"; - -import { evaluateCheck } from "../../src/dice/check-evaluation"; - -describe("evaluateCheck with no dice", () => { - it("should throw an error.", () => { - expect(() => evaluateCheck([], 10)).toThrow("Invalid number of dice."); - }); -}); - -describe("evaluateCheck with more dice than required by the checkTargetNumber", () => { - it("should throw an error.", () => { - expect(() => evaluateCheck([10, 10], 10)).toThrow("Invalid number of dice."); - }); -}); - -describe("evaluateCheck with less dice than required by the checkTargetNumber", () => { - it("should throw an error.", () => { - expect(() => evaluateCheck([10], 21)).toThrow("Invalid number of dice."); - }); -}); - -describe("evaluateCheck with a single die", () => { - it("should assign the checkTargetNumber to the single die and be successful.", () => { - expect(evaluateCheck([4], 12)).toEqual([{ result: 4, checkTargetNumber: 12, active: true, discarded: false }]); - }); - - it("should assign the checkTargetNumber to the single die on upper edge case and be successful.", () => { - expect(evaluateCheck([4], 4)).toEqual([{ result: 4, checkTargetNumber: 4, active: true, discarded: false }]); - }); - - it("should assign the checkTargetNumber to the single die on lower edge case not be successful.", () => { - expect(evaluateCheck([5], 4)).toEqual([{ result: 5, checkTargetNumber: 4, active: false, discarded: true }]); - }); - - it("should assign the checkTargetNumber to the single die and not be successful on upper edge case '19'", () => { - expect(evaluateCheck([19], 4)).toEqual([{ result: 19, checkTargetNumber: 4, active: false, discarded: true }]); - }); - - it("should assign the checkTargetNumber to the single die and coup on '1'", () => { - expect(evaluateCheck([1], 4)).toEqual([ - { result: 1, checkTargetNumber: 4, active: true, discarded: false, success: true, count: 4 }, - ]); - }); - - it("should assign the checkTargetNumber to the single die and fumble on '20'", () => { - expect(evaluateCheck([20], 4)).toEqual([ - { result: 20, checkTargetNumber: 4, active: false, discarded: true, failure: true }, - ]); - }); - - it("should roll a die even when the checkTargetNumber is 0 and coup on 1", () => { - expect(evaluateCheck([1], 0)).toEqual([ - { result: 1, checkTargetNumber: 0, active: true, discarded: false, success: true, count: 0 }, - ]); - }); - - it("should roll a die even when the checkTargetNumber is 0 and fail on values > 1 and < 20", () => { - for (let i = 2; i < 20; i++) { - expect(evaluateCheck([i], 0)).toEqual([{ result: i, checkTargetNumber: 0, active: false, discarded: true }]); - } - }); - - it("should roll a die even when the checkTargetNumber is 0 and fumble on 20", () => { - expect(evaluateCheck([20], 0)).toEqual([ - { result: 20, checkTargetNumber: 0, active: false, discarded: true, failure: true }, - ]); - }); - - it("should roll a die even when the checkTargetNumber is < 0 and coup on 1", () => { - expect(evaluateCheck([1], -1)).toEqual([ - { result: 1, checkTargetNumber: -1, active: true, discarded: false, success: true, count: -1 }, - ]); - }); - - it("should roll a die even when the checkTargetNumber is < 0 and fail on values > 1 and < 20", () => { - for (let i = 2; i < 20; i++) { - expect(evaluateCheck([i], -1)).toEqual([{ result: i, checkTargetNumber: -1, active: false, discarded: true }]); - } - }); - - it("should roll a die even when the checkTargetNumber is < 0 and fumble on 20", () => { - expect(evaluateCheck([20], -1)).toEqual([ - { result: 20, checkTargetNumber: -1, active: false, discarded: true, failure: true }, - ]); - }); -}); - -describe("evaluateCheck with a single die and coup / fumble modification", () => { - const maximumCoupResult = 2; - const minimumFumbleResult = 19; - - it("should assign the checkTargetNumber to the single die and coup on 'maximumCoupResult'", () => { - expect(evaluateCheck([maximumCoupResult], 4, { maximumCoupResult })).toEqual([ - { - result: maximumCoupResult, - checkTargetNumber: 4, - active: true, - discarded: false, - success: true, - count: 4, - }, - ]); - }); - - it("should assign the checkTargetNumber to the single die and not coup on lower edge case 'maximumCoupResult + 1'", () => { - expect(evaluateCheck([maximumCoupResult + 1], 4, { maximumCoupResult })).toEqual([ - { result: maximumCoupResult + 1, checkTargetNumber: 4, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber to the single die and fumble on 'minimumFumbleResultResult'", () => { - expect(evaluateCheck([minimumFumbleResult], 20, { minimumFumbleResult })).toEqual([ - { result: minimumFumbleResult, checkTargetNumber: 20, active: true, discarded: false, failure: true }, - ]); - }); - - it("should assign the checkTargetNumber to the single die and not fumble on upper edge case 'minimumFumbleResult - 1'", () => { - expect(evaluateCheck([minimumFumbleResult - 1], 20, { minimumFumbleResult })).toEqual([ - { result: minimumFumbleResult - 1, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should roll a die even when the checkTargetNumber is 0 and coup on 'maximumCoupResult'", () => { - expect(evaluateCheck([maximumCoupResult], 0, { maximumCoupResult })).toEqual([ - { - result: maximumCoupResult, - checkTargetNumber: 0, - active: true, - discarded: false, - success: true, - count: 0, - }, - ]); - }); - - it("should roll a die even when the checkTargetNumber is 0 and fail on '> maximumCoupResult and < minimumFumbleResult", () => { - for (let i = maximumCoupResult + 1; i < minimumFumbleResult; i++) { - expect(evaluateCheck([i], 0, { maximumCoupResult, minimumFumbleResult })).toEqual([ - { result: i, checkTargetNumber: 0, active: false, discarded: true }, - ]); - } - }); - - it("should roll a die even when the checkTargetNumber is 0 and fumble on 'minimumFumbleResult'", () => { - expect(evaluateCheck([minimumFumbleResult], 0, { minimumFumbleResult })).toEqual([ - { result: minimumFumbleResult, checkTargetNumber: 0, active: false, discarded: true, failure: true }, - ]); - }); - - it("should roll a die even when the checkTargetNumber is < 0 and coup on 'maximumCoupResult'", () => { - expect(evaluateCheck([maximumCoupResult], -1, { maximumCoupResult })).toEqual([ - { - result: maximumCoupResult, - checkTargetNumber: -1, - active: true, - discarded: false, - success: true, - count: -1, - }, - ]); - }); - - it("should roll a die even when the checkTargetNumber is < 0 and fail on '> maximumCoupResult and < minimumFumbleResult", () => { - for (let i = maximumCoupResult + 1; i < minimumFumbleResult; i++) { - expect(evaluateCheck([i], -1, { maximumCoupResult, minimumFumbleResult })).toEqual([ - { result: i, checkTargetNumber: -1, active: false, discarded: true }, - ]); - } - }); - - it("should roll a die even when the checkTargetNumber is < 0 and fumble on 'minimumFumbleResult'", () => { - expect(evaluateCheck([minimumFumbleResult], -1, { minimumFumbleResult })).toEqual([ - { result: minimumFumbleResult, checkTargetNumber: -1, active: false, discarded: true, failure: true }, - ]); - }); -}); - -describe("evaluateCheck with multiple dice", () => { - it("should assign the checkTargetNumber for the last sub check to the lowest non coup, even if the first is '20'.", () => { - expect(evaluateCheck([20, 6, 15], 48)).toEqual([ - { result: 20, checkTargetNumber: 20, active: true, discarded: false, failure: true }, - { result: 6, checkTargetNumber: 8, active: true, discarded: false }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first coup if there are only coups.", () => { - expect(evaluateCheck([1, 1, 1], 48)).toEqual([ - { result: 1, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - { result: 1, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 1, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first lowest die, even if it is higher than that value.", () => { - expect(evaluateCheck([15, 15, 15], 48)).toEqual([ - { result: 15, checkTargetNumber: 8, active: false, discarded: true }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first coup if its sum with the lowest non coup is high enough.", () => { - expect(evaluateCheck([15, 15, 1], 48)).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 1, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first coup if its sum with the lowest non coup is high enough, even if the last die is '20'.", () => { - expect(evaluateCheck([15, 1, 20], 48)).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 1, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - { result: 20, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result when all dice are successes.", () => { - expect(evaluateCheck([15, 4, 12], 46)).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 4, checkTargetNumber: 6, active: true, discarded: false }, - { result: 12, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result when one dice is a failure.", () => { - expect(evaluateCheck([15, 8, 12], 46)).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 8, checkTargetNumber: 6, active: false, discarded: true }, - { result: 12, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result on 'lowest dice higher than last check target number and coups thrown'-edge case, coup not used for last sub CTN.", () => { - expect(evaluateCheck([15, 1, 8], 46)).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 1, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 8, checkTargetNumber: 6, active: false, discarded: true }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result on 2-dice 'lowest dice higher than last check target number and coups thrown'-edge case, coup not used for last sub CTN.", () => { - expect(evaluateCheck([1, 8], 24)).toEqual([ - { result: 1, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 8, checkTargetNumber: 4, active: false, discarded: true }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result on 2-dice 'lowest dice higher than last check target number and coups thrown'-edge case, coup used for last sub CTN.", () => { - expect(evaluateCheck([1, 19], 38)).toEqual([ - { result: 1, checkTargetNumber: 18, active: true, discarded: false, success: true, count: 18 }, - { result: 19, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result when there is more than one coup and a coup is used for the last sub CTN", () => { - expect(evaluateCheck([1, 1, 15], 48)).toEqual([ - { result: 1, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - { result: 1, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); -}); - -describe("evaluateCheck with multiple dice and coup / fumble modification", () => { - it("should assign the checkTargetNumber for the last sub check to the lowest non coup and fumble if the first is '19'.", () => { - expect(evaluateCheck([19, 15, 6], 48, { maximumCoupResult: 2, minimumFumbleResult: 19 })).toEqual([ - { result: 19, checkTargetNumber: 20, active: true, discarded: false, failure: true }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 6, checkTargetNumber: 8, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first coup if there are only coups ('1' and '2').", () => { - expect(evaluateCheck([2, 1, 2], 48, { maximumCoupResult: 2, minimumFumbleResult: 19 })).toEqual([ - { result: 2, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - { result: 1, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 2, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first lowest die, even if it is higher than that value.", () => { - expect(evaluateCheck([15, 15, 15], 48, { maximumCoupResult: 2, minimumFumbleResult: 19 })).toEqual([ - { result: 15, checkTargetNumber: 8, active: false, discarded: true }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first coup ('2') if its sum with the lowest non coup is high enough.", () => { - expect(evaluateCheck([15, 15, 2], 48, { maximumCoupResult: 2, minimumFumbleResult: 19 })).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 2, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first coup ('2') if its sum with the lowest non coup is high enough, even if the last die is '20'.", () => { - expect(evaluateCheck([15, 2, 20], 48, { maximumCoupResult: 2, minimumFumbleResult: 19 })).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 2, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - { result: 20, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to the first coup ('2') if its sum with the lowest non coup is high enough, even if the last die is '19'.", () => { - expect(evaluateCheck([15, 2, 19], 48, { maximumCoupResult: 2, minimumFumbleResult: 19 })).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 2, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - { result: 19, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result when all dice are successes.", () => { - expect(evaluateCheck([15, 4, 12], 46, { maximumCoupResult: 2, minimumFumbleResult: 19 })).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 4, checkTargetNumber: 6, active: true, discarded: false }, - { result: 12, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result when one dice is a failure.", () => { - expect(evaluateCheck([15, 8, 12], 46, { maximumCoupResult: 2, minimumFumbleResult: 19 })).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 8, checkTargetNumber: 6, active: false, discarded: true }, - { result: 12, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result on 'lowest dice higher than last check target number and coups ('2') thrown'-edge case, coup not used for last sub CTN.", () => { - expect(evaluateCheck([15, 2, 8], 46, { maximumCoupResult: 2 })).toEqual([ - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - { result: 2, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 8, checkTargetNumber: 6, active: false, discarded: true }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result on 2-dice 'lowest dice higher than last check target number and coups ('2') thrown'-edge case, coup not used for last sub CTN.", () => { - expect(evaluateCheck([2, 8], 24, { maximumCoupResult: 2 })).toEqual([ - { result: 2, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 8, checkTargetNumber: 4, active: false, discarded: true }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result on 2-dice 'lowest dice higher than last check target number and coups ('2') thrown'-edge case, coup used for last sub CTN.", () => { - expect(evaluateCheck([2, 19], 38, { maximumCoupResult: 2 })).toEqual([ - { result: 2, checkTargetNumber: 18, active: true, discarded: false, success: true, count: 18 }, - { result: 19, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should assign the checkTargetNumber for the last sub check to properly maximize the result when there is more than one coup ('1' and '2') and a coup is used for the last sub CTN", () => { - expect(evaluateCheck([1, 2, 15], 48, { maximumCoupResult: 2 })).toEqual([ - { result: 1, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - { result: 2, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 15, checkTargetNumber: 20, active: true, discarded: false }, - ]); - }); - - it("should use all the dice if they are coups, even if they are higher than the checkTargetNumber", () => { - expect(evaluateCheck([18, 19, 17], 48, { maximumCoupResult: 19 })).toEqual([ - { result: 18, checkTargetNumber: 8, active: true, discarded: false, success: true, count: 8 }, - { result: 19, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - { result: 17, checkTargetNumber: 20, active: true, discarded: false, success: true, count: 20 }, - ]); - }); -}); diff --git a/spec/documents/item/spell/calculate-spell-price.spec.ts b/spec/documents/item/spell/calculate-spell-price.spec.ts deleted file mode 100644 index 4f97de6c..00000000 --- a/spec/documents/item/spell/calculate-spell-price.spec.ts +++ /dev/null @@ -1,234 +0,0 @@ -// SPDX-FileCopyrightText: 2022 Johannes Loher -// -// SPDX-License-Identifier: MIT - -import { describe, expect, it } from "vitest"; - -import { calculateSpellPrice } from "../../../../src/documents/item/spell/calculate-spell-price"; - -import type { CooldownDuration, DS4SpellDataSourceData } from "../../../../src/documents/item/spell/spell-data-source"; - -const defaultData: DS4SpellDataSourceData = { - description: "", - equipped: false, - spellType: "spellcasting", - spellModifier: { - numerical: 0, - complex: "", - }, - allowsDefense: false, - spellGroups: { - lightning: false, - earth: false, - water: false, - ice: false, - fire: false, - healing: false, - light: false, - air: false, - transport: false, - damage: false, - shadow: false, - protection: false, - mindAffecting: false, - demonology: false, - necromancy: false, - transmutation: false, - area: false, - }, - maxDistance: { - value: "", - unit: "meter", - }, - effectRadius: { - value: "", - unit: "meter", - }, - duration: { - value: "", - unit: "custom", - }, - cooldownDuration: "0r", - minimumLevels: { - healer: null, - wizard: null, - sorcerer: null, - }, -}; - -type TestCase = { - minimumLevel: number | null; - expected: number | null; -}; - -type CombinedTestCase = { - minimumLevels: DS4SpellDataSourceData["minimumLevels"]; - expected: number | null; - description: string; -}; - -const testCases: Record