├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md └── workflows │ ├── assign-issue.yml │ ├── publish-on-tag.yml │ └── push-pull-request.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.json ├── biome.jsonc ├── globals.js ├── jest.config.js ├── package.json ├── rollup.config.js ├── screenshots ├── cover.jpg ├── cover.png ├── example-a.png ├── example-b.png ├── examples-preview.png └── setup.png ├── src ├── actorSettings │ ├── dnd5eActor5e.scss │ ├── dnd5eActor5e.ts │ ├── index.ts │ └── item-system.ts ├── attributeLookups │ ├── AttributeLookup.ts │ ├── LocalizedValueSimplifier.ts │ ├── ac.ts │ ├── attributesPlus.ts │ ├── conditionImmunities.ts │ ├── damageResImmVuln.ts │ ├── damageTypes │ │ ├── damageTypeMap.test.ts │ │ ├── damageTypeMap.ts │ │ ├── simplifyDamageType.test.ts │ │ └── simplifyDamageType.ts │ ├── distanceFromActiveToken.ts │ ├── hp │ │ ├── index.ts │ │ ├── simplifyHP.ts │ │ ├── simplifyToHearts.test.ts │ │ └── simplifyToHearts.ts │ ├── index.ts │ ├── items.ts │ ├── movements.ts │ ├── passives.ts │ ├── resources.ts │ ├── savingThrows.ts │ ├── showNameOnly.ts │ ├── spellSlots │ │ ├── index.ts │ │ ├── spellIcon.ts │ │ └── spellSlot.ts │ ├── systems │ │ ├── a5e │ │ │ ├── getAttributes.ts │ │ │ ├── movement.ts │ │ │ ├── systemID.ts │ │ │ └── traitArrayWithCustom.ts │ │ ├── d35e │ │ │ ├── isLiteNPC.ts │ │ │ ├── isTrap.ts │ │ │ ├── systemID.ts │ │ │ └── traitArrayWithCustom.ts │ │ ├── d35eOrPF1 │ │ │ ├── getAttributes.ts │ │ │ ├── isLiteNPC.ts │ │ │ └── movement.ts │ │ ├── dnd4e │ │ │ ├── resistancesAndImmunities.ts │ │ │ └── systemID.ts │ │ ├── dnd5e │ │ │ ├── getAttributes.ts │ │ │ ├── movement.ts │ │ │ ├── systemID.ts │ │ │ └── traitArrayWithCustom.ts │ │ ├── pf1 │ │ │ ├── isLiteNPC.ts │ │ │ ├── isLootNPC.ts │ │ │ ├── systemID.ts │ │ │ └── traitArrayWithCustom.ts │ │ ├── pf2e │ │ │ ├── getAttributes.ts │ │ │ ├── iwrData.ts │ │ │ ├── movement.ts │ │ │ ├── spell-slots-5-12-0.ts │ │ │ ├── spell-slots-legacy.ts │ │ │ ├── spell-slots.ts │ │ │ ├── systemID.ts │ │ │ └── traitArrayWithCustom.ts │ │ └── sfrpg │ │ │ ├── systemID.ts │ │ │ └── traitArrayWithCustom.ts │ └── talents.ts ├── customOptionsForm │ ├── addEventListenerToAll.ts │ ├── customOptionsForm.ts │ ├── getStandardOptions.ts │ ├── permissionMenus.ts │ ├── styles.scss │ └── styles.ts ├── dataConversion │ ├── capitalize.test.ts │ ├── capitalize.ts │ ├── filterEmpty.test.ts │ ├── filterEmpty.ts │ ├── localizeOrFallback.ts │ ├── nanToZero.test.ts │ ├── nanToZero.ts │ ├── splitOn.ts │ ├── string.ts │ ├── stringArrayOrSet.ts │ ├── stringToInt.test.ts │ ├── stringToInt.ts │ └── unknownObject.ts ├── debugDisplay │ ├── debugDisplay.ts │ └── styles.scss ├── html │ ├── div.ts │ ├── emptyNode.ts │ ├── htmlToNode.ts │ ├── icon.ts │ ├── img.ts │ └── span.ts ├── importExportForm │ ├── exportSettings.ts │ ├── importExportForm.ts │ ├── importSettings.ts │ ├── styles.scss │ └── styles.ts ├── index.ts ├── lang │ ├── en.json │ └── ja.json ├── manifestData.json ├── module.test.ts ├── module.ts ├── persistentTooltip │ ├── form.scss │ ├── form.ts │ ├── index.ts │ ├── lookup.ts │ ├── render.ts │ ├── setting.ts │ ├── styles.ts │ └── types.d.ts ├── setting-migration.ts ├── settings │ ├── CustomOptions.ts │ ├── hotkeys.ts │ ├── special-permissions.ts │ └── standard-options.ts ├── templates │ ├── menu-customOptions-customRow.html │ ├── menu-customOptions-standardRow.html │ ├── menu-customOptions.html │ ├── menu-importExport.html │ ├── menu-persistentTooltips-row.html │ └── menu-persistentTooltips.html ├── tests │ └── setupAfterEnv.ts └── tooltip │ ├── StandardRow.ts │ ├── Tooltip.ts │ ├── calculateValue │ ├── calculateObjectAttributeValue.ts │ ├── calculateValidAttributeValue.ts │ ├── index.ts │ ├── isNumberLikeValue.ts │ ├── toValidAttributeValue.ts │ ├── toValidNonArrayAttributeValue.ts │ └── types.ts │ ├── customAttribute │ ├── getMultiValue.test.ts │ ├── getMultiValue.ts │ ├── getSingleValue.test.ts │ ├── getSingleValue.ts │ ├── isImageKey.ts │ ├── operations.ts │ └── updateCustomAttributeRow.ts │ ├── darkMode.ts │ ├── getControlledToken.ts │ ├── index.ts │ ├── isTooltipVisible.ts │ ├── row │ ├── AttributeRow.ts │ ├── addValue.ts │ ├── booleanNode.ts │ ├── numberToNiceString.test.ts │ ├── numberToNiceString.ts │ └── styles.ts │ ├── showDataType.ts │ ├── showStandardRow.ts │ └── styles.scss └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/assign-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/.github/workflows/assign-issue.yml -------------------------------------------------------------------------------- /.github/workflows/publish-on-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/.github/workflows/publish-on-tag.yml -------------------------------------------------------------------------------- /.github/workflows/push-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/.github/workflows/push-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.history 2 | /coverage 3 | /dist 4 | /node_modules 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/babel.config.json -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/biome.jsonc -------------------------------------------------------------------------------- /globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/globals.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/rollup.config.js -------------------------------------------------------------------------------- /screenshots/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/screenshots/cover.jpg -------------------------------------------------------------------------------- /screenshots/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/screenshots/cover.png -------------------------------------------------------------------------------- /screenshots/example-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/screenshots/example-a.png -------------------------------------------------------------------------------- /screenshots/example-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/screenshots/example-b.png -------------------------------------------------------------------------------- /screenshots/examples-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/screenshots/examples-preview.png -------------------------------------------------------------------------------- /screenshots/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/screenshots/setup.png -------------------------------------------------------------------------------- /src/actorSettings/dnd5eActor5e.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/actorSettings/dnd5eActor5e.scss -------------------------------------------------------------------------------- /src/actorSettings/dnd5eActor5e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/actorSettings/dnd5eActor5e.ts -------------------------------------------------------------------------------- /src/actorSettings/index.ts: -------------------------------------------------------------------------------- 1 | import './dnd5eActor5e'; 2 | -------------------------------------------------------------------------------- /src/actorSettings/item-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/actorSettings/item-system.ts -------------------------------------------------------------------------------- /src/attributeLookups/AttributeLookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/AttributeLookup.ts -------------------------------------------------------------------------------- /src/attributeLookups/LocalizedValueSimplifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/LocalizedValueSimplifier.ts -------------------------------------------------------------------------------- /src/attributeLookups/ac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/ac.ts -------------------------------------------------------------------------------- /src/attributeLookups/attributesPlus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/attributesPlus.ts -------------------------------------------------------------------------------- /src/attributeLookups/conditionImmunities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/conditionImmunities.ts -------------------------------------------------------------------------------- /src/attributeLookups/damageResImmVuln.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/damageResImmVuln.ts -------------------------------------------------------------------------------- /src/attributeLookups/damageTypes/damageTypeMap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/damageTypes/damageTypeMap.test.ts -------------------------------------------------------------------------------- /src/attributeLookups/damageTypes/damageTypeMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/damageTypes/damageTypeMap.ts -------------------------------------------------------------------------------- /src/attributeLookups/damageTypes/simplifyDamageType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/damageTypes/simplifyDamageType.test.ts -------------------------------------------------------------------------------- /src/attributeLookups/damageTypes/simplifyDamageType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/damageTypes/simplifyDamageType.ts -------------------------------------------------------------------------------- /src/attributeLookups/distanceFromActiveToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/distanceFromActiveToken.ts -------------------------------------------------------------------------------- /src/attributeLookups/hp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/hp/index.ts -------------------------------------------------------------------------------- /src/attributeLookups/hp/simplifyHP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/hp/simplifyHP.ts -------------------------------------------------------------------------------- /src/attributeLookups/hp/simplifyToHearts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/hp/simplifyToHearts.test.ts -------------------------------------------------------------------------------- /src/attributeLookups/hp/simplifyToHearts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/hp/simplifyToHearts.ts -------------------------------------------------------------------------------- /src/attributeLookups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/index.ts -------------------------------------------------------------------------------- /src/attributeLookups/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/items.ts -------------------------------------------------------------------------------- /src/attributeLookups/movements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/movements.ts -------------------------------------------------------------------------------- /src/attributeLookups/passives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/passives.ts -------------------------------------------------------------------------------- /src/attributeLookups/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/resources.ts -------------------------------------------------------------------------------- /src/attributeLookups/savingThrows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/savingThrows.ts -------------------------------------------------------------------------------- /src/attributeLookups/showNameOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/showNameOnly.ts -------------------------------------------------------------------------------- /src/attributeLookups/spellSlots/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/spellSlots/index.ts -------------------------------------------------------------------------------- /src/attributeLookups/spellSlots/spellIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/spellSlots/spellIcon.ts -------------------------------------------------------------------------------- /src/attributeLookups/spellSlots/spellSlot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/spellSlots/spellSlot.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/a5e/getAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/a5e/getAttributes.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/a5e/movement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/a5e/movement.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/a5e/systemID.ts: -------------------------------------------------------------------------------- 1 | export default 'a5e'; 2 | -------------------------------------------------------------------------------- /src/attributeLookups/systems/a5e/traitArrayWithCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/a5e/traitArrayWithCustom.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/d35e/isLiteNPC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/d35e/isLiteNPC.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/d35e/isTrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/d35e/isTrap.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/d35e/systemID.ts: -------------------------------------------------------------------------------- 1 | export default 'D35E'; 2 | -------------------------------------------------------------------------------- /src/attributeLookups/systems/d35e/traitArrayWithCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/d35e/traitArrayWithCustom.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/d35eOrPF1/getAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/d35eOrPF1/getAttributes.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/d35eOrPF1/isLiteNPC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/d35eOrPF1/isLiteNPC.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/d35eOrPF1/movement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/d35eOrPF1/movement.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/dnd4e/resistancesAndImmunities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/dnd4e/resistancesAndImmunities.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/dnd4e/systemID.ts: -------------------------------------------------------------------------------- 1 | export default 'dnd4e'; 2 | -------------------------------------------------------------------------------- /src/attributeLookups/systems/dnd5e/getAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/dnd5e/getAttributes.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/dnd5e/movement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/dnd5e/movement.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/dnd5e/systemID.ts: -------------------------------------------------------------------------------- 1 | export default 'dnd5e'; 2 | -------------------------------------------------------------------------------- /src/attributeLookups/systems/dnd5e/traitArrayWithCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/dnd5e/traitArrayWithCustom.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf1/isLiteNPC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf1/isLiteNPC.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf1/isLootNPC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf1/isLootNPC.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf1/systemID.ts: -------------------------------------------------------------------------------- 1 | export default 'pf1'; 2 | -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf1/traitArrayWithCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf1/traitArrayWithCustom.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf2e/getAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf2e/getAttributes.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf2e/iwrData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf2e/iwrData.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf2e/movement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf2e/movement.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf2e/spell-slots-5-12-0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf2e/spell-slots-5-12-0.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf2e/spell-slots-legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf2e/spell-slots-legacy.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf2e/spell-slots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf2e/spell-slots.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf2e/systemID.ts: -------------------------------------------------------------------------------- 1 | export default 'pf2e'; 2 | -------------------------------------------------------------------------------- /src/attributeLookups/systems/pf2e/traitArrayWithCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/pf2e/traitArrayWithCustom.ts -------------------------------------------------------------------------------- /src/attributeLookups/systems/sfrpg/systemID.ts: -------------------------------------------------------------------------------- 1 | export default 'sfrpg'; 2 | -------------------------------------------------------------------------------- /src/attributeLookups/systems/sfrpg/traitArrayWithCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/systems/sfrpg/traitArrayWithCustom.ts -------------------------------------------------------------------------------- /src/attributeLookups/talents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/attributeLookups/talents.ts -------------------------------------------------------------------------------- /src/customOptionsForm/addEventListenerToAll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/customOptionsForm/addEventListenerToAll.ts -------------------------------------------------------------------------------- /src/customOptionsForm/customOptionsForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/customOptionsForm/customOptionsForm.ts -------------------------------------------------------------------------------- /src/customOptionsForm/getStandardOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/customOptionsForm/getStandardOptions.ts -------------------------------------------------------------------------------- /src/customOptionsForm/permissionMenus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/customOptionsForm/permissionMenus.ts -------------------------------------------------------------------------------- /src/customOptionsForm/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/customOptionsForm/styles.scss -------------------------------------------------------------------------------- /src/customOptionsForm/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/customOptionsForm/styles.ts -------------------------------------------------------------------------------- /src/dataConversion/capitalize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/capitalize.test.ts -------------------------------------------------------------------------------- /src/dataConversion/capitalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/capitalize.ts -------------------------------------------------------------------------------- /src/dataConversion/filterEmpty.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/filterEmpty.test.ts -------------------------------------------------------------------------------- /src/dataConversion/filterEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/filterEmpty.ts -------------------------------------------------------------------------------- /src/dataConversion/localizeOrFallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/localizeOrFallback.ts -------------------------------------------------------------------------------- /src/dataConversion/nanToZero.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/nanToZero.test.ts -------------------------------------------------------------------------------- /src/dataConversion/nanToZero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/nanToZero.ts -------------------------------------------------------------------------------- /src/dataConversion/splitOn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/splitOn.ts -------------------------------------------------------------------------------- /src/dataConversion/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/string.ts -------------------------------------------------------------------------------- /src/dataConversion/stringArrayOrSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/stringArrayOrSet.ts -------------------------------------------------------------------------------- /src/dataConversion/stringToInt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/stringToInt.test.ts -------------------------------------------------------------------------------- /src/dataConversion/stringToInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/stringToInt.ts -------------------------------------------------------------------------------- /src/dataConversion/unknownObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/dataConversion/unknownObject.ts -------------------------------------------------------------------------------- /src/debugDisplay/debugDisplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/debugDisplay/debugDisplay.ts -------------------------------------------------------------------------------- /src/debugDisplay/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/debugDisplay/styles.scss -------------------------------------------------------------------------------- /src/html/div.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/html/div.ts -------------------------------------------------------------------------------- /src/html/emptyNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/html/emptyNode.ts -------------------------------------------------------------------------------- /src/html/htmlToNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/html/htmlToNode.ts -------------------------------------------------------------------------------- /src/html/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/html/icon.ts -------------------------------------------------------------------------------- /src/html/img.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/html/img.ts -------------------------------------------------------------------------------- /src/html/span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/html/span.ts -------------------------------------------------------------------------------- /src/importExportForm/exportSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/importExportForm/exportSettings.ts -------------------------------------------------------------------------------- /src/importExportForm/importExportForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/importExportForm/importExportForm.ts -------------------------------------------------------------------------------- /src/importExportForm/importSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/importExportForm/importSettings.ts -------------------------------------------------------------------------------- /src/importExportForm/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/importExportForm/styles.scss -------------------------------------------------------------------------------- /src/importExportForm/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/importExportForm/styles.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/lang/en.json -------------------------------------------------------------------------------- /src/lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/lang/ja.json -------------------------------------------------------------------------------- /src/manifestData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/manifestData.json -------------------------------------------------------------------------------- /src/module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/module.test.ts -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/persistentTooltip/form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/persistentTooltip/form.scss -------------------------------------------------------------------------------- /src/persistentTooltip/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/persistentTooltip/form.ts -------------------------------------------------------------------------------- /src/persistentTooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/persistentTooltip/index.ts -------------------------------------------------------------------------------- /src/persistentTooltip/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/persistentTooltip/lookup.ts -------------------------------------------------------------------------------- /src/persistentTooltip/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/persistentTooltip/render.ts -------------------------------------------------------------------------------- /src/persistentTooltip/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/persistentTooltip/setting.ts -------------------------------------------------------------------------------- /src/persistentTooltip/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/persistentTooltip/styles.ts -------------------------------------------------------------------------------- /src/persistentTooltip/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/persistentTooltip/types.d.ts -------------------------------------------------------------------------------- /src/setting-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/setting-migration.ts -------------------------------------------------------------------------------- /src/settings/CustomOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/settings/CustomOptions.ts -------------------------------------------------------------------------------- /src/settings/hotkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/settings/hotkeys.ts -------------------------------------------------------------------------------- /src/settings/special-permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/settings/special-permissions.ts -------------------------------------------------------------------------------- /src/settings/standard-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/settings/standard-options.ts -------------------------------------------------------------------------------- /src/templates/menu-customOptions-customRow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/templates/menu-customOptions-customRow.html -------------------------------------------------------------------------------- /src/templates/menu-customOptions-standardRow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/templates/menu-customOptions-standardRow.html -------------------------------------------------------------------------------- /src/templates/menu-customOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/templates/menu-customOptions.html -------------------------------------------------------------------------------- /src/templates/menu-importExport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/templates/menu-importExport.html -------------------------------------------------------------------------------- /src/templates/menu-persistentTooltips-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/templates/menu-persistentTooltips-row.html -------------------------------------------------------------------------------- /src/templates/menu-persistentTooltips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/templates/menu-persistentTooltips.html -------------------------------------------------------------------------------- /src/tests/setupAfterEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tests/setupAfterEnv.ts -------------------------------------------------------------------------------- /src/tooltip/StandardRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/StandardRow.ts -------------------------------------------------------------------------------- /src/tooltip/Tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/Tooltip.ts -------------------------------------------------------------------------------- /src/tooltip/calculateValue/calculateObjectAttributeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/calculateValue/calculateObjectAttributeValue.ts -------------------------------------------------------------------------------- /src/tooltip/calculateValue/calculateValidAttributeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/calculateValue/calculateValidAttributeValue.ts -------------------------------------------------------------------------------- /src/tooltip/calculateValue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/calculateValue/index.ts -------------------------------------------------------------------------------- /src/tooltip/calculateValue/isNumberLikeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/calculateValue/isNumberLikeValue.ts -------------------------------------------------------------------------------- /src/tooltip/calculateValue/toValidAttributeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/calculateValue/toValidAttributeValue.ts -------------------------------------------------------------------------------- /src/tooltip/calculateValue/toValidNonArrayAttributeValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/calculateValue/toValidNonArrayAttributeValue.ts -------------------------------------------------------------------------------- /src/tooltip/calculateValue/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/calculateValue/types.ts -------------------------------------------------------------------------------- /src/tooltip/customAttribute/getMultiValue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/customAttribute/getMultiValue.test.ts -------------------------------------------------------------------------------- /src/tooltip/customAttribute/getMultiValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/customAttribute/getMultiValue.ts -------------------------------------------------------------------------------- /src/tooltip/customAttribute/getSingleValue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/customAttribute/getSingleValue.test.ts -------------------------------------------------------------------------------- /src/tooltip/customAttribute/getSingleValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/customAttribute/getSingleValue.ts -------------------------------------------------------------------------------- /src/tooltip/customAttribute/isImageKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/customAttribute/isImageKey.ts -------------------------------------------------------------------------------- /src/tooltip/customAttribute/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/customAttribute/operations.ts -------------------------------------------------------------------------------- /src/tooltip/customAttribute/updateCustomAttributeRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/customAttribute/updateCustomAttributeRow.ts -------------------------------------------------------------------------------- /src/tooltip/darkMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/darkMode.ts -------------------------------------------------------------------------------- /src/tooltip/getControlledToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/getControlledToken.ts -------------------------------------------------------------------------------- /src/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/index.ts -------------------------------------------------------------------------------- /src/tooltip/isTooltipVisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/isTooltipVisible.ts -------------------------------------------------------------------------------- /src/tooltip/row/AttributeRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/row/AttributeRow.ts -------------------------------------------------------------------------------- /src/tooltip/row/addValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/row/addValue.ts -------------------------------------------------------------------------------- /src/tooltip/row/booleanNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/row/booleanNode.ts -------------------------------------------------------------------------------- /src/tooltip/row/numberToNiceString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/row/numberToNiceString.test.ts -------------------------------------------------------------------------------- /src/tooltip/row/numberToNiceString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/row/numberToNiceString.ts -------------------------------------------------------------------------------- /src/tooltip/row/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/row/styles.ts -------------------------------------------------------------------------------- /src/tooltip/showDataType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/showDataType.ts -------------------------------------------------------------------------------- /src/tooltip/showStandardRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/showStandardRow.ts -------------------------------------------------------------------------------- /src/tooltip/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/src/tooltip/styles.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/illandril/FoundryVTT-token-tooltips/HEAD/tsconfig.json --------------------------------------------------------------------------------