Compare commits

..

No commits in common. "main" and "1.20.0" have entirely different histories.
main ... 1.20.0

1466 changed files with 31820 additions and 39734 deletions

7
.eslintignore Normal file
View file

@ -0,0 +1,7 @@
# SPDX-FileCopyrightText: 2021 Johannes Loher
#
# SPDX-License-Identifier: MIT
/dist
client
common

15
.eslintrc.cjs Normal file
View file

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

2
.nvmrc
View file

@ -1 +1 @@
22
lts/*

View file

@ -2,11 +2,6 @@
//
// SPDX-License-Identifier: MIT
// @ts-check
/**
* @type {import("prettier").Config}
*/
export default {
semi: true,
trailingComma: "all",

77
.reuse/dep5 Normal file
View file

@ -0,0 +1,77 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: ds4
Upstream-Contact: Johannes Loher <johannes.loher@fg4f.de>
Source: https://git.f3l.de/dungeonslayers/ds4
Files: assets/icons/official/*
Copyright: 2021 Johannes Loher
License: CC-BY-NC-SA-4.0
Files: assets/icons/game-icons/caro-asercion/*
Copyright: Caro Asercion
License: CC-BY-3.0
Files: assets/icons/game-icons/cathelineau/*
Copyright: Cathelineau
License: CC-BY-3.0
Files: assets/icons/game-icons/darkzaitev/*
Copyright: DarkZaitzev, http://darkzaitzev.deviantart.com/
License: CC-BY-3.0
Files: assets/icons/game-icons/delapouite/*
Copyright: Delapouite, https://delapouite.com/
License: CC-BY-3.0
Files: assets/icons/game-icons/heavenly-dog/*
Copyright: HeavenlyDog, http://www.gnomosygoblins.blogspot.com/
License: CC-BY-3.0
Files: assets/icons/game-icons/lorc/*
Copyright: Lorc, http://lorcblog.blogspot.com/
License: CC-BY-3.0
Files: assets/icons/game-icons/sbed/*
Copyright: Sbed, http://opengameart.org/content/95-game-icons
License: CC-BY-3.0
Files: assets/icons/game-icons/skoll/*
Copyright: Skoll
License: CC-BY-3.0
Files: assets/icons/game-icons/willdabeast/*
Copyright: Willdabeast, http://wjbstories.blogspot.com/
License: CC-BY-3.0
Files: assets/tokens/devin-night/*
Copyright: Devin Night, https://immortalnights.com/
License: LicenseRef-DevinNightTokenUsageRights
Files: packs/creatures/*
Copyright: 2021 Sascha Martens
2021 Johannes Loher
License: CC-BY-NC-SA-4.0
Files: packs/items/*
Copyright: 2021 Johannes Loher
License: CC-BY-NC-SA-4.0
Files: packs/languages-and-scripts/*
Copyright: 2021 Johannes Loher
License: CC-BY-NC-SA-4.0
Files: packs/racial-abilities/*
Copyright: 2021 Johannes Loher
License: CC-BY-NC-SA-4.0
Files: packs/special-creature-abilities/*
Copyright: 2021 Johannes Loher
License: CC-BY-NC-SA-4.0
Files: packs/spells/*
Copyright: 2021 Sascha Martens
License: CC-BY-NC-SA-4.0
Files: packs/talents/*
Copyright: 2022 Johannes Loher
License: CC-BY-NC-SA-4.0

View file

@ -2,5 +2,6 @@
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"arcanis.vscode-zipfs"
]
}
}

6
.vscode/launch.json vendored
View file

@ -5,14 +5,12 @@
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"type": "pwa-chrome",
"request": "launch",
"runtimeExecutable": "/usr/bin/chromium",
"name": "Launch Chrome against localhost",
"url": "http://localhost:30000/game",
"pathMapping": {
"/systems/ds4": "${workspaceFolder}/dist"
}
"webRoot": "${workspaceFolder}/dist"
}
]
}

16
.vscode/settings.json vendored
View file

@ -1,20 +1,4 @@
{
"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"
},
}

View file

@ -5,7 +5,7 @@
$schema: https://raw.githubusercontent.com/woodpecker-ci/woodpecker/master/pipeline/schema/schema.json
variables:
- &node_image node:22
- &node_image node:lts
- &enable_pnpm
- corepack enable
- corepack prepare pnpm@latest --activate
@ -24,36 +24,36 @@ steps:
- <<: *enable_pnpm
- pnpm install --frozen-lockfile
lint:
depends_on: install
group: check
image: *node_image
commands:
- <<: *enable_pnpm
- pnpm lint
formatcheck:
depends_on: install
group: check
image: *node_image
commands:
- <<: *enable_pnpm
- pnpm format:check
typecheck:
depends_on: install
group: check
image: *node_image
commands:
- <<: *enable_pnpm
- pnpm typecheck
test:
depends_on: install
group: check
image: *node_image
commands:
- <<: *enable_pnpm
- pnpm test
reuse:
depends_on: install
group: check
image: fsfe/reuse:latest
commands:
- reuse lint
commitlint:
depends_on: install
group: check
image: *node_image
commands:
- <<: *enable_pnpm
@ -62,7 +62,7 @@ steps:
when:
event: pull_request
build:
depends_on: [lint, formatcheck, typecheck, test, reuse]
group: build
image: *node_image
commands:
- export APPDATA=$(pwd)

View file

@ -5,7 +5,7 @@
$schema: https://raw.githubusercontent.com/woodpecker-ci/woodpecker/master/pipeline/schema/schema.json
variables:
- &node_image node:22
- &node_image node:lts
- &enable_pnpm
- corepack enable
- corepack prepare pnpm@latest --activate
@ -23,17 +23,6 @@ variables:
- ${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
@ -49,7 +38,6 @@ steps:
- <<: *enable_pnpm
- pnpm install --frozen-lockfile
build:
depends_on: install
image: *node_image
environment:
NODE_ENV: production
@ -58,7 +46,7 @@ steps:
- <<: *enable_pnpm
- pnpm build
package:
depends_on: build
group: prepare-release
image: alpine:latest
commands:
- apk update
@ -66,67 +54,61 @@ steps:
- mv dist ${CI_REPO_NAME}
- zip -r ${CI_REPO_NAME}.zip ${CI_REPO_NAME}/*
changelog:
depends_on: build
group: prepare-release
image: *node_image
commands:
- <<: *enable_pnpm
- pnpm changelog
choose-latest-channel:
depends_on: build
group: prepare-release
image: alpine:latest
commands:
- echo latest > .RELEASE_CHANNEL
when:
<<: *is_latest_channel
choose-beta-channel:
depends_on: build
group: prepare-release
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-manifest:
group: publish
image: alpine:latest
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"'
secrets:
- forge_token
publish-to-foundry-admin:
depends_on: release-latest
image: johannesloher/foundry-publish:v4.0.0
group: publish
image: johannesloher/foundry-publish
environment:
FVTT_PACKAGE_ID:
from_secret: fvtt_package_id
FVTT_TOKEN:
from_secret: fvtt_token
FVTT_DELETE_OBSOLETE_VERSIONS: "true"
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
secrets:
- fvtt_package_id
- fvtt_username
- fvtt_password
when:
<<: *is_latest_channel

View file

@ -5,7 +5,7 @@
$schema: https://raw.githubusercontent.com/woodpecker-ci/woodpecker/master/pipeline/schema/schema.json
variables:
- &node_image node:22
- &node_image node:lts
- &enable_pnpm
- corepack enable
- corepack prepare pnpm@latest --activate
@ -25,11 +25,6 @@ steps:
- 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
@ -47,3 +42,6 @@ steps:
- git tag -f $${RELEASE_VERSION}
- git push origin ${CI_COMMIT_BRANCH}
- git push origin $${RELEASE_VERSION}
secrets:
- forge_token_name
- forge_token

View file

@ -1,116 +0,0 @@
# SPDX-FileCopyrightText: 2025 Johannes Loher
#
# SPDX-License-Identifier: MIT
version = 1
SPDX-PackageName = "ds4"
SPDX-PackageSupplier = "Johannes Loher <johannes.loher@fg4f.de>"
SPDX-PackageDownloadLocation = "https://git.f3l.de/dungeonslayers/ds4"
[[annotations]]
path = "assets/icons/official/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2021 Johannes Loher"
SPDX-License-Identifier = "CC-BY-NC-SA-4.0"
[[annotations]]
path = "assets/icons/game-icons/caro-asercion/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "Caro Asercion"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/icons/game-icons/cathelineau/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "Cathelineau"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/icons/game-icons/darkzaitev/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "DarkZaitzev, http://darkzaitzev.deviantart.com/"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/icons/game-icons/delapouite/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "Delapouite, https://delapouite.com/"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/icons/game-icons/heavenly-dog/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "HeavenlyDog, http://www.gnomosygoblins.blogspot.com/"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/icons/game-icons/lorc/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "Lorc, http://lorcblog.blogspot.com/"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/icons/game-icons/sbed/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "Sbed, http://opengameart.org/content/95-game-icons"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/icons/game-icons/skoll/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "Skoll"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/icons/game-icons/willdabeast/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "Willdabeast, http://wjbstories.blogspot.com/"
SPDX-License-Identifier = "CC-BY-3.0"
[[annotations]]
path = "assets/tokens/devin-night/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "Devin Night, https://immortalnights.com/"
SPDX-License-Identifier = "LicenseRef-DevinNightTokenUsageRights"
[[annotations]]
path = "packs/creatures/**"
precedence = "aggregate"
SPDX-FileCopyrightText = ["2021 Sascha Martens", "2021 Johannes Loher"]
SPDX-License-Identifier = "CC-BY-NC-SA-4.0"
[[annotations]]
path = "packs/items/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2021 Johannes Loher"
SPDX-License-Identifier = "CC-BY-NC-SA-4.0"
[[annotations]]
path = "packs/languages-and-scripts/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2021 Johannes Loher"
SPDX-License-Identifier = "CC-BY-NC-SA-4.0"
[[annotations]]
path = "packs/racial-abilities/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2021 Johannes Loher"
SPDX-License-Identifier = "CC-BY-NC-SA-4.0"
[[annotations]]
path = "packs/special-creature-abilities/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2021 Johannes Loher"
SPDX-License-Identifier = "CC-BY-NC-SA-4.0"
[[annotations]]
path = "packs/spells/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2021 Sascha Martens"
SPDX-License-Identifier = "CC-BY-NC-SA-4.0"
[[annotations]]
path = "packs/talents/**"
precedence = "aggregate"
SPDX-FileCopyrightText = "2022 Johannes Loher"
SPDX-License-Identifier = "CC-BY-NC-SA-4.0"

5
commitlint.config.cjs Normal file
View file

@ -0,0 +1,5 @@
// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
module.exports = { extends: ["@commitlint/config-conventional"] };

View file

@ -1,8 +0,0 @@
// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
/**
* @type {import("@commitlint/types").UserConfig}
*/
export default { extends: ["@commitlint/config-conventional"] };

View file

@ -1,65 +0,0 @@
// SPDX-FileCopyrightText: 2025 Johannes Loher
//
// SPDX-License-Identifier: MIT
// @ts-check
import eslint from "@eslint/js";
import eslintConfigPrettier from "eslint-config-prettier";
import tseslint from "typescript-eslint";
import globals from "globals";
const foundryGlobals = {
ActiveEffect: false,
ActiveEffectConfig: false,
Actor: false,
ActorSheet: false,
canvas: false,
Canvas: false,
ChatMessage: false,
CONFIG: false,
DocumentSheetConfig: false,
game: false,
Game: false,
Hooks: false,
Item: false,
ItemSheet: false,
Macro: false,
Notifications: false,
ui: false,
loadTemplates: false,
foundry: false,
Dialog: false,
renderTemplate: false,
TokenDocument: false,
Roll: false,
TextEditor: false,
CONST: false,
getProperty: false,
fromUuid: false,
};
export default tseslint.config(
{
ignores: ["dist/**", "client", "common"],
},
eslint.configs.recommended,
tseslint.configs.recommended,
{
languageOptions: {
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
},
globals: { ...globals.browser, ...globals.jquery, ...foundryGlobals },
},
},
{
files: ["tools/**", "*"],
languageOptions: {
parserOptions: {},
globals: globals.node,
},
},
eslintConfigPrettier,
);

View file

@ -2,7 +2,7 @@
"private": true,
"name": "dungeonslayers4",
"description": "An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.",
"version": "2.0.5",
"version": "1.20.0",
"license": "https://git.f3l.de/dungeonslayers/ds4#licensing",
"homepage": "https://git.f3l.de/dungeonslayers/ds4",
"repository": {
@ -47,8 +47,9 @@
"clean": "run-p clean:files clean:link",
"clean:files": "rimraf dist",
"clean:link": "node ./tools/link-package.js --clean",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "pnpm eslint",
"lint:fix": "pnpm eslint --fix",
"eslint": "eslint --ext .ts,.js,.cjs,.mjs .",
"format": "pnpm prettier --write",
"format:check": "pnpm prettier --check",
"prettier": "prettier './**/*.(ts|js|cjs|mjs|json|scss|yml|yaml)'",
@ -62,41 +63,35 @@
"changelog": "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@eslint/js": "9.21.0",
"@foundryvtt/foundryvtt-cli": "1.0.4",
"@guanghechen/rollup-plugin-copy": "6.0.4",
"@swc/core": "1.10.18",
"@types/fs-extra": "11.0.4",
"@types/jquery": "3.5.32",
"@types/node": "18.19.76",
"conventional-changelog-cli": "5.0.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.1",
"fs-extra": "11.3.0",
"globals": "16.0.0",
"handlebars": "4.7.8",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@foundryvtt/foundryvtt-cli": "0.0.9",
"@guanghechen/rollup-plugin-copy": "5.0.2",
"@ironkinoko/rollup-plugin-styles": "4.0.3",
"@swc/core": "1.3.70",
"@types/fs-extra": "11.0.1",
"@types/jquery": "3.5.16",
"@types/node": "18.17.0",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"conventional-changelog-cli": "3.0.0",
"conventional-changelog-conventionalcommits": "6.1.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"fs-extra": "11.1.1",
"handlebars": "4.7.7",
"npm-run-all": "4.1.5",
"prettier": "3.5.2",
"rimraf": "6.0.1",
"rollup": "4.34.8",
"rollup-plugin-styler": "2.0.0",
"rollup-plugin-swc3": "0.12.1",
"sass": "1.85.0",
"semver": "7.7.1",
"tslib": "2.8.1",
"typescript": "5.7.3",
"typescript-eslint": "8.24.1",
"vite": "6.1.1",
"vitest": "3.0.6",
"prettier": "3.0.0",
"rimraf": "5.0.1",
"rollup": "3.26.3",
"rollup-plugin-swc3": "0.9.1",
"sass": "1.64.1",
"semver": "7.5.4",
"tslib": "2.6.0",
"typescript": "5.1.6",
"vite": "4.4.6",
"vitest": "0.33.0",
"yargs": "17.7.2"
},
"packageManager": "pnpm@10.4.1",
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core"
]
}
"packageManager": "pnpm@8.6.9"
}

View file

@ -3,174 +3,7 @@
"name": "Adler",
"type": "creature",
"img": "systems/ds4/assets/tokens/devin-night/eagle.png",
"items": [
{
"_id": "9vJL3lyC4RTQCZ7e",
"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!HjpxMlpyjPr3hd3r.9vJL3lyC4RTQCZ7e"
},
{
"_id": "zYQAanmjVsNytqBl",
"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!HjpxMlpyjPr3hd3r.zYQAanmjVsNytqBl"
},
{
"_id": "ysyoJA3dYTu4XXvt",
"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": "<p>Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion &bdquo;Rennen&ldquo; im Flug ausgef&uuml;hrt, erh&ouml;ht sich die Geschwindigkeit somit auf Laufen x 4.</p>",
"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": "<p>Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene w&uuml;rfelt augenblicklich &amp; aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.</p>",
"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": "<p>Wird fliegend mindestens eine Distanz in H&ouml;he von Laufen x 2 &bdquo;rennend&ldquo; geflogen, kann in der Runde noch ein Angriff mit Schlagen + K&Ouml;R erfolgen, w&auml;hrend der Bewegung, also nicht nur davor oder danach.</p>",
"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"
}
],
"items": ["9vJL3lyC4RTQCZ7e", "zYQAanmjVsNytqBl", "ysyoJA3dYTu4XXvt", "k9Ng7RdfvSRN5JVW", "zUXT2ZkY12TAu5CU"],
"effects": [],
"folder": null,
"sort": 0,
@ -295,9 +128,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/eagle.png",
@ -306,11 +137,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -325,33 +152,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346489,
"modifiedTime": 1740227862866,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880952,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!HjpxMlpyjPr3hd3r"
}

View file

@ -3,174 +3,7 @@
"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": "<p>Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene w&uuml;rfelt augenblicklich &amp; aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.</p>",
"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": "<p>Kann, statt zu laufen, schwimmen. Wird die Aktion &bdquo;Rennen&ldquo; schwimmend ausgef&uuml;hrt, erh&ouml;ht sich die Geschwindigkeit ganz normal auf Laufen x 2.</p>",
"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": "<p>Wird mindestens eine Distanz in H&ouml;he von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + K&Ouml;R erfolgen.</p>",
"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"
}
],
"items": ["Z4ZEuB2l0vo2dJcK", "ACGvtQk97Udg1rih", "Buv9Nzqx0hpPPsew", "ree4HN3j8tv7b18k", "8Aq23UcNNFecGbk9"],
"effects": [],
"folder": null,
"sort": 0,
@ -295,9 +128,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/alligator*.png",
@ -306,11 +137,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -325,33 +152,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995347112,
"modifiedTime": 1740227862918,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881499,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!ttzlBKtMWz981WF3"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Bei einem Treffer altert das Ziel pro erlittenen Schadenspunkt um 1 Jahr.</p>",
"experiencePoints": -1
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!6KmAeL9lVxWXIeU6.U6mQ5sQwMjdLgUww"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Bei einem Treffer altert das Ziel pro erlittenen Schadenspunkt um 1 Jahr.</p>",
"experiencePoints": -1
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!cE5kI3uqXWQrCaI5.U95WXWQaKfIPiJZK"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Bei einem Treffer altert das Ziel um 1 Jahr.</p>",
"experiencePoints": 1
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!T9YRYe0vnR4Qg4UM.gfZuHfJiCyZUskwn"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Erd-, Fels- und Steinangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!wYVw1a5UjPS09YxS.wqzMhcBGP8qbClRW"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Feuerangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!P3mlpN2JrbnDtLwJ.Kf2kAdMidDaK1SVD"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Feuerangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!dlrDPQ3is4NkzZJB.NKUKD1KfNTpKZygj"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Feuerangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!WboyONCY2UZildi9.X9jyAzrnyxuikyg3"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Lichtangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!EItxqEiDUOmJdy4n.XBYL6p6Lh2di3cL0"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Blitz-, Sturm- und Windangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!mOQ21HFNisTfu7ve.23wk4FP7dNTkLgB5"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Blitz-, Sturm- und Windangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!GnW2ELzTtLoJmUQ1.ur7rgX6JTOwscpm5"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Eis-, Frost- und Wasserangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!O2maANGDJHPLX8aE.MPb5ZrTIutJ291XD"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Erh&auml;lt doppelten Schaden durch Eis-, Frost- und Wasserangriffe.</p>",
"experiencePoints": 0
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!tYcKw69Feoy3B6hG.c95cnrJtMG20InKV"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"experiencePoints": 10
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!wqgUDJc7Qb28hBBo.4JCW7iKb2e9I2ZSj"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"experiencePoints": 10
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!oVKL6zJ2kYMmBuYx.J2eP8hBIWtgayfhH"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"experiencePoints": 10
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!SQv63FQBjA5jW5xv.k4syi7gvtjmG6yVt"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"experiencePoints": 10
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!P3mlpN2JrbnDtLwJ.yUtiK9PSMcNcvXfr"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -2 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"experiencePoints": 20
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!6KmAeL9lVxWXIeU6.IolX9qsFGSxYN38o"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -2 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"experiencePoints": 20
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!cE5kI3uqXWQrCaI5.QkZT7930qdhuLFxw"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -2 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"experiencePoints": 20
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!vsIywRHMnJM7u4ts.tWwaC91MGIR4k3Uy"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -3 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"experiencePoints": 30
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!e1oy4levSO4VOQx8.pX6BSfPqftBLxuhf"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>S&auml;mtliche Magie in einem Radius von 10 Metern um die Kreatur herum ist wirkungslos. Dies gilt nicht f&uuml;r die eigene Magie der Kreatur oder deren Zauber.</p>",
"experiencePoints": 50
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!8E7Mm0LsiqFm6syY.z3o1FUNSKhEWkcpX"
}

View file

@ -0,0 +1,73 @@
{
"_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": "<p>Ein Schwert aus hellem (oder je nach Belieben auch dunklem) Licht erscheint innerhalb eines Radius von VE in Metern um den Zauberwirker herum.</p>\n<p>Innerhalb dieses Wirkungsbereiches k&auml;mpft es v&ouml;llig selbstst&auml;ndig, h&ouml;rt jedoch auf gedankliche Kampfkommandos seines Beschw&ouml;reres wie &bdquo;Greif den gro&szlig;en Troll an&ldquo; oder &bdquo;Sch&uuml;tze mich&ldquo;.</p>\n<p>Bewegt 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.</p>\n<p>Das Schwert l&ouml;st sich in seine arkanen Bestandteile auf, sobald seine (nicht heilbaren) LK auf Null oder niedriger sinken bzw. die Zauberdauer verstrichen ist.</p>\n<p>S&auml;mtliche Kampfwerte des Schwertes entsprechen der Stufe des Zauberwirkers +10.</p>\n<p>Die einzige Ausnahme bildet der Laufen-Wert, der dem doppelten Laufen-Wert des Zauberwirkers entspricht.</p>",
"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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!oVKL6zJ2kYMmBuYx.quDuDAGeMVUvF3WD"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!vXmTcBUKZkB2UBD7.joNh3JSsqfqXk4lU"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!WboyONCY2UZildi9.CM1yKVLm6mhG2eQE"
}

File diff suppressed because it is too large Load diff

View file

@ -3,142 +3,7 @@
"name": "Bär",
"type": "creature",
"img": "systems/ds4/assets/tokens/devin-night/bear-1.png",
"items": [
{
"_id": "qZayWokGcZreHpfI",
"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": -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!InLjj4RGxfkDrtXr.qZayWokGcZreHpfI"
},
{
"_id": "ayDGYJevUkbQ3N0c",
"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!InLjj4RGxfkDrtXr.ayDGYJevUkbQ3N0c"
},
{
"_id": "PKewYpkEmAWTc1j5",
"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": "<p>Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene w&uuml;rfelt augenblicklich &amp; aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.</p>",
"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": "<p>Wird mindestens eine Distanz in H&ouml;he von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + K&Ouml;R erfolgen.</p>",
"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"
}
],
"items": ["qZayWokGcZreHpfI", "ayDGYJevUkbQ3N0c", "PKewYpkEmAWTc1j5", "WbEsNLQpzoWJlJyj"],
"effects": [],
"folder": null,
"sort": 0,
@ -263,9 +128,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/bear*.png",
@ -274,11 +137,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -293,33 +152,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346499,
"modifiedTime": 1740227862866,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880959,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!InLjj4RGxfkDrtXr"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!P3mlpN2JrbnDtLwJ.Icq7W8YrjXTIlb7C"
}

View file

@ -4,204 +4,12 @@
"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": "<p>Greift mit seinem Blick aktionsfrei jeden an, dem GEI+AU misslingt. Wer gegen die Kreatur vorgeht, ohne ihr in die Augen zu sehen, erh&auml;lt -4 auf alle Proben, ist aber nicht mehr Ziel ihrer Blickangriffe.</p>",
"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": "<p>Kann bei einem Mindestma&szlig; an Licht noch sehen wie am helllichten Tag.</p>",
"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": "<p>Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene w&uuml;rfelt augenblicklich &amp; aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.</p>",
"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": "<p>Bei einem erfolgreichen Blickangriff versteinert das Ziel, sofern diesem K&Ouml;R+AU misslingt. Eine Versteinerung kann durch den Zauber Allheilung aufgehoben werden.</p>",
"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"
}
"y5i2zrZBp74DKQrQ",
"3CFakJA3eQJYSFN7",
"x7vdeybwnlRnlqTu",
"kQZnCtDlaCaKc38S",
"cZa7Ms69DWYg8Pgz",
"Hn8EIElYWelAKxiD"
],
"effects": [],
"folder": null,
@ -327,9 +135,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/basilisk*.png",
@ -338,11 +144,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -357,33 +159,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346388,
"modifiedTime": 1740227862861,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880889,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!GVLSLNSoMybeWhBP"
}

View file

@ -4,236 +4,13 @@
"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": "<p>Erh&auml;lt doppelten Schaden durch Feuerangriffe.</p>",
"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": "<p>Kann 3 zus&auml;tzliche Asthiebe in jeder Runde aktionsfrei ausf&uuml;hren.</p>",
"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": "<p>Kann bei einem Mindestma&szlig; an Licht noch sehen wie am helllichten Tag.</p>",
"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": "<p>Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene w&uuml;rfelt augenblicklich &amp; aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.</p>",
"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": "<p>Schlagen-Immersieg schleudert das Ziel (sofern 1+ Gr&ouml;&szlig;enkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet f&uuml;r die Distanz Sturzschaden, gegen den es normal Abwehr w&uuml;rfelt, und liegt am Boden.</p>",
"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"
}
"CM1yKVLm6mhG2eQE",
"sZw8glq3cnPHu6yq",
"X9jyAzrnyxuikyg3",
"B1Sw09kZopPZB8ys",
"x0mAm5abWWHlKJLz",
"2bA1MnqkTTwKtMoS",
"fKCcOlyaebvj1HuL"
],
"effects": [],
"folder": null,
@ -359,9 +136,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "icons/svg/mystery-man.svg",
@ -370,11 +145,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -389,33 +160,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346710,
"modifiedTime": 1740227862885,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881181,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!WboyONCY2UZildi9"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!rULL0cHbyACJsHDC.ndjWMSfPfmPY9AUY"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann Gegner mit einem &bdquo;Lockruf&ldquo; bezaubern. Dieser Zauber funktioniert wie der Zauberspruch @Compendium[ds4.spells.wZYElRaDmhqgzUvQ]{Gehorche}. Abklingzeit des <em>Lockrufs</em>: 10 Kampfrunden</p>",
"experiencePoints": 25
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!s56U2LeRInrje3xh.VXyznv68DT2Guc0A"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!PVuNoFILDAHpqGsa.8Um85s0Ayigqse3B"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!O2maANGDJHPLX8aE.9olbXmWVzPkmPhvu"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!Qm2toXbf6EVmvRS1.j0NbwyhdJPipL7Rl"
}

View file

@ -0,0 +1,73 @@
{
"_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": "<p>Ein glei&szlig;ender Lichtstrahl schie&szlig;t aus der Hand des Zauberwirkers und blendet bei Erfolg das Ziel (welches dagegen keine Abwehr w&uuml;rfeln darf).</p><p>Ein geblendetes Ziel hat -8 auf alle Handlungen, bei denen es sehen k&ouml;nnen sollte.</p><p>Selbst augenlose Untote, wie beispielsweise Skelette, werden durch das magische Licht geblendet. Blinde Lebewesen sind dagegen nicht betroffen.</p>",
"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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!8E7Mm0LsiqFm6syY.16dN0fMIjJwdhvGF"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Greift mit seinem Blick aktionsfrei jeden an, dem GEI+AU misslingt. Wer gegen die Kreatur vorgeht, ohne ihr in die Augen zu sehen, erh&auml;lt -4 auf alle Proben, ist aber nicht mehr Ziel ihrer Blickangriffe.</p>",
"experiencePoints": 10
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!F3zJ4xbHwN9syuK8.MuXvP2TjwvevxLpo"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Greift mit seinem Blick aktionsfrei jeden an, dem GEI+AU misslingt. Wer gegen die Kreatur vorgeht, ohne ihr in die Augen zu sehen, erh&auml;lt -4 auf alle Proben, ist aber nicht mehr Ziel ihrer Blickangriffe.</p>",
"experiencePoints": 10
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!GVLSLNSoMybeWhBP.x7vdeybwnlRnlqTu"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schie&szlig;en-Angriff) &ndash; nur f&uuml;r magische Abwehrboni wird gew&uuml;rfelt (PW: Bonush&ouml;he). GE x 5 m langer Kegel (am Ende GE x 3 m breit).</p>",
"experiencePoints": -1
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!nDRdljcZzkonbU0s.yjkoipelFXEzcy1x"
}

View file

@ -0,0 +1,73 @@
{
"_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": "<p>Der Zauberwirker schie&szlig;t einen Blitz auf einen Feind. Gegner in Metallr&uuml;stung d&uuml;rfen keine Abwehr gegen Blitze w&uuml;rfeln.</p>",
"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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!sCBrVIDh2umWr63g.aa8a89EaVy8fjgLn"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!O2maANGDJHPLX8aE.hcB5LcidhVSW5rI7"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!WYvb8G0z5GuNi7kO.b1YoPObYAlp0qgLo"
}

View file

@ -3,7 +3,14 @@
"name": "Dämonenfürst",
"type": "creature",
"img": "icons/svg/mystery-man.svg",
"items": [],
"items": [
"bXEiQJc7aJmLW1K4",
"N6MfjihlDL9hfse6",
"BDsxMEuEKfjEgFk3",
"AHJhJgRCvw2dKx78",
"DURD01IkVxPAwlxf",
"hvOFruV5fmieLXnk"
],
"effects": [],
"folder": null,
"sort": 0,
@ -128,9 +135,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "icons/svg/mystery-man.svg",
@ -139,11 +144,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -158,33 +159,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346629,
"modifiedTime": 1740227862874,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881055,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!PKPmkOMLDGwS9QZJ"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!RxSUSzQBSTFYHOlV.N6MfjihlDL9hfse6"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!FxGhbznQbwd0jRUT.DDaq3xgZrGuEl4Dc"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!GWNFUkgxocfKchIQ.pSQjVkwbjngPoEPZ"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!WboyONCY2UZildi9.sZw8glq3cnPHu6yq"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!4276kgAddflo3bwN.b80BR5n1f6WvGavG"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!BIyY1wlxWtJ5FRQJ.OehvVDNjDg4xbsW7"
}

View file

@ -4,38 +4,19 @@
"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": "<p>Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln f&uuml;r Wesen der Dunkelheit gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"XsKjxXO7k3vIMyfQ",
"2lkp7kvBk98s2WcR"
],
"effects": [],
"folder": null,
@ -161,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-blue.png",
@ -172,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -191,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346697,
"modifiedTime": 1740227862883,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881161,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!US32MfI48tX5x8Kz"
}

View file

@ -4,70 +4,19 @@
"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": "<p>Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schie&szlig;en-Angriff) &ndash; nur f&uuml;r magische Abwehrboni wird gew&uuml;rfelt (PW: Bonush&ouml;he). GE x 5 m langer Kegel (am Ende GE x 3 m breit).</p>",
"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": "<p>Gilt in den meisten Settings als ein Wesen des Lichts. Angewendete Regeln f&uuml;r Wesen des Lichts gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"yTFT0UXNa9s9pbM4",
"XsKjxXO7k3vIMyfQ"
],
"effects": [],
"folder": null,
@ -193,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png",
@ -204,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -223,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995347091,
"modifiedTime": 1740227862917,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881493,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!tchJggykZKx2ctBv"
}

View file

@ -4,70 +4,19 @@
"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": "<p>Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schie&szlig;en-Angriff) &ndash; nur f&uuml;r magische Abwehrboni wird gew&uuml;rfelt (PW: Bonush&ouml;he). GE x 5 m langer Kegel (am Ende GE x 3 m breit).</p>",
"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": "<p>Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln f&uuml;r Wesen der Dunkelheit gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"XsKjxXO7k3vIMyfQ",
"3wfMRBF49WH74mt2"
],
"effects": [],
"folder": null,
@ -193,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-yellow.png",
@ -204,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -223,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995347121,
"modifiedTime": 1740227862919,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881503,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!uomniEHbTAek8ERH"
}

View file

@ -4,38 +4,19 @@
"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": "<p>Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schie&szlig;en-Angriff) &ndash; nur f&uuml;r magische Abwehrboni wird gew&uuml;rfelt (PW: Bonush&ouml;he). GE x 5 m langer Kegel (am Ende GE x 3 m breit).</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"yTFT0UXNa9s9pbM4",
"XsKjxXO7k3vIMyfQ"
],
"effects": [],
"folder": null,
@ -161,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-gold.png",
@ -172,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -191,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346962,
"modifiedTime": 1740227862910,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881421,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!owGq4n7KX2P1o9em"
}

View file

@ -4,38 +4,19 @@
"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": "<p>Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln f&uuml;r Wesen der Dunkelheit gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"XsKjxXO7k3vIMyfQ",
"qYO8vFpNBw2wQLIJ"
],
"effects": [],
"folder": null,
@ -161,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-green.png",
@ -172,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -191,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346875,
"modifiedTime": 1740227862900,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881340,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!kFieLVdVz8XittRw"
}

View file

@ -4,38 +4,19 @@
"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": "<p>Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln f&uuml;r Wesen der Dunkelheit gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"XsKjxXO7k3vIMyfQ",
"F5KCKyCC8nD8lrn2"
],
"effects": [],
"folder": null,
@ -161,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-red.png",
@ -172,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -191,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346249,
"modifiedTime": 1740227862845,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880727,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!7CvWSMFqWHvwajP1"
}

View file

@ -3,7 +3,21 @@
"name": "Drachenwelpe (Silber)",
"type": "creature",
"img": "systems/ds4/assets/tokens/devin-night/dragon-silver.png",
"items": [],
"items": [
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"yTFT0UXNa9s9pbM4",
"XsKjxXO7k3vIMyfQ"
],
"effects": [],
"folder": null,
"sort": 0,
@ -128,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-silver.png",
@ -139,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -158,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346414,
"modifiedTime": 1740227862862,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880911,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!GeUXlf57uWcGVGRH"
}

View file

@ -4,70 +4,19 @@
"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": "<p>Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schie&szlig;en-Angriff) &ndash; nur f&uuml;r magische Abwehrboni wird gew&uuml;rfelt (PW: Bonush&ouml;he). GE x 5 m langer Kegel (am Ende GE x 3 m breit).</p>",
"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": "<p>Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln f&uuml;r Wesen der Dunkelheit gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"XsKjxXO7k3vIMyfQ",
"xUH4ga5oyxeT3mW2"
],
"effects": [],
"folder": null,
@ -193,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-white.png",
@ -204,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -223,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995347204,
"modifiedTime": 1740227862921,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881533,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!vsKKpweX6I1TQYBj"
}

View file

@ -4,428 +4,19 @@
"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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"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": "<p>Kann, statt zu laufen, mit doppelten Laufen-Wert fliegen. Wird die Aktion &bdquo;Rennen&ldquo; im Flug ausgef&uuml;hrt, erh&ouml;ht sich die Geschwindigkeit somit auf Laufen x 4.</p>",
"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": "<p>Kann 1 zus&auml;tzlichen Angriff (Biss, Klaue, Odem oder Schwanzhieb) in jeder Runde aktionsfrei ausf&uuml;hren. Bis auf die Klauen d&uuml;rfen alle Angriffsarten nur einmal pro Runde angewendet werden.</p>",
"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": "<p>Bei einem Schlagen-Patzer gegen einen Bewaffneten wird dessen Waffe getroffen. Der Angegriffene w&uuml;rfelt augenblicklich &amp; aktionsfrei einen Angriff mit seiner Waffe gegen die patzende Kreatur.</p>",
"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": "<p>Nur alle W20 Runden einsetzbar. Erzeugt nicht abwehrbaren Schaden (Schie&szlig;en-Angriff) &ndash; nur f&uuml;r magische Abwehrboni wird gew&uuml;rfelt (PW: Bonush&ouml;he). GE x 5 m langer Kegel (am Ende GE x 3 m breit).</p>",
"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": "<p>Schlagen-Immersieg schleudert das Ziel (sofern 1+ Gr&ouml;&szlig;enkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet f&uuml;r die Distanz Sturzschaden, gegen den es normal Abwehr w&uuml;rfelt, und liegt am Boden.</p>",
"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": "<p>Wird fliegend mindestens eine Distanz in H&ouml;he von Laufen x 2 &bdquo;rennend&ldquo; geflogen, kann in der Runde noch ein Angriff mit Schlagen + K&Ouml;R erfolgen, w&auml;hrend der Bewegung, also nicht nur davor oder danach.</p>",
"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": "<p>Schlagen-Immersieg (mit einem Biss-Angriff) verschlingt Ziel (sofern 2+ Gr&ouml;&szlig;enkategorien kleiner), welches fortan einen nicht abwehrbaren Schadenspunkt pro Kampfrunde und einen Malus von -8 auf alle Proben erh&auml;lt.</p>\n<p><strong>Befreien:</strong> Nur mit einem Schlagen-Immersieg, der Schaden verursacht, kann sich der Verschlungene augenblicklich aus dem Leib seines Verschlingers befreien, wenn dieser noch lebt.</p>",
"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": "<p>Kann einen Angriff pro Kampfrunde mit -6 ausf&uuml;hren, um das Ziel (sofern 1+ Gr&ouml;&szlig;enkategorie kleiner) zu zerstampfen. Pro Gr&ouml;&szlig;enunterschied wird der -6 Malus um 2 gemindert. Bei einem erfolgreichen Angriff wird nicht abwehrbarer Schaden verursacht.</p>",
"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": "<p>Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln f&uuml;r Wesen der Dunkelheit gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"4JCW7iKb2e9I2ZSj",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"XsKjxXO7k3vIMyfQ",
"hoqMl7N1bv8BKJA5"
],
"effects": [],
"folder": null,
@ -551,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-black.png",
@ -562,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -581,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995347224,
"modifiedTime": 1740227862923,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881564,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!wqgUDJc7Qb28hBBo"
}

View file

@ -0,0 +1,30 @@
{
"_id": "3L2HJX2p7uIpxTjJ",
"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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!Z5eEkZjZ525N90ai.3L2HJX2p7uIpxTjJ"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!RxSUSzQBSTFYHOlV.BDsxMEuEKfjEgFk3"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!2MFCw32xgaic6YGx.BQoKmcUMRg4cmoXq"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!dFL9UUXHq9heme4T.DuBcMQTb1e7mIe79"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!s7yuHMW75JDcFQYB.JxIUfRCSTQ3e5BFg"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!lZgvjMSqh5FuA1JK.LNrmUjNRidA3PoHN"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!wqgUDJc7Qb28hBBo.VFP6bNPYcASg0JWE"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!GnW2ELzTtLoJmUQ1.XSowCGPLnuUUt0gb"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!yisaQaEFqduLmAJe.lB0BTGi2Qp2IpbTp"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!WYvb8G0z5GuNi7kO.oT9c8PFOqW9NjOKA"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!8E7Mm0LsiqFm6syY.tKiwh730ZOGMICdg"
}

View file

@ -0,0 +1,30 @@
{
"_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": "<p>Kann selbst in v&ouml;lliger Dunkelheit noch sehen.</p>",
"experiencePoints": 7
},
"ownership": {
"default": 0
},
"_stats": {
"systemId": null,
"systemVersion": null,
"coreVersion": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!EItxqEiDUOmJdy4n.ut3GaXn0lU6CJO2f"
}

View file

@ -0,0 +1,73 @@
{
"_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": "<p>&Ouml;ffnet ein Tor zu einer anderen Existenzebene, die der Zauberwirker namentlich nennen muss. Das Tor schlie&szlig;t sich, sobald VE/2 Wesen es durchschritten haben, oder die Spruchdauer abgelaufen ist.</p>",
"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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!oVKL6zJ2kYMmBuYx.NeFjvRQWZSKtxAMm"
}

View file

@ -3,146 +3,7 @@
"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": "<p>Zerbricht bei Schie&szlig;en-Patzer</p>",
"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": "<p>Kann bei einem Mindestma&szlig; an Licht noch sehen wie am helllichten Tag.</p>",
"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": "<p>Schlagen-Immersieg schleudert das Ziel (sofern 1+ Gr&ouml;&szlig;enkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet f&uuml;r die Distanz Sturzschaden, gegen den es normal Abwehr w&uuml;rfelt, und liegt am Boden.</p>",
"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"
}
],
"items": ["5X3YrQ6PeuexE5QD", "CylYyspqzzOiD3QA", "tOY9c09eNSqmJHki", "G0avaPXmxplRB8al"],
"effects": [],
"folder": null,
"sort": 0,
@ -267,9 +128,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/lizard-man*.png",
@ -278,11 +137,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -297,33 +152,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346458,
"modifiedTime": 1740227862864,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880941,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!HgTRHAjq1YBk40sO"
}

View file

@ -4,340 +4,15 @@
"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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -1 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"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": "<p>Immun gegen geistesbeeinflussende Effekte (Bezauberungen, Einschl&auml;ferung, Hypnose usw.) und Zauber der Kategorie Geistesbeeinflussend.</p>",
"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": "<p>Kann bei einem Mindestma&szlig; an Licht noch sehen wie am helllichten Tag.</p>",
"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": "<p>Kann 1 zus&auml;tzlichen Angriff (Horn oder Hufe) in jeder Runde aktionsfrei ausf&uuml;hren.</p>",
"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": "<p>Schlagen-Immersieg schleudert das Ziel (sofern 1+ Gr&ouml;&szlig;enkategorie kleiner) Schaden / 3 m fort. Das Ziel erleidet f&uuml;r die Distanz Sturzschaden, gegen den es normal Abwehr w&uuml;rfelt, und liegt am Boden.</p>",
"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": "<p>Wird mindestens eine Distanz in H&ouml;he von Laufen gerannt, kann in der Runde noch ein Angriff mit Schlagen + K&Ouml;R erfolgen.</p>",
"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": "<p>Gilt in den meisten Settings als ein Wesen des Lichts. Angewendete Regeln f&uuml;r Wesen des Lichts gelten f&uuml;r diese Kreatur.</p>",
"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": "<p>Der Laufen-Wert des Ziels wird f&uuml;r die Dauer des Zaubers verdoppelt.</p>",
"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"
}
"o8CRX0tj3mrixbeV",
"k4syi7gvtjmG6yVt",
"ywm8DSneqBXy2Pk9",
"RWRBDrcHL1YK6MvZ",
"m78risNOMkOZtoix",
"WLc6j329EiSfsRj5",
"ysPz3YM2HzR9rptL",
"As31RtyHN8S4aN7O",
"mwMtV9vS293KeF3Q"
],
"effects": [],
"folder": null,
@ -463,9 +138,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "icons/svg/mystery-man.svg",
@ -474,11 +147,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -493,33 +162,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346679,
"modifiedTime": 1740227862881,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881129,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!SQv63FQBjA5jW5xv"
}

View file

@ -0,0 +1,73 @@
{
"_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": "<p>Dieser Zauber schl&auml;fert eine maximale Anzahl von Zielen gleich der Stufe des Zauberwirkers ein. Es handelt sich dabei um einen nat&uuml;rlichen Schlaf, aus dem man durch Kampfl&auml;rm u. &auml;. erwachen kann.</p>",
"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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!oVKL6zJ2kYMmBuYx.1q93yorTXMMaRAcg"
}

View file

@ -0,0 +1,73 @@
{
"_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": "<p>Dieser Zauber schl&auml;fert eine maximale Anzahl von Zielen gleich der Stufe des Zauberwirkers ein. Es handelt sich dabei um einen nat&uuml;rlichen Schlaf, aus dem man durch Kampfl&auml;rm u. &auml;. erwachen kann.</p>",
"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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!8E7Mm0LsiqFm6syY.u3CLqxahFyF7kVpa"
}

View file

@ -0,0 +1,33 @@
{
"_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": null,
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null
},
"_key": "!actors.items!dnX0uQXQCEnGs7dM.KzEfCqb54s8Ju7x1"
}

View file

@ -3,110 +3,7 @@
"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": "<p>Erh&auml;lt doppelten Schaden durch Blitz-, Sturm- und Windangriffe.</p>",
"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"
}
],
"items": ["VHt6K5ArvzyfTEje", "fIoBfLmNCxGfGzEX", "23wk4FP7dNTkLgB5"],
"effects": [],
"folder": null,
"sort": 0,
@ -231,9 +128,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "icons/svg/mystery-man.svg",
@ -242,11 +137,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -261,33 +152,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346894,
"modifiedTime": 1740227862904,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881358,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!mOQ21HFNisTfu7ve"
}

View file

@ -3,7 +3,7 @@
"name": "Erdelementar II",
"type": "creature",
"img": "icons/svg/mystery-man.svg",
"items": [],
"items": ["VHt6K5ArvzyfTEje", "fIoBfLmNCxGfGzEX", "23wk4FP7dNTkLgB5"],
"effects": [],
"folder": null,
"sort": 0,
@ -128,9 +128,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "icons/svg/mystery-man.svg",
@ -139,11 +137,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -158,33 +152,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346676,
"modifiedTime": 1740227862880,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881118,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!S8DNL5XpmNRSNJhD"
}

View file

@ -3,7 +3,7 @@
"name": "Erdelementar I",
"type": "creature",
"img": "icons/svg/mystery-man.svg",
"items": [],
"items": ["VHt6K5ArvzyfTEje", "fIoBfLmNCxGfGzEX", "23wk4FP7dNTkLgB5"],
"effects": [],
"folder": null,
"sort": 0,
@ -128,9 +128,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "icons/svg/mystery-man.svg",
@ -139,11 +137,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -158,33 +152,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346142,
"modifiedTime": 1740227862839,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880644,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!1PYYg60DHC6RA3oO"
}

View file

@ -4,70 +4,19 @@
"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": "<p>Kann einmal pro Kampf auf Sicht aktionsfrei Angst erzeugen. Wer GEI + VE + Stufe nicht schafft, ist eingesch&uuml;chert und erh&auml;lt bis zum Ende des Kampfes -3 auf alle Proben. Bei einem Patzer ergreift man die Flucht.</p>",
"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": "<p>Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln f&uuml;r Wesen der Dunkelheit gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"XsKjxXO7k3vIMyfQ",
"pX6BSfPqftBLxuhf",
"6oHGA6nCXRiuAY2O"
],
"effects": [],
"folder": null,
@ -193,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-blue.png",
@ -204,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -223,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346843,
"modifiedTime": 1740227862898,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881306,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!e1oy4levSO4VOQx8"
}

View file

@ -3,7 +3,21 @@
"name": "Erwachsener Drache (Bronze)",
"type": "creature",
"img": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png",
"items": [],
"items": [
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"yTFT0UXNa9s9pbM4",
"XsKjxXO7k3vIMyfQ",
"pX6BSfPqftBLxuhf"
],
"effects": [],
"folder": null,
"sort": 0,
@ -128,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-bronze.png",
@ -139,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -158,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346542,
"modifiedTime": 1740227862868,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880995,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!Ko3jVM757Kr89IQr"
}

View file

@ -4,38 +4,19 @@
"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": "<p>Gilt in den meisten Settings als ein Wesen der Dunkelheit. Angewendete Regeln f&uuml;r Wesen der Dunkelheit gelten f&uuml;r diese Kreatur.</p>",
"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"
}
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"XsKjxXO7k3vIMyfQ",
"pX6BSfPqftBLxuhf",
"XdTwK8lRxVvGfKja"
],
"effects": [],
"folder": null,
@ -161,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-yellow.png",
@ -172,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -191,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346793,
"modifiedTime": 1740227862891,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934881258,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!bEKen2GJBc6d0nix"
}

View file

@ -3,7 +3,21 @@
"name": "Erwachsener Drache (Gold)",
"type": "creature",
"img": "systems/ds4/assets/tokens/devin-night/dragon-gold.png",
"items": [],
"items": [
"fogg4p9NQnpcBTUp",
"BwxnkXHThNRptudp",
"VFP6bNPYcASg0JWE",
"o4o3thrxtXrhRWYT",
"nFNJLYh2O5rOFY89",
"h5HdNw0r06ffdOwr",
"yjkoipelFXEzcy1x",
"LHdWF7tVc3uHC0LW",
"ltDNoswX7EaA2d2X",
"lOr6f4vMoBBOEPB7",
"yTFT0UXNa9s9pbM4",
"XsKjxXO7k3vIMyfQ",
"pX6BSfPqftBLxuhf"
],
"effects": [],
"folder": null,
"sort": 0,
@ -128,9 +142,7 @@
"max": 1
},
"attenuation": 0.5,
"color": null,
"negative": false,
"priority": 0
"color": null
},
"texture": {
"src": "systems/ds4/assets/tokens/devin-night/dragon-gold.png",
@ -139,11 +151,7 @@
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"tint": "#ffffff",
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
"tint": null
},
"sight": {
"angle": 360,
@ -158,33 +166,15 @@
},
"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
}
}
"prependAdjective": false
},
"_stats": {
"systemId": "ds4",
"systemVersion": "1.21.1",
"coreVersion": "12.331",
"systemVersion": "1.19.4",
"coreVersion": "11.305",
"createdTime": 1668995346215,
"modifiedTime": 1740227862843,
"lastModifiedBy": "uxmyzF1AAOHwjAmE",
"compendiumSource": null,
"duplicateSource": null
"modifiedTime": 1688934880694,
"lastModifiedBy": "DS4BuildSystem00"
},
"_key": "!actors!6Ezz8k1SB64HQ9o5"
}

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