Compare commits

..

No commits in common. "master" and "v0.3.1-league" have entirely different histories.

61 changed files with 2814 additions and 16535 deletions

View File

@ -1,13 +0,0 @@
# SPDX-FileCopyrightText: 2022 Johannes Loher
#
# SPDX-License-Identifier: MIT
root = true
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true

View File

@ -1,5 +0,0 @@
# SPDX-FileCopyrightText: 2022 Johannes Loher
#
# SPDX-License-Identifier: MIT
dist

View File

@ -1,185 +0,0 @@
// SPDX-FileCopyrightText: 2022 Johannes Loher
// SPDX-FileCopyrightText: 2022 David Archibald
//
// SPDX-License-Identifier: MIT
module.exports = {
parserOptions: {
ecmaVersion: 13,
extraFileExtensions: [".cjs", ".mjs"],
sourceType: "module",
},
env: {
browser: true,
es6: true,
jquery: true,
},
extends: ["eslint:recommended", "@typhonjs-fvtt/eslint-config-foundry.js/0.8.0"],
plugins: [],
globals: {
dnd5e: false
},
rules: {
"array-bracket-spacing": ["warn", "never"],
"array-callback-return": "warn",
"arrow-spacing": "warn",
"comma-dangle": ["warn", "only-multiline"],
"comma-style": "warn",
"computed-property-spacing": "warn",
"constructor-super": "error",
"default-param-last": "warn",
"dot-location": ["warn", "property"],
"eol-last": ["error", "always"],
eqeqeq: ["warn", "smart"],
"func-call-spacing": "warn",
"func-names": ["warn", "never"],
"getter-return": "warn",
"lines-between-class-members": "warn",
"new-parens": ["warn", "always"],
"no-alert": "warn",
"no-array-constructor": "warn",
"no-class-assign": "warn",
"no-compare-neg-zero": "warn",
"no-cond-assign": "warn",
"no-const-assign": "error",
"no-constant-condition": "warn",
"no-constructor-return": "warn",
"no-delete-var": "warn",
"no-dupe-args": "warn",
"no-dupe-class-members": "warn",
"no-dupe-keys": "warn",
"no-duplicate-case": "warn",
"no-duplicate-imports": ["warn", { includeExports: true }],
"no-empty": ["warn", { allowEmptyCatch: true }],
"no-empty-character-class": "warn",
"no-empty-pattern": "warn",
"no-func-assign": "warn",
"no-global-assign": "warn",
"no-implicit-coercion": ["warn", { allow: ["!!"] }],
"no-implied-eval": "warn",
"no-import-assign": "warn",
"no-invalid-regexp": "warn",
"no-irregular-whitespace": "warn",
"no-iterator": "warn",
"no-lone-blocks": "warn",
"no-lonely-if": "warn",
"no-misleading-character-class": "warn",
"no-mixed-operators": "warn",
"no-multi-str": "warn",
"no-multiple-empty-lines": ["warn", { max: 1 }],
"no-new-func": "warn",
"no-new-object": "warn",
"no-new-symbol": "warn",
"no-new-wrappers": "warn",
"no-nonoctal-decimal-escape": "warn",
"no-obj-calls": "warn",
"no-octal": "warn",
"no-octal-escape": "warn",
"no-promise-executor-return": "warn",
"no-proto": "warn",
"no-regex-spaces": "warn",
"no-script-url": "warn",
"no-self-assign": "warn",
"no-self-compare": "warn",
"no-setter-return": "warn",
"no-sequences": "warn",
"no-template-curly-in-string": "warn",
"no-this-before-super": "error",
"no-unexpected-multiline": "warn",
"no-unmodified-loop-condition": "warn",
"no-unneeded-ternary": "warn",
"no-unreachable": "warn",
"no-unreachable-loop": "warn",
"no-unsafe-negation": ["warn", { enforceForOrderingRelations: true }],
"no-unsafe-optional-chaining": ["warn", { disallowArithmeticOperators: true }],
"no-unused-expressions": "warn",
"no-useless-backreference": "warn",
"no-useless-call": "warn",
"no-useless-catch": "warn",
"no-useless-computed-key": ["warn", { enforceForClassMembers: true }],
"no-useless-concat": "warn",
"no-useless-constructor": "warn",
"no-useless-rename": "warn",
"no-useless-return": "warn",
"no-var": "warn",
"no-void": "warn",
"no-whitespace-before-property": "warn",
"prefer-numeric-literals": "warn",
"prefer-object-spread": "warn",
"prefer-regex-literals": "warn",
"prefer-spread": "warn",
"rest-spread-spacing": ["warn", "never"],
"semi-spacing": "warn",
"semi-style": ["warn", "last"],
"space-unary-ops": ["warn", { words: true, nonwords: false }],
"switch-colon-spacing": "warn",
"symbol-description": "warn",
"template-curly-spacing": ["warn", "never"],
"unicode-bom": ["warn", "never"],
"use-isnan": ["warn", { enforceForSwitchCase: true, enforceForIndexOf: true }],
"valid-typeof": ["warn", { requireStringLiterals: true }],
"wrap-iife": ["warn", "inside"],
"arrow-parens": ["warn", "always"],
"comma-spacing": "warn",
"dot-notation": "warn",
"key-spacing": "warn",
"keyword-spacing": ["warn", { overrides: { catch: { before: true, after: false } } }],
"max-len": [
"warn",
{
code: 120,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
},
],
"no-extra-boolean-cast": ["warn", { enforceForLogicalOperands: true }],
"no-extra-semi": "warn",
"no-multi-spaces": ["warn", { ignoreEOLComments: true }],
"no-throw-literal": "error",
"no-trailing-spaces": "warn",
"no-useless-escape": "warn",
"no-unused-vars": ["warn", { args: "none" }],
"nonblock-statement-body-position": ["warn", "beside"],
"one-var": ["warn", "never"],
"operator-linebreak": [
"warn",
"before",
{
overrides: { "=": "after", "+=": "after", "-=": "after" },
},
],
"prefer-template": "warn",
"quote-props": ["warn", "as-needed", { keywords: false }],
quotes: ["warn", "double", { avoidEscape: true, allowTemplateLiterals: false }],
semi: "warn",
"space-before-blocks": ["warn", "always"],
"space-before-function-paren": [
"warn",
{
anonymous: "always",
named: "never",
asyncArrow: "always",
},
],
"spaced-comment": "warn",
},
overrides: [
{
files: ["./*.js", "./*.cjs", "./*.mjs"],
env: {
node: true,
},
},
],
};

View File

@ -1,65 +0,0 @@
# SPDX-FileCopyrightText: 2022 Johannes Loher
#
# SPDX-License-Identifier: MIT
name: Checks
on:
- push
- pull_request
env:
node_version: 16
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v2
with:
node-version: ${{ env.node_version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: .npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci --cache .npm --prefer-offline
- name: Lint
run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v2
with:
node-version: ${{ env.node_version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: .npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci --cache .npm --prefer-offline
- name: Build
run: npm run build

View File

@ -1,116 +0,0 @@
# SPDX-FileCopyrightText: 2022 Johannes Loher
#
# SPDX-License-Identifier: MIT
name: Release
on:
release:
types: [published]
env:
package_type: module
node_version: 16
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v2
with:
node-version: ${{ env.node_version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: .npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci --cache .npm --prefer-offline
- name: Lint
run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v2
with:
node-version: ${{ env.node_version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: .npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci --cache .npm --prefer-offline
- name: Extract tag version number
id: get_version
uses: battila7/get-version-action@v2
- name: Substitute Manifest and Download Links For Versioned Ones
id: sub_manifest_link_version
uses: microsoft/variable-substitution@v1
with:
files: 'src/${{ env.package_type }}.json'
env:
version: ${{ steps.get_version.outputs.version-without-v }}
url: https://github.com/${{ github.repository }}
manifest: https://github.com/${{ github.repository }}/releases/latest/download/${{ env.package_type }}.json
download: https://github.com/${{ github.repository }}/releases/download/${{ github.event.release.tag_name }}/${{ env.package_type }}.zip
- name: Build
run: npm run build
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
publish:
needs:
- lint
- build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Download production artifacts for publication
uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: Create zip file
working-directory: ./dist
run: zip -r ../${{ env.package_type }}.zip .
- name: Create release
id: create_version_release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
name: ${{ github.event.release.name }}
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: './dist/${{ env.package_type }}.json, ./${{ env.package_type }}.zip'
body: ${{ github.event.release.body }}

32
.gitignore vendored
View File

@ -1,32 +0,0 @@
# SPDX-FileCopyrightText: 2022 Johannes Loher
#
# SPDX-License-Identifier: MIT
# IDE
.idea/
.vs/
# Node Modules
node_modules/
npm-debug.log
# yarn2
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
# Local configuration
foundryconfig.json
# Distribution files
dist
# ESLint
.eslintcache
# Junit results
junit.xml

View File

@ -1,5 +0,0 @@
{
"flags": {
"gulpfile": "gulpfile.mjs"
}
}

View File

@ -1,4 +0,0 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
npx lint-staged

1
.nvmrc
View File

@ -1 +0,0 @@
lts/*

View File

@ -1,8 +0,0 @@
# SPDX-FileCopyrightText: 2022 Johannes Loher
#
# SPDX-License-Identifier: MIT
dist
package-lock.json
.pnp.cjs
.pnp.js

View File

@ -1,9 +0,0 @@
// SPDX-FileCopyrightText: 2022 Johannes Loher
//
// SPDX-License-Identifier: MIT
module.exports = {
printWidth: 120,
tabWidth: 4,
useTabs: true,
};

View File

@ -1,84 +0,0 @@
# 2.0.0
- Updated for V11.
- Small visual enhancements.
#0.9.0
- Button on character sheets for opening a search with class and spell level (works on default and TidySheet5e)
- added filters for subclasses and backgrounds [League-of-Foundry-Developers/compendium-browser#48](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/48)
- Additional searches for sub-features
- Merged PR [League-of-Foundry-Developers/compendium-browser#45](https://github.com/League-of-Foundry-Developers/compendium-browser/pull/45)
- Used more DnD5e loaclization tags. Should be less work to translate, also defaults localization to tag name
- Fixed item rarity search in Foundry 10+ [League-of-Foundry-Developers/compendium-browser#54](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/54)
#0.8.2
- Fixed Class searching for spells - issue: #43
- Fixed Drag-and-Drop error in Foundry V10 - issue: #41
#0.8
- Merged PR [League-of-Foundry-Developers/compendium-browser#40](https://github.com/League-of-Foundry-Developers/compendium-browser/pull/40): Foundry v10 support
#0.7
Works only with Foundry v0.8 and 9
##0.7.2
- Merged PR [League-of-Foundry-Developers/compendium-browser#33](https://github.com/League-of-Foundry-Developers/compendium-browser/pull/33)
- Fixed: Issue [League-of-Foundry-Developers/compendium-browser#29](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/29)
- Fixed: Issue [League-of-Foundry-Developers/compendium-browser#30](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/30)
- Fixed: Issue [League-of-Foundry-Developers/compendium-browser#31](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/31)
- Change message to "Loading..." until we're done, then "Loaded" (also when we hit the maxLoaded)
##0.7.1
- Merged PR [League-of-Foundry-Developers/compendium-browser#26](https://github.com/League-of-Foundry-Developers/compendium-browser/pull/26)
- Fixed: Issue [League-of-Foundry-Developers/compendium-browser#25](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/25)
##v0.7.0 (only Foundry 0.8+)
- Merged PR #24 (performance speed ups)
- Fixed: Issue [League-of-Foundry-Developers/compendium-browser#19](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/19)
- Fixed: Issue [League-of-Foundry-Developers/compendium-browser#7](https://github.com/League-of-Foundry-Developers/compendium-browser/issues/7)
##v0.6.0
- Merged PR #14, #8 (classes for new spells and Optional Class Features in Tasha's)
- Manually merged PR #3 (German and Spanish translations)
##v0.5.0
- Fixed: Issue #17 (error in filtering NPCs by Creature Type)
##v0.4.5
- Fixed: [Suggestion] Show compendium source in results; Issue #11
- Fixed: Spells from non-system compendium show up in items tab. Issue#10
##v0.4.3
##v0.3.1
- fixed a bug that prevented loading when Class type items were loaded.
- fixed a bug that prevented disabled the scrollbar in the settings tab.
##v0.3.0
- improved load times by lazyloading images
- fixed some css problems
- new Feature: Feat Browser
- Compendium Browser now has a new section for Feats
- lets you filter by source, class (as set in the requirements field), activation cost, damage type and if it uses ressources
- new Feature: Item Browser
- Compendium Browser now has a new section for all inventory Items
- All item Packs (such as Explorer's Pack) are configured and you can browse a List of all Items contained in a pack!
- this list can be modified by editing the "item-packs.json" file to customize your packs
- many further filters available!
##v0.2.1
- fixed an issue that prevented the rendering of the Button to open the browser
##v0.2
- fixed a bug that could prevent proper npc loading
- added a filter for "Source" for both spells and npcs
- migrated to the new TabsV2
- added a Reset Filters button
- Added the Artificer class, thanks to Tielc#7191 for that

View File

@ -1,65 +0,0 @@
## Development
### Prerequisites
In order to build this module, recent versions of `node` and `npm` are
required. Most likely, using `yarn` also works, but only `npm` is officially
supported. We recommend using the latest lts version of `node`. If you use `nvm`
to manage your `node` versions, you can simply run
```
nvm install
```
in the project's root directory.
You also need to install the project's dependencies. To do so, run
```
npm install
```
### Building
You can build the project by running
```
npm run build
```
Alternatively, you can run
```
npm run build:watch
```
to watch for changes and automatically build as necessary.
### Linking the built project to Foundry VTT
In order to provide a fluent development experience, it is recommended to link
the built module to your local Foundry VTT installation's data folder. In
order to do so, first add a file called `foundryconfig.json` to the project root
with the following content:
```
{
"dataPath": ["/absolute/path/to/your/FoundryVTT"]
}
```
(if you are using Windows, make sure to use `\` as a path separator instead of
`/`)
Then run
```
npm run link-project
```
On Windows, creating symlinks requires administrator privileges, so
unfortunately you need to run the above command in an administrator terminal for
it to work.
You can also link to multiple data folders by specifying multiple paths in the
`dataPath` array.

28
Patchnotes.md 100644
View File

@ -0,0 +1,28 @@
v0.2
- fixed a bug that could prevent proper npc loading
- added a filter for "Source" for both spells and npcs
- migrated to the new TabsV2
- added a Reset Filters button
- Added the Artificer class, thanks to Tielc#7191 for that
v0.2.1
- fixed an issue that prevented the rendering of the Button to open the browser
v0.3.0
- improved load times by lazyloading images
- fixed some css problems
- new Feature: Feat Browser
- Compendium Browser now has a new section for Feats
- lets you filter by source, class (as set in the requirements field), activation cost, damage type and if it uses ressources
- new Feature: Item Browser
- Compendium Browser now has a new section for all inventory Items
- All item Packs (such as Explorer's Pack) are configured and you can browse a List of all Items contained in a pack!
- this list can be modified by editing the "item-packs.json" file to customize your packs
- many further filters available!
v0.3.1
- fixed a bug that prevented loading when Class type items were loaded.
- fixed a bug that prevented disabled the scrollbar in the settings tab.
Todo:
- clean up Translation strings. Most of the new features can't be translated yet.

View File

@ -1,20 +1,29 @@
# Compendium Browser # Compendium Browser
Tired of scrolling compendia? Easily browse and filter for spells, feats, items, and actors using Compendium Browser. > This version only works for Foundry v0.4.4 and up. To use the previous version please visit https://github.com/syl3r86/compendium-browser/tree/pre-0.4.4
A module to easily browse and filter spells as well as npcs loaded from compendie.
## Installation
1. Copy this link and use it in Foundrys Module Manager to install the Module
> https://raw.githubusercontent.com/syl3r86/compendium-browser/master/module.json
2. Enable the Module in your Worlds Module Settings
![example](preview.jpg) ![example](preview.jpg)
## Details ## Details
Only the Gamemaster has access to the Settings, where they can enable or disable player access to the spell or npc-browser. It is **highly** recommended to disable any compendie that do not contain spell or should not be used in the NPC Browser. This reduces the initial loading time, that happens after a client connects to foundry, immensly.
Only the Gamemaster has access to the Settings, where they can enable or disable player access to specific tabs. This application enables anyone to add their own custom spell or npc filters via the api. After initialization the app can be found under game.compendiumBrowser where either addSpellFilter or addNpcFilter can be used to add a filter. This does support any data that the spell or npc has, including flags.
### Adding your own filters All filters featured in the app are included in this manor and can be found in the compendium-browser.js at around line 726.
You can add your own filter to by calling `game.compendiumBrowser.addSpellFilter`, `game.compendiumBrowser.addNpcFilter`, `game.compendiumBrowser.addFeatFilter`, and `game.compendiumBrowser.addItemFilter`. This does support any data that the spell or npc has, including flags.
## Contribution
If you feel like supporting my work, feel free to leave a tip at my paypal felix.mueller.86@web.de
## License ## License
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Compendium Browser - a module for Foundry VTT -</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://github.com/syl3r86?tab=repositories" property="cc:attributionName" rel="cc:attributionURL">Felix Müller</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
This project is a fork of Compendium Browser by [Felix Müller](https://github.com/syl3r86). This work is licensed under Foundry Virtual Tabletop [EULA - Limited License Agreement for module development v 0.1.6](http://foundryvtt.com/pages/license.html).
## Community Contribution
See the [CONTRIBUTING](/CONTRIBUTING.md) file for information about how you can help this project.

View File

@ -0,0 +1,250 @@
#compendium .directory-footer .compendium-browser-btn {
margin-top: 5px;
}
#compendium .directory-footer {
display: block;
}
.compendium-browser {
overflow-y: hidden!important;
max-width: 1100px;
max-height: 90vh;
}
.compendium-browser .window-content {
overflow-y: hidden!important;
height: 100%;
}
.compendium-browser .window-content .parent {
overflow-y: hidden!important;
height: 100%;
}
.compendium-browser .window-content .parent .content {
overflow-y: hidden!important;
height: calc(100% - 2em);
}
.compendium-browser .window-content .parent .content .tab {
overflow-y: hidden!important;
height: 100%;
}
.compendium-browser .window-content .parent .content .tab .browser {
overflow-y: hidden!important;
height: 100%;
}
.compendium-browser .window-content .parent .content .tab .browser ul {
overflow-y: auto;
height: 100%;
}
.compendium-browser .window-content .parent .content .tab .settings {
overflow-y: auto;
height: 100%;
}
.compendium-browser .tabs {
max-height: 2em;
border-bottom: solid #782e22;
}
.compendium-browser .tabContainer {
height: calc(100% - 2em);
}
.compendium-browser .tabContainer .tab {
width: 100%;
height: 100%;
overflow: scroll;
}
.compendium-browser .control-area {
position: sticky;
display: block;
min-width: 250px;
max-width: 400px;
width: 300px;
height: 100%;
padding-right: 5px;
overflow: scroll;
}
.compendium-browser .control-area button {
background: rgba(0, 0, 0, 0.05);
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding: 2px;
}
.compendium-browser .control-area .filtercontainer {
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding: 2px;
}
.compendium-browser .control-area .filtercontainer h3 {
margin: 0;
cursor: pointer;
}
.compendium-browser .control-area .filtercontainer dl,
.compendium-browser .control-area .filtercontainer div {
margin: 5px 0;
}
.compendium-browser .control-area .filtercontainer dt {
display: inline-block;
width: 40%;
padding-left: 5px;
}
.compendium-browser .control-area .filtercontainer dd {
display: inline-block;
width: 58%;
margin-left: 0;
}
.compendium-browser .control-area .filtercontainer dd select {
width: 100%;
}
.compendium-browser .control-area .filtercontainer .multiselect {
border: 1px solid #bbb;
border-radius: 3px;
vertical-align: middle;
line-height: 32px;
margin: 2px 0;
}
.compendium-browser .control-area .filtercontainer .multiselect label {
padding: 5px;
}
.compendium-browser .control-area .filtercontainer .multiselect input {
vertical-align: middle;
}
.compendium-browser .control-area .filtercontainer .small-input {
width: calc(100% - 44px);
height: 27px;
background: rgba(0, 0, 0, 0.05);
border: 1px solid #444;
border-radius: 3px;
padding: 0 3px;
text-overflow: ellipsis;
}
.compendium-browser .control-area .filtercontainer .small-select {
width: 40px;
}
.compendium-browser .browser {
height: 100%;
overflow-y: hidden!important;
}
.compendium-browser .browser .window-content {
overflow-y: hidden!important;
}
.compendium-browser .browser ul {
float: right;
display: block;
min-width: 335px;
width: 785px;
margin: 0;
height: 100%;
overflow: auto;
padding-left: 5px;
}
.compendium-browser .browser ul .filter-tags {
display: none;
}
.compendium-browser .browser ul li span {
white-space: nowrap;
overflow: hidden;
}
.compendium-browser .browser .spacer {
display: inline-block;
min-width: 5px;
}
.compendium-browser .browser .spacer-large {
display: inline-block;
min-width: 15px;
}
.compendium-browser .item-browser li,
.compendium-browser .feat-browser li,
.compendium-browser .spell-browser li {
cursor: default;
vertical-align: middle;
line-height: 32px;
margin: 2px 0;
}
.compendium-browser .item-browser li .item-image,
.compendium-browser .feat-browser li .item-image,
.compendium-browser .spell-browser li .item-image {
max-width: 32px;
height: 32px;
}
.compendium-browser .item-browser li .item-name,
.compendium-browser .feat-browser li .item-name,
.compendium-browser .spell-browser li .item-name {
height: 32px;
padding-left: 5px;
}
.compendium-browser .item-browser li .feat-tags,
.compendium-browser .feat-browser li .feat-tags,
.compendium-browser .spell-browser li .feat-tags,
.compendium-browser .item-browser li .item-tags,
.compendium-browser .feat-browser li .item-tags,
.compendium-browser .spell-browser li .item-tags {
text-align: right;
margin-right: 3px;
margin-left: 3px;
text-transform: capitalize;
height: 32px;
}
.compendium-browser .spell-browser .spell .spell-level {
text-align: center;
font-weight: 900;
max-width: 18px;
height: 32px;
}
.compendium-browser .spell-browser .spell .spell-tags {
text-align: right;
margin-right: 3px;
font-weight: 900;
max-width: 100px;
height: 32px;
}
.compendium-browser .npc-browser .npc {
cursor: default;
vertical-align: middle;
line-height: 64px;
margin: 4px 0;
}
.compendium-browser .npc-browser .npc .npc-image {
max-width: 64px;
height: 64px;
}
.compendium-browser .npc-browser .npc .npc-image img {
width: 64px;
height: 64px;
border: none;
object-fit: contain;
}
.compendium-browser .npc-browser .npc .npc-line {
line-height: 25px;
padding: 9px 0 5px 5px;
}
.compendium-browser .npc-browser .npc .npc-name {
font-weight: bold;
font-size: 16px;
}
.compendium-browser .npc-browser .npc .cr {
display: inline-block;
width: 55px;
}
.compendium-browser .npc-browser .npc .size {
display: inline-block;
width: 75px;
}
.compendium-browser .npc-browser .npc .type {
display: inline-block;
}
.compendium-browser .settings .settings-group {
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding: 2px;
}
.compendium-browser .settings .settings-group h3 {
margin: 0;
cursor: pointer;
}
.compendium-browser .settings .settings-group label {
display: block;
}
.compendium-browser .settings .settings-group h4 {
display: inline-block;
vertical-align: middle;
height: 100%;
}

1148
compendium-browser.js 100644

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,285 @@
#compendium .directory-footer .compendium-browser-btn {
margin-top:5px;
}
#compendium .directory-footer {
display:block;
}
.compendium-browser {
overflow-y: hidden!important;
max-width:1100px;
max-height:90vh;
.window-content {
overflow-y: hidden!important;
height: 100%;
.parent {
overflow-y: hidden!important;
height: 100%;
.content {
overflow-y: hidden!important;
height: calc(100% - 2em);
.tab {
overflow-y: hidden!important;
height: 100%;
.browser {
overflow-y: hidden!important;
height: 100%;
ul {
overflow-y:auto;
height:100%;
}
}
.settings {
overflow-y:auto;
height:100%;
}
}
}
}
}
.tabs {
max-height:2em;
border-bottom: solid #782e22;
a {
}
}
.tabContainer {
height:calc(100% - 2em);
.tab {
width: 100%;
height: 100%;
overflow:scroll;
}
}
.control-area {
position:sticky;
display: block;
min-width: 250px;
max-width: 400px;
width: 300px;
height:100%;
padding-right:5px;
overflow:scroll;
button {
background: rgba(0, 0, 0, 0.05);
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding:2px;
}
.filtercontainer {
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding:2px;
h3 {
margin:0;
cursor:pointer;
}
dl, div {
margin: 5px 0;
}
dt {
display:inline-block;
width:40%;
padding-left:5px;
}
dd {
display:inline-block;
width:58%;
margin-left:0;
select {
width:100%;
}
}
.multiselect {
border: 1px solid #bbb;
border-radius: 3px;
vertical-align: middle;
line-height:32px;
margin:2px 0;
label {
padding:5px;
}
input {
vertical-align: middle;
}
}
.small-input {
width: calc(100% - 44px);
height: 27px;
background: rgba(0, 0, 0, 0.05);
border: 1px solid #444;
border-radius: 3px;
padding: 0 3px;
text-overflow: ellipsis;
}
.small-select {
width: 40px;
}
}
}
.browser {
height: 100%;
overflow-y: hidden!important;
.window-content {
overflow-y: hidden!important;
}
ul {
float:right;
display: block;
min-width: 335px;
width: 785px;
margin:0;
height: 100%;
overflow:auto;
padding-left: 5px;
.filter-tags {
display:none;
}
li {
span {
white-space: nowrap;
overflow:hidden;
}
}
}
.spacer {
display:inline-block;
min-width:5px;
}
.spacer-large {
display:inline-block;
min-width:15px;
}
}
.item-browser, .feat-browser, .spell-browser {
li {
cursor:default;
vertical-align: middle;
line-height:32px;
margin:2px 0;
.item-image {
max-width:32px;
height:32px;
}
.item-name {
height:32px;
padding-left:5px;
}
.feat-tags, .item-tags {
text-align:right;
margin-right:3px;
margin-left: 3px;
text-transform:capitalize;
height:32px;
}
}
}
.spell-browser {
.spell {
.spell-level {
text-align:center;
font-weight:900;
max-width:18px;
height:32px;
}
.spell-tags {
text-align:right;
margin-right:3px;
font-weight:900;
max-width:100px;
height:32px;
}
}
}
.npc-browser {
.npc {
cursor:default;
vertical-align: middle;
line-height:64px;
margin:4px 0;
.npc-image {
max-width: 64px;
height: 64px;
}
.npc-image img {
width: 64px;
height: 64px;
border: none;
object-fit: contain;
}
.npc-line {
line-height: 25px;
padding: 9px 0 5px 5px;
}
.npc-name {
font-weight:bold;
font-size:16px;
}
.cr {
display: inline-block;
width: 55px;
}
.size {
display: inline-block;
width: 75px;
}
.type {
display: inline-block;
}
}
}
.settings {
.settings-group {
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding:2px;
h3 {
margin:0;
cursor:pointer;
}
label {
display:block;
}
input {
}
h4 {
display:inline-block;
vertical-align: middle;
height:100%;
}
}
}
}

View File

@ -1,176 +0,0 @@
// SPDX-FileCopyrightText: 2022 Johannes Loher
// SPDX-FileCopyrightText: 2022 David Archibald
//
// SPDX-License-Identifier: MIT
import fs from "fs-extra";
import gulp from "gulp";
import less from "gulp-less";
import sourcemaps from "gulp-sourcemaps";
import path from "node:path";
import buffer from "vinyl-buffer";
import source from "vinyl-source-stream";
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import rollupStream from "@rollup/stream";
import rollupConfig from "./rollup.config.mjs";
/** ******************/
/* CONFIGURATION */
/** ******************/
const packageId = "compendium-browser";
const sourceDirectory = "./src";
const distDirectory = "./dist";
const stylesDirectory = `${sourceDirectory}/styles`;
const stylesExtension = "less";
const sourceFileExtension = "js";
const staticFiles = ["assets", "fonts", "lang", "packs", "templates", "module.json"];
/** ******************/
/* BUILD */
/** ******************/
let cache;
/**
* Build the distributable JavaScript code
*/
function buildCode() {
return rollupStream({ ...rollupConfig(), cache })
.on("bundle", (bundle) => {
cache = bundle;
})
.pipe(source(`${packageId}.js`))
.pipe(buffer())
.pipe(sourcemaps.init({ loadMaps: true }))
.pipe(sourcemaps.write("."))
.pipe(gulp.dest(`${distDirectory}/module`));
}
/**
* Build style sheets
*/
function buildStyles() {
return gulp
.src(`${stylesDirectory}/${packageId}.${stylesExtension}`)
.pipe(less())
.pipe(gulp.dest(`${distDirectory}/styles`));
}
/**
* Copy static files
*/
async function copyFiles() {
for (const file of staticFiles) {
if (fs.existsSync(`${sourceDirectory}/${file}`)) {
await fs.copy(`${sourceDirectory}/${file}`, `${distDirectory}/${file}`);
}
}
}
/**
* Watch for changes for each build step
*/
export function watch() {
gulp.watch(`${sourceDirectory}/**/*.${sourceFileExtension}`, { ignoreInitial: false }, buildCode);
gulp.watch(`${stylesDirectory}/**/*.${stylesExtension}`, { ignoreInitial: false }, buildStyles);
gulp.watch(
staticFiles.map((file) => `${sourceDirectory}/${file}`),
{ ignoreInitial: false },
copyFiles,
);
}
export const build = gulp.series(clean, gulp.parallel(buildCode, buildStyles, copyFiles));
/** ******************/
/* CLEAN */
/** ******************/
/**
* Remove built files from `dist` folder while ignoring source files
*/
export async function clean() {
const files = [...staticFiles, "module"];
if (fs.existsSync(`${stylesDirectory}/${packageId}.${stylesExtension}`)) {
files.push("styles");
}
console.log(" ", "Files to clean:");
console.log(" ", files.join("\n "));
for (const filePath of files) {
await fs.remove(`${distDirectory}/${filePath}`);
}
}
/** ******************/
/* LINK */
/** ******************/
/**
* Get the data paths of Foundry VTT based on what is configured in `foundryconfig.json`
*/
function getDataPaths() {
const config = fs.readJSONSync("foundryconfig.json");
const dataPath = config?.dataPath;
if (dataPath) {
const dataPaths = Array.isArray(dataPath) ? dataPath : [dataPath];
return dataPaths.map((dataPath) => {
if (typeof dataPath !== "string") {
throw new Error(
`Property dataPath in foundryconfig.json is expected to be a string or an array of strings, but found ${dataPath}`,
);
}
if (!fs.existsSync(path.resolve(dataPath))) {
throw new Error(`The dataPath ${dataPath} does not exist on the file system`);
}
return path.resolve(dataPath);
});
} else {
throw new Error("No dataPath defined in foundryconfig.json");
}
}
/**
* Link build to User Data folder
*/
export async function link() {
let destinationDirectory;
if (fs.existsSync(path.resolve(sourceDirectory, "module.json"))) {
destinationDirectory = "modules";
} else {
throw new Error("Could not find module.json");
}
const linkDirectories = getDataPaths().map((dataPath) =>
path.resolve(dataPath, "Data", destinationDirectory, packageId),
);
const argv = yargs(hideBin(process.argv)).option("clean", {
alias: "c",
type: "boolean",
default: false,
}).argv;
const clean = argv.c;
for (const linkDirectory of linkDirectories) {
if (clean) {
console.log(`Removing build in ${linkDirectory}.`);
await fs.remove(linkDirectory);
} else if (!fs.existsSync(linkDirectory)) {
console.log(`Linking dist to ${linkDirectory}.`);
await fs.ensureDir(path.resolve(linkDirectory, ".."));
await fs.symlink(path.resolve(distDirectory), linkDirectory);
} else {
console.log(`Skipped linking to ${linkDirectory}, as it already exists.`);
}
}
}

10
item-packs.json 100644
View File

@ -0,0 +1,10 @@
{
"burglar": ["Burglar's Pack", "Backpack","Ball Bearings", "String", "Bell", "Candle", "Crowbar", "Hammer", "Piton", "Hooded Lantern", "Oil Flask", "Rations", "Tinderbox","Waterskin","Hempen Rope (50 ft.)"],
"diplomat": ["Diplomat's Pack", "Chest", "Map or Scroll Case", "Fine Clothes", "Ink Bottle", "Ink Pen", "Lamp", "Oil Flask", "Paper", "Perfume", "Sealing Wax", "Soap"],
"dungeoneer": ["Dungeoneer's Pack", "Backpack", "Crowbar", "Hammer", "Piton", "Torch", "Tinderbox", "Rations", "Waterskin", "Hempen Rope (50 ft.)"],
"entertainer": ["Entertainer's Pack", "Backpack", "Bedroll", "Costume Clothes", "Candle", "Rations", "Waterskin", "Disguise Kit"],
"explorer": ["Explorer's Pack", "Backpack", "Bedroll", "Mess Kit", "Tinderbox", "Torch", "Rations", "Waterskin", "Hempen Rope (50 ft.)"],
"monsterhunter": ["Monster Hunter's Pack", "Chest", "Crowbar", "Hammer", "Wooden Stake", "Holy Symbol", "Flask of Holy Water", "Manacles", "Steel Mirror", "Oil Flask", "Tinderbox", "Torch"],
"priest": ["Priest's Pack", "Backpack", "Blanket", "Candle", "Tinderbox", "Alms Box", "Block of Incense", "Censor", "Vestments", "Rations", "Waterskin"],
"scholar": ["Scholar's Pack", "Backpack", "Book of Lore", "Ink Bottle", "Ink Pen", "Parchment", "Bag of Sand", "Small Knife"]
}

62
lang/en.json 100644
View File

@ -0,0 +1,62 @@
{
"CMPBrowser.compendiumBrowser":"Compendium Browser",
"CMPBrowser.sortBy":"Sort by",
"CMPBrowser.cr":"Challenge Rating",
"CMPBrowser.generalSettings":"General Settings",
"CMPBrowser.allowSpellAcc":"Allow Players Access to the spell browser",
"CMPBrowser.allowNpcAcc":"Allow Players Access to the npc browser",
"CMPBrowser.compSettingsSpell":"Item Compendium Settings",
"CMPBrowser.compSettingsNpc":"NPC Compendium Settings",
"CMPBrowser.load":"Load",
"CMPBrowser.lvl":"Level",
"CMPBrowser.ritual":"Ritual",
"CMPBrowser.concentration":"Concentration",
"CMPBrowser.verbal":"Verbal",
"CMPBrowser.somatic":"Somatic",
"CMPBrowser.material":"Material",
"CMPBrowser.cantip":"Cantrip",
"CMPBrowser.school":"School",
"CMPBrowser.castingTime":"Casting Time",
"CMPBrowser.bonusAction":"Bonus Action",
"CMPBrowser.reaction":"Reaction",
"CMPBrowser.spellType":"Spell Type",
"CMPBrowser.damageType":"Damage Type",
"CMPBrowser.class":"Class",
"CMPBrowser.artificer":"Artificer",
"CMPBrowser.bard":"Bard",
"CMPBrowser.cleric":"Cleric",
"CMPBrowser.druid":"Druid",
"CMPBrowser.paladin":"Paladin",
"CMPBrowser.ranger":"Ranger",
"CMPBrowser.sorcerer":"Sorcerer",
"CMPBrowser.warlock":"Warlock",
"CMPBrowser.wizard":"Wizard",
"CMPBrowser.general":"General",
"CMPBrowser.components":"Components",
"CMPBrowser.hasSpells":"Has Spells",
"CMPBrowser.hasLegAct":"Has Legendary Actions",
"CMPBrowser.hasLegRes":"Has Legendary Resistance",
"CMPBrowser.creatureType":"Creature Type",
"CMPBrowser.aberration": "Aberration",
"CMPBrowser.beast": "Beast",
"CMPBrowser.celestial": "Celestial",
"CMPBrowser.construct": "construct",
"CMPBrowser.dragon": "Dragon",
"CMPBrowser.elemental": "Elemental",
"CMPBrowser.fey": "Fey",
"CMPBrowser.fiend": "Fiend",
"CMPBrowser.giant": "Giant",
"CMPBrowser.humanoid": "Humanoid",
"CMPBrowser.monstrosity": "Monstrosity",
"CMPBrowser.ooze": "Ooze",
"CMPBrowser.plant": "Plant",
"CMPBrowser.undead": "Undead",
"CMPBrowser.abilities": "Abilities",
"CMPBrowser.dmgInteraction": "Damage Interaction",
"CMPBrowser.dmgDealt": "Damage Dealt",
"CMPBrowser.size": "Size",
"CMPBrowser.spellBrowser":"Spell Browser",
"CMPBrowser.npcBrowser":"NPC Browser",
"CMPBrowser.settings":"Settings"
}

60
lang/fr.json 100644
View File

@ -0,0 +1,60 @@
{
"CMPBrowser.compendiumBrowser":"Recherche dans les Compendium",
"CMPBrowser.sortBy":"Trié par",
"CMPBrowser.cr":"Niveau de la rencontre",
"CMPBrowser.generalSettings":"Paramètres généraux",
"CMPBrowser.allowSpellAcc":"Autoriser les joueurs à accéder aux listes de sorts",
"CMPBrowser.allowNpcAcc":"Autoriser les joueurs à accéder aux listes de PNJ",
"CMPBrowser.compSettingsSpell":"Paramètres de compendium de sorts",
"CMPBrowser.compSettingsNpc":"Paramètres de compendium de PNJ",
"CMPBrowser.load":"Charger",
"CMPBrowser.lvl":"Level",
"CMPBrowser.ritual":"Rituel",
"CMPBrowser.concentration":"Concentration",
"CMPBrowser.verbal":"Verbales",
"CMPBrowser.somatic":"Somatiques",
"CMPBrowser.material":"Matérielles",
"CMPBrowser.cantip":"Tours de magie",
"CMPBrowser.school":"Ecole",
"CMPBrowser.castingTime":"Durée d'incantation",
"CMPBrowser.bonusAction":"Action Bonus",
"CMPBrowser.reaction":"Réaction",
"CMPBrowser.spellType":"Type de sort",
"CMPBrowser.damageType":"Type de dégâts",
"CMPBrowser.class":"Classe",
"CMPBrowser.bard":"Barde",
"CMPBrowser.cleric":"Clerc",
"CMPBrowser.druid":"Druide",
"CMPBrowser.paladin":"Paladin",
"CMPBrowser.ranger":"Rôdeur",
"CMPBrowser.sorcerer":"Sorcier",
"CMPBrowser.warlock":"Ensorceleur",
"CMPBrowser.wizard":"Magicien",
"CMPBrowser.general":"Général",
"CMPBrowser.components":"Composants",
"CMPBrowser.hasSpells":"à des Sorts",
"CMPBrowser.hasLegAct":"à des Actions Légendaires",
"CMPBrowser.hasLegRes":"à des Resistances Légendaires",
"CMPBrowser.creatureType":"Type de Créature",
"CMPBrowser.aberration": "Aberration",
"CMPBrowser.beast": "Bête",
"CMPBrowser.celestial": "Céleste",
"CMPBrowser.construct": "Artificielles",
"CMPBrowser.dragon": "Dragon",
"CMPBrowser.elemental": "Elementaire",
"CMPBrowser.fey": "Fée",
"CMPBrowser.fiend": "Fiélon",
"CMPBrowser.giant": "Géant",
"CMPBrowser.humanoid": "Humanoïde",
"CMPBrowser.monstrosity": "Monstrueuse",
"CMPBrowser.ooze": "Vase",
"CMPBrowser.plant": "Plante",
"CMPBrowser.undead": "Morts-vivants",
"CMPBrowser.abilities": "Capacités",
"CMPBrowser.dmgInteraction": "Spécificité des dégâts",
"CMPBrowser.dmgDealt": "Type de dégats",
"CMPBrowser.size": "Taille",
"CMPBrowser.spellBrowser":"Recherche de sorts",
"CMPBrowser.npcBrowser":"Recherche de PNJ",
"CMPBrowser.settings":"Paramétrages"
}

60
lang/ja.json 100644
View File

@ -0,0 +1,60 @@
{
"CMPBrowser.compendiumBrowser":"辞典ブラウザ",
"CMPBrowser.sortBy":"並び替え",
"CMPBrowser.cr":"難易度",
"CMPBrowser.generalSettings":"一般設定",
"CMPBrowser.allowSpellAcc":"プレイヤーに呪文辞典の使用を許可する。",
"CMPBrowser.allowNpcAcc":"プレイヤーにNPC辞典の使用を許可する。",
"CMPBrowser.compSettingsSpell":"呪文辞典設定",
"CMPBrowser.compSettingsNpc":"NPC辞典設定",
"CMPBrowser.load":"追加",
"CMPBrowser.lvl":"レベル",
"CMPBrowser.ritual":"儀式",
"CMPBrowser.concentration":"集中",
"CMPBrowser.verbal":"音声",
"CMPBrowser.somatic":"動作",
"CMPBrowser.material":"物質",
"CMPBrowser.cantip":"初級",
"CMPBrowser.school":"系統",
"CMPBrowser.castingTime":"発動時間",
"CMPBrowser.bonusAction":"ボーナスアクション",
"CMPBrowser.reaction":"リアクション",
"CMPBrowser.spellType":"呪文種別",
"CMPBrowser.damageType":"ダメージ種別",
"CMPBrowser.class":"クラス",
"CMPBrowser.bard":"バード",
"CMPBrowser.cleric":"クレリック",
"CMPBrowser.druid":"ドルイド",
"CMPBrowser.paladin":"パラディン",
"CMPBrowser.ranger":"レンジャー",
"CMPBrowser.sorcerer":"ソーサラー",
"CMPBrowser.warlock":"ウォーロック",
"CMPBrowser.wizard":"ウィザード",
"CMPBrowser.general":"一般",
"CMPBrowser.components":"物質構成要素",
"CMPBrowser.hasSpells":"術者",
"CMPBrowser.hasLegAct":"伝説的アクション所持",
"CMPBrowser.hasLegRes":"伝説的抵抗所持",
"CMPBrowser.creatureType":"クリーチャー種別",
"CMPBrowser.aberration": "異形",
"CMPBrowser.beast": "野獣",
"CMPBrowser.celestial": "セレスチャル",
"CMPBrowser.construct": "人造",
"CMPBrowser.dragon": "ドラゴン",
"CMPBrowser.elemental": "エレメンタル",
"CMPBrowser.fey": "フェイ",
"CMPBrowser.fiend": "フィーンド",
"CMPBrowser.giant": "巨人",
"CMPBrowser.humanoid": "ヒューマノイド",
"CMPBrowser.monstrosity": "怪物",
"CMPBrowser.ooze": "粘体",
"CMPBrowser.plant": "植物",
"CMPBrowser.undead": "アンデッド",
"CMPBrowser.abilities": "能力値",
"CMPBrowser.dmgInteraction": "ダメージ関連",
"CMPBrowser.dmgDealt": "与えるダメージ種別",
"CMPBrowser.size": "サイズ",
"CMPBrowser.spellBrowser":"呪文ブラウザ",
"CMPBrowser.npcBrowser":"NPCブラウザ",
"CMPBrowser.settings":"設定"
}

61
lang/pt-BR.json 100644
View File

@ -0,0 +1,61 @@
{
"CMPBrowser.compendiumBrowser":"Navegador de Compêndio",
"CMPBrowser.sortBy":"Classificar por",
"CMPBrowser.cr":"Nivel de Desafio",
"CMPBrowser.generalSettings":"Configurações Gerais",
"CMPBrowser.allowSpellAcc":"Permite o acesso dos jogadores ao navegador de magias",
"CMPBrowser.allowNpcAcc":"Permite o acesso dos jogadores ao navegador de NPCs",
"CMPBrowser.compSettingsSpell":"Configuração de Compêndio de Itens",
"CMPBrowser.compSettingsNpc":"Configuração de Compêndio de NPCs",
"CMPBrowser.load":"Carregar",
"CMPBrowser.lvl":"Nivel",
"CMPBrowser.ritual":"Ritual",
"CMPBrowser.concentration":"Concentraçãon",
"CMPBrowser.verbal":"Verbal",
"CMPBrowser.somatic":"Somático",
"CMPBrowser.material":"Material",
"CMPBrowser.cantip":"Truque",
"CMPBrowser.school":"Escola",
"CMPBrowser.castingTime":"Custo de Ativação",
"CMPBrowser.bonusAction":"Ação bonus",
"CMPBrowser.reaction":"Reação",
"CMPBrowser.spellType":"Tipo da Magia",
"CMPBrowser.damageType":"Tipo de Dano",
"CMPBrowser.class":"Classe",
"CMPBrowser.artificer":"Artífice",
"CMPBrowser.bard":"Bardo",
"CMPBrowser.cleric":"Clerigo",
"CMPBrowser.druid":"Druida",
"CMPBrowser.paladin":"Paladino",
"CMPBrowser.ranger":"Guardião",
"CMPBrowser.sorcerer":"Geiticeiro",
"CMPBrowser.warlock":"Bruxo",
"CMPBrowser.wizard":"Mago",
"CMPBrowser.general":"Geral",
"CMPBrowser.components":"Componentes",
"CMPBrowser.hasSpells":"Tem Magias",
"CMPBrowser.hasLegAct":"Tem Ações Lendárias",
"CMPBrowser.hasLegRes":"Tem Resistência Lendária",
"CMPBrowser.creatureType":"Tipo de Criatura",
"CMPBrowser.aberration": "Aberração",
"CMPBrowser.beast": "Besta",
"CMPBrowser.celestial": "Celestial",
"CMPBrowser.construct": "Constructo",
"CMPBrowser.dragon": "Dragão",
"CMPBrowser.elemental": "Elemental",
"CMPBrowser.fey": "Feérico",
"CMPBrowser.fiend": "Ínfero",
"CMPBrowser.giant": "Giante",
"CMPBrowser.humanoid": "Humanoide",
"CMPBrowser.monstrosity": "Monstruosidade",
"CMPBrowser.ooze": "Gosma",
"CMPBrowser.plant": "Planta",
"CMPBrowser.undead": "Morto-Vivo",
"CMPBrowser.abilities": "Atributos",
"CMPBrowser.dmgInteraction": "Interação do Dano",
"CMPBrowser.dmgDealt": "Dano Causado",
"CMPBrowser.size": "Tamanho",
"CMPBrowser.spellBrowser":"Navegador de Magias",
"CMPBrowser.npcBrowser":"Navegador de NPC",
"CMPBrowser.settings":"Configurações"
}

38
module.json 100644
View File

@ -0,0 +1,38 @@
{
"name": "compendium-browser",
"title": "Compendium Browser",
"description": "A module to easily browse and filter spells as well as npcs loaded from compendie.",
"version": "0.3.1",
"author": "Felix#6196",
"systems": ["dnd5e"],
"scripts": ["./compendium-browser.js"],
"styles": ["./compendium-browser.css"],
"packs": [],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
},
{
"lang": "ja",
"name": "Japanese",
"path": "lang/ja.json"
},
{
"lang": "fr",
"name": "French (FRANCE)",
"path": "lang/fr.json"
},
{
"lang": "pt-BR",
"name": "Português (Brasil)",
"path": "lang/pt-BR.json"
}
],
"url": "https://github.com/syl3r86/compendium-browser",
"manifest": "https://raw.githubusercontent.com/syl3r86/compendium-browser/master/module.json",
"download": "https://github.com/syl3r86/compendium-browser/archive/master.zip",
"minimumCoreVersion": "0.6.2",
"compatibleCoreVersion": "0.6.2"
}

11471
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,32 +0,0 @@
{
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"clean:link": "gulp link --clean",
"lint": "eslint --ext .js,.cjs,.mjs .",
"lint:fix": "eslint --ext .js,.cjs,.mjs --fix .",
"postinstall": "husky install"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/stream": "^3.0.1",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8.53.0",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"gulp-less": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^8.0.3",
"less": "^3.13.1",
"lint-staged": "^15.0.2",
"rollup": "^2.79.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^17.7.2"
},
"lint-staged": {
"*.(js|cjs|mjs)": "eslint --fix"
}
}

View File

@ -1,16 +0,0 @@
// SPDX-FileCopyrightText: 2022 Johannes Loher
// SPDX-FileCopyrightText: 2022 David Archibald
//
// SPDX-License-Identifier: MIT
import { nodeResolve } from "@rollup/plugin-node-resolve";
export default () => ({
input: "src/module/compendium-browser.js",
output: {
dir: "dist/module",
format: "es",
sourcemap: true,
},
plugins: [nodeResolve()],
});

482
spell-classes.json 100644
View File

@ -0,0 +1,482 @@
{
"abidalzimshorridwilting": "sorcerer,wizard",
"absorbelements": "artificer,druid,ranger,sorcerer,wizard",
"arcaneweapon": "artificerrevisited",
"acidsplash": "artificer,sorcerer,wizard,artificerrevisited",
"aganazzarsscorcher": "sorcerer,wizard",
"aid": "artificer,cleric,paladin,artificer,artificerrevisited",
"alarm": "artificer,ranger,wizard,artificer,artificerrevisited",
"alterself": "artificer,sorcerer,wizard,artificer,artificerrevisited",
"animalfriendship": "bard,druid,ranger",
"animalmessenger": "bard,druid,ranger",
"animalshapes": "druid",
"animatedead": "cleric,wizard",
"animateobjects": "artificer,bard,sorcerer,wizard,artificerrevisited",
"antilifeshell": "druid",
"antimagicfield": "cleric,wizard",
"antipathysympathy": "druid,wizard",
"arcaneeye": "artificer,wizard,artificer,artificerrevisited",
"arcanegate": "sorcerer,warlock,wizard",
"arcanelock": "artificer,wizard,artificer,artificerrevisited",
"armorofagathys": "warlock",
"armsofhadar": "warlock",
"astralprojection": "cleric,warlock,wizard",
"augury": "cleric",
"auraoflife": "paladin",
"auraofpurity": "paladin",
"auraofvitality": "paladin",
"awaken": "bard,druid",
"bane": "bard,cleric",
"banishingsmite": "paladin",
"banishment": "cleric,paladin,sorcerer,warlock,wizard",
"barkskin": "druid,ranger",
"beaconofhope": "cleric",
"beastbond": "druid,ranger",
"beastsense": "druid,ranger",
"bestowcurse": "bard,cleric,wizard",
"bigbyshand": "artificer,wizard,artificerrevisited",
"arcanehand": "wizard,artificerrevisited",
"bladebarrier": "cleric",
"bladeward": "bard,sorcerer,warlock,wizard",
"bless": "cleric,paladin",
"blight": "druid,sorcerer,warlock,wizard",
"blindingsmite": "paladin",
"blindnessdeafness": "bard,cleric,sorcerer,wizard",
"blink": "artificer,sorcerer,wizard,artificer,artificerrevisited",
"blur": "artificer,sorcerer,wizard,artificer,artificerrevisited",
"bonesoftheearth": "druid",
"boomingblade": "sorcerer,warlock,wizard",
"brandingsmite": "paladin",
"burninghands": "sorcerer,wizard",
"calllightning": "druid",
"calmemotions": "bard,cleric",
"catapult": "artificer,sorcerer,wizard",
"catnap": "artificer,bard,sorcerer,wizard",
"causefear": "warlock,wizard",
"ceremony": "cleric,paladin",
"chainlightning": "sorcerer,wizard",
"chaosbolt": "sorcerer",
"charmmonster": "bard,druid,sorcerer,warlock,wizard",
"charmperson": "bard,druid,sorcerer,warlock,wizard",
"chilltouch": "sorcerer,warlock,wizard",
"chromaticorb": "sorcerer,wizard",
"circleofdeath": "sorcerer,warlock,wizard",
"circleofpower": "paladin",
"clairvoyance": "bard,cleric,sorcerer,wizard",
"clone": "wizard",
"cloudofdaggers": "bard,sorcerer,warlock,wizard",
"cloudkill": "sorcerer,wizard",
"colorspray": "sorcerer,wizard",
"command": "cleric,paladin",
"commune": "cleric",
"communewithnature": "druid,ranger",
"compelledduel": "paladin",
"comprehendlanguages": "bard,sorcerer,warlock,wizard",
"compulsion": "bard",
"coneofcold": "sorcerer,wizard",
"confusion": "bard,druid,sorcerer,wizard",
"conjureanimals": "druid,ranger",
"conjurebarrage": "ranger",
"conjurecelestial": "cleric",
"conjureelemental": "druid,wizard",
"conjurefey": "druid,warlock",
"conjureminorelementals": "druid,wizard",
"conjurevolley": "ranger",
"conjurewoodlandbeings": "druid,ranger",
"contactotherplane": "warlock,wizard",
"contagion": "cleric,druid",
"contingency": "wizard",
"continualflame": "artificer,cleric,wizard,artificer,artificerrevisited",
"controlflames": "druid,sorcerer,wizard",
"controlwater": "cleric,druid,wizard",
"controlweather": "cleric,druid,wizard",
"controlwinds": "druid,sorcerer,wizard",
"cordonofarrows": "ranger",
"counterspell": "sorcerer,warlock,wizard",
"createbonfire": "artificer,druid,sorcerer,warlock,wizard",
"createfoodandwater": "artificer,cleric,paladin",
"createhomunculus": "wizard",
"createundead": "cleric,warlock,wizard",
"createordestroywater": "cleric,druid",
"creation": "artificer,sorcerer,wizard,artificerrevisited",
"crownofmadness": "bard,sorcerer,warlock,wizard",
"crownofstars": "sorcerer,warlock,wizard",
"crusadersmantle": "paladin",
"curewounds": "artificer,bard,cleric,druid,paladin,ranger,artificer,artificerrevisited",
"dancinglights": "artificer,bard,sorcerer,wizard,artificerrevisited",
"dansemacabre": "warlock,wizard",
"darkness": "sorcerer,warlock,wizard",
"darkvision": "artificer,druid,ranger,sorcerer,wizard,artificer,artificerrevisited",
"dawn": "cleric,wizard",
"daylight": "cleric,druid,paladin,ranger,sorcerer",
"deathward": "cleric,paladin,artificer",
"delayedblastfireball": "sorcerer,wizard",
"demiplane": "warlock,wizard",
"destructivewave": "paladin",
"detectevilandgood": "cleric,paladin",
"detectmagic": "artificer,bard,cleric,druid,paladin,ranger,sorcerer,wizard,artificerrevisited",
"detectpoisonanddisease": "cleric,druid,paladin,ranger",
"detectthoughts": "bard,sorcerer,wizard",
"dimensiondoor": "bard,sorcerer,warlock,wizard",
"disguiseself": "artificer,bard,sorcerer,wizard,artificer,artificerrevisited",
"disintegrate": "sorcerer,wizard",
"dispelevilandgood": "cleric,paladin",
"dispelmagic": "artificer,bard,cleric,druid,paladin,sorcerer,warlock,wizard,artificerrevisited",
"dissonantwhispers": "bard",
"distortvalue": "bard,sorcerer,warlock,wizard",
"divination": "cleric",
"divinefavor": "paladin",
"divineword": "cleric",
"dominatebeast": "druid,sorcerer",
"dominatemonster": "bard,sorcerer,warlock,wizard",
"dominateperson": "bard,sorcerer,wizard",
"dragonsbreath": "sorcerer,wizard",
"drawmijsinstantsummons": "wizard",
"instantsummons": "wizard",
"dream": "bard,warlock,wizard",
"druidgrove": "druid",
"druidcraft": "druid",
"dustdevil": "druid,sorcerer,wizard",
"earthtremor": "bard,druid,sorcerer,wizard",
"earthbind": "druid,sorcerer,warlock,wizard",
"earthquake": "cleric,druid,sorcerer",
"eldritchblast": "warlock",
"elementalbane": "artificer,druid,warlock,wizard",
"elementalweapon": "artificer,paladin,artificerrevisited",
"enemiesabound": "bard,sorcerer,warlock,wizard",
"enervation": "sorcerer,warlock,wizard",
"enhanceability": "artificer,bard,cleric,druid,sorcerer,artificer,artificerrevisited",
"enlargereduce": "artificer,sorcerer,wizard,artificer,artificerrevisited",
"ensnaringstrike": "ranger",
"entangle": "druid",
"enthrall": "bard,warlock",
"eruptingearth": "druid,sorcerer,wizard",
"etherealness": "bard,cleric,sorcerer,warlock,wizard",
"evardsblacktentacles": "wizard",
"blacktentacles": "wizard",
"expeditiousretreat": "artificer,sorcerer,warlock,wizard,artificer,artificerrevisited",
"eyebite": "bard,sorcerer,warlock,wizard",
"fabricate": "artificer,wizard,artificer,artificerrevisited",
"faeriefire": "artificer,bard,druid",
"falselife": "artificer,sorcerer,wizard,artificer,artificerrevisited",
"farstep": "sorcerer,warlock,wizard",
"fastfriends": "bard,cleric,wizard",
"fear": "bard,sorcerer,warlock,wizard",
"featherfall": "artificer,bard,sorcerer,wizard",
"feeblemind": "bard,druid,warlock,wizard",
"feigndeath": "bard,cleric,druid,wizard",
"findfamiliar": "wizard",
"findgreatersteed": "paladin",
"findsteed": "paladin",
"findtraps": "cleric,druid,ranger",
"findthepath": "bard,cleric,druid",
"fingerofdeath": "sorcerer,warlock,wizard",
"firebolt": "artificer,sorcerer,wizard,artificerrevisited",
"fireshield": "wizard",
"firestorm": "cleric,druid,sorcerer",
"fireball": "sorcerer,wizard",
"flamearrows": "artificer,druid,ranger,sorcerer,wizard",
"flameblade": "druid",
"flamestrike": "cleric",
"flamingsphere": "druid,wizard",
"fleshtostone": "warlock,wizard",
"fly": "artificer,sorcerer,warlock,wizard,artificer,artificerrevisited",
"fogcloud": "druid,ranger,sorcerer,wizard",
"forbiddance": "cleric",
"forcecage": "bard,warlock,wizard",
"foresight": "bard,druid,warlock,wizard",
"freedomofmovement": "artificer,bard,cleric,druid,ranger,artificer,artificerrevisited",
"friends": "bard,sorcerer,warlock,wizard",
"frostbite": "artificer,druid,sorcerer,warlock,wizard",
"gaseousform": "sorcerer,warlock,wizard,artificer,artificerrevisited",
"gate": "cleric,sorcerer,wizard",
"geas": "bard,cleric,druid,paladin,wizard",
"gentlerepose": "cleric,wizard",
"giantinsect": "druid",
"giftofgab": "bard,wizard",
"glibness": "bard,warlock",
"globeofinvulnerability": "sorcerer,wizard",
"glyphofwarding": "artificer,bard,cleric,wizard,artificer,artificerrevisited",
"goodberry": "druid,ranger",
"graspingvine": "druid,ranger",
"grease": "artificer,wizard,artificerrevisited",
"greaterinvisibility": "bard,sorcerer,wizard",
"greaterrestoration": "artificer,bard,cleric,druid,artificerrevisited",
"greenflameblade": "sorcerer,warlock,wizard",
"guardianoffaith": "cleric",
"guardianofnature": "druid,ranger",
"guardsandwards": "bard,wizard",
"guidance": "artificer,cleric,druid,artificerrevisited",
"guidingbolt": "cleric",
"gust": "druid,sorcerer,wizard",
"gustofwind": "druid,sorcerer,wizard",
"hailofthorns": "ranger",
"hallow": "cleric",
"hallucinatoryterrain": "bard,druid,warlock,wizard",
"harm": "cleric",
"haste": "artificer,sorcerer,wizard,artificer,artificerrevisited",
"heal": "cleric,druid",
"healingspirit": "druid,ranger",
"healingword": "bard,cleric,druid",
"heatmetal": "artificer,bard,druid,artificerrevisited",
"hellishrebuke": "warlock",
"heroesfeast": "cleric,druid",
"heroism": "bard,paladin",
"hex": "warlock",
"holdmonster": "bard,sorcerer,warlock,wizard",
"holdperson": "bard,cleric,druid,sorcerer,warlock,wizard",
"holyaura": "cleric",
"holyweapon": "cleric,paladin",
"hungerofhadar": "warlock",
"huntersmark": "ranger",
"hypnoticpattern": "bard,sorcerer,warlock,wizard",
"iceknife": "druid,sorcerer,wizard",
"icestorm": "druid,sorcerer,wizard",
"identify": "artificer,bard,wizard,artificerrevisited",
"illusorydragon": "wizard",
"illusoryscript": "bard,warlock,wizard",
"immolation": "sorcerer,wizard",
"imprisonment": "warlock,wizard",
"incendiarycloud": "sorcerer,wizard",
"incitegreed": "cleric,warlock,wizard",
"infernalcalling": "warlock,wizard",
"infestation": "druid,sorcerer,warlock,wizard",
"inflictwounds": "cleric",
"insectplague": "cleric,druid,sorcerer",
"investitureofflame": "druid,sorcerer,warlock,wizard",
"investitureofice": "druid,sorcerer,warlock,wizard",
"investitureofstone": "druid,sorcerer,warlock,wizard",
"investitureofwind": "druid,sorcerer,warlock,wizard",
"invisibility": "artificer,bard,sorcerer,warlock,wizard,artificer,artificerrevisited",
"invulnerability": "wizard",
"jimsglowingcoin": "wizard",
"jimsmagicmissile": "wizard",
"jump": "artificer,druid,ranger,sorcerer,wizard,artificer,artificerrevisited",
"knock": "bard,sorcerer,wizard",
"legendlore": "bard,cleric,wizard",
"leomundssecretchest": "artificer,wizard,artificer,artificerrevisited",
"leomundstinyhut": "bard,wizard",
"lesserrestoration": "artificer,bard,cleric,druid,paladin,ranger,artificer,artificerrevisited",
"levitate": "artificer,sorcerer,wizard,artificerrevisited",
"lifetransference": "cleric,wizard",
"light": "artificer,bard,cleric,sorcerer,wizard,artificerrevisited",
"lightningarrow": "ranger",
"lightningbolt": "sorcerer,wizard",
"lightninglure": "sorcerer,warlock,wizard",
"locateanimalsorplants": "bard,druid,ranger",
"locatecreature": "bard,cleric,druid,paladin,ranger,wizard",
"locateobject": "bard,cleric,druid,paladin,ranger,wizard",
"longstrider": "artificer,bard,druid,ranger,wizard,artificer,artificerrevisited",
"maddeningdarkness": "warlock,wizard",
"maelstrom": "druid",
"magearmor": "sorcerer,wizard",
"magehand": "artificer,bard,sorcerer,warlock,wizard,artificerrevisited",
"magiccircle": "cleric,paladin,warlock,wizard",
"magicjar": "wizard",
"magicmissile": "sorcerer,wizard",
"magicmouth": "artificer,bard,wizard,artificerrevisited",
"magicstone": "artificer,druid,warlock",
"magicweapon": "artificer,paladin,wizard,artificer,artificerrevisited",
"majorimage": "bard,sorcerer,warlock,wizard",
"masscurewounds": "bard,cleric,druid",
"massheal": "cleric",
"masshealingword": "cleric",
"masspolymorph": "bard,sorcerer,wizard",
"masssuggestion": "bard,sorcerer,warlock,wizard",
"maximiliansearthengrasp": "sorcerer,wizard",
"maze": "wizard",
"meldintostone": "cleric,druid",
"melfsacidarrow": "wizard",
"melfsminutemeteors": "sorcerer,wizard",
"acidarrow": "wizard",
"mending": "artificer,bard,cleric,druid,sorcerer,wizard,artificerrevisited",
"mentalprison": "sorcerer,warlock,wizard",
"message": "artificer,bard,sorcerer,wizard,artificerrevisited",
"meteorswarm": "sorcerer,wizard",
"mightyfortress": "wizard",
"mindblank": "bard,wizard",
"mindspike": "sorcerer,warlock,wizard",
"minorillusion": "bard,sorcerer,warlock,wizard",
"miragearcane": "bard,druid,wizard",
"mirrorimage": "sorcerer,warlock,wizard",
"mislead": "bard,wizard",
"mistystep": "sorcerer,warlock,wizard",
"modifymemory": "bard,wizard",
"moldearth": "druid,sorcerer,wizard",
"moonbeam": "druid",
"mordenkainensfaithfulhound": "artificer,wizard,artificer,artificerrevisited",
"motivationalspeech": "bard,cleric",
"faithfulhound": "wizard,artificer,artificerrevisited",
"mordenkainensmagnificentmansion": "bard,wizard",
"magnificentmansion": "bard,wizard",
"mordenkainensprivatesanctum": "artificer,wizard,artificer,artificerrevisited",
"mordenkainenssword": "bard,wizard",
"arcanesword": "bard,wizard",
"moveearth": "druid,sorcerer,wizard",
"negativeenergyflood": "warlock,wizard",
"nondetection": "bard,ranger,wizard",
"nystulsmagicaura": "wizard",
"arcanistsmagicaura": "wizard",
"otilukesfreezingsphere": "wizard",
"otilukesresilientsphere": "artificer,wizard,artificer,artificerrevisited",
"ottosirresistibledance": "bard,wizard",
"passwithouttrace": "druid,ranger",
"passwall": "wizard",
"phantasmalforce": "bard,sorcerer,wizard",
"phantasmalkiller": "wizard",
"phantomsteed": "wizard",
"planarally": "cleric",
"planarbinding": "bard,cleric,druid,wizard",
"planeshift": "cleric,druid,sorcerer,warlock,wizard",
"plantgrowth": "bard,druid,ranger",
"poisonspray": "artificer,druid,sorcerer,warlock,wizard,artificerrevisited",
"polymorph": "bard,druid,sorcerer,wizard",
"powerwordheal": "bard",
"powerwordkill": "bard,sorcerer,warlock,wizard",
"powerwordpain": "sorcerer,warlock,wizard",
"powerwordstun": "bard,sorcerer,warlock,wizard",
"prayerofhealing": "cleric",
"prestidigitation": "artificer,bard,sorcerer,warlock,wizard,artificerrevisited",
"primalsavagery": "druid",
"primordialward": "druid",
"prismaticspray": "sorcerer,wizard",
"prismaticwall": "wizard",
"produceflame": "druid",
"programmedillusion": "bard,wizard",
"projectimage": "bard,wizard",
"protectionfromenergy": "artificer,cleric,druid,ranger,sorcerer,wizard,artificer,artificerrevisited",
"protectionfromevilandgood": "cleric,paladin,warlock,wizard",
"protectionfrompoison": "artificer,cleric,druid,paladin,ranger,artificer,artificerrevisited",
"psychicscream": "bard,sorcerer,warlock,wizard",
"purifyfoodanddrink": "artificer,cleric,druid,paladin",
"pyrotechnics": "artificer,bard,sorcerer,wizard",
"raisedead": "bard,cleric,paladin",
"rarystelepathicbond": "wizard",
"rayofenfeeblement": "warlock,wizard",
"rayoffrost": "artificer,sorcerer,wizard,artificerrevisited",
"rayofsickness": "sorcerer,wizard",
"regenerate": "bard,cleric,druid",
"reincarnate": "druid",
"removecurse": "cleric,paladin,warlock,wizard",
"resistance": "artificer,cleric,druid,artificerrevisited",
"resurrection": "bard,cleric",
"reversegravity": "druid,sorcerer,wizard",
"revivify": "artificer,cleric,paladin,artificer,artificerrevisited",
"ropetrick": "artificer,wizard,artificer,artificerrevisited",
"sacredflame": "cleric",
"sanctuary": "artificer,cleric,artificer,artificerrevisited",
"scatter": "sorcerer,warlock,wizard",
"scorchingray": "sorcerer,wizard",
"scrying": "bard,cleric,druid,warlock,wizard",
"searingsmite": "paladin",
"seeinvisibility": "artificer,bard,sorcerer,wizard,artificerrevisited",
"seeming": "bard,sorcerer,wizard",
"sending": "bard,cleric,wizard",
"sequester": "wizard",
"shadowblade": "sorcerer,warlock,wizard",
"shadowofmoil": "warlock",
"shapewater": "druid,sorcerer,wizard",
"shapechange": "druid,wizard",
"shatter": "bard,sorcerer,warlock,wizard",
"shield": "sorcerer,wizard",
"shieldoffaith": "cleric,paladin,artificer,artificerrevisited",
"shillelagh": "druid",
"shockinggrasp": "artificer,sorcerer,wizard,artificerrevisited",
"sickeningradiance": "sorcerer,warlock,wizard",
"silence": "bard,cleric,ranger",
"silentimage": "bard,sorcerer,wizard",
"simulacrum": "wizard",
"skillempowerment": "artificer,bard,sorcerer,wizard",
"skywrite": "artificer,bard,druid,wizard",
"sleep": "bard,sorcerer,wizard",
"sleetstorm": "druid,sorcerer,wizard",
"slow": "sorcerer,wizard",
"snare": "artificer,druid,ranger,wizard",
"snillocssnowballswarm": "sorcerer,wizard",
"soulcage": "warlock,wizard",
"sparethedying": "artificer,cleric,artificerrevisited",
"speakwithanimals": "bard,druid,ranger",
"speakwithdead": "bard,cleric",
"speakwithplants": "bard,druid,ranger",
"spiderclimb": "artificer,sorcerer,warlock,wizard,artificer,artificerrevisited",
"spikegrowth": "druid,ranger",
"spiritguardians": "cleric",
"spiritualweapon": "cleric",
"staggeringsmite": "paladin",
"steelwindstrike": "ranger,wizard",
"stinkingcloud": "bard,sorcerer,wizard",
"stoneshape": "artificer,cleric,druid,wizard,artificer,artificerrevisited",
"stoneskin": "artificer,druid,ranger,sorcerer,wizard,artificer,artificerrevisited",
"stormofvengeance": "druid",
"stormsphere": "sorcerer,wizard",
"suggestion": "bard,sorcerer,warlock,wizard",
"summongreaterdemon": "warlock,wizard",
"summonlesserdemons": "warlock,wizard",
"sunbeam": "druid,sorcerer,wizard",
"sunburst": "druid,sorcerer,wizard",
"swiftquiver": "ranger",
"swordburst": "sorcerer,warlock,wizard",
"synapticstatic": "bard,sorcerer,warlock,wizard",
"symbol": "bard,cleric,wizard",
"tashashideouslaughter": "bard,wizard",
"hideouslaughter": "bard,wizard",
"telekinesis": "sorcerer,wizard",
"telepathy": "wizard",
"teleport": "bard,sorcerer,wizard",
"teleportationcircle": "bard,sorcerer,wizard",
"templeofthegods": "cleric",
"tensersfloatingdisk": "wizard",
"tensersfloatingdisc": "wizard",
"tenserstransformation": "wizard",
"floatingdisc": "wizard",
"thaumaturgy": "cleric",
"thornwhip": "artificer,druid,artificerrevisited",
"thunderstep": "sorcerer,warlock,wizard",
"thunderclap": "artificer,bard,druid,sorcerer,warlock,wizard",
"thunderoussmite": "paladin",
"thunderwave": "bard,druid,sorcerer,wizard",
"tidalwave": "druid,sorcerer,wizard",
"timestop": "sorcerer,wizard",
"tinyservant": "artificer,wizard",
"tollthedead": "cleric,warlock,wizard",
"tongues": "bard,cleric,sorcerer,warlock,wizard",
"transmuterock": "artificer,druid,wizard",
"transportviaplants": "druid",
"treestride": "druid,ranger",
"truepolymorph": "bard,warlock,wizard",
"trueresurrection": "cleric,druid",
"trueseeing": "bard,cleric,sorcerer,warlock,wizard",
"truestrike": "bard,sorcerer,warlock,wizard",
"tsunami": "druid",
"unseenservant": "bard,warlock,wizard",
"vampirictouch": "warlock,wizard",
"viciousmockery": "bard",
"vitriolicsphere": "sorcerer,wizard",
"walloffire": "druid,sorcerer,wizard",
"wallofforce": "wizard",
"wallofice": "wizard",
"walloflight": "sorcerer,warlock,wizard",
"wallofsand": "wizard",
"wallofstone": "artificer,druid,sorcerer,wizard,artificerrevisited",
"wallofthorns": "druid",
"wallofwater": "druid,sorcerer,wizard",
"wardingbond": "cleric",
"wardingwind": "bard,druid,sorcerer,wizard",
"waterbreathing": "artificer,druid,ranger,sorcerer,wizard,artificer,artificerrevisited",
"waterwalk": "artificer,cleric,druid,ranger,sorcerer,artificer,artificerrevisited",
"waterysphere": "druid,sorcerer,wizard",
"web": "artificer,sorcerer,wizard",
"weird": "wizard",
"whirlwind": "druid,sorcerer,wizard",
"windwalk": "druid",
"windwall": "druid,ranger",
"wish": "sorcerer,wizard",
"witchbolt": "sorcerer,warlock,wizard",
"wordofradiance": "cleric",
"wordofrecall": "cleric",
"wrathofnature": "druid,ranger",
"wrathfulsmite": "paladin",
"zephyrstrike": "ranger",
"zoneoftruth": "bard,cleric,paladin"
}

View File

@ -1,58 +0,0 @@
{
"CMPBrowser.compendiumBrowser": "Kompendium Browser",
"CMPBrowser.sortBy": "Sortiere anhand",
"CMPBrowser.generalSettings": "Allgemeine Einstellungen",
"CMPBrowser.allowSpellAcc": "Erlaubew Spielern den Zugriff auf den Zauber Browser",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc": "Erlaube Spielern den Zugriff auf den NSC Browser",
"CMPBrowser.compSettingsSpell": "Gegenstands Kompendium Einstellungen",
"CMPBrowser.compSettingsNpc": "NSC Kompendium Einstellungen",
"CMPBrowser.load": "Laden",
"CMPBrowser.castingTime": "Wirkungsdauer",
"CMPBrowser.spellType": "Zauberart",
"CMPBrowser.damageType": "Schadensart",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "Barde",
"CMPBrowser.cleric": "Kleriker",
"CMPBrowser.druid": "Druide",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin": "Paladin",
"CMPBrowser.ranger": "Waldläufer",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer": "Zauberer",
"CMPBrowser.warlock": "Hexenmeister",
"CMPBrowser.wizard": "Magier",
"CMPBrowser.general": "Allgemein",
"CMPBrowser.hasSpells": "Hat Zauber",
"CMPBrowser.hasLegAct": "Hat Legendäre Aktionen",
"CMPBrowser.hasLegRes": "Hat Legendäre Resistenz",
"CMPBrowser.dmgInteraction": "Schadensinteraktion",
"CMPBrowser.dmgDealt": "Schaden zugefügt",
"CMPBrowser.Tab.SpellBrowser": "Zauber Browser",
"CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"CMPBrowser.Tab.ItemBrowser": "Item Browser",
"CMPBrowser.Tab.NPCBrowser": "NSC Browser",
"CMPBrowser.Tab.Settings": "Einstellungen",
"CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters": "Reset Filters"
}

View File

@ -1,82 +0,0 @@
{
"CMPBrowser": {
"compendiumBrowser": "Compendium Browser",
"sortBy": "Sort by",
"generalSettings": "General Settings",
"allowSpellAcc": "Allow Players Access to the spell browser",
"allowFeatAcc": "Allow Players Access to the feat browser",
"allowItemAcc": "Allow Players Access to the item browser",
"allowNpcAcc": "Allow Players Access to the npc browser",
"compSettingsSpell": "Item Compendium Settings",
"compSettingsNpc": "NPC Compendium Settings",
"load": "Load",
"castingTime": "Casting Time",
"spellType": "Spell Type",
"damageType": "Damage Type",
"UsesResources": "Uses Resources",
"GameMechanics": "Game Mechanics",
"ItemSubtype": "Item Subtype",
"MagicItems": "Magic Items",
"ItemsPacks": "Packs",
"ItemsPacksBurglar": "Burglar's Pack",
"ItemsPacksDiplomat": "Diplomat's Pack",
"ItemsPacksDungeoneer": "Dungeoneer's Pack",
"ItemsPacksEntertainer": "Entertainer's Pack",
"ItemsPacksExplorer": "Explorer's Pack",
"ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"ItemsPacksPriest": "Priest's Pack",
"ItemsPacksScholar": "Scholar's Pack",
"general": "General",
"overall": "Overall Type",
"subfeature": "Subfeature Type",
"hasSpells": "Has Spells",
"hasLegAct": "Has Legendary Actions",
"hasLegRes": "Has Legendary Resistance",
"dmgInteraction": "Damage Interaction",
"dmgDealt": "Damage Dealt",
"Tab": {
"SpellBrowser": "Spells",
"FeatBrowser": "Features",
"ItemBrowser": "Items",
"NPCBrowser": "Actors",
"Settings": "Settings"
},
"SETTING": {
"Maxload.NAME": "Maximum load",
"Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"extraButtonsGlobal.NAME": "Globally Enable Buttons",
"extraButtonsGlobal.HINT": "Globally enable shortcut buttons to the browser that are added to sheets (Must re-open window for it to apply)",
"extraSheetButtons.NAME": "Enable Extra Sheet Buttons",
"extraSheetButtons.HINT": "Enable extra shortcut buttons that appear on PC sheets (Must re-open window for it to apply)",
"extraAdvancementButtons.NAME": "Enable Extra Advancement Buttons",
"extraAdvancementButtons.HINT": "Enable extra shortcut buttons that appear on advancement windows (Must re-open window for it to apply)",
"bannersGlobal.NAME": "Enable Banners - Global",
"bannersGlobal.HINT": "Enable Banners for missing key features on PC sheets for all players",
"bannersLocal.NAME": "Enable Banners - Local",
"bannersLocal.HINT": "Enable Banners for missing key features on PC sheets for self"
},
"LOADING": {
"Message": "Loading..."
},
"LOADED": {
"Message": {
"feat": "Loaded {numLoaded} feats",
"item": "Loaded {numLoaded} items",
"npc": "Loaded {numLoaded} npcs",
"spell": "Loaded {numLoaded} spells"
},
"MaxLoaded": "(maximum displayed; to see more, use the filters)"
},
"ToolTip": {
"Feats": "Find Feats",
"Spells": "Find Spells",
"Features": "Find Features"
},
"FindA": {
"race": "Missing a Race, click to open list",
"background": "Missing a Background, click to open list",
"class": "Missing a Class, click to open list"
},
"Filters.ResetFilters": "Reset Filters"
}
}

View File

@ -1,58 +0,0 @@
{
"CMPBrowser.compendiumBrowser": "Compendium Browser",
"CMPBrowser.sortBy": "Ordenar por",
"CMPBrowser.generalSettings": "Opciones generales",
"CMPBrowser.allowSpellAcc": "Permitir a los jugadores el acceso al navegador de conjuros",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc": "Permitir a los jugadores el acceso al navegador de NPCs",
"CMPBrowser.compSettingsSpell": "Opciones del compendio de objetos",
"CMPBrowser.compSettingsNpc": "Opciones del compendio de NPCs",
"CMPBrowser.load": "Cargar",
"CMPBrowser.castingTime": "Tiempo de lanzamiento",
"CMPBrowser.spellType": "Tipo de conjuro",
"CMPBrowser.damageType": "Tipo de daño",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.artificer": "Artificiero",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "Bardo",
"CMPBrowser.cleric": "Clérigo",
"CMPBrowser.druid": "Druida",
"CMPBrowser.fighter": "Guerrero",
"CMPBrowser.monk": "Monje",
"CMPBrowser.paladin": "Paladín",
"CMPBrowser.ranger": "Explorador",
"CMPBrowser.rogue": "Pícaro",
"CMPBrowser.sorcerer": "Hechicero",
"CMPBrowser.warlock": "Brujo",
"CMPBrowser.wizard": "Mago",
"CMPBrowser.general": "General",
"CMPBrowser.hasSpells": "Tiene conjuros",
"CMPBrowser.hasLegAct": "Tiene acciones legendarias",
"CMPBrowser.hasLegRes": "Tiene resistencia legendaria",
"CMPBrowser.dmgInteraction": "Interacción con el daño",
"CMPBrowser.dmgDealt": "Daño infligido",
"CMPBrowser.Tab.SpellBrowser": "Conjuros",
"CMPBrowser.Tab.FeatBrowser": "Rasgos de clase",
"CMPBrowser.Tab.ItemBrowser": "Objetos",
"CMPBrowser.Tab.NPCBrowser": "NPCs",
"CMPBrowser.Tab.Settings": "Opciones",
"CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters": "Reset Filters"
}

View File

@ -1,58 +0,0 @@
{
"CMPBrowser.compendiumBrowser": "Recherche dans les Compendium",
"CMPBrowser.sortBy": "Trié par",
"CMPBrowser.generalSettings": "Paramètres généraux",
"CMPBrowser.allowSpellAcc": "Autoriser les joueurs à accéder aux listes de sorts",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc": "Autoriser les joueurs à accéder aux listes de PNJ",
"CMPBrowser.compSettingsSpell": "Paramètres de compendium de sorts",
"CMPBrowser.compSettingsNpc": "Paramètres de compendium de PNJ",
"CMPBrowser.load": "Charger",
"CMPBrowser.castingTime": "Durée d'incantation",
"CMPBrowser.spellType": "Type de sort",
"CMPBrowser.damageType": "Type de dégâts",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "Barde",
"CMPBrowser.cleric": "Clerc",
"CMPBrowser.druid": "Druide",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin": "Paladin",
"CMPBrowser.ranger": "Rôdeur",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer": "Sorcier",
"CMPBrowser.warlock": "Ensorceleur",
"CMPBrowser.wizard": "Magicien",
"CMPBrowser.general": "Général",
"CMPBrowser.hasSpells": "à des Sorts",
"CMPBrowser.hasLegAct": "à des Actions Légendaires",
"CMPBrowser.hasLegRes": "à des Resistances Légendaires",
"CMPBrowser.dmgInteraction": "Spécificité des dégâts",
"CMPBrowser.dmgDealt": "Type de dégats",
"CMPBrowser.Tab.SpellBrowser": "Recherche de sorts",
"CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"CMPBrowser.Tab.ItemBrowser": "Item Browser",
"CMPBrowser.Tab.NPCBrowser": "Recherche de PNJ",
"CMPBrowser.Tab.Settings": "Paramétrages",
"CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters": "Reset Filters"
}

View File

@ -1,58 +0,0 @@
{
"CMPBrowser.compendiumBrowser": "辞典ブラウザ",
"CMPBrowser.sortBy": "並び替え",
"CMPBrowser.generalSettings": "一般設定",
"CMPBrowser.allowSpellAcc": "プレイヤーに呪文辞典の使用を許可する。",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc": "プレイヤーにNPC辞典の使用を許可する。",
"CMPBrowser.compSettingsSpell": "呪文辞典設定",
"CMPBrowser.compSettingsNpc": "NPC辞典設定",
"CMPBrowser.load": "追加",
"CMPBrowser.castingTime": "発動時間",
"CMPBrowser.spellType": "呪文種別",
"CMPBrowser.damageType": "ダメージ種別",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "バード",
"CMPBrowser.cleric": "クレリック",
"CMPBrowser.druid": "ドルイド",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin": "パラディン",
"CMPBrowser.ranger": "レンジャー",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer": "ソーサラー",
"CMPBrowser.warlock": "ウォーロック",
"CMPBrowser.wizard": "ウィザード",
"CMPBrowser.general": "一般",
"CMPBrowser.hasSpells": "術者",
"CMPBrowser.hasLegAct": "伝説的アクション所持",
"CMPBrowser.hasLegRes": "伝説的抵抗所持",
"CMPBrowser.dmgInteraction": "ダメージ関連",
"CMPBrowser.dmgDealt": "与えるダメージ種別",
"CMPBrowser.Tab.SpellBrowser": "呪文ブラウザ",
"CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"CMPBrowser.Tab.ItemBrowser": "Item Browser",
"CMPBrowser.Tab.NPCBrowser": "NPCブラウザ",
"CMPBrowser.Tab.Settings": "設定",
"CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters": "Reset Filters"
}

View File

@ -1,58 +0,0 @@
{
"CMPBrowser.compendiumBrowser": "Navegador de Compêndio",
"CMPBrowser.sortBy": "Classificar por",
"CMPBrowser.generalSettings": "Configurações Gerais",
"CMPBrowser.allowSpellAcc": "Permite o acesso dos jogadores ao navegador de Magias",
"CMPBrowser.allowFeatAcc": "Permite o acesso dos jogadores ao navegador de Características",
"CMPBrowser.allowItemAcc": "Permite o acesso dos jogadores ao navegador de Itens",
"CMPBrowser.allowNpcAcc": "Permite o acesso dos jogadores ao navegador de NPCs",
"CMPBrowser.compSettingsSpell": "Configuração de Compêndio de Itens",
"CMPBrowser.compSettingsNpc": "Configuração de Compêndio de NPCs",
"CMPBrowser.load": "Carregar",
"CMPBrowser.castingTime": "Custo de Ativação",
"CMPBrowser.spellType": "Tipo da Magia",
"CMPBrowser.damageType": "Tipo de Dano",
"CMPBrowser.UsesResources": "Usa Recursos",
"CMPBrowser.GameMechanics": "Mecânicas do Jogo",
"CMPBrowser.ItemSubtype": "Tipo do Item",
"CMPBrowser.MagicItems": "Itens Mágicos",
"CMPBrowser.ItemsPacks": "Kits de Equipamentos",
"CMPBrowser.ItemsPacksBurglar": "Kit de Assaltante",
"CMPBrowser.ItemsPacksDiplomat": "Kit de Diplomata",
"CMPBrowser.ItemsPacksDungeoneer": "Kit de Explorador",
"CMPBrowser.ItemsPacksEntertainer": "Kit de Artista",
"CMPBrowser.ItemsPacksExplorer": "Kit de Aventureiro",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Kit de Sacerdote",
"CMPBrowser.ItemsPacksScholar": "Kit de Erudito",
"CMPBrowser.artificer": "Artífice",
"CMPBrowser.barbarian": "Bárbaro",
"CMPBrowser.bard": "Bardo",
"CMPBrowser.cleric": "Clérigo",
"CMPBrowser.druid": "Druida",
"CMPBrowser.fighter": "Guerreiro",
"CMPBrowser.monk": "Monge",
"CMPBrowser.paladin": "Paladino",
"CMPBrowser.ranger": "Guardião",
"CMPBrowser.rogue": "Ladino",
"CMPBrowser.sorcerer": "Feiticeiro",
"CMPBrowser.warlock": "Bruxo",
"CMPBrowser.wizard": "Mago",
"CMPBrowser.general": "Geral",
"CMPBrowser.hasSpells": "Tem Magias",
"CMPBrowser.hasLegAct": "Tem Ações Lendárias",
"CMPBrowser.hasLegRes": "Tem Resistência Lendária",
"CMPBrowser.dmgInteraction": "Interação do Dano",
"CMPBrowser.dmgDealt": "Dano Causado",
"CMPBrowser.Tab.SpellBrowser": "Magias",
"CMPBrowser.Tab.FeatBrowser": "Características",
"CMPBrowser.Tab.ItemBrowser": "Itens",
"CMPBrowser.Tab.NPCBrowser": "Atores",
"CMPBrowser.Tab.Settings": "Configurações",
"CMPBrowser.SETTING.Maxload.NAME": "Capacidade máxima",
"CMPBrowser.SETTING.Maxload.HINT": "Número máximo de magias, características, itens ou NPCs a serem exibidos; para ver mais use os filtros. Essa configuração é usada para gerenciar memória e capacidade do servidor.",
"CMPBrowser.LOADING.Message": "Carregando...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "{numLoaded} {itemType}s carregados(as)",
"CMPBrowser.LOADED.MaxLoaded": "(máximo exibido; para ver mais, use os filtros)",
"CMPBrowser.Filters.ResetFilters": "Redefinir Filtros"
}

View File

@ -1,68 +0,0 @@
{
"id": "compendium-browser",
"title": "Compendium Browser",
"description": "Easily browse and filter spells, feats, items, and npcs loaded from compendiums!",
"authors": [
{
"name": "Matheus Clemente",
"discord": "mclemente#5524"
}
],
"url": "This is auto replaced",
"readme": "https://github.com/mclemente/compendium-browser/blob/master/README.md",
"bugs": "https://github.com/mclemente/compendium-browser/issues",
"changelog": "https://github.com/mclemente/compendium-browser/blob/master/Patchnotes.md",
"version": "This is auto replaced",
"compatibility": {
"minimum": "11",
"verified": "11"
},
"esmodules": ["module/compendium-browser.js"],
"styles": ["styles/compendium-browser.css"],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
},
{
"lang": "ja",
"name": "Japanese",
"path": "lang/ja.json"
},
{
"lang": "fr",
"name": "French (FRANCE)",
"path": "lang/fr.json"
},
{
"lang": "pt-BR",
"name": "Português (Brasil)",
"path": "lang/pt-BR.json"
},
{
"lang": "es",
"name": "Español",
"path": "lang/es.json"
},
{
"lang": "de",
"name": "Deutsch",
"path": "lang/de.json"
}
],
"relationships": {
"systems": [{
"id": "dnd5e",
"type": "system",
"compatibility": {
"minimum": "3.0.0",
"verified": "3.0.3"
}
}],
"requires": [],
"conflicts": []
},
"manifest": "This is auto replaced",
"download": "This is auto replaced"
}

File diff suppressed because it is too large Load Diff

View File

@ -1,21 +0,0 @@
// SPDX-FileCopyrightText: 2022 Johannes Loher
//
// SPDX-License-Identifier: MIT
export async function preloadTemplates() {
const templatePaths = [
"modules/compendium-browser/templates/spell-browser.html",
"modules/compendium-browser/templates/spell-browser-list.html",
"modules/compendium-browser/templates/npc-browser.html",
"modules/compendium-browser/templates/npc-browser-list.html",
"modules/compendium-browser/templates/feat-browser.html",
"modules/compendium-browser/templates/feat-browser-list.html",
"modules/compendium-browser/templates/item-browser.html",
"modules/compendium-browser/templates/item-browser-list.html",
"modules/compendium-browser/templates/filter-container.html",
"modules/compendium-browser/templates/settings.html",
"modules/compendium-browser/templates/loading.html",
];
return loadTemplates(templatePaths);
}

File diff suppressed because it is too large Load Diff

View File

@ -1,82 +0,0 @@
export function registerSettings() {
game.compendiumBrowser.readCompendiums = {
loadedSpellCompendium: {},
loadedNpcCompendium: {},
};
for (const compendium of game.packs) {
if (compendium.documentName === "Item") {
game.compendiumBrowser.readCompendiums.loadedSpellCompendium[compendium.collection] = {
load: true,
name: `${compendium.metadata.label} (${compendium.collection})`,
};
}
if (compendium.documentName === "Actor") {
game.compendiumBrowser.readCompendiums.loadedNpcCompendium[compendium.collection] = {
load: true,
name: `${compendium.metadata.label} (${compendium.collection})`,
};
}
}
// creating game setting container
game.settings.register("compendium-browser", "settings", {
name: "Compendium Browser Settings",
hint: "Settings to exclude packs from loading and visibility of the browser",
default: game.compendiumBrowser.readCompendiums,
type: Object,
scope: "world"
});
game.settings.register("compendium-browser", "maxload", {
name: game.i18n.localize("CMPBrowser.SETTING.Maxload.NAME"),
hint: game.i18n.localize("CMPBrowser.SETTING.Maxload.HINT"),
scope: "world",
config: true,
default: 600,
type: Number,
range: {
// If range is specified, the resulting setting will be a range slider
min: 200,
max: 2000,
step: 100,
},
});
game.settings.register("compendium-browser", "extraButtonsGlobal", {
name: game.i18n.localize("CMPBrowser.SETTING.extraButtonsGlobal.NAME"),
hint: game.i18n.localize("CMPBrowser.SETTING.extraButtonsGlobal.HINT"),
scope: "world",
config: true,
default: true,
type: Boolean,
});
game.settings.register("compendium-browser", "extraSheetButtons", {
name: game.i18n.localize("CMPBrowser.SETTING.extraSheetButtons.NAME"),
hint: game.i18n.localize("CMPBrowser.SETTING.extraSheetButtons.HINT"),
scope: "client",
config: true,
default: true,
type: Boolean,
});
game.settings.register("compendium-browser", "extraAdvancementButtons", {
name: game.i18n.localize("CMPBrowser.SETTING.extraAdvancementButtons.NAME"),
hint: game.i18n.localize("CMPBrowser.SETTING.extraAdvancementButtons.HINT"),
scope: "client",
config: true,
default: true,
type: Boolean,
});
game.settings.register("compendium-browser", "bannersGlobal", {
name: game.i18n.localize("CMPBrowser.SETTING.bannersGlobal.NAME"),
hint: game.i18n.localize("CMPBrowser.SETTING.bannersGlobal.HINT"),
scope: "world",
config: true,
default: true,
type: Boolean,
});
game.settings.register("compendium-browser", "bannersLocal", {
name: game.i18n.localize("CMPBrowser.SETTING.bannersLocal.NAME"),
hint: game.i18n.localize("CMPBrowser.SETTING.bannersLocal.HINT"),
scope: "client",
config: true,
default: true,
type: Boolean,
});
}

View File

@ -1,359 +0,0 @@
@color_1: #bbb;
#compendium {
.directory-footer {
.compendium-browser-btn {
margin-top: 5px;
}
display: block;
}
}
.compendium-browser {
overflow-y: hidden !important;
max-width: 1100px;
max-height: 90vh;
min-width: 630px;
min-height: 500px;
.window-content {
overflow-y: hidden !important;
height: 100%;
.parent {
overflow-y: hidden !important;
height: 100%;
.content {
overflow-y: hidden !important;
height: calc(100% - 2em);
.tab {
overflow-y: hidden !important;
height: 100%;
.browser {
overflow-y: hidden !important;
height: 100%;
ul {
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
}
.settings {
overflow-y: auto;
height: 100%;
}
}
}
}
}
.tabs {
max-height: 2em;
border-bottom: 1px solid var(--color-border-light-primary);
}
.tabContainer {
height: calc(100% - 2em);
.tab {
width: 100%;
height: 100%;
overflow: scroll;
}
}
.control-area {
position: sticky;
display: block;
min-width: 250px;
max-width: 45%;
width: 350px;
height: 100%;
padding-right: 5px;
overflow: auto;
button {
background: rgba(0, 0, 0, 0.05);
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding: 2px;
}
.filtercontainer {
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding: 2px;
h3 {
margin: 0;
cursor: pointer;
}
dl {
margin: 5px 0;
}
div {
margin: 5px 0;
}
dt {
display: inline-block;
width: 40%;
padding-left: 5px;
}
dd {
display: inline-block;
width: 58%;
margin-left: 0;
select {
width: 100%;
}
}
.multiselect {
border: 1px solid #bbb;
border-radius: 3px;
vertical-align: middle;
line-height: 32px;
margin: 2px 0;
label {
padding: 5px;
}
input {
vertical-align: middle;
}
}
.small-input {
width: calc(100% - 44px);
height: 27px;
background: rgba(0, 0, 0, 0.05);
border: 1px solid #444;
border-radius: 3px;
padding: 0 3px;
text-overflow: ellipsis;
}
.small-select {
width: 40px;
}
}
}
.list-area {
position: sticky;
display: flex;
min-width: 250px;
max-width: 55%;
width: 400px;
height: 100%;
padding-right: 5px;
.loading {
flex: 0;
text-align: center;
}
}
.browser {
height: 100%;
overflow-y: hidden !important;
.window-content {
overflow-y: hidden !important;
}
ul {
float: right;
display: block;
min-width: 335px;
margin: 0;
height: 100%;
overflow: auto;
padding-left: 5px;
.filter-tags {
display: none;
}
li {
span {
white-space: nowrap;
overflow: hidden;
}
.spell-tags {
span.negative {
color: @color_1;
}
}
.item-name {
span {
white-space: break-spaces;
height: inherit;
display: block;
}
}
.feat-tags {
span {
white-space: break-spaces;
height: inherit;
display: block;
}
}
}
}
.spacer {
display: inline-block;
min-width: 5px;
}
.spacer-large {
display: inline-block;
min-width: 15px;
}
}
.item-browser {
li {
cursor: default;
vertical-align: middle;
line-height: 16px;
margin: 2px 0;
height: 32px;
.item-image {
max-width: 32px;
height: 32px;
}
.item-name {
padding-left: 5px;
flex: 2;
}
.feat-tags {
text-align: right;
margin-right: 3px;
margin-left: 3px;
text-transform: capitalize;
height: 32px;
}
.item-tags {
text-align: right;
margin-right: 3px;
margin-left: 3px;
text-transform: capitalize;
height: 32px;
}
}
}
.feat-browser {
li {
cursor: default;
vertical-align: middle;
line-height: 16px;
margin: 2px 0;
height: 32px;
.item-image {
max-width: 32px;
height: 32px;
}
.item-name {
padding-left: 5px;
flex: 2;
}
.feat-tags {
text-align: right;
margin-right: 3px;
margin-left: 3px;
text-transform: capitalize;
height: 32px;
}
.item-tags {
text-align: right;
margin-right: 3px;
margin-left: 3px;
text-transform: capitalize;
height: 32px;
}
}
}
.spell-browser {
li {
cursor: default;
vertical-align: middle;
line-height: 16px;
margin: 2px 0;
height: 32px;
.item-image {
max-width: 32px;
height: 32px;
}
.item-name {
padding-left: 5px;
flex: 2;
}
.feat-tags {
text-align: right;
margin-right: 3px;
margin-left: 3px;
text-transform: capitalize;
height: 32px;
}
.item-tags {
text-align: right;
margin-right: 3px;
margin-left: 3px;
text-transform: capitalize;
height: 32px;
}
}
.spell {
.spell-level {
text-align: center;
font-weight: 900;
max-width: 18px;
height: 32px;
}
.spell-tags {
text-align: right;
margin-right: 3px;
font-weight: 900;
max-width: 100px;
height: 32px;
}
}
}
.npc-browser {
.npc {
cursor: default;
vertical-align: middle;
line-height: 64px;
margin: 4px 0;
.npc-image {
max-width: 64px;
height: 64px;
img {
width: 64px;
height: 64px;
border: none;
object-fit: contain;
}
}
.npc-line {
line-height: 25px;
padding: 9px 0 5px 5px;
}
.npc-name {
font-weight: bold;
font-size: 16px;
}
.cr {
display: inline-block;
width: 55px;
}
.size {
display: inline-block;
width: 75px;
}
.type {
display: inline-block;
}
}
}
.settings {
.settings-group {
border: 1px solid #bbb;
border-radius: 5px;
margin-top: 5px;
padding: 2px;
h3 {
margin: 0;
cursor: pointer;
}
label {
display: block;
}
h4 {
display: inline-block;
vertical-align: middle;
height: 100%;
}
}
}
}

View File

@ -1,25 +0,0 @@
{{#each listItems as |feat id|}}
<li class="feat flexrow draggable" data-entry-compendium="{{feat.compendium}}" data-entry-id="{{id}}">
<div class="item-image">
<img
class=""
data-src="{{feat.img}}"
data-tooltip="{{feat.name}}"
data-tooltip-direction="UP"
width="32"
height="32"
/>
</div>
<div class="item-name">
<span class="item-edit"
><a data-tooltip="({{feat.compendium}})" data-tooltip-direction="UP">{{feat.name}}</a></span
>
</div>
<div class="feat-tags">
<span data-tooltip="Class Requirement" data-tooltip-direction="UP">{{feat.classRequirementString}}</span>
</div>
<div class="filter-tags">
<input type="hidden" name="class" value="{{feat.classRequirementString}}" />
</div>
</li>
{{/each}}

View File

@ -1,34 +0,0 @@
<div class="feat-browser browser flexrow">
<div class="control-area">
<div class="filtercontainer" id="tagfilter">
<div class="filter" data-type="text" data-path="name">
<input
class=""
name="textFilter"
type="text"
value=""
data-dtype="String"
placeholder="{{localize
'Name'}}"
/>
</div>
<dl id="sorter">
<dt>{{localize "CMPBrowser.sortBy"}}:</dt>
<dd>
<select name="sortorder">
<option value="true" selected>{{localize "Name"}}</option>
<option value="false">{{localize "ITEM.TypeClass"}}</option>
</select>
</dd>
</dl>
<button id="reset-feat-filter">{{localize "CMPBrowser.Filters.ResetFilters"}}</button>
</div>
{{> "modules/compendium-browser/templates/filter-container.html" filters=featFilters}}
</div>
<div class="list-area flexcol">
<ul id="CBFeats">
{{> "modules/compendium-browser/templates/feat-browser-list.html" feats=items}}
</ul>
<span class="loading" id="CBFeatsMessage" style="flex: 0"></span>
</div>
</div>

View File

@ -1,79 +0,0 @@
{{#each filters.registeredFilterCategories as |cat key|}}
<div class="filtercontainer" id="{{key}}">
<h3>{{cat.label}}</h3>
<div class="filters">
{{#each cat.filters as |filter key|}}
<div
class="filter"
id="{{cat.labelId}}-{{filter.labelId}}"
data-path="{{filter.path}}"
data-type="{{filter.type}}"
data-valIsArray="{{filter.valIsArray}}"
>
{{#if filter.istext}}
<dt>{{filter.label}}</dt>
<dd>
{{#if filter.possibleValues}}
<select>
<option value="" selected></option>
{{#each filter.possibleValues as |label val|}}
<option value="{{val}}">{{label}}</option>
{{/each}}
</select>
{{else}}
<input type="text" />
{{/if}}
</dd>
{{/if}} {{#if filter.isbool}}
<dl>
<dt>{{filter.label}}</dt>
<dd>
<select>
<option value="null" selected></option>
<option value="true">{{localize "Yes"}}</option>
<option value="false">{{localize "No"}}</option>
</select>
</dd>
</dl>
{{/if}} {{#if filter.isselect}}
<dl>
<dt>{{filter.label}}</dt>
<dd>
<select>
<option value="null" selected></option>
{{#each filter.possibleValues as |label val|}}
<option value="{{val}}">{{label}}</option>
{{/each}}
</select>
</dd>
</dl>
{{/if}} {{#if filter.ismultiSelect}}
<div class="multiselect">
<label>{{filter.label}}</label>
<dl>
{{#each filter.possibleValues as |label val|}}
<dt><label>{{label}}</label></dt>
<dd><input type="checkbox" data-value="{{val}}" /></dd>
{{/each}}
</dl>
</div>
{{/if}} {{#if filter.isnumberCompare}}
<div class="numberCompare">
<dt>{{filter.label}}</dt>
<dd>
<select class="small-select">
<option value="null" selected></option>
<option value="=">=</option>
<option value="<">&lt;</option>
<option value=">">&gt;</option>
</select>
<input class="small-input" type="number" />
</dd>
</div>
{{/if}}
</div>
{{/each}}
</div>
</div>
{{/each}}

View File

@ -1,25 +0,0 @@
{{#each listItems as |item id|}}
<li class="item flexrow draggable" data-entry-compendium="{{item.compendium}}" data-entry-id="{{id}}">
<div class="item-image">
<img
class=""
data-src="{{item.img}}"
data-tooltip="{{item.name}}"
data-tooltip-direction="UP"
width="32"
height="32"
/>
</div>
<div class="item-name">
<span class="item-edit"
><a data-tooltip="({{item.compendium}})" data-tooltip-direction="UP">{{item.name}}</a></span
>
</div>
<div class="item-tags">
<span data-tooltip="Item Type" data-tooltip-direction="UP">{{item.type}}</span>
</div>
<div class="filter-tags">
<input type="hidden" name="type" value="{{item.type}}" />
</div>
</li>
{{/each}}

View File

@ -1,34 +0,0 @@
<div class="item-browser browser flexrow">
<div class="control-area">
<div class="filtercontainer" id="tagfilter">
<div class="filter" data-type="text" data-path="name">
<input
class=""
name="textFilter"
type="text"
value=""
data-dtype="String"
placeholder="{{localize
'Name'}}"
/>
</div>
<dl id="sorter">
<dt>{{localize "CMPBrowser.sortBy"}}:</dt>
<dd>
<select name="sortorder">
<option value="true" selected>{{localize "Name"}}</option>
<option value="false">{{localize "DND5E.Type"}}</option>
</select>
</dd>
</dl>
<button id="reset-item-filter">{{localize "CMPBrowser.Filters.ResetFilters"}}</button>
</div>
{{> "modules/compendium-browser/templates/filter-container.html" filters=itemFilters}}
</div>
<div class="list-area flexcol">
<ul id="CBItems">
{{> "modules/compendium-browser/templates/item-browser-list.html" items=items}}
</ul>
<span class="loading" id="CBItemsMessage" style="flex: 0"></span>
</div>
</div>

View File

@ -1,15 +0,0 @@
<!-- <img
class=""
src="icons/sundries/books/book-open-turquoise.webp"
data-tooltip="Loading book"
data-tooltip-direction="UP"
width="32"
height="32"
/> -->
<span class="item-edit">
{{#if doneLoading}} {{localize (concat "CMPBrowser.LOADED.Message." itemType) numLoaded=numLoaded}}
<!-- -->
{{else}} {{localize "CMPBrowser.LOADING.Message" numLoaded=numLoaded itemType=itemType}} {{/if}}
<!-- -->
{{#if maxLoaded}}{{localize "CMPBrowser.LOADED.MaxLoaded"}}{{/if}}
</span>

View File

@ -1,30 +0,0 @@
{{#each listItems as |npc id|}}
<li class="npc flexrow draggable" data-entry-compendium="{{npc.compendium}}" data-entry-id="{{id}}">
<div class="npc-image">
<img
class=""
data-src="{{npc.img}}"
data-tooltip="{{npc.name}}"
data-tooltip-direction="UP"
width="32"
height="32"
/>
</div>
<div class="npc-line">
<div class="npc-name">
<span class="item-edit"
><a data-tooltip="({{npc.compendium}})" data-tooltip-direction="UP">{{npc.name}}</a></span
>
</div>
<div class="npc-tags">
<span class="cr" data-tooltip="Challange Rating" data-tooltip-direction="UP">CR {{npc.displayCR}}</span>
<span class="size">{{npc.displaySize}}</span>
<span class="type">{{npc.displayType}}</span>
</div>
<div class="filter-tags">
<input type="hidden" name="order.cr" value="{{npc.orderCR}}" />
<input type="hidden" name="order.size" value="{{npc.orderSize}}" />
</div>
</div>
</li>
{{/each}}

View File

@ -1,35 +0,0 @@
<div class="npc-browser browser flexrow">
<div class="control-area">
<div class="filtercontainer" id="tagfilter">
<div class="filter" data-type="text" data-path="name">
<input
class=""
name="textFilter"
type="text"
value=""
data-dtype="String"
placeholder="{{localize
'Name'}}"
/>
</div>
<dl id="sorter">
<dt>{{localize "CMPBrowser.sortBy"}}:</dt>
<dd>
<select name="sortorder">
<option value="name" selected>{{localize "Name"}}</option>
<option value="cr">{{localize "DND5E.ChallengeRating"}}</option>
<option value="size">{{localize "DND5E.Size"}}</option>
</select>
</dd>
</dl>
<button id="reset-npc-filter">{{localize "CMPBrowser.Filters.ResetFilters"}}</button>
</div>
{{> "modules/compendium-browser/templates/filter-container.html" filters=npcFilters}}
</div>
<div class="list-area flexcol">
<ul id="CBNPCs">
{{> "modules/compendium-browser/templates/npc-browser-list.html" npcs=npcs}}
</ul>
<span class="loading" id="CBNpcsMessage" style="flex: 0"></span>
</div>
</div>

View File

@ -1,54 +0,0 @@
<div class="settings">
<div class="settings-group">
<h3>{{localize "CMPBrowser.generalSettings"}}</h3>
<label>
<input data-setting="allow-spell-browser" type="checkbox" {{checked settings.allowSpellBrowser}} />
<h4>{{localize "CMPBrowser.allowSpellAcc"}}</h4>
</label>
<label>
<input data-setting="allow-feat-browser" type="checkbox" {{checked settings.allowFeatBrowser}} />
<h4>{{localize "CMPBrowser.allowFeatAcc"}}</h4>
</label>
<label>
<input data-setting="allow-item-browser" type="checkbox" {{checked settings.allowItemBrowser}} />
<h4>{{localize "CMPBrowser.allowItemAcc"}}</h4>
</label>
<label>
<input data-setting="allow-npc-browser" type="checkbox" {{checked settings.allowNpcBrowser}} />
<h4>{{localize "CMPBrowser.allowNpcAcc"}}</h4>
</label>
</div>
<div class="settings-group">
<h3>{{localize "CMPBrowser.compSettingsSpell"}}</h3>
{{#each settings.loadedSpellCompendium as |spellComp key|}}
<label>
<input
data-setting="spell-compendium-setting"
data-key="{{key}}"
data-type="spell"
type="checkbox"
{{checked
spellComp.load}}
/>
<h4>{{localize "CMPBrowser.load"}} {{spellComp.name}}</h4>
</label>
{{/each}}
</div>
<div class="settings-group">
<h3>{{localize "CMPBrowser.compSettingsNpc"}}</h3>
{{#each settings.loadedNpcCompendium as |npcComp key|}}
<label>
<input
data-setting="npc-compendium-setting"
data-key="{{key}}"
data-type="npc"
type="checkbox"
{{checked
npcComp.load}}
/>
<h4>{{localize "CMPBrowser.load"}} {{npcComp.name}}</h4>
</label>
{{/each}}
</div>
</div>

View File

@ -1,59 +0,0 @@
{{#each listItems as |spell id|}}
<li class="spell flexrow draggable" data-entry-compendium="{{spell.compendium}}" data-entry-id="{{id}}">
<div class="item-image">
<img
class=""
data-src="{{spell.img}}"
data-tooltip="{{spell.name}}"
data-tooltip-direction="UP"
width="32"
height="32"
/>
</div>
<div class="item-name">
<span class="item-edit"
><a data-tooltip="({{spell.compendium}})" data-tooltip-direction="UP">{{spell.name}}</a></span
>
</div>
<div class="spell-tags">
<span data-tooltip="Spell level" data-tooltip-direction="UP"
>{{#if spell.data.level}}{{spell.data.level}}{{else}}C{{/if}}</span
>
<div class="spacer-large"></div>
<span
class="{{#unless spell.data.properties.ritual}}negative{{/unless}}"
data-tooltip="{{localize 'DND5E.Ritual'}}"
data-tooltip-direction="UP"
>R</span
>
<span
class="{{#unless spell.data.properties.concentration}}negative{{/unless}}"
data-tooltip="{{localize 'DND5E.Concentration'}}"
data-tooltip-direction="UP"
>C</span
>
<div class="spacer"></div>
<span
class="{{#unless spell.data.properties.vocal}}negative{{/unless}}"
data-tooltip="{{localize 'DND5E.ComponentVerbal'}}"
data-tooltip-direction="UP"
>V</span
>
<span
class="{{#unless spell.data.properties.somatic}}negative{{/unless}}"
data-tooltip="{{localize 'DND5E.ComponentSomatic'}}"
data-tooltip-direction="UP"
>S</span
>
<span
class="{{#unless spell.data.properties.material}}negative{{/unless}}"
data-tooltip="{{localize 'DND5E.ComponentMaterial'}}"
data-tooltip-direction="UP"
>M</span
>
</div>
<div class="filter-tags">
<input type="hidden" name="level" value="{{spell.data.level}}" />
</div>
</li>
{{/each}}

View File

@ -1,34 +0,0 @@
<div class="spell-browser browser flexrow">
<div class="control-area">
<div class="filtercontainer" id="tagfilter">
<div class="filter" data-type="text" data-path="name">
<input
class=""
name="textFilter"
type="text"
value=""
data-dtype="String"
placeholder="{{localize
'Name'}}"
/>
</div>
<dl id="sorter">
<dt>{{localize "CMPBrowser.sortBy"}}:</dt>
<dd>
<select name="sortorder">
<option value="true" selected>{{localize "Name"}}</option>
<option value="false">{{localize "DND5E.Level"}}</option>
</select>
</dd>
</dl>
<button id="reset-spell-filter">{{localize "CMPBrowser.Filters.ResetFilters"}}</button>
</div>
{{> "modules/compendium-browser/templates/filter-container.html" filters=spellFilters}}
</div>
<div class="list-area flexcol">
<ul id="CBSpells">
{{> "modules/compendium-browser/templates/spell-browser-list.html" spells=items}}
</ul>
<span class="loading" id="CBSpellsMessage" style="flex: 0"></span>
</div>
</div>

View File

@ -1,38 +0,0 @@
<div class="parent">
<div class="tabs">
{{#if showSpellBrowser}}<a class="item" data-tab="spell"
>{{localize "CMPBrowser.Tab.SpellBrowser"}}</a
>{{/if}} {{#if showFeatBrowser}}<a class="item" data-tab="feat"
>{{localize "CMPBrowser.Tab.FeatBrowser"}}</a
>{{/if}} {{#if showItemBrowser}}<a class="item" data-tab="item"
>{{localize "CMPBrowser.Tab.ItemBrowser"}}</a
>{{/if}} {{#if showNpcBrowser}}<a class="item" data-tab="npc"
>{{localize "CMPBrowser.Tab.NPCBrowser"}}</a
>{{/if}} {{#if isGM}}<a class="item" data-tab="setting"
>{{localize "CMPBrowser.Tab.Settings"}}</a
>{{/if}}
</div>
<div class="content">
<div class="tab" data-tab="spell">
{{#if showSpellBrowser}}{{>
"modules/compendium-browser/templates/spell-browser.html"}}{{/if}}
</div>
<div class="tab" data-tab="feat">
{{#if showFeatBrowser}}{{>
"modules/compendium-browser/templates/feat-browser.html"}}{{/if}}
</div>
<div class="tab" data-tab="item">
{{#if showItemBrowser}}{{>
"modules/compendium-browser/templates/item-browser.html"}}{{/if}}
</div>
<div class="tab" data-tab="npc">
{{#if showNpcBrowser}} {{>
"modules/compendium-browser/templates/npc-browser.html"}}{{/if}}
</div>
<div class="tab" data-tab="setting">
{{#if isGM}} {{>
"modules/compendium-browser/templates/settings.html"}}{{/if}}
</div>
</div>
</div>

15
sub-classes.json 100644
View File

@ -0,0 +1,15 @@
{
"artificer":["Alchemist","Gunsmith"],
"barbarian":["Ancesstrial Guardian", "Battlerager", "Berserker", "Storm Herald", "Totem Warriro", "Zealot"],
"bard":["Eloquence", "Glamour", "Lore", "Swords", "Valor", "Whispers"],
"cleric":["Arcana", "Death", "Forge", "Grave", "Knowledge", "Life", "Light", "Nature", "Order", "Tempest", "Trickery", "War Domain"],
"druid":["Dreams", "Land", "Moon", "Sheapherd", "Spores"],
"fighter":["Arcane Archer", "Battle Master", "Cavalier", "Champion", "Echo Knight", "Eldritch Knight", "Samurai"],
"monk":["Drunken Master", "Four Elements", "Kensei", "Long Death", "Open Hand", "Shadow", "Sun Soul"],
"paladin":["Ancients", "Conquest", "Crown", "Devotion", "Glory", "Oathbreaker", "Redemption", "Vengeance"],
"ranger":["Beast Master", "Gloom Stalker", "Horizon Walker", "Hunter", "Monster Slayer"],
"rogue":["Arcane Trickster", "Assassin", "Inquisitive", "Mastermind", "Scout", "Swashbuckler", "Thief"],
"sorcerer":["Devine Soul", "Draconic", "Shadow", "Storm", "Wild"],
"warlock":["Archfey", "Celestial", "Fiend","Great Old One", "Hexblade", "Undying"],
"wizard":["Abjuration", "Bladesinging", "Chronurgy", "Conjuration", "Divination", "Énchantment", "Evocation", "Graviturgy", "Illusion", "Necromancy", "Transmutation", "War Magic"]
}

View File

@ -0,0 +1,38 @@
<div class="feat-browser browser flexrow">
<div class="control-area">
<div class="filtercontainer" id="tagfilter">
<div class="filter" data-type="text" data-path="name">
<input class="" name="textFilter" type="text" value="" data-dtype="String" placeholder="{{localize "Name"}}"/>
</div>
<dl id="sorter">
<dt>{{localize "CMPBrowser.sortBy"}}:</dt>
<dd><select class="null" name="sortorder">
<option value="true" selected>{{localize "Name"}}</option>
<option value="false">Class</option>
</select></dd>
</dl>
<button id="reset-feat-filter">Reset Filters</button>
</div>
{{> "modules/compendium-browser/template/filter-container.html" filters=featFilters}}
</div>
<ul>
{{#each feats as |feat id|}}
<li class="feat flexrow draggable" data-entry-compendium="{{feat.compendium}}" data-entry-id="{{feat._id}}">
<div class="item-image">
<img class="" data-src="{{feat.img}}" title="{{feat.name}}" width="32" height="32"/>
</div>
<div class="item-name">
<span class="item-edit" ><a>{{feat.name}}</a></span>
</div>
<div class="feat-tags">
<span title="Class Requirement">{{feat.classRequirementString}}</span>
</div>
<div class="filter-tags">
<input type="hidden" name="class" value="{{feat.classRequirementString}}">
</div>
</li>
{{/each}}
</ul>
</div>

View File

@ -0,0 +1,78 @@
{{#each filters.registeredFilterCategorys as |cat key|}}
<div class="filtercontainer" id="{{key}}">
<h3>{{cat.label}}</h3>
<div class="filters">
{{#each cat.filters as |filter key|}}
<div class="filter" data-path="{{filter.path}}" data-type="{{filter.type}}" data-valIsArray="{{filter.valIsArray}}">
{{#if filter.istext}}
<dt>{{filter.label}}</dt>
<dd>
{{#if filter.possibleValues}}
<select class="null">
<option value="" selected>-</option>
{{#each filter.possibleValues as |label val|}}
<option value="{{val}}">{{label}}</option>
{{/each}}
</select>
{{else}}
<input type="text">
{{/if}}
</dd>
{{/if}}
{{#if filter.isbool}}
<dl>
<dt>{{filter.label}}</dt>
<dd>
<select class="null">
<option value="null" selected>-</option>
<option value="true">{{localize "Yes"}}</option>
<option value="false">{{localize "No"}}</option>
</select>
</dd>
</dl>
{{/if}}
{{#if filter.isselect}}
<dl>
<dt>{{filter.label}}</dt>
<dd>
<select class="null">
<option value="null" selected>-</option>
{{#each filter.possibleValues as |label val|}}
<option value="{{val}}">{{label}}</option>
{{/each}}
</select>
</dd>
</dl>
{{/if}}
{{#if filter.ismultiSelect}}
<div class="multiselect">
<label>{{filter.label}}</label>
<dl>
{{#each filter.possibleValues as |label val|}}
<dt><label>{{label}}</label></dt>
<dd><input type="checkbox" data-value="{{val}}"></dd>
{{/each}}
</dl>
</div>
{{/if}}
{{#if filter.isnumberCompare}}
<div class="numberCompare">
<dt>{{filter.label}}</dt>
<dd>
<select class="small-select">
<option value="null" selected>-</option>
<option value="=">=</option>
<option value="<">&lt;</option>
<option value=">">&gt;</option>
</select>
<input class="small-input" type="number">
</dd>
</div>
{{/if}}
</div>
{{/each}}
</div>
</div>
{{/each}}

View File

@ -0,0 +1,37 @@
<div class="item-browser browser flexrow">
<div class="control-area">
<div class="filtercontainer" id="tagfilter">
<div class="filter" data-type="text" data-path="name">
<input class="" name="textFilter" type="text" value="" data-dtype="String" placeholder="{{localize "Name"}}"/>
</div>
<dl id="sorter">
<dt>{{localize "CMPBrowser.sortBy"}}:</dt>
<dd><select class="null" name="sortorder">
<option value="true" selected>{{localize "Name"}}</option>
<option value="false">Item Type</option>
</select></dd>
</dl>
<button id="reset-item-filter">Reset Filters</button>
</div>
{{> "modules/compendium-browser/template/filter-container.html" filters=itemFilters}}
</div>
<ul>
{{#each items as |item id|}}
<li class="item flexrow draggable" data-entry-compendium="{{item.compendium}}" data-entry-id="{{item._id}}">
<div class="item-image">
<img class="" data-src="{{item.img}}" title="{{item.name}}" width="32" height="32"/>
</div>
<div class="item-name">
<span class="item-edit" ><a>{{item.name}}</a></span>
</div>
<div class="item-tags">
<span title="Item Type">{{item.type}}</span>
</div>
<div class="filter-tags">
<input type="hidden" name="type" value="{{item.type}}">
</div>
</li>
{{/each}}
</ul>
</div>

View File

@ -0,0 +1,43 @@
<div class="npc-browser browser flexrow">
<div class="control-area">
<div class="filtercontainer" id="tagfilter">
<div class="filter" data-type="text" data-path="name">
<input class="" name="textFilter" type="text" value="" data-dtype="String" placeholder="{{localize "Name"}}"/>
</div>
<dl id="sorter">
<dt>{{localize "CMPBrowser.sortBy"}}:</dt>
<dd><select name="sortorder">
<option value="name" selected>{{localize "Name"}}</option>
<option value="cr">{{localize "CMPBrowser.cr"}}</option>
<option value="size">{{localize "DND5E.Size"}}</option>
</select></dd>
</dl>
<button id="reset-npc-filter">Reset NPC Filters</button>
</div>
{{> "modules/compendium-browser/template/filter-container.html" filters=npcFilters}}
</div>
<ul>
{{#each npcs as |npc id|}}
<li class="npc flexrow draggable" data-entry-compendium="{{npc.compendium}}" data-entry-id="{{npc._id}}">
<div class="npc-image">
<img class="" data-src="{{npc.img}}" title="{{npc.name}}" width="32" height="32" />
</div>
<div class="npc-line">
<div class="npc-name">
<span class="item-edit"><a>{{npc.name}}</a></span>
</div>
<div class="npc-tags">
<span class="cr-display" title="Challange Rating">CR {{npc.displayCR}}</span>
<span class="size-display">{{npc.displaySize}}</span>
<span class="type">{{npc.data.details.type.value}}</span>
</div>
<div class="filter-tags">
<input type="hidden" name="order.cr" value="{{npc.data.details.cr}}">
<input type="hidden" name="order.size" value="{{npc.filterSize}}">
</div>
</div>
</li>
{{/each}}
</ul>
</div>

View File

@ -0,0 +1,40 @@
<div class="settings">
<div class="settings-group">
<h3>{{localize "CMPBrowser.generalSettings"}}</h3>
<label>
<input data-setting="allow-spell-browser" type="checkbox" {{#if settings.allowSpellBrowser}}checked{{/if}}>
<h4>{{localize "CMPBrowser.allowSpellAcc"}}</h4>
</label>
<label>
<input data-setting="allow-feat-browser" type="checkbox" {{#if settings.allowFeatBrowser}}checked{{/if}}>
<h4>Allow Players Access to the feat browser</h4>
</label>
<label>
<input data-setting="allow-item-browser" type="checkbox" {{#if settings.allowItemBrowser}}checked{{/if}}>
<h4>Allow Players Access to the item browser</h4>
</label>
<label>
<input data-setting="allow-npc-browser" type="checkbox" {{#if settings.allowNpcBrowser}}checked{{/if}}>
<h4>{{localize "CMPBrowser.allowNpcAcc"}}</h4>
</label>
</div>
<div class="settings-group">
<h3>{{localize "CMPBrowser.compSettingsSpell"}}</h3>
{{#each settings.loadedSpellCompendium as |spellComp key|}}
<label>
<input data-setting="spell-compendium-setting" data-key="{{key}}" data-type="spell" type="checkbox"{{#if spellComp.load}}checked{{/if}}>
<h4>{{localize "CMPBrowser.load"}} {{spellComp.name}}</h4>
</label>
{{/each}}
</div>
<div class="settings-group">
<h3>{{localize "CMPBrowser.compSettingsNpc"}}</h3>
{{#each settings.loadedNpcCompendium as |npcComp key|}}
<label>
<input data-setting="npc-compendium-setting" data-key="{{key}}" data-type="npc" type="checkbox"{{#if npcComp.load}}checked{{/if}}>
<h4>{{localize "CMPBrowser.load"}} {{npcComp.name}}</h4>
</label>
{{/each}}
</div>
</div>

View File

@ -0,0 +1,44 @@
<div class="spell-browser browser flexrow">
<div class="control-area">
<div class="filtercontainer" id="tagfilter">
<div class="filter" data-type="text" data-path="name">
<input class="" name="textFilter" type="text" value="" data-dtype="String" placeholder="{{localize "Name"}}"/>
</div>
<dl id="sorter">
<dt>{{localize "CMPBrowser.sortBy"}}:</dt>
<dd><select class="null" name="sortorder">
<option value="true" selected>{{localize "Name"}}</option>
<option value="false">{{localize "CMPBrowser.lvl"}}</option>
</select></dd>
</dl>
<button id="reset-spell-filter">Reset Spell Filters</button>
</div>
{{> "modules/compendium-browser/template/filter-container.html" filters=spellFilters}}
</div>
<ul>
{{#each spells as |spell id|}}
<li class="spell flexrow draggable" data-entry-compendium="{{spell.compendium}}" data-entry-id="{{spell._id}}">
<div class="item-image">
<img class="" data-src="{{spell.img}}" title="{{spell.name}}" width="32" height="32"/>
</div>
<div class="item-name">
<span class="item-edit" ><a>{{spell.name}}</a></span>
</div>
<div class="spell-tags">
<span title="Spell level">{{#if spell.data.level}}{{spell.data.level}}{{else}}C{{/if}}</span>
<div class="spacer-large"></div>
<span {{#unless spell.data.components.ritual}}style="color:#bbb;" title="{{localize "No"}} {{localize "CMPBrowser.ritual"}}"{{else}} title="{{localize "CMPBrowser.ritual"}}"{{/unless}}>R</span>
<span {{#unless spell.data.components.concentration}}style="color:#bbb;" title="{{localize "No"}} {{localize "CMPBrowser.concentration"}}"{{else}} title="{{localize "CMPBrowser.concentration"}}"{{/unless}}>C</span>
<div class="spacer"></div>
<span {{#unless spell.data.components.vocal}}style="color:#bbb;" title="{{localize "No"}} {{localize "CMPBrowser.verbal"}}"{{else}} title="{{localize "CMPBrowser.verbal"}}"{{/unless}}>V</span>
<span {{#unless spell.data.components.somatic}}style="color:#bbb;" title="{{localize "No"}} {{localize "CMPBrowser.somatic"}}"{{else}} title="{{localize "CMPBrowser.somatic"}}"{{/unless}}>S</span>
<span {{#unless spell.data.components.material}}style="color:#bbb;" title="no{{localize "No"}} {{localize "CMPBrowser.material"}}"{{else}} title="{{localize "CMPBrowser.material"}}"{{/unless}}>M</span>
</div>
<div class="filter-tags">
<input type="hidden" name="level" value="{{spell.data.level}}">
</div>
</li>
{{/each}}
</ul>
</div>

View File

@ -0,0 +1,17 @@
<div class="parent">
<div class="tabs">
{{#if showSpellBrowser}}<a class="item" data-tab="spell">{{localize "CMPBrowser.spellBrowser"}}</a>{{/if}}
{{#if showFeatBrowser}}<a class="item" data-tab="feat">Feat Browser</a>{{/if}}
{{#if showItemBrowser}}<a class="item" data-tab="item">Item Browser</a>{{/if}}
{{#if showNpcBrowser}}<a class="item" data-tab="npc">{{localize "CMPBrowser.npcBrowser"}}</a>{{/if}}
{{#if isGM}}<a class="item" data-tab="setting">{{localize "CMPBrowser.settings"}}</a>{{/if}}
</div>
<div class="content">
<div class="tab" data-tab="spell">{{#if showSpellBrowser}}{{> "modules/compendium-browser/template/spell-browser.html"}}{{/if}}</div>
<div class="tab" data-tab="feat">{{#if showSpellBrowser}}{{> "modules/compendium-browser/template/feat-browser.html"}}{{/if}}</div>
<div class="tab" data-tab="item">{{#if showSpellBrowser}}{{> "modules/compendium-browser/template/item-browser.html"}}{{/if}}</div>
<div class="tab" data-tab="npc">{{#if showNpcBrowser}} {{> "modules/compendium-browser/template/npc-browser.html"}}{{/if}}</div>
<div class="tab" data-tab="setting">{{#if isGM}} {{> "modules/compendium-browser/template/settings.html"}}{{/if}}</div>
</div>
</div>