├── .d.ts ├── .editorconfig ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build-module-json.js │ ├── build.yml │ ├── codeql-analysis.yml │ ├── get-version.js │ └── pr.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── build-alpha-module.js ├── get-alpha-version.js └── get-manifest-path.js ├── .prettierrc ├── CHANGELOG.md ├── FAQ-2024-DND.md ├── FAQ.md ├── LICENSE.md ├── README.md ├── css ├── adventure.css ├── default.css ├── fonts │ ├── roboto-condensed-v18-latin-700.eot │ ├── roboto-condensed-v18-latin-700.svg │ ├── roboto-condensed-v18-latin-700.ttf │ ├── roboto-condensed-v18-latin-700.woff │ ├── roboto-condensed-v18-latin-700.woff2 │ ├── roboto-condensed-v18-latin-700italic.eot │ ├── roboto-condensed-v18-latin-700italic.svg │ ├── roboto-condensed-v18-latin-700italic.ttf │ ├── roboto-condensed-v18-latin-700italic.woff │ ├── roboto-condensed-v18-latin-700italic.woff2 │ ├── roboto-v20-latin-italic.eot │ ├── roboto-v20-latin-italic.svg │ ├── roboto-v20-latin-italic.ttf │ ├── roboto-v20-latin-italic.woff │ ├── roboto-v20-latin-italic.woff2 │ ├── roboto-v20-latin-regular.eot │ ├── roboto-v20-latin-regular.svg │ ├── roboto-v20-latin-regular.ttf │ ├── roboto-v20-latin-regular.woff │ └── roboto-v20-latin-regular.woff2 ├── import.css ├── journal.css └── notifications.css ├── data ├── actors │ └── flamingSphere.json ├── backgrounds.json ├── class-features.json ├── classes.json ├── feats.json ├── general.json ├── generic-monster-features.json ├── items.json ├── named-monster-features.json ├── races.json └── spells.json ├── docs ├── _config.yaml ├── bulk-monster-import.gif ├── bulk-spell-import.gif ├── compendium-folders.png ├── compendiums.png ├── confusion.png ├── encounter-muncher.png ├── exclude.png ├── manual-cookie.png ├── muncher.png ├── sync.png └── token_defaults.png ├── handlebars ├── activities │ └── macro-identity.hbs ├── adventure │ ├── LICENSE │ ├── choose-scenes.hbs │ ├── import-complete.hbs │ ├── import-third.hbs │ ├── import-updates.hbs │ └── import.hbs ├── character │ ├── advanced.hbs │ ├── companions.hbs │ ├── details.hbs │ ├── footer.hbs │ ├── header.hbs │ ├── help.hbs │ ├── import.hbs │ ├── import │ │ ├── automation.hbs │ │ ├── main.hbs │ │ ├── options.hbs │ │ └── sources.hbs │ └── update.hbs ├── cobalt.hbs ├── debug │ ├── main.hbs │ └── recommendations.hbs ├── enhance-export.hbs ├── flag-details.hbs ├── generic │ └── tab-navigation.hbs ├── item-config.hbs ├── keychange │ ├── ddb-key-change.hbs │ └── footer.hbs ├── local-key.hbs ├── muncher │ ├── details.hbs │ ├── footer.hbs │ ├── header.hbs │ ├── info.hbs │ ├── info │ │ ├── help.hbs │ │ └── intro.hbs │ ├── munch.hbs │ ├── munch │ │ ├── adventures.hbs │ │ ├── characters.hbs │ │ ├── encounters.hbs │ │ ├── items.hbs │ │ ├── monsters.hbs │ │ ├── monsters │ │ │ ├── art.hbs │ │ │ ├── main.hbs │ │ │ └── settings.hbs │ │ └── spells.hbs │ ├── settings.hbs │ ├── settings │ │ ├── general.hbs │ │ └── sources.hbs │ ├── tools.hbs │ └── tools │ │ ├── compendiums.hbs │ │ └── tools.hbs ├── resources.hbs ├── settings │ ├── compendiums.hbs │ ├── core.hbs │ ├── core │ │ ├── campaign.hbs │ │ ├── cobalt.hbs │ │ └── patreon.hbs │ ├── dynamic.hbs │ ├── enhancements.hbs │ ├── footer.hbs │ ├── header.hbs │ ├── info.hbs │ ├── info │ │ ├── help.hbs │ │ └── intro.hbs │ ├── locations.hbs │ └── proxy.hbs └── tattoo │ └── create-spellwrought-tattoo-dialog.hbs ├── icon.sh ├── icons ├── 01.svg ├── 02.svg ├── 03.svg ├── 04.svg ├── 05.svg ├── 06.svg ├── 07.svg ├── 08.svg ├── 09.svg ├── 10.svg ├── 11.svg ├── 12.svg ├── 13.svg ├── 14.svg ├── 15.svg ├── 16.svg ├── 17.svg ├── 18.svg ├── 19.svg ├── 20.svg ├── 21.svg ├── 22.svg ├── 23.svg ├── 24.svg ├── 25.svg ├── 26.svg ├── 27.svg ├── 28.svg ├── 29.svg ├── 30.svg ├── 31.svg ├── 32.svg ├── 33.svg ├── 34.svg ├── 35.svg ├── 36.svg ├── 37.svg ├── 38.svg ├── 39.svg ├── 40.svg ├── 41.svg ├── 42.svg ├── 43.svg ├── 44.svg ├── 45.svg ├── 46.svg ├── 47.svg ├── 48.svg ├── 49.svg ├── 50.svg ├── 51.svg ├── 52.svg ├── 53.svg ├── 54.svg ├── 55.svg ├── 56.svg ├── 57.svg ├── 58.svg ├── 59.svg ├── 60.svg ├── 61.svg ├── 62.svg ├── 63.svg ├── 64.svg ├── 65.svg ├── 66.svg ├── 67.svg ├── 68.svg ├── 69.svg ├── 70.svg ├── 71.svg ├── 72.svg ├── 73.svg ├── 74.svg ├── 75.svg ├── 76.svg ├── 77.svg ├── 78.svg ├── 79.svg ├── 80.svg ├── 81.svg ├── 82.svg ├── 83.svg ├── 84.svg ├── 85.svg ├── 86.svg ├── 87.svg ├── 88.svg ├── 89.svg ├── 90.svg ├── 91.svg ├── 92.svg ├── 93.svg ├── 94.svg ├── 95.svg ├── 96.svg ├── 97.svg ├── 98.svg ├── 99.svg ├── A.svg ├── B.svg ├── C.svg ├── D.svg ├── E.svg ├── F.svg ├── G.svg ├── H.svg ├── I.svg ├── J.svg ├── K.svg ├── L.svg ├── M.svg ├── N.svg ├── O.svg ├── P.svg ├── Q.svg ├── R.svg ├── S.svg ├── T.svg ├── U.svg ├── V.svg ├── W.svg ├── X.svg ├── Y.svg └── Z.svg ├── img ├── dndbeyond-character-builder.png ├── encounters │ ├── bar.webp │ ├── cobbles.webp │ ├── dungeon.png │ ├── grass.webp │ ├── snow.webp │ ├── stone.webp │ └── void.webp ├── jb2a │ ├── ArcaneHand_Human_01_Idle_Red_400x400.webm │ ├── ArcaneHand_Human_01_Idle_Red_Thumb.webp │ ├── DancingLights_01_Yellow_200x200.webm │ ├── DancingLights_01_Yellow_Thumb.webp │ ├── LICENSE.md │ ├── Marker_01_Regular_BlueYellow_400x400.webm │ ├── Marker_01_Regular_BlueYellow_Thumb.webp │ ├── SpiritualWeapon_Shortsword01_02_Spectral_Green_400x400.webm │ └── SpiritualWeapon_Shortsword01_02_Spectral_Green_Thumb.webp ├── svg-rules-banner-3.svg └── svg-rules-banner-4.svg ├── jsconfig.json ├── lang └── en.json ├── macros ├── .eslintrc.json ├── feats │ ├── ancestralProtectors.js │ ├── arcaneRecovery.js │ ├── blessedHealer.js │ ├── crusher.js │ ├── darkOnesBlessing.js │ ├── favoredFoe.js │ ├── flurryOfBlows.js │ ├── fontOfMagic.js │ ├── furyOfTheSmall.js │ ├── innerRadiance.js │ ├── layOnHands.js │ ├── mantleOfInspiration.js │ ├── naturalRecovery.js │ ├── perfectFocus.js │ ├── piercer.js │ ├── planarWarrior.js │ ├── radiantSoul.js │ ├── ragingStormSea.js │ ├── ragingStormTundra.js │ ├── sacredWeaponLight.js │ ├── sacredWeaponLight2024.js │ ├── slasher.js │ ├── slayersPrey.js │ ├── sneakAttack.js │ ├── squireOfSolamnia.js │ └── stormAuraTundra.js ├── generics │ ├── activeAuraConditionOnEntry.js │ ├── activeAuraDamageAndConditionOnEntry.js │ ├── activeAuraDamageOnEntry.js │ ├── activeAuraOnly.js │ ├── light.js │ └── spellStoring.js ├── gms │ ├── darkness.js │ ├── light.js │ ├── renameToken.js │ ├── resizeNoteFontSize.js │ ├── resizeNoteIcons.js │ ├── showTokenNames.js │ ├── test.js │ └── updateOwnedItems.js ├── items │ ├── cloakOfDisplacement.js │ ├── javelinOfLightning.js │ ├── lifeStealing.js │ ├── pearlOfPower.js │ ├── spellRefuelingRing.js │ └── wounding.js ├── monsterFeatures │ ├── deathlyChoir.js │ ├── disassemble.js │ ├── eyeRay.js │ ├── eyeRays.js │ ├── loathsomeLimbs.js │ ├── multiAttack.js │ ├── petrification.js │ ├── poisonSplash.js │ ├── sleep.js │ ├── spellReflection.js │ └── venomSpray.js └── spells │ ├── absorbElements.js │ ├── aid.js │ ├── arcaneSword.js │ ├── armorOfAgathys.js │ ├── auraOfLife.js │ ├── banishment.js │ ├── boomingBlade.js │ ├── brandingSmite.js │ ├── callLightning.js │ ├── chillTouch.js │ ├── chillTouchDisadvantage.js │ ├── chillTouchWorld.js │ ├── colorSpray.js │ ├── command.js │ ├── confusion.js │ ├── contagion2014.js │ ├── contagion2024.js │ ├── crownOfStars.js │ ├── dancingLights.js │ ├── darkness.js │ ├── divineWord.js │ ├── enlargeReduce.js │ ├── ensnaringStrike.js │ ├── eyebite.js │ ├── fireShield.js │ ├── flamingSphere.js │ ├── fleshToStone.js │ ├── greenFlameBlade.js │ ├── hailOfThorns.js │ ├── heroesFeast.js │ ├── heroism.js │ ├── hex.js │ ├── hideousLaughter.js │ ├── huntersMark.js │ ├── irresistibleDance.js │ ├── levitate-not-used.js │ ├── mistyStep.js │ ├── moonbeam.js │ ├── protectionfromEnergy.js │ ├── rayofEnfeeblement.js │ ├── sleep.js │ ├── spikeGrowth.js │ ├── spiritGuardians2014.js │ ├── spiritGuardians2024.js │ ├── spiritShroud.js │ ├── stormSphere.js │ ├── thunderousSmite.js │ ├── tolltheDead.js │ ├── wardingBond.js │ ├── witchBolt.js │ └── zephyrStrike.js ├── module-alpha.json ├── module-dev.json ├── module-template.json ├── package.json ├── src ├── _module.mjs ├── api.mjs ├── apps │ ├── CreateSpellwroughtTattooDialog.js │ ├── DDBAdventureFlags.js │ ├── DDBAdventureImporter.js │ ├── DDBAppV2.js │ ├── DDBCharacterManager.js │ ├── DDBCookie.js │ ├── DDBDebugger.mjs │ ├── DDBItemConfig.js │ ├── DDBKeyChangeDialog.js │ ├── DDBMuncher.js │ ├── DDBSetup.js │ ├── MonsterReplacer.js │ └── SceneEnhancerExport.js ├── config │ ├── _module.mjs │ ├── dictionary │ │ ├── actor │ │ │ ├── actions.mjs │ │ │ ├── actor.mjs │ │ │ ├── conditions.mjs │ │ │ ├── consumptionLinking.mjs │ │ │ ├── currency.mjs │ │ │ ├── monsters.mjs │ │ │ ├── resets.mjs │ │ │ ├── senses.mjs │ │ │ └── sizes.mjs │ │ ├── dictionary.mjs │ │ ├── effects │ │ │ ├── excluded.mjs │ │ │ └── vision5e.mjs │ │ ├── encounters.mjs │ │ ├── folders │ │ │ └── compendiums.mjs │ │ ├── generics │ │ │ ├── numbers.mjs │ │ │ └── sources.mjs │ │ ├── items │ │ │ ├── equipment.mjs │ │ │ ├── generics.mjs │ │ │ ├── magicItems.mjs │ │ │ ├── types.mjs │ │ │ └── weapons.mjs │ │ ├── messages │ │ │ └── messages.mjs │ │ ├── parsing │ │ │ ├── actions.mjs │ │ │ ├── companions.mjs │ │ │ ├── features.mjs │ │ │ └── identifiers.mjs │ │ └── spell │ │ │ └── spell.mjs │ └── settings │ │ ├── compendiums │ │ └── compendiums.mjs │ │ └── settings.mjs ├── effects │ ├── DDBEffectHelper.mjs │ ├── _module.mjs │ ├── abilityOverrides.js │ ├── acEffects.js │ ├── auras │ │ ├── ActorDamageOnEntry.mjs │ │ ├── AuraOnly.mjs │ │ ├── ConditionOnEntry.mjs │ │ ├── DamageOnEntry.mjs │ │ ├── Test.mjs │ │ ├── _module.mjs │ │ └── shared.mjs │ ├── effects.js │ ├── enhancers │ │ ├── ClassFeatures │ │ │ ├── Druid │ │ │ │ └── Wildshape.mjs │ │ │ └── Wizard │ │ │ │ └── ArcaneWard.mjs │ │ ├── DDBEnhancers.mjs │ │ ├── Feats │ │ │ └── GreatWeaponMaster.mjs │ │ ├── Spells │ │ │ └── WardingBond.mjs │ │ └── _module.mjs │ ├── external │ │ ├── ChrisPremadesHelper.mjs │ │ ├── ExternalAutomations.mjs │ │ └── _module.mjs │ ├── feats │ │ ├── favoredFoe.js │ │ ├── flurryOfBlows.js │ │ └── slayersPrey.js │ ├── monsterFeatures │ │ ├── beholderEyeRayLegendary.js │ │ ├── beholderEyeRays.js │ │ ├── deathlyChoir.js │ │ ├── giantSpider.js │ │ ├── horrifyingVisage.js │ │ ├── multiAttack.js │ │ ├── quasit.js │ │ ├── skeletalJuggernautEffects.js │ │ ├── spellReflection.js │ │ ├── strahdZombie.js │ │ ├── suaveDefense.js │ │ ├── taunt.js │ │ └── venomTroll.js │ ├── restrictions.js │ ├── specialMonsters.js │ ├── specialSpells.js │ └── spells │ │ ├── README.MD │ │ ├── blackTentacles.js │ │ ├── callLightning.js │ │ ├── chillTouch.js │ │ ├── divineWord.js │ │ ├── eyebite.js │ │ ├── guidingBolt.js │ │ ├── magicStone.js │ │ ├── moonbeam.js │ │ ├── phantasmalKiller.js │ │ ├── sleep.js │ │ ├── spikeGrowth.js │ │ ├── stormSphere.js │ │ ├── tolltheDead.js │ │ └── vitriolicSphere.js ├── hooks.mjs ├── hooks │ ├── init │ │ ├── DDBEffectHooks.js │ │ ├── adventureImporter.js │ │ ├── chatHooks.js │ │ ├── extendClasses.js │ │ ├── settings.js │ │ └── setupLogging.js │ ├── macroActivity │ │ ├── MacroActivity.js │ │ ├── MacroActivityData.js │ │ ├── MacroSheet.js │ │ └── loadActivity.js │ ├── navigationContext │ │ └── extendSceneNavigationContext.js │ ├── ready │ │ ├── addDDBConfig.js │ │ ├── anchorInjection.js │ │ ├── checkCompendiums.js │ │ ├── checkVersion.js │ │ ├── ddbConfig.js │ │ ├── enrichers.js │ │ ├── fallbackConfig.js │ │ ├── fallbackRules.js │ │ ├── items.js │ │ ├── migration │ │ │ └── migration_5_6_0_journals.js │ │ ├── migraton.js │ │ ├── originFixing.js │ │ ├── registerGameSettings.js │ │ ├── registerSheets.js │ │ ├── storage.mjs │ │ └── welcomeMessage.js │ ├── renderJournalSheet │ │ ├── DDBJournalSheet.js │ │ ├── adventure.js │ │ ├── buildNotes.js │ │ ├── linkReadAlouds.js │ │ └── shared.js │ ├── renderMuncher │ │ └── addMuncher.js │ ├── socket │ │ └── sockets.js │ └── tattoo │ │ └── main.mjs ├── index.mjs ├── lib │ ├── AdvancedDialog.mjs │ ├── CompendiumHelper.mjs │ ├── Crosshairs.mjs │ ├── DDBCampaigns.mjs │ ├── DDBCompendiumFolders.mjs │ ├── DDBDebug.mjs │ ├── DDBItemImporter.mjs │ ├── DDBMacros.mjs │ ├── DDBProxy.mjs │ ├── DDBSimpleMacro.mjs │ ├── DDBSources.mjs │ ├── DialogHelper.mjs │ ├── FileHelper.mjs │ ├── FolderHelper.mjs │ ├── Iconizer.mjs │ ├── Logger.mjs │ ├── MuncherSettings.mjs │ ├── NameMatcher.mjs │ ├── Notifications.mjs │ ├── OriginFixer.mjs │ ├── PatreonHelper.mjs │ ├── Secrets.mjs │ ├── Utils.mjs │ ├── _module.mjs │ └── base64Check.mjs ├── muncher │ ├── DDBCharacterImporter.mjs │ ├── DDBFrameImporter.js │ ├── DDBItemsImporter.mjs │ ├── DDBMonsterImporter.mjs │ ├── DDBMuleHandler.mjs │ ├── adventure.js │ ├── adventure │ │ ├── AdventureMunch.js │ │ ├── AdventureMunchHelpers.js │ │ ├── LICENSE │ │ ├── PageFinder.js │ │ ├── README.md │ │ └── ThirdPartyMunch.js │ ├── classes.js │ ├── classes │ │ ├── classes.js │ │ ├── options.js │ │ ├── shared.js │ │ └── subclasses.js │ ├── prices.js │ ├── spells.js │ ├── tools.js │ └── vehicles.js ├── parser │ ├── DDBCharacter.js │ ├── DDBEncounter.mjs │ ├── DDBEncounterFactory.js │ ├── DDBExtras.js │ ├── DDBMonster.js │ ├── DDBMonsterFactory.js │ ├── activities │ │ ├── DDBFeatureActivity.mjs │ │ ├── DDBItemActivity.mjs │ │ ├── DDBMonsterFeatureActivity.mjs │ │ ├── DDBSpellActivity.mjs │ │ ├── DDBVehicleActivity.mjs │ │ └── _module.mjs │ ├── advancements │ │ └── AdvancementHelper.js │ ├── character │ │ ├── .gitignore │ │ ├── abilities.js │ │ ├── ac.js │ │ ├── bio.js │ │ ├── conditions.js │ │ ├── consumptionLinking.js │ │ ├── currency.js │ │ ├── effects.js │ │ ├── globalBonuses.js │ │ ├── hp.js │ │ ├── index.js │ │ ├── infusions.js │ │ ├── initiative.js │ │ ├── inventory.js │ │ ├── proficiencies.js │ │ ├── race.js │ │ ├── resources.js │ │ ├── senses.js │ │ ├── size.js │ │ ├── skills.js │ │ ├── special │ │ │ └── special.js │ │ ├── specialTraits.js │ │ ├── speed.js │ │ ├── spellCasting.js │ │ └── token.js │ ├── classes │ │ ├── CharacterClassFactory.js │ │ ├── DDBClass.js │ │ └── DDBSubClass.js │ ├── companions │ │ ├── DDBCompanion2014.mjs │ │ ├── DDBCompanion2024.mjs │ │ ├── DDBCompanionFactory.mjs │ │ ├── DDBCompanionMixin.mjs │ │ ├── DDBSummonsInterface.mjs │ │ ├── DDBSummonsManager.mjs │ │ ├── SRDExtractor.mjs │ │ └── types │ │ │ ├── AnimateDead.mjs │ │ │ ├── AnimateObjects.mjs │ │ │ ├── ArcaneEye.mjs │ │ │ ├── ArcaneHand2014.mjs │ │ │ ├── ArcaneHand2024.mjs │ │ │ ├── ArcaneSword.mjs │ │ │ ├── BubblingCauldron.mjs │ │ │ ├── CRSRD.mjs │ │ │ ├── Clairvoyance.mjs │ │ │ ├── ConjureAnimals.mjs │ │ │ ├── ConjureElemental.mjs │ │ │ ├── ConjureFey.mjs │ │ │ ├── CreateUndead.mjs │ │ │ ├── DancingLights.mjs │ │ │ ├── Duplicate.mjs │ │ │ ├── EarthenGrasp.mjs │ │ │ ├── EldritchCannon2014.mjs │ │ │ ├── EldritchCannon2024.mjs │ │ │ ├── FaithfulHound.mjs │ │ │ ├── FindFamiliar.mjs │ │ │ ├── FingerOfDeath.mjs │ │ │ ├── FlamingSphere.mjs │ │ │ ├── GraspingVine.mjs │ │ │ ├── GuardianOfFaith.mjs │ │ │ ├── HoundOfIllOmen.mjs │ │ │ ├── Illusions.mjs │ │ │ ├── MageHand.mjs │ │ │ ├── PhantomSteed.mjs │ │ │ ├── SpiritualWeapon.mjs │ │ │ ├── UnseenServant.mjs │ │ │ └── _data.mjs │ ├── enrichers │ │ ├── DDBBackgroundEnricher.mjs │ │ ├── DDBClassFeatureEnricher.mjs │ │ ├── DDBFeatEnricher.mjs │ │ ├── DDBGenericEnricher.mjs │ │ ├── DDBItemEnricher.mjs │ │ ├── DDBMonsterFeatureEnricher.mjs │ │ ├── DDBSpeciesTraitEnricher.mjs │ │ ├── DDBSpellEnricher.mjs │ │ ├── _helper.js │ │ ├── _linkBuilder.js │ │ ├── _module.mjs │ │ ├── background │ │ │ ├── Generic.mjs │ │ │ └── _module.mjs │ │ ├── class │ │ │ ├── Generic.mjs │ │ │ ├── _module.mjs │ │ │ ├── artificer │ │ │ │ ├── AdvancedArtifice.mjs │ │ │ │ ├── AdventurersAtlas.mjs │ │ │ │ ├── AlchemicalSavant.mjs │ │ │ │ ├── ArcaneArmorCreateArmor.mjs │ │ │ │ ├── ArcanePropulsionArmorGauntlet.mjs │ │ │ │ ├── ArmorModel.mjs │ │ │ │ ├── ArtificerSpells.mjs │ │ │ │ ├── ChargeMagicItem.mjs │ │ │ │ ├── CheatDeath.mjs │ │ │ │ ├── EldritchCannon.mjs │ │ │ │ ├── EldritchCannonFlamethrower.mjs │ │ │ │ ├── EldritchCannonForceBallista.mjs │ │ │ │ ├── EldritchCannonProtector.mjs │ │ │ │ ├── ExperimentalElixir.mjs │ │ │ │ ├── ExplosiveCannon.mjs │ │ │ │ ├── FlashOfGenius.mjs │ │ │ │ ├── ForceDemolisher.mjs │ │ │ │ ├── GuardianArmorDefensiveField.mjs │ │ │ │ ├── GuidedPrecision.mjs │ │ │ │ ├── MagicItemTinker.mjs │ │ │ │ ├── SpellStoringItem.mjs │ │ │ │ ├── SpellStoringItemStoreSpell.mjs │ │ │ │ ├── SteelDefender.mjs │ │ │ │ ├── TransmuteMagicItem.mjs │ │ │ │ └── _module.mjs │ │ │ ├── barbarian │ │ │ │ ├── AncestralProtectors.mjs │ │ │ │ ├── AspectOfTheBeastBear.mjs │ │ │ │ ├── AspectOfTheWilds.mjs │ │ │ │ ├── BatteringRoots.mjs │ │ │ │ ├── BranchesOfTheTree.mjs │ │ │ │ ├── BrutalCritical.mjs │ │ │ │ ├── BrutalStrike.mjs │ │ │ │ ├── DemiurgicColossus.mjs │ │ │ │ ├── DivineFury.mjs │ │ │ │ ├── ElementalCleaver.mjs │ │ │ │ ├── FormOfTheBeast.mjs │ │ │ │ ├── FormOfTheBeastWeapons.mjs │ │ │ │ ├── Frenzy.mjs │ │ │ │ ├── GiantsHavoc.mjs │ │ │ │ ├── GiantsHavocCrushingThrow.mjs │ │ │ │ ├── GiantsHavocGiantStature.mjs │ │ │ │ ├── ImprovedBrutalStrike.mjs │ │ │ │ ├── IntimidatingPresence.mjs │ │ │ │ ├── MindlessRage.mjs │ │ │ │ ├── PersistentRage.mjs │ │ │ │ ├── PowerOfTheWilds.mjs │ │ │ │ ├── Rage.mjs │ │ │ │ ├── RageOfTheGods.mjs │ │ │ │ ├── RageOfTheWilds.mjs │ │ │ │ ├── RagingStormDesert.mjs │ │ │ │ ├── RagingStormSea.mjs │ │ │ │ ├── RagingStormTundra.mjs │ │ │ │ ├── RelentlessRage.mjs │ │ │ │ ├── Retaliation.mjs │ │ │ │ ├── ShieldingStorm.mjs │ │ │ │ ├── StormAuraDesert.mjs │ │ │ │ ├── StormAuraSea.mjs │ │ │ │ ├── StormAuraTundra.mjs │ │ │ │ ├── StormSoul.mjs │ │ │ │ ├── StormSoulTundraFreezeWater.mjs │ │ │ │ ├── TravelAlongTheTree.mjs │ │ │ │ ├── VitalityOfTheTree.mjs │ │ │ │ ├── WarriorOfTheGods.mjs │ │ │ │ ├── ZealousPresence.mjs │ │ │ │ └── _module.mjs │ │ │ ├── bard │ │ │ │ ├── BardicInspiration.mjs │ │ │ │ ├── BeguilingMagic.mjs │ │ │ │ ├── BlessedMoonbeam.mjs │ │ │ │ ├── CombatInspiration.mjs │ │ │ │ ├── CuttingWords.mjs │ │ │ │ ├── DazzlingFootwork.mjs │ │ │ │ ├── DefensiveFlourish.mjs │ │ │ │ ├── InspiredEclipse.mjs │ │ │ │ ├── InspiringMovement.mjs │ │ │ │ ├── JackOfAllTrades.mjs │ │ │ │ ├── LunarVitality.mjs │ │ │ │ ├── MantleOfInspiration.mjs │ │ │ │ ├── MantleOfMajesty.mjs │ │ │ │ ├── MobileFlourish.mjs │ │ │ │ ├── MoonsInspiration.mjs │ │ │ │ ├── RegainBardicInspiration.mjs │ │ │ │ ├── SlashingFlourish.mjs │ │ │ │ ├── SongOfRest.mjs │ │ │ │ ├── SuperiorInspiration.mjs │ │ │ │ ├── TandemFootwork.mjs │ │ │ │ ├── UnbreakableMajesty.mjs │ │ │ │ ├── VibranceOfTheMoon.mjs │ │ │ │ └── _module.mjs │ │ │ ├── cleric │ │ │ │ ├── BlessedHealer.mjs │ │ │ │ ├── BlessedStrikes.mjs │ │ │ │ ├── BlessedStrikesDivineStrike.mjs │ │ │ │ ├── BlessingOfTheTrickster.mjs │ │ │ │ ├── ChannelDivinityCloakOfShadows.mjs │ │ │ │ ├── ChannelDivinityPreserveLife.mjs │ │ │ │ ├── ChannelDivinityRadianceOfTheDawn.mjs │ │ │ │ ├── CoronaOfLight.mjs │ │ │ │ ├── DiscipleOfLife.mjs │ │ │ │ ├── DivineForeknowledge.mjs │ │ │ │ ├── DivineIntervention.mjs │ │ │ │ ├── DivineOrderThaumaturge.mjs │ │ │ │ ├── DomainSpells.mjs │ │ │ │ ├── GreaterDivineIntervention.mjs │ │ │ │ ├── GuidedStrike.mjs │ │ │ │ ├── HarnessDivinePower.mjs │ │ │ │ ├── ImprovedBlessedStrikesPotentSpellcasting.mjs │ │ │ │ ├── ImprovedDuplicity.mjs │ │ │ │ ├── ImprovedShadowStep.mjs │ │ │ │ ├── ImprovedWardingFlare.mjs │ │ │ │ ├── InvokeDuplicity.mjs │ │ │ │ ├── SearUndead.mjs │ │ │ │ ├── StepsOfNight.mjs │ │ │ │ ├── VigilantBlessing.mjs │ │ │ │ ├── WarGodsBlessing.mjs │ │ │ │ ├── WarPriest.mjs │ │ │ │ ├── WrathOfTheStorm.mjs │ │ │ │ └── _module.mjs │ │ │ ├── druid │ │ │ │ ├── Archdruid.mjs │ │ │ │ ├── BlightedShape.mjs │ │ │ │ ├── CallOfTheShadowseeds.mjs │ │ │ │ ├── CircleForms.mjs │ │ │ │ ├── CircleOfTheSpells.mjs │ │ │ │ ├── CosmicOmen.mjs │ │ │ │ ├── DefileGround.mjs │ │ │ │ ├── DefileGroundMoveCorruption.mjs │ │ │ │ ├── ElementalFuryPotentSpellcasting.mjs │ │ │ │ ├── ElementalFuryPrimalStrike.mjs │ │ │ │ ├── FullOfStars.mjs │ │ │ │ ├── ImprovedCircleForms.mjs │ │ │ │ ├── LandsAid.mjs │ │ │ │ ├── LunarForm.mjs │ │ │ │ ├── MoonlightStep.mjs │ │ │ │ ├── MutateShape.mjs │ │ │ │ ├── NaturalRecovery.mjs │ │ │ │ ├── NatureMagician.mjs │ │ │ │ ├── NaturesWard.mjs │ │ │ │ ├── SpiritTotem.mjs │ │ │ │ ├── StarryForm.mjs │ │ │ │ ├── Stormborn.mjs │ │ │ │ ├── SummonWildfireSpirit.mjs │ │ │ │ ├── SummonWildfireSpiritCommand.mjs │ │ │ │ ├── TwinklingConstellations.mjs │ │ │ │ ├── WildResurgence.mjs │ │ │ │ ├── WildShape.mjs │ │ │ │ ├── WrathOfTheSea.mjs │ │ │ │ └── _module.mjs │ │ │ ├── fighter │ │ │ │ ├── ActionSurge.mjs │ │ │ │ ├── ArcaneShotOption.mjs │ │ │ │ ├── ArcaneShotOptions.mjs │ │ │ │ ├── BanishingArrow.mjs │ │ │ │ ├── BeguilingArrow.mjs │ │ │ │ ├── CloudRune.mjs │ │ │ │ ├── CombatSuperiority.mjs │ │ │ │ ├── EldritchStrike.mjs │ │ │ │ ├── FireRune.mjs │ │ │ │ ├── FrostRune.mjs │ │ │ │ ├── GiantsMight.mjs │ │ │ │ ├── GraspingArrow.mjs │ │ │ │ ├── GroupRecovery.mjs │ │ │ │ ├── HillRune.mjs │ │ │ │ ├── ImprovedCritical.mjs │ │ │ │ ├── Indomitable.mjs │ │ │ │ ├── Launch.mjs │ │ │ │ ├── MagicArrow.mjs │ │ │ │ ├── Maneuver.mjs │ │ │ │ ├── ManeuverAmbush.mjs │ │ │ │ ├── ManeuverBaitAndSwitch.mjs │ │ │ │ ├── ManeuverBrace.mjs │ │ │ │ ├── ManeuverCommandersStrike.mjs │ │ │ │ ├── ManeuverCommandingPresence.mjs │ │ │ │ ├── ManeuverDisarmingAttack.mjs │ │ │ │ ├── ManeuverDistractingStrike.mjs │ │ │ │ ├── ManeuverEvasiveFootwork.mjs │ │ │ │ ├── ManeuverFeintingAttack.mjs │ │ │ │ ├── ManeuverGoadingAttack.mjs │ │ │ │ ├── ManeuverGrapplingStrike.mjs │ │ │ │ ├── ManeuverLungingAttack.mjs │ │ │ │ ├── ManeuverManeuveringAttack.mjs │ │ │ │ ├── ManeuverMenacingAttack.mjs │ │ │ │ ├── ManeuverParry.mjs │ │ │ │ ├── ManeuverPrecisionAttack.mjs │ │ │ │ ├── ManeuverPushingAttack.mjs │ │ │ │ ├── ManeuverQuickToss.mjs │ │ │ │ ├── ManeuverRally.mjs │ │ │ │ ├── ManeuverRiposte.mjs │ │ │ │ ├── ManeuverSweepingAttack.mjs │ │ │ │ ├── ManeuverTacticalAssessment.mjs │ │ │ │ ├── ManeuverTripAttack.mjs │ │ │ │ ├── Maneuvers.mjs │ │ │ │ ├── PiercingArrow.mjs │ │ │ │ ├── PsiPoweredLeap.mjs │ │ │ │ ├── PsionicStrike.mjs │ │ │ │ ├── RallyingSurge.mjs │ │ │ │ ├── Relentless.mjs │ │ │ │ ├── RemarkableAthlete.mjs │ │ │ │ ├── SecondWind.mjs │ │ │ │ ├── SeekingArrow.mjs │ │ │ │ ├── ShadowArrow.mjs │ │ │ │ ├── SharedResilience.mjs │ │ │ │ ├── StoneRune.mjs │ │ │ │ ├── StormRune.mjs │ │ │ │ ├── SuperiorCritical.mjs │ │ │ │ ├── Survivor.mjs │ │ │ │ ├── TacticalMaster.mjs │ │ │ │ ├── TacticalMind.mjs │ │ │ │ ├── TeamTactics.mjs │ │ │ │ ├── TelekineticAdept.mjs │ │ │ │ ├── TelekineticMaster.mjs │ │ │ │ ├── TelekineticMovement.mjs │ │ │ │ ├── TelekineticThrust.mjs │ │ │ │ ├── WarBond.mjs │ │ │ │ └── _module.mjs │ │ │ ├── monk │ │ │ │ ├── ArmsOfTheAstralSelf.mjs │ │ │ │ ├── ArmsOfTheAstralSelfPhysicalAttack.mjs │ │ │ │ ├── ArmsOfTheAstralSelfSummon.mjs │ │ │ │ ├── ArmsOfTheAstralSelfWisAttack.mjs │ │ │ │ ├── AwakenedAstralSelf.mjs │ │ │ │ ├── DeflectAttack.mjs │ │ │ │ ├── DeflectAttackRedirectAttack.mjs │ │ │ │ ├── DeflectAttacks.mjs │ │ │ │ ├── DeflectEnergy.mjs │ │ │ │ ├── DeflectMissiles.mjs │ │ │ │ ├── DeflectMissilesAttack.mjs │ │ │ │ ├── DeftStrike.mjs │ │ │ │ ├── DiamondSoul.mjs │ │ │ │ ├── DisciplinedSurvivor.mjs │ │ │ │ ├── ElementalAttunement.mjs │ │ │ │ ├── ElementalBurst.mjs │ │ │ │ ├── ElementalDisciplines.mjs │ │ │ │ ├── ElementalEpitome.mjs │ │ │ │ ├── EmpoweredStrikes.mjs │ │ │ │ ├── EmptyBody.mjs │ │ │ │ ├── FangsOfTheFireSnake.mjs │ │ │ │ ├── FistOfUnbrokenAir.mjs │ │ │ │ ├── FleetStep.mjs │ │ │ │ ├── FlurryOfBlowsAdditional.mjs │ │ │ │ ├── FlurryOfHealingAndHarm.mjs │ │ │ │ ├── HandOfHarm.mjs │ │ │ │ ├── HandOfHealing.mjs │ │ │ │ ├── HeightenedFocus.mjs │ │ │ │ ├── Ki.mjs │ │ │ │ ├── MartialArts.mjs │ │ │ │ ├── MonksFocus.mjs │ │ │ │ ├── OpenHandTechnique.mjs │ │ │ │ ├── PatientDefense.mjs │ │ │ │ ├── PerfectFocus.mjs │ │ │ │ ├── PhysiciansTouch.mjs │ │ │ │ ├── QuickenedHealing.mjs │ │ │ │ ├── ShadowArts.mjs │ │ │ │ ├── SlowFall.mjs │ │ │ │ ├── StepOfTheWind.mjs │ │ │ │ ├── StrideOfTheElements.mjs │ │ │ │ ├── StunningStrike.mjs │ │ │ │ ├── SuperiorDefense.mjs │ │ │ │ ├── TongueOfTheSunAndMoon.mjs │ │ │ │ ├── UncannyMetabolism.mjs │ │ │ │ ├── VisageOfTheAstralSelf.mjs │ │ │ │ ├── WaterWhip.mjs │ │ │ │ ├── WholenessOfBody.mjs │ │ │ │ └── _module.mjs │ │ │ ├── monster-hunter │ │ │ │ └── _module.mjs │ │ │ ├── paladin │ │ │ │ ├── AbjureFoes.mjs │ │ │ │ ├── AuraOfElementalShielding.mjs │ │ │ │ ├── AuraOfHate.mjs │ │ │ │ ├── AvengingAngel.mjs │ │ │ │ ├── ChannelDivinityTurnTheUnholy.mjs │ │ │ │ ├── DivineSmite.mjs │ │ │ │ ├── ElderChampion.mjs │ │ │ │ ├── ElementalRebuke.mjs │ │ │ │ ├── ElementalSmite.mjs │ │ │ │ ├── EmbodyLegends.mjs │ │ │ │ ├── GloriousDefense.mjs │ │ │ │ ├── HolyNimbus.mjs │ │ │ │ ├── InspiringSmite.mjs │ │ │ │ ├── LayOnHands.mjs │ │ │ │ ├── LayOnHandsPool.mjs │ │ │ │ ├── LayOnHandsPurifyPoison.mjs │ │ │ │ ├── LivingLegend.mjs │ │ │ │ ├── NobleScion.mjs │ │ │ │ ├── OathOfSpells.mjs │ │ │ │ ├── PeerlessAthlete.mjs │ │ │ │ ├── RadiantStrikes.mjs │ │ │ │ ├── RelentlessAvenger.mjs │ │ │ │ ├── SacredWeapon.mjs │ │ │ │ ├── SmiteOfProtection.mjs │ │ │ │ ├── SoulOfVengeance.mjs │ │ │ │ ├── UndyingSentinel.mjs │ │ │ │ ├── VowOfEnmity.mjs │ │ │ │ └── _module.mjs │ │ │ ├── ranger │ │ │ │ ├── BeguilingTwist.mjs │ │ │ │ ├── BestialFury.mjs │ │ │ │ ├── BondOfFangAndScale.mjs │ │ │ │ ├── DefensiveTactics.mjs │ │ │ │ ├── DrakeCompanion.mjs │ │ │ │ ├── DrakesBreath.mjs │ │ │ │ ├── DreadAmbusher.mjs │ │ │ │ ├── DreadfulStrike.mjs │ │ │ │ ├── DreadfulStrikeMassFear.mjs │ │ │ │ ├── DreadfulStrikeSuddenStrike.mjs │ │ │ │ ├── DreadfulStrikes.mjs │ │ │ │ ├── ExceptionalTraining.mjs │ │ │ │ ├── FoeSlayer.mjs │ │ │ │ ├── FortifyingSoul.mjs │ │ │ │ ├── FrigidExplorer.mjs │ │ │ │ ├── FrozenHaunt.mjs │ │ │ │ ├── GatheredSwarm.mjs │ │ │ │ ├── HuntersPrey.mjs │ │ │ │ ├── HuntersRime.mjs │ │ │ │ ├── PlanarWarrior.mjs │ │ │ │ ├── PrimalCompanion.mjs │ │ │ │ ├── PrimalCompanionRestoreBeast.mjs │ │ │ │ ├── PrimalCompanionSummon.mjs │ │ │ │ ├── RangerSpells.mjs │ │ │ │ ├── ShadowyDodge.mjs │ │ │ │ ├── SlayersPrey.mjs │ │ │ │ ├── StalkersFlurry.mjs │ │ │ │ ├── SuperiorHuntersDefense.mjs │ │ │ │ ├── SuperiorHuntersPrey.mjs │ │ │ │ ├── TemporaryHitPoints.mjs │ │ │ │ ├── Tireless.mjs │ │ │ │ └── _module.mjs │ │ │ ├── rogue │ │ │ │ ├── AuraOfMalevolence.mjs │ │ │ │ ├── Bloodthirst.mjs │ │ │ │ ├── CunningAction.mjs │ │ │ │ ├── CunningStrike.mjs │ │ │ │ ├── DeathStrike.mjs │ │ │ │ ├── DeviousStrikes.mjs │ │ │ │ ├── DreadAllegiance.mjs │ │ │ │ ├── DreadIncarnate.mjs │ │ │ │ ├── Enchantments.mjs │ │ │ │ ├── EnchantmentsExtras.mjs │ │ │ │ ├── EnvenomWeapons.mjs │ │ │ │ ├── Evasion.mjs │ │ │ │ ├── FastHands.mjs │ │ │ │ ├── GhostWalk.mjs │ │ │ │ ├── PsiBolsteredKnack.mjs │ │ │ │ ├── PsychicBlade.mjs │ │ │ │ ├── PsychicVeil.mjs │ │ │ │ ├── PsychicWhispers.mjs │ │ │ │ ├── ReliableTalent.mjs │ │ │ │ ├── RendMind.mjs │ │ │ │ ├── SneakAttack.mjs │ │ │ │ ├── SneakAttackPoisonEnvenom.mjs │ │ │ │ ├── SneakAttackSupremeSneak.mjs │ │ │ │ ├── SoulBlades.mjs │ │ │ │ ├── SoulBladesHomingStrikes.mjs │ │ │ │ ├── SoulBladesPsychicTeleportation.mjs │ │ │ │ ├── SteadyAim.mjs │ │ │ │ ├── SupremeSneak.mjs │ │ │ │ ├── TokensOfTheDeparted.mjs │ │ │ │ ├── UseMagicDevice.mjs │ │ │ │ ├── UseMagicDeviceCharges.mjs │ │ │ │ ├── UseMagicDeviceScroll.mjs │ │ │ │ ├── WailsFromTheGrave.mjs │ │ │ │ └── _module.mjs │ │ │ ├── shared │ │ │ │ ├── ChannelDivinity.mjs │ │ │ │ ├── PactMagic.mjs │ │ │ │ ├── PotentCantrip.mjs │ │ │ │ ├── PsionicPower.mjs │ │ │ │ ├── PsionicPowerRecovery.mjs │ │ │ │ ├── UnarmoredDefense.mjs │ │ │ │ ├── UnarmoredMovement.mjs │ │ │ │ └── _module.mjs │ │ │ ├── sorcerer │ │ │ │ ├── AbsorbSpells.mjs │ │ │ │ ├── BastionOfLaw.mjs │ │ │ │ ├── BendLuck.mjs │ │ │ │ ├── ClockworkCavalcade.mjs │ │ │ │ ├── CrownOfSpellfire.mjs │ │ │ │ ├── DraconicResilience.mjs │ │ │ │ ├── DragonAncestor.mjs │ │ │ │ ├── DragonWings.mjs │ │ │ │ ├── ElementalAffinity.mjs │ │ │ │ ├── ExtraSpells.mjs │ │ │ │ ├── FontOfMagic.mjs │ │ │ │ ├── FontOfMagicSorceryPoints.mjs │ │ │ │ ├── HonedSpellfire.mjs │ │ │ │ ├── HoundOfIllOmen.mjs │ │ │ │ ├── InnateSorcery.mjs │ │ │ │ ├── MetamagicGeneric.mjs │ │ │ │ ├── MetamagicOptions.mjs │ │ │ │ ├── RevelationInFlesh.mjs │ │ │ │ ├── SorcerousRestoration.mjs │ │ │ │ ├── SorceryIncarnate.mjs │ │ │ │ ├── SorceryPoints.mjs │ │ │ │ ├── SpellfireBurst.mjs │ │ │ │ ├── SpellfireBurstBolsteringFlames.mjs │ │ │ │ ├── SpellfireBurstRadiantFireFire.mjs │ │ │ │ ├── TranceOfOrder.mjs │ │ │ │ ├── WarpingImplosion.mjs │ │ │ │ ├── WildMagicSurge.mjs │ │ │ │ └── _module.mjs │ │ │ ├── warlock │ │ │ │ ├── CelestialResilience.mjs │ │ │ │ ├── ClairvoyantCombatant.mjs │ │ │ │ ├── CreateThrall.mjs │ │ │ │ ├── DarkOnesBlessing.mjs │ │ │ │ ├── DarkOnesOwnLuck.mjs │ │ │ │ ├── EldritchInvocations.mjs │ │ │ │ ├── EldritchInvocationsAgonizingBlast.mjs │ │ │ │ ├── EldritchMaster.mjs │ │ │ │ ├── ExtraSpells.mjs │ │ │ │ ├── FiendishResilience.mjs │ │ │ │ ├── GeniesVessel.mjs │ │ │ │ ├── GhostlyGaze.mjs │ │ │ │ ├── HealingLight.mjs │ │ │ │ ├── HurlThroughHell.mjs │ │ │ │ ├── InvocationLifedrinker.mjs │ │ │ │ ├── InvocationPactOfTheBlade.mjs │ │ │ │ ├── MagicalCunning.mjs │ │ │ │ ├── PactBoonPactOfTheTalisman.mjs │ │ │ │ ├── PactOfTheChain.mjs │ │ │ │ ├── RadiantSoul.mjs │ │ │ │ ├── SearingVengeance.mjs │ │ │ │ ├── StepsOfTheFey.mjs │ │ │ │ └── _module.mjs │ │ │ └── wizard │ │ │ │ ├── ArcaneRecovery.mjs │ │ │ │ ├── ArcaneWard.mjs │ │ │ │ ├── Bladesong.mjs │ │ │ │ ├── EmpoweredEvocation.mjs │ │ │ │ ├── ExpertDivination.mjs │ │ │ │ ├── HypnoticGaze.mjs │ │ │ │ ├── IllusorySelf.mjs │ │ │ │ ├── MomentaryStasis.mjs │ │ │ │ ├── Overchannel.mjs │ │ │ │ ├── SculptSpells.mjs │ │ │ │ ├── SongOfDefense.mjs │ │ │ │ ├── SongOfVictory.mjs │ │ │ │ ├── TheThirdEye.mjs │ │ │ │ └── _module.mjs │ │ ├── data │ │ │ ├── DDBEnricherData.mjs │ │ │ ├── SpellListExtractor.mjs │ │ │ ├── SpellListExtractorMixin.mjs │ │ │ ├── _example │ │ │ │ ├── empty.mjs │ │ │ │ └── example.mjs │ │ │ └── _module.mjs │ │ ├── effects │ │ │ ├── ACBonusEffects.mjs │ │ │ ├── AutoEffects.mjs │ │ │ ├── ChangeHelper.mjs │ │ │ ├── EffectGenerator.mjs │ │ │ ├── EnchantmentEffects.mjs │ │ │ ├── MidiEffects.mjs │ │ │ ├── MidiOverTimeEffect.mjs │ │ │ └── _module.mjs │ │ ├── feat │ │ │ ├── .editorconfig │ │ │ ├── AbberantDragonmark.mjs │ │ │ ├── AberrantFortitude.mjs │ │ │ ├── Alert.mjs │ │ │ ├── BolsteringPerformance.mjs │ │ │ ├── BoonOfEnergyResistance.mjs │ │ │ ├── BoonOfFate.mjs │ │ │ ├── BoonOfFortitude.mjs │ │ │ ├── BoonOfTheNightSpirit.mjs │ │ │ ├── Charger.mjs │ │ │ ├── Chef.mjs │ │ │ ├── CrossbowExpert.mjs │ │ │ ├── Crusher.mjs │ │ │ ├── DefensiveDuelist.mjs │ │ │ ├── DualWielder.mjs │ │ │ ├── Durable.mjs │ │ │ ├── ElementalAdept.mjs │ │ │ ├── ElvenAccuracy.mjs │ │ │ ├── EnergyRedirection.mjs │ │ │ ├── EpicBoon.mjs │ │ │ ├── Generic.mjs │ │ │ ├── GreatWeaponMaster.mjs │ │ │ ├── Healer.mjs │ │ │ ├── HeavyArmorMaster.mjs │ │ │ ├── InspiringLeader.mjs │ │ │ ├── MageSlayer.mjs │ │ │ ├── MartialAdept.mjs │ │ │ ├── MetamagicAdept.mjs │ │ │ ├── Observant.mjs │ │ │ ├── Piercer.mjs │ │ │ ├── Poisoner.mjs │ │ │ ├── PolearmMasterBonusAttack.mjs │ │ │ ├── ReliableTalent.mjs │ │ │ ├── RitualCaster.mjs │ │ │ ├── SavageAttacker.mjs │ │ │ ├── Sharpshooter.mjs │ │ │ ├── Slasher.mjs │ │ │ ├── SpeedyRecovery.mjs │ │ │ ├── SpellSniper.mjs │ │ │ ├── SquireOfSolamniaPreciseStrike.mjs │ │ │ ├── StrikeOfTheGiants.mjs │ │ │ ├── TavernBrawler.mjs │ │ │ ├── Telekinetic.mjs │ │ │ ├── WarCaster.mjs │ │ │ └── _module.mjs │ │ ├── generic │ │ │ ├── AuraOf.mjs │ │ │ ├── FightingStyleInterception.mjs │ │ │ ├── Grapple.mjs │ │ │ ├── Lucky.mjs │ │ │ ├── None.mjs │ │ │ ├── RecklessAttack.mjs │ │ │ ├── Shove.mjs │ │ │ ├── UnarmedStrike.mjs │ │ │ ├── UncannyDodge.mjs │ │ │ └── _module.mjs │ │ ├── item │ │ │ ├── AbsorbingTattoo.mjs │ │ │ ├── Acid.mjs │ │ │ ├── AcidVial.mjs │ │ │ ├── AirRender.mjs │ │ │ ├── AlchemistsFire.mjs │ │ │ ├── ArcaneOil.mjs │ │ │ ├── ArmorOfInvulnerability.mjs │ │ │ ├── BeadOfForce.mjs │ │ │ ├── BelashyrrasBeholderCrown.mjs │ │ │ ├── BloodFuryTattoo.mjs │ │ │ ├── BootsOfSpeed.mjs │ │ │ ├── BracersOfArchery.mjs │ │ │ ├── BullseyeLantern.mjs │ │ │ ├── Candle.mjs │ │ │ ├── CircletOfBlasting.mjs │ │ │ ├── CloakOfDisplacement.mjs │ │ │ ├── ConcussionGrenade.mjs │ │ │ ├── DemonArmor.mjs │ │ │ ├── DonjonsSunderingSphere.mjs │ │ │ ├── DragonWing.mjs │ │ │ ├── DustOfSneezingAndChoking.mjs │ │ │ ├── FarRealmShard.mjs │ │ │ ├── FlameTongue.mjs │ │ │ ├── FlyingBroomstick.mjs │ │ │ ├── GenericLightSource.mjs │ │ │ ├── GnomengardeGrenade.mjs │ │ │ ├── HammerOfThunderbolts.mjs │ │ │ ├── HealersKit.mjs │ │ │ ├── HoodedLantern.mjs │ │ │ ├── InstrumentOfTheBards.mjs │ │ │ ├── IronBandsOfBinding.mjs │ │ │ ├── JavelinOfLightning.mjs │ │ │ ├── KorolnorScepter.mjs │ │ │ ├── Lamp.mjs │ │ │ ├── MoonSickle.mjs │ │ │ ├── NeedlerPistol.mjs │ │ │ ├── Net.mjs │ │ │ ├── OilOfSharpness.mjs │ │ │ ├── ParalysisPistol.mjs │ │ │ ├── PearlOfPower.mjs │ │ │ ├── PotionOfHealing.mjs │ │ │ ├── PotionOfHealingGreater.mjs │ │ │ ├── PotionOfHealingSuperior.mjs │ │ │ ├── PotionOfHealingSupreme.mjs │ │ │ ├── PotionOfInvulnerability.mjs │ │ │ ├── PotionOfSpeed.mjs │ │ │ ├── RingOfTheRam.mjs │ │ │ ├── SiegeStaff.mjs │ │ │ ├── SpellRefuelingRingReaction.mjs │ │ │ ├── SpellguardShield.mjs │ │ │ ├── Staff.mjs │ │ │ ├── StaffOfCharming.mjs │ │ │ ├── StaffOfHealing.mjs │ │ │ ├── StinkBomb.mjs │ │ │ ├── SunBlade.mjs │ │ │ ├── TomeOf.mjs │ │ │ ├── TomeOfClearThought.mjs │ │ │ ├── TomeOfLeadershipAndInfluence.mjs │ │ │ ├── TomeOfUnderstanding.mjs │ │ │ ├── Torch.mjs │ │ │ ├── Vial.mjs │ │ │ ├── WandOfFireballs.mjs │ │ │ ├── WandOfMagicMissiles.mjs │ │ │ ├── WandOfOrcus.mjs │ │ │ ├── WarriorsPasskey.mjs │ │ │ ├── Waterskin.mjs │ │ │ └── _module.mjs │ │ ├── mixins │ │ │ ├── DDBActivityFactoryMixin.mjs │ │ │ ├── DDBBasicActivity.mjs │ │ │ ├── DDBEnricherFactoryMixin.mjs │ │ │ └── _module.mjs │ │ ├── monster │ │ │ ├── Aboleth │ │ │ │ ├── Tentacle.mjs │ │ │ │ └── _module.mjs │ │ │ ├── Bard │ │ │ │ ├── Taunt.mjs │ │ │ │ └── _module.mjs │ │ │ ├── BeastOfTheLand │ │ │ │ ├── BeastsStrike.mjs │ │ │ │ └── _module.mjs │ │ │ ├── BeastOfTheSea │ │ │ │ ├── BeastsStrike.mjs │ │ │ │ └── _module.mjs │ │ │ ├── BeastOfTheSky │ │ │ │ ├── BeastsStrike.mjs │ │ │ │ └── _module.mjs │ │ │ ├── Beholder │ │ │ │ ├── EyeRays.mjs │ │ │ │ └── _module.mjs │ │ │ ├── CarrionCrawler │ │ │ │ └── _module.mjs │ │ │ ├── ClayGolem │ │ │ │ ├── Haste.mjs │ │ │ │ └── _module.mjs │ │ │ ├── ConjuredAnimals │ │ │ │ ├── PackDamage.mjs │ │ │ │ └── _module.mjs │ │ │ ├── ConjuredElemental │ │ │ │ ├── ElementDamage.mjs │ │ │ │ └── _module.mjs │ │ │ ├── ConjuredFey │ │ │ │ ├── PsychicAttack.mjs │ │ │ │ └── _module.mjs │ │ │ ├── Dullahan │ │ │ │ ├── CoordinatedAssault.mjs │ │ │ │ ├── HeadlessSummoning.mjs │ │ │ │ ├── HeadlessWail.mjs │ │ │ │ └── _module.mjs │ │ │ ├── EldritchCannon │ │ │ │ ├── Flamethrower.mjs │ │ │ │ ├── ForceBallista.mjs │ │ │ │ ├── Protector.mjs │ │ │ │ └── _module.mjs │ │ │ ├── ElementalCultist │ │ │ │ ├── ElementalAbsorption.mjs │ │ │ │ └── _module.mjs │ │ │ ├── Empyrean │ │ │ │ ├── SacredWeapon.mjs │ │ │ │ └── _module.mjs │ │ │ ├── FaithfulHound │ │ │ │ ├── Bite.mjs │ │ │ │ └── _module.mjs │ │ │ ├── FlamingSphere │ │ │ │ ├── FlameDamage.mjs │ │ │ │ ├── MoveAndAttack.mjs │ │ │ │ └── _module.mjs │ │ │ ├── FlyingSnake │ │ │ │ ├── Bite.mjs │ │ │ │ └── _module.mjs │ │ │ ├── Generic │ │ │ │ ├── Absorption.mjs │ │ │ │ ├── Evasion.mjs │ │ │ │ ├── Illumination.mjs │ │ │ │ ├── Invisibility.mjs │ │ │ │ ├── LegendaryResistance.mjs │ │ │ │ ├── MaskOfTheWild.mjs │ │ │ │ ├── NamedEffect.mjs │ │ │ │ ├── PackTactics.mjs │ │ │ │ ├── ReversalOfFortune.mjs │ │ │ │ ├── SuaveDefense.mjs │ │ │ │ └── _module.mjs │ │ │ ├── GiantInsect │ │ │ │ ├── PoisonJab.mjs │ │ │ │ ├── VenomousSpew.mjs │ │ │ │ └── _module.mjs │ │ │ ├── GraspingVine │ │ │ │ ├── VineAttack.mjs │ │ │ │ └── _module.mjs │ │ │ ├── GuardianOfFaith │ │ │ │ ├── GuardianAura.mjs │ │ │ │ └── _module.mjs │ │ │ ├── HomunculusServant │ │ │ │ ├── MagicBond.mjs │ │ │ │ └── _module.mjs │ │ │ ├── Imp │ │ │ │ ├── ShapeShift.mjs │ │ │ │ └── _module.mjs │ │ │ ├── LivingBladeOfDisaster │ │ │ │ ├── ForceBlade.mjs │ │ │ │ └── _module.mjs │ │ │ ├── Nosferatu │ │ │ │ ├── Bite.mjs │ │ │ │ └── _module.mjs │ │ │ ├── PurpleWorm │ │ │ │ ├── Bite.mjs │ │ │ │ └── _module.mjs │ │ │ ├── SpiritualWeapon │ │ │ │ ├── Attack.mjs │ │ │ │ └── _module.mjs │ │ │ ├── SteelDefender │ │ │ │ ├── Repair.mjs │ │ │ │ ├── SteelBond.mjs │ │ │ │ └── _module.mjs │ │ │ ├── Stirge │ │ │ │ ├── Proboscis.mjs │ │ │ │ └── _module.mjs │ │ │ ├── SummonAnimatedObject │ │ │ │ ├── Slam.mjs │ │ │ │ └── _module.mjs │ │ │ ├── SummonConstruct │ │ │ │ ├── StonyLethargy.mjs │ │ │ │ └── _module.mjs │ │ │ ├── SwarmOfStirges │ │ │ │ ├── SwarmOfProboscises.mjs │ │ │ │ └── _module.mjs │ │ │ └── _module.mjs │ │ ├── spell │ │ │ ├── AbsorbElements.mjs │ │ │ ├── AccelerateDecelerate.mjs │ │ │ ├── AcidArrow.mjs │ │ │ ├── Aid.mjs │ │ │ ├── AlterSelf.mjs │ │ │ ├── AnimalFriendship.mjs │ │ │ ├── AnimalMessenger.mjs │ │ │ ├── AnimateDead.mjs │ │ │ ├── AnimateObjects.mjs │ │ │ ├── AntipathySympathy.mjs │ │ │ ├── ArcaneEye.mjs │ │ │ ├── ArcaneHand.mjs │ │ │ ├── ArcaneSword.mjs │ │ │ ├── ArcaneVigor.mjs │ │ │ ├── ArmorOfAgathys.mjs │ │ │ ├── AuraOfLife.mjs │ │ │ ├── BallisticSmite.mjs │ │ │ ├── Bane.mjs │ │ │ ├── BanishingSmite.mjs │ │ │ ├── Banishment.mjs │ │ │ ├── Barkskin.mjs │ │ │ ├── BeaconOfHope.mjs │ │ │ ├── BlackTentacles.mjs │ │ │ ├── BladeWard.mjs │ │ │ ├── Bless.mjs │ │ │ ├── BlindnessDeafness.mjs │ │ │ ├── Blur.mjs │ │ │ ├── BonesOfTheEarth.mjs │ │ │ ├── BoomingBlade.mjs │ │ │ ├── BrandingSmite.mjs │ │ │ ├── CallLightning.mjs │ │ │ ├── Catapult.mjs │ │ │ ├── ChaosBolt.mjs │ │ │ ├── ChillTouch.mjs │ │ │ ├── ChorusOfTheLost.mjs │ │ │ ├── ChromaticOrb.mjs │ │ │ ├── Clairvoyance.mjs │ │ │ ├── ClawsOfDarkness.mjs │ │ │ ├── Cloudkill.mjs │ │ │ ├── ColorSpray.mjs │ │ │ ├── Command.mjs │ │ │ ├── ComprehendLanguages.mjs │ │ │ ├── Confusion.mjs │ │ │ ├── ConjureAnimals.mjs │ │ │ ├── ConjureCelestial.mjs │ │ │ ├── ConjureCover.mjs │ │ │ ├── ConjureElemental.mjs │ │ │ ├── ConjureFey.mjs │ │ │ ├── ConjureMinorElementals.mjs │ │ │ ├── ConjureWoodlandBeings.mjs │ │ │ ├── Contagion.mjs │ │ │ ├── ControlWeather.mjs │ │ │ ├── Counterspell.mjs │ │ │ ├── CreateBonfire.mjs │ │ │ ├── CreateUndead.mjs │ │ │ ├── CrownOfMadness.mjs │ │ │ ├── CrownOfStars.mjs │ │ │ ├── CrusadersMantle.mjs │ │ │ ├── DancingLights.mjs │ │ │ ├── Darkness.mjs │ │ │ ├── Darkvision.mjs │ │ │ ├── DelayedBlastFireball.mjs │ │ │ ├── DisguiseSelf.mjs │ │ │ ├── DivineFavor.mjs │ │ │ ├── DivineSmite.mjs │ │ │ ├── DragonsBreath.mjs │ │ │ ├── Earthquake.mjs │ │ │ ├── EldritchBlast.mjs │ │ │ ├── ElementalWeapon.mjs │ │ │ ├── EnhanceAbility.mjs │ │ │ ├── EnlargeReduce.mjs │ │ │ ├── EnsnaringStrike.mjs │ │ │ ├── Entangle.mjs │ │ │ ├── Enthrall.mjs │ │ │ ├── Eyebite.mjs │ │ │ ├── FaerieFire.mjs │ │ │ ├── FaithfulHound.mjs │ │ │ ├── FalseLife.mjs │ │ │ ├── FeatherFall.mjs │ │ │ ├── Feeblemind.mjs │ │ │ ├── FindFamiliar.mjs │ │ │ ├── FingerGuns.mjs │ │ │ ├── FingerOfDeath.mjs │ │ │ ├── FireShield.mjs │ │ │ ├── FlameBlade.mjs │ │ │ ├── FlamingSphere.mjs │ │ │ ├── FleshToStone.mjs │ │ │ ├── Fly.mjs │ │ │ ├── Forbiddance.mjs │ │ │ ├── FountOfMoonlight.mjs │ │ │ ├── Friends.mjs │ │ │ ├── Frostbite.mjs │ │ │ ├── GlyphOfWarding.mjs │ │ │ ├── GraspingVine.mjs │ │ │ ├── Grease.mjs │ │ │ ├── GreenFlameBlade.mjs │ │ │ ├── GuardianOfFaith.mjs │ │ │ ├── Guidance.mjs │ │ │ ├── GuidingBolt.mjs │ │ │ ├── GustOfWind.mjs │ │ │ ├── HailOfThorns.mjs │ │ │ ├── Haste.mjs │ │ │ ├── HeatMetal.mjs │ │ │ ├── HellsLash.mjs │ │ │ ├── HeroesFeast.mjs │ │ │ ├── Heroism.mjs │ │ │ ├── Hex.mjs │ │ │ ├── HideousLaughter.mjs │ │ │ ├── HoldThing.mjs │ │ │ ├── HolyAura.mjs │ │ │ ├── HungerOfHadar.mjs │ │ │ ├── HuntersMark.mjs │ │ │ ├── IceKnife.mjs │ │ │ ├── IncendiaryCloud.mjs │ │ │ ├── InsectPlague.mjs │ │ │ ├── Invisibility.mjs │ │ │ ├── IrresistibleDance.mjs │ │ │ ├── JallarzisStormOfRadiance.mjs │ │ │ ├── Light.mjs │ │ │ ├── Longstrider.mjs │ │ │ ├── MageArmor.mjs │ │ │ ├── MageHand.mjs │ │ │ ├── MagicWeapon.mjs │ │ │ ├── MajorImage.mjs │ │ │ ├── MassSuggestion.mjs │ │ │ ├── Maze.mjs │ │ │ ├── MeldIntoStone.mjs │ │ │ ├── MindBlank.mjs │ │ │ ├── MindSliver.mjs │ │ │ ├── MinorIllusion.mjs │ │ │ ├── MirrorImage.mjs │ │ │ ├── Mislead.mjs │ │ │ ├── MistyStep.mjs │ │ │ ├── OrrosMarkOfFate.mjs │ │ │ ├── PassWithoutTrace.mjs │ │ │ ├── PhantasmalKiller.mjs │ │ │ ├── PhantomSteed.mjs │ │ │ ├── Polymorph.mjs │ │ │ ├── PowerWordFortify.mjs │ │ │ ├── PowerWordHeal.mjs │ │ │ ├── PrimalSavagery.mjs │ │ │ ├── PrismaticWall.mjs │ │ │ ├── ProduceFlame.mjs │ │ │ ├── ProgrammedIllusion.mjs │ │ │ ├── ProjectImage.mjs │ │ │ ├── ProtectionFromEnergy.mjs │ │ │ ├── ProtectionFromPoison.mjs │ │ │ ├── PsychicScream.mjs │ │ │ ├── Pyrotechnics.mjs │ │ │ ├── RagefulNimbus.mjs │ │ │ ├── RaiseDead.mjs │ │ │ ├── RayOfEnfeeblement.mjs │ │ │ ├── RayOfFrost.mjs │ │ │ ├── RayOfSickness.mjs │ │ │ ├── Regenerate.mjs │ │ │ ├── ResilientSphere.mjs │ │ │ ├── Resistance.mjs │ │ │ ├── Resurrection.mjs │ │ │ ├── Sanctuary.mjs │ │ │ ├── ScorchingRay.mjs │ │ │ ├── SearingSmite.mjs │ │ │ ├── ShadowArmor.mjs │ │ │ ├── ShadowBlade.mjs │ │ │ ├── ShadowPuppets.mjs │ │ │ ├── Shield.mjs │ │ │ ├── ShieldOfFaith.mjs │ │ │ ├── Shillelagh.mjs │ │ │ ├── ShiningSmite.mjs │ │ │ ├── Silence.mjs │ │ │ ├── SilentImage.mjs │ │ │ ├── Sleep.mjs │ │ │ ├── Slow.mjs │ │ │ ├── SorcerousBurst.mjs │ │ │ ├── SpiderClimb.mjs │ │ │ ├── SpikeGrowth.mjs │ │ │ ├── SpiritGuardians.mjs │ │ │ ├── SpiritShroud.mjs │ │ │ ├── SpiritualWeapon.mjs │ │ │ ├── Stoneskin.mjs │ │ │ ├── StormSphere.mjs │ │ │ ├── Suggestion.mjs │ │ │ ├── Swarm.mjs │ │ │ ├── SwordBurst.mjs │ │ │ ├── Symbol.mjs │ │ │ ├── SynapticStatic.mjs │ │ │ ├── TashasBubblingCauldron.mjs │ │ │ ├── TashasCausticBrew.mjs │ │ │ ├── TashasOtherworldlyGuise.mjs │ │ │ ├── ThunderStep.mjs │ │ │ ├── Thunderclap.mjs │ │ │ ├── ThunderousSmite.mjs │ │ │ ├── TidalWave.mjs │ │ │ ├── TollTheDead.mjs │ │ │ ├── TrueStrike.mjs │ │ │ ├── UnseenServant.mjs │ │ │ ├── VengefulBlade.mjs │ │ │ ├── ViciousMockery.mjs │ │ │ ├── VitriolicSphere.mjs │ │ │ ├── WallOfFire.mjs │ │ │ ├── WallOfForce.mjs │ │ │ ├── WallOfIce.mjs │ │ │ ├── WallOfLight.mjs │ │ │ ├── WallOfSand.mjs │ │ │ ├── WallOfStone.mjs │ │ │ ├── WallOfThorns.mjs │ │ │ ├── WallOfWater.mjs │ │ │ ├── WardingBond.mjs │ │ │ ├── WaterBullet.mjs │ │ │ ├── Web.mjs │ │ │ ├── WindWall.mjs │ │ │ ├── WitchBolt.mjs │ │ │ ├── ZephyrStrike.mjs │ │ │ └── _module.mjs │ │ └── trait │ │ │ ├── _module.mjs │ │ │ ├── aasimar │ │ │ ├── CelestialRevelation.js │ │ │ ├── CelestialRevelationHeavenlyWings.js │ │ │ ├── CelestialRevelationInnerRadiance.js │ │ │ ├── CelestialRevelationNecroticShroud.js │ │ │ ├── CelestialRevelationRadiantConsumption.js │ │ │ ├── CelestialRevelationRadiantSoul.mjs │ │ │ ├── HealingHands.mjs │ │ │ ├── RadiantSoul.mjs │ │ │ └── _module.mjs │ │ │ ├── bugbear │ │ │ ├── SurpriseAttack.mjs │ │ │ └── _module.mjs │ │ │ ├── changeling │ │ │ ├── ShapeShift.mjs │ │ │ └── _module.mjs │ │ │ ├── dragonborn │ │ │ ├── BreathWeapon.mjs │ │ │ ├── BreathWeapon2024.mjs │ │ │ ├── ChromaticInfusion.mjs │ │ │ ├── DraconicFlight.mjs │ │ │ └── _module.mjs │ │ │ ├── dwarf │ │ │ ├── Stonecunning.mjs │ │ │ └── _module.mjs │ │ │ ├── eladrin │ │ │ ├── FeyStep.mjs │ │ │ └── _module.mjs │ │ │ ├── generic │ │ │ ├── Generic.mjs │ │ │ ├── HoldBreath.mjs │ │ │ ├── Lineage.mjs │ │ │ ├── PowerfulBuild.mjs │ │ │ └── _module.mjs │ │ │ ├── gnome │ │ │ └── _module.mjs │ │ │ ├── goblin │ │ │ ├── FuryOfTheSmall.mjs │ │ │ └── _module.mjs │ │ │ ├── goliath │ │ │ ├── CloudsJaunt.mjs │ │ │ ├── FiresBurn.mjs │ │ │ ├── FrostsChill.mjs │ │ │ ├── HillsTumble.mjs │ │ │ ├── LargeForm.mjs │ │ │ ├── StonesEndurance.mjs │ │ │ ├── StormsThunder.mjs │ │ │ └── _module.mjs │ │ │ ├── hadozee │ │ │ ├── GlideReaction.mjs │ │ │ ├── HadozeeDodge.mjs │ │ │ └── _module.mjs │ │ │ ├── halfOrc │ │ │ ├── SavageAttacks.mjs │ │ │ └── _module.mjs │ │ │ ├── halfling │ │ │ └── _module.mjs │ │ │ ├── human │ │ │ └── _module.mjs │ │ │ ├── kalashtar │ │ │ ├── MindLink.mjs │ │ │ ├── MindLinkResponse.mjs │ │ │ └── _module.mjs │ │ │ ├── khoravar │ │ │ ├── LethargyResilience.mjs │ │ │ ├── LethargyResilienceRecharge.mjs │ │ │ └── _module.mjs │ │ │ ├── leonin │ │ │ ├── DauntingRoar.mjs │ │ │ └── _module.mjs │ │ │ ├── orc │ │ │ ├── AdrenalineRush.mjs │ │ │ └── _module.mjs │ │ │ ├── shadar-kai │ │ │ ├── BlessingOfTheRavenQueen.mjs │ │ │ └── _module.mjs │ │ │ ├── shifter │ │ │ ├── Shift.mjs │ │ │ ├── Shifting.mjs │ │ │ └── _module.mjs │ │ │ ├── tiefling │ │ │ └── _module.mjs │ │ │ ├── tortle │ │ │ ├── ShellDefenseWithdraw.mjs │ │ │ └── _module.mjs │ │ │ ├── vedalken │ │ │ ├── PartiallyAmphibious.mjs │ │ │ ├── VedalkenDispassion.mjs │ │ │ └── _module.mjs │ │ │ └── wulven │ │ │ ├── ClawsDexterity.mjs │ │ │ ├── NaturalAttackClaws.mjs │ │ │ └── _module.mjs │ ├── extendParsers.js │ ├── features │ │ ├── CharacterFeatureFactory.js │ │ ├── DDBAction.js │ │ ├── DDBAttackAction.js │ │ ├── DDBChoiceFeature.js │ │ ├── DDBClassFeatures.js │ │ ├── DDBFeature.js │ │ ├── DDBFeatureMixin.js │ │ ├── DDBInfusion.js │ │ └── DDBInfusionFactory.js │ ├── item │ │ ├── DDBItem.js │ │ └── MagicItemMaker.js │ ├── lib │ │ ├── DDBDataUtils.mjs │ │ ├── DDBDescriptions.mjs │ │ ├── DDBModifiers.mjs │ │ ├── DDBReferenceLinker.mjs │ │ ├── DDBRuleJournalFactory.mjs │ │ ├── DDBTable.mjs │ │ ├── DDBTemplateStrings.mjs │ │ ├── FilterModifiers.mjs │ │ ├── ProficiencyFinder.mjs │ │ ├── SystemHelpers.mjs │ │ └── _module.mjs │ ├── monster │ │ ├── abilities.js │ │ ├── ac.js │ │ ├── conditions.js │ │ ├── environments.js │ │ ├── features.js │ │ ├── features │ │ │ ├── DDBMonsterDamage.js │ │ │ ├── DDBMonsterFeature.js │ │ │ └── DDBMonsterFeatureFactory.js │ │ ├── habitats.js │ │ ├── helpers.js │ │ ├── hp.js │ │ ├── languages.js │ │ ├── movement.js │ │ ├── senses.js │ │ ├── size.js │ │ ├── skills.js │ │ ├── source.js │ │ ├── special.js │ │ ├── spellcasting.js │ │ ├── spells.js │ │ ├── templates │ │ │ ├── feat.js │ │ │ └── monster.js │ │ ├── treasure.js │ │ └── type.js │ ├── race │ │ ├── DDBRace.js │ │ └── DDBRaceTrait.js │ ├── spells │ │ ├── CharacterSpellFactory.js │ │ ├── DDBSpell.js │ │ ├── DDBSpellListFactory.mjs │ │ ├── GenericSpellFactory.js │ │ ├── SpellListFactory.mjs │ │ ├── ability.js │ │ └── metadata.js │ └── vehicle │ │ ├── DDBComponentFeature.mjs │ │ ├── abilities.js │ │ ├── capacity.js │ │ ├── components.js │ │ ├── conditions.js │ │ ├── ddb.js │ │ ├── movement.js │ │ ├── size.js │ │ ├── templates │ │ ├── component.js │ │ └── vehicle.js │ │ ├── threshold.js │ │ ├── type.js │ │ └── vehicle.js └── updater │ └── character.js ├── storage └── README.md ├── tools └── create-symlinks.mjs ├── vendor ├── libwrapper │ ├── LICENSE │ └── shim.js ├── lowdash │ ├── _module.mjs │ ├── isequal.js │ └── uniq.js ├── parseTable.js └── zipjs │ ├── LICENSE │ └── zip-fs.js └── webpack.config.js /.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.d.ts -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | patreon: MrPrimate 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build-module-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.github/workflows/build-module-json.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/get-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.github/workflows/get-version.js -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/build-alpha-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.gitlab/build-alpha-module.js -------------------------------------------------------------------------------- /.gitlab/get-alpha-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.gitlab/get-alpha-version.js -------------------------------------------------------------------------------- /.gitlab/get-manifest-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.gitlab/get-manifest-path.js -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FAQ-2024-DND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/FAQ-2024-DND.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/README.md -------------------------------------------------------------------------------- /css/adventure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/adventure.css -------------------------------------------------------------------------------- /css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/default.css -------------------------------------------------------------------------------- /css/fonts/roboto-condensed-v18-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-condensed-v18-latin-700.eot -------------------------------------------------------------------------------- /css/fonts/roboto-condensed-v18-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-condensed-v18-latin-700.svg -------------------------------------------------------------------------------- /css/fonts/roboto-condensed-v18-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-condensed-v18-latin-700.ttf -------------------------------------------------------------------------------- /css/fonts/roboto-condensed-v18-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-condensed-v18-latin-700.woff -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-italic.eot -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-italic.svg -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-italic.ttf -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-italic.woff -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-italic.woff2 -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-regular.eot -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-regular.svg -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-regular.ttf -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-regular.woff -------------------------------------------------------------------------------- /css/fonts/roboto-v20-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/fonts/roboto-v20-latin-regular.woff2 -------------------------------------------------------------------------------- /css/import.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/import.css -------------------------------------------------------------------------------- /css/journal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/journal.css -------------------------------------------------------------------------------- /css/notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/css/notifications.css -------------------------------------------------------------------------------- /data/actors/flamingSphere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/actors/flamingSphere.json -------------------------------------------------------------------------------- /data/backgrounds.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /data/class-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/class-features.json -------------------------------------------------------------------------------- /data/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/classes.json -------------------------------------------------------------------------------- /data/feats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/feats.json -------------------------------------------------------------------------------- /data/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/general.json -------------------------------------------------------------------------------- /data/generic-monster-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/generic-monster-features.json -------------------------------------------------------------------------------- /data/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/items.json -------------------------------------------------------------------------------- /data/named-monster-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/named-monster-features.json -------------------------------------------------------------------------------- /data/races.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/races.json -------------------------------------------------------------------------------- /data/spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/data/spells.json -------------------------------------------------------------------------------- /docs/_config.yaml: -------------------------------------------------------------------------------- 1 | theme: minima 2 | -------------------------------------------------------------------------------- /docs/bulk-monster-import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/bulk-monster-import.gif -------------------------------------------------------------------------------- /docs/bulk-spell-import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/bulk-spell-import.gif -------------------------------------------------------------------------------- /docs/compendium-folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/compendium-folders.png -------------------------------------------------------------------------------- /docs/compendiums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/compendiums.png -------------------------------------------------------------------------------- /docs/confusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/confusion.png -------------------------------------------------------------------------------- /docs/encounter-muncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/encounter-muncher.png -------------------------------------------------------------------------------- /docs/exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/exclude.png -------------------------------------------------------------------------------- /docs/manual-cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/manual-cookie.png -------------------------------------------------------------------------------- /docs/muncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/muncher.png -------------------------------------------------------------------------------- /docs/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/sync.png -------------------------------------------------------------------------------- /docs/token_defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/docs/token_defaults.png -------------------------------------------------------------------------------- /handlebars/activities/macro-identity.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/activities/macro-identity.hbs -------------------------------------------------------------------------------- /handlebars/adventure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/adventure/LICENSE -------------------------------------------------------------------------------- /handlebars/adventure/choose-scenes.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/adventure/choose-scenes.hbs -------------------------------------------------------------------------------- /handlebars/adventure/import-complete.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/adventure/import-complete.hbs -------------------------------------------------------------------------------- /handlebars/adventure/import-third.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/adventure/import-third.hbs -------------------------------------------------------------------------------- /handlebars/adventure/import-updates.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/adventure/import-updates.hbs -------------------------------------------------------------------------------- /handlebars/adventure/import.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/adventure/import.hbs -------------------------------------------------------------------------------- /handlebars/character/advanced.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/advanced.hbs -------------------------------------------------------------------------------- /handlebars/character/companions.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/companions.hbs -------------------------------------------------------------------------------- /handlebars/character/details.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/details.hbs -------------------------------------------------------------------------------- /handlebars/character/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/footer.hbs -------------------------------------------------------------------------------- /handlebars/character/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/header.hbs -------------------------------------------------------------------------------- /handlebars/character/help.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/help.hbs -------------------------------------------------------------------------------- /handlebars/character/import.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/import.hbs -------------------------------------------------------------------------------- /handlebars/character/import/automation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/import/automation.hbs -------------------------------------------------------------------------------- /handlebars/character/import/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/import/main.hbs -------------------------------------------------------------------------------- /handlebars/character/import/options.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/import/options.hbs -------------------------------------------------------------------------------- /handlebars/character/import/sources.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/import/sources.hbs -------------------------------------------------------------------------------- /handlebars/character/update.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/character/update.hbs -------------------------------------------------------------------------------- /handlebars/cobalt.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/cobalt.hbs -------------------------------------------------------------------------------- /handlebars/debug/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/debug/main.hbs -------------------------------------------------------------------------------- /handlebars/debug/recommendations.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/debug/recommendations.hbs -------------------------------------------------------------------------------- /handlebars/enhance-export.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/enhance-export.hbs -------------------------------------------------------------------------------- /handlebars/flag-details.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/flag-details.hbs -------------------------------------------------------------------------------- /handlebars/generic/tab-navigation.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/generic/tab-navigation.hbs -------------------------------------------------------------------------------- /handlebars/item-config.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/item-config.hbs -------------------------------------------------------------------------------- /handlebars/keychange/ddb-key-change.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/keychange/ddb-key-change.hbs -------------------------------------------------------------------------------- /handlebars/keychange/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/keychange/footer.hbs -------------------------------------------------------------------------------- /handlebars/local-key.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/local-key.hbs -------------------------------------------------------------------------------- /handlebars/muncher/details.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/details.hbs -------------------------------------------------------------------------------- /handlebars/muncher/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/footer.hbs -------------------------------------------------------------------------------- /handlebars/muncher/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/header.hbs -------------------------------------------------------------------------------- /handlebars/muncher/info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/info.hbs -------------------------------------------------------------------------------- /handlebars/muncher/info/help.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/info/help.hbs -------------------------------------------------------------------------------- /handlebars/muncher/info/intro.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/info/intro.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch/adventures.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch/adventures.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch/characters.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch/characters.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch/encounters.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch/encounters.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch/items.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch/items.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch/monsters.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch/monsters.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch/monsters/art.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch/monsters/art.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch/monsters/main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch/monsters/main.hbs -------------------------------------------------------------------------------- /handlebars/muncher/munch/spells.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/munch/spells.hbs -------------------------------------------------------------------------------- /handlebars/muncher/settings.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/settings.hbs -------------------------------------------------------------------------------- /handlebars/muncher/settings/general.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/settings/general.hbs -------------------------------------------------------------------------------- /handlebars/muncher/settings/sources.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/settings/sources.hbs -------------------------------------------------------------------------------- /handlebars/muncher/tools.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/tools.hbs -------------------------------------------------------------------------------- /handlebars/muncher/tools/compendiums.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/tools/compendiums.hbs -------------------------------------------------------------------------------- /handlebars/muncher/tools/tools.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/muncher/tools/tools.hbs -------------------------------------------------------------------------------- /handlebars/resources.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/resources.hbs -------------------------------------------------------------------------------- /handlebars/settings/compendiums.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/compendiums.hbs -------------------------------------------------------------------------------- /handlebars/settings/core.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/core.hbs -------------------------------------------------------------------------------- /handlebars/settings/core/campaign.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/core/campaign.hbs -------------------------------------------------------------------------------- /handlebars/settings/core/cobalt.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/core/cobalt.hbs -------------------------------------------------------------------------------- /handlebars/settings/core/patreon.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/core/patreon.hbs -------------------------------------------------------------------------------- /handlebars/settings/dynamic.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/dynamic.hbs -------------------------------------------------------------------------------- /handlebars/settings/enhancements.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/enhancements.hbs -------------------------------------------------------------------------------- /handlebars/settings/footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/footer.hbs -------------------------------------------------------------------------------- /handlebars/settings/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/header.hbs -------------------------------------------------------------------------------- /handlebars/settings/info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/info.hbs -------------------------------------------------------------------------------- /handlebars/settings/info/help.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/info/help.hbs -------------------------------------------------------------------------------- /handlebars/settings/info/intro.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/info/intro.hbs -------------------------------------------------------------------------------- /handlebars/settings/locations.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/locations.hbs -------------------------------------------------------------------------------- /handlebars/settings/proxy.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/handlebars/settings/proxy.hbs -------------------------------------------------------------------------------- /icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icon.sh -------------------------------------------------------------------------------- /icons/01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/01.svg -------------------------------------------------------------------------------- /icons/02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/02.svg -------------------------------------------------------------------------------- /icons/03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/03.svg -------------------------------------------------------------------------------- /icons/04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/04.svg -------------------------------------------------------------------------------- /icons/05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/05.svg -------------------------------------------------------------------------------- /icons/06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/06.svg -------------------------------------------------------------------------------- /icons/07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/07.svg -------------------------------------------------------------------------------- /icons/08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/08.svg -------------------------------------------------------------------------------- /icons/09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/09.svg -------------------------------------------------------------------------------- /icons/10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/10.svg -------------------------------------------------------------------------------- /icons/11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/11.svg -------------------------------------------------------------------------------- /icons/12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/12.svg -------------------------------------------------------------------------------- /icons/13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/13.svg -------------------------------------------------------------------------------- /icons/14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/14.svg -------------------------------------------------------------------------------- /icons/15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/15.svg -------------------------------------------------------------------------------- /icons/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/16.svg -------------------------------------------------------------------------------- /icons/17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/17.svg -------------------------------------------------------------------------------- /icons/18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/18.svg -------------------------------------------------------------------------------- /icons/19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/19.svg -------------------------------------------------------------------------------- /icons/20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/20.svg -------------------------------------------------------------------------------- /icons/21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/21.svg -------------------------------------------------------------------------------- /icons/22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/22.svg -------------------------------------------------------------------------------- /icons/23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/23.svg -------------------------------------------------------------------------------- /icons/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/24.svg -------------------------------------------------------------------------------- /icons/25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/25.svg -------------------------------------------------------------------------------- /icons/26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/26.svg -------------------------------------------------------------------------------- /icons/27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/27.svg -------------------------------------------------------------------------------- /icons/28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/28.svg -------------------------------------------------------------------------------- /icons/29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/29.svg -------------------------------------------------------------------------------- /icons/30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/30.svg -------------------------------------------------------------------------------- /icons/31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/31.svg -------------------------------------------------------------------------------- /icons/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/32.svg -------------------------------------------------------------------------------- /icons/33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/33.svg -------------------------------------------------------------------------------- /icons/34.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/34.svg -------------------------------------------------------------------------------- /icons/35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/35.svg -------------------------------------------------------------------------------- /icons/36.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/36.svg -------------------------------------------------------------------------------- /icons/37.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/37.svg -------------------------------------------------------------------------------- /icons/38.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/38.svg -------------------------------------------------------------------------------- /icons/39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/39.svg -------------------------------------------------------------------------------- /icons/40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/40.svg -------------------------------------------------------------------------------- /icons/41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/41.svg -------------------------------------------------------------------------------- /icons/42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/42.svg -------------------------------------------------------------------------------- /icons/43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/43.svg -------------------------------------------------------------------------------- /icons/44.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/44.svg -------------------------------------------------------------------------------- /icons/45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/45.svg -------------------------------------------------------------------------------- /icons/46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/46.svg -------------------------------------------------------------------------------- /icons/47.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/47.svg -------------------------------------------------------------------------------- /icons/48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/48.svg -------------------------------------------------------------------------------- /icons/49.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/49.svg -------------------------------------------------------------------------------- /icons/50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/50.svg -------------------------------------------------------------------------------- /icons/51.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/51.svg -------------------------------------------------------------------------------- /icons/52.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/52.svg -------------------------------------------------------------------------------- /icons/53.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/53.svg -------------------------------------------------------------------------------- /icons/54.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/54.svg -------------------------------------------------------------------------------- /icons/55.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/55.svg -------------------------------------------------------------------------------- /icons/56.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/56.svg -------------------------------------------------------------------------------- /icons/57.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/57.svg -------------------------------------------------------------------------------- /icons/58.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/58.svg -------------------------------------------------------------------------------- /icons/59.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/59.svg -------------------------------------------------------------------------------- /icons/60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/60.svg -------------------------------------------------------------------------------- /icons/61.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/61.svg -------------------------------------------------------------------------------- /icons/62.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/62.svg -------------------------------------------------------------------------------- /icons/63.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/63.svg -------------------------------------------------------------------------------- /icons/64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/64.svg -------------------------------------------------------------------------------- /icons/65.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/65.svg -------------------------------------------------------------------------------- /icons/66.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/66.svg -------------------------------------------------------------------------------- /icons/67.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/67.svg -------------------------------------------------------------------------------- /icons/68.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/68.svg -------------------------------------------------------------------------------- /icons/69.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/69.svg -------------------------------------------------------------------------------- /icons/70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/70.svg -------------------------------------------------------------------------------- /icons/71.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/71.svg -------------------------------------------------------------------------------- /icons/72.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/72.svg -------------------------------------------------------------------------------- /icons/73.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/73.svg -------------------------------------------------------------------------------- /icons/74.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/74.svg -------------------------------------------------------------------------------- /icons/75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/75.svg -------------------------------------------------------------------------------- /icons/76.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/76.svg -------------------------------------------------------------------------------- /icons/77.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/77.svg -------------------------------------------------------------------------------- /icons/78.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/78.svg -------------------------------------------------------------------------------- /icons/79.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/79.svg -------------------------------------------------------------------------------- /icons/80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/80.svg -------------------------------------------------------------------------------- /icons/81.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/81.svg -------------------------------------------------------------------------------- /icons/82.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/82.svg -------------------------------------------------------------------------------- /icons/83.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/83.svg -------------------------------------------------------------------------------- /icons/84.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/84.svg -------------------------------------------------------------------------------- /icons/85.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/85.svg -------------------------------------------------------------------------------- /icons/86.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/86.svg -------------------------------------------------------------------------------- /icons/87.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/87.svg -------------------------------------------------------------------------------- /icons/88.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/88.svg -------------------------------------------------------------------------------- /icons/89.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/89.svg -------------------------------------------------------------------------------- /icons/90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/90.svg -------------------------------------------------------------------------------- /icons/91.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/91.svg -------------------------------------------------------------------------------- /icons/92.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/92.svg -------------------------------------------------------------------------------- /icons/93.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/93.svg -------------------------------------------------------------------------------- /icons/94.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/94.svg -------------------------------------------------------------------------------- /icons/95.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/95.svg -------------------------------------------------------------------------------- /icons/96.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/96.svg -------------------------------------------------------------------------------- /icons/97.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/97.svg -------------------------------------------------------------------------------- /icons/98.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/98.svg -------------------------------------------------------------------------------- /icons/99.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/99.svg -------------------------------------------------------------------------------- /icons/A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/A.svg -------------------------------------------------------------------------------- /icons/B.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/B.svg -------------------------------------------------------------------------------- /icons/C.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/C.svg -------------------------------------------------------------------------------- /icons/D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/D.svg -------------------------------------------------------------------------------- /icons/E.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/E.svg -------------------------------------------------------------------------------- /icons/F.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/F.svg -------------------------------------------------------------------------------- /icons/G.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/G.svg -------------------------------------------------------------------------------- /icons/H.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/H.svg -------------------------------------------------------------------------------- /icons/I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/I.svg -------------------------------------------------------------------------------- /icons/J.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/J.svg -------------------------------------------------------------------------------- /icons/K.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/K.svg -------------------------------------------------------------------------------- /icons/L.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/L.svg -------------------------------------------------------------------------------- /icons/M.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/M.svg -------------------------------------------------------------------------------- /icons/N.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/N.svg -------------------------------------------------------------------------------- /icons/O.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/O.svg -------------------------------------------------------------------------------- /icons/P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/P.svg -------------------------------------------------------------------------------- /icons/Q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/Q.svg -------------------------------------------------------------------------------- /icons/R.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/R.svg -------------------------------------------------------------------------------- /icons/S.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/S.svg -------------------------------------------------------------------------------- /icons/T.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/T.svg -------------------------------------------------------------------------------- /icons/U.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/U.svg -------------------------------------------------------------------------------- /icons/V.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/V.svg -------------------------------------------------------------------------------- /icons/W.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/W.svg -------------------------------------------------------------------------------- /icons/X.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/X.svg -------------------------------------------------------------------------------- /icons/Y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/Y.svg -------------------------------------------------------------------------------- /icons/Z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/icons/Z.svg -------------------------------------------------------------------------------- /img/dndbeyond-character-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/dndbeyond-character-builder.png -------------------------------------------------------------------------------- /img/encounters/bar.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/encounters/bar.webp -------------------------------------------------------------------------------- /img/encounters/cobbles.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/encounters/cobbles.webp -------------------------------------------------------------------------------- /img/encounters/dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/encounters/dungeon.png -------------------------------------------------------------------------------- /img/encounters/grass.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/encounters/grass.webp -------------------------------------------------------------------------------- /img/encounters/snow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/encounters/snow.webp -------------------------------------------------------------------------------- /img/encounters/stone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/encounters/stone.webp -------------------------------------------------------------------------------- /img/encounters/void.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/encounters/void.webp -------------------------------------------------------------------------------- /img/jb2a/DancingLights_01_Yellow_200x200.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/jb2a/DancingLights_01_Yellow_200x200.webm -------------------------------------------------------------------------------- /img/jb2a/DancingLights_01_Yellow_Thumb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/jb2a/DancingLights_01_Yellow_Thumb.webp -------------------------------------------------------------------------------- /img/jb2a/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/jb2a/LICENSE.md -------------------------------------------------------------------------------- /img/svg-rules-banner-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/svg-rules-banner-3.svg -------------------------------------------------------------------------------- /img/svg-rules-banner-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/img/svg-rules-banner-4.svg -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/lang/en.json -------------------------------------------------------------------------------- /macros/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/.eslintrc.json -------------------------------------------------------------------------------- /macros/feats/ancestralProtectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/ancestralProtectors.js -------------------------------------------------------------------------------- /macros/feats/arcaneRecovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/arcaneRecovery.js -------------------------------------------------------------------------------- /macros/feats/blessedHealer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/blessedHealer.js -------------------------------------------------------------------------------- /macros/feats/crusher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/crusher.js -------------------------------------------------------------------------------- /macros/feats/darkOnesBlessing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/darkOnesBlessing.js -------------------------------------------------------------------------------- /macros/feats/favoredFoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/favoredFoe.js -------------------------------------------------------------------------------- /macros/feats/flurryOfBlows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/flurryOfBlows.js -------------------------------------------------------------------------------- /macros/feats/fontOfMagic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/fontOfMagic.js -------------------------------------------------------------------------------- /macros/feats/furyOfTheSmall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/furyOfTheSmall.js -------------------------------------------------------------------------------- /macros/feats/innerRadiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/innerRadiance.js -------------------------------------------------------------------------------- /macros/feats/layOnHands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/layOnHands.js -------------------------------------------------------------------------------- /macros/feats/mantleOfInspiration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/mantleOfInspiration.js -------------------------------------------------------------------------------- /macros/feats/naturalRecovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/naturalRecovery.js -------------------------------------------------------------------------------- /macros/feats/perfectFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/perfectFocus.js -------------------------------------------------------------------------------- /macros/feats/piercer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/piercer.js -------------------------------------------------------------------------------- /macros/feats/planarWarrior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/planarWarrior.js -------------------------------------------------------------------------------- /macros/feats/radiantSoul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/radiantSoul.js -------------------------------------------------------------------------------- /macros/feats/ragingStormSea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/ragingStormSea.js -------------------------------------------------------------------------------- /macros/feats/ragingStormTundra.js: -------------------------------------------------------------------------------- 1 | game.user.updateTokenTargets(); 2 | -------------------------------------------------------------------------------- /macros/feats/sacredWeaponLight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/sacredWeaponLight.js -------------------------------------------------------------------------------- /macros/feats/sacredWeaponLight2024.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/sacredWeaponLight2024.js -------------------------------------------------------------------------------- /macros/feats/slasher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/slasher.js -------------------------------------------------------------------------------- /macros/feats/slayersPrey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/slayersPrey.js -------------------------------------------------------------------------------- /macros/feats/sneakAttack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/sneakAttack.js -------------------------------------------------------------------------------- /macros/feats/squireOfSolamnia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/squireOfSolamnia.js -------------------------------------------------------------------------------- /macros/feats/stormAuraTundra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/feats/stormAuraTundra.js -------------------------------------------------------------------------------- /macros/generics/activeAuraConditionOnEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/generics/activeAuraConditionOnEntry.js -------------------------------------------------------------------------------- /macros/generics/activeAuraDamageOnEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/generics/activeAuraDamageOnEntry.js -------------------------------------------------------------------------------- /macros/generics/activeAuraOnly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/generics/activeAuraOnly.js -------------------------------------------------------------------------------- /macros/generics/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/generics/light.js -------------------------------------------------------------------------------- /macros/generics/spellStoring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/generics/spellStoring.js -------------------------------------------------------------------------------- /macros/gms/darkness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/gms/darkness.js -------------------------------------------------------------------------------- /macros/gms/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/gms/light.js -------------------------------------------------------------------------------- /macros/gms/renameToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/gms/renameToken.js -------------------------------------------------------------------------------- /macros/gms/resizeNoteFontSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/gms/resizeNoteFontSize.js -------------------------------------------------------------------------------- /macros/gms/resizeNoteIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/gms/resizeNoteIcons.js -------------------------------------------------------------------------------- /macros/gms/showTokenNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/gms/showTokenNames.js -------------------------------------------------------------------------------- /macros/gms/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/gms/test.js -------------------------------------------------------------------------------- /macros/gms/updateOwnedItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/gms/updateOwnedItems.js -------------------------------------------------------------------------------- /macros/items/cloakOfDisplacement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/items/cloakOfDisplacement.js -------------------------------------------------------------------------------- /macros/items/javelinOfLightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/items/javelinOfLightning.js -------------------------------------------------------------------------------- /macros/items/lifeStealing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/items/lifeStealing.js -------------------------------------------------------------------------------- /macros/items/pearlOfPower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/items/pearlOfPower.js -------------------------------------------------------------------------------- /macros/items/spellRefuelingRing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/items/spellRefuelingRing.js -------------------------------------------------------------------------------- /macros/items/wounding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/items/wounding.js -------------------------------------------------------------------------------- /macros/monsterFeatures/deathlyChoir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/deathlyChoir.js -------------------------------------------------------------------------------- /macros/monsterFeatures/disassemble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/disassemble.js -------------------------------------------------------------------------------- /macros/monsterFeatures/eyeRay.js: -------------------------------------------------------------------------------- 1 | await MidiQOL.completeItemUse(actor.items.find(i=>i.name === "Eye Rays")); 2 | -------------------------------------------------------------------------------- /macros/monsterFeatures/eyeRays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/eyeRays.js -------------------------------------------------------------------------------- /macros/monsterFeatures/loathsomeLimbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/loathsomeLimbs.js -------------------------------------------------------------------------------- /macros/monsterFeatures/multiAttack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/multiAttack.js -------------------------------------------------------------------------------- /macros/monsterFeatures/petrification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/petrification.js -------------------------------------------------------------------------------- /macros/monsterFeatures/poisonSplash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/poisonSplash.js -------------------------------------------------------------------------------- /macros/monsterFeatures/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/sleep.js -------------------------------------------------------------------------------- /macros/monsterFeatures/spellReflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/spellReflection.js -------------------------------------------------------------------------------- /macros/monsterFeatures/venomSpray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/monsterFeatures/venomSpray.js -------------------------------------------------------------------------------- /macros/spells/absorbElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/absorbElements.js -------------------------------------------------------------------------------- /macros/spells/aid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/aid.js -------------------------------------------------------------------------------- /macros/spells/arcaneSword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/arcaneSword.js -------------------------------------------------------------------------------- /macros/spells/armorOfAgathys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/armorOfAgathys.js -------------------------------------------------------------------------------- /macros/spells/auraOfLife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/auraOfLife.js -------------------------------------------------------------------------------- /macros/spells/banishment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/banishment.js -------------------------------------------------------------------------------- /macros/spells/boomingBlade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/boomingBlade.js -------------------------------------------------------------------------------- /macros/spells/brandingSmite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/brandingSmite.js -------------------------------------------------------------------------------- /macros/spells/callLightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/callLightning.js -------------------------------------------------------------------------------- /macros/spells/chillTouch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/chillTouch.js -------------------------------------------------------------------------------- /macros/spells/chillTouchDisadvantage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/chillTouchDisadvantage.js -------------------------------------------------------------------------------- /macros/spells/chillTouchWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/chillTouchWorld.js -------------------------------------------------------------------------------- /macros/spells/colorSpray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/colorSpray.js -------------------------------------------------------------------------------- /macros/spells/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/command.js -------------------------------------------------------------------------------- /macros/spells/confusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/confusion.js -------------------------------------------------------------------------------- /macros/spells/contagion2014.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/contagion2014.js -------------------------------------------------------------------------------- /macros/spells/contagion2024.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/contagion2024.js -------------------------------------------------------------------------------- /macros/spells/crownOfStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/crownOfStars.js -------------------------------------------------------------------------------- /macros/spells/dancingLights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/dancingLights.js -------------------------------------------------------------------------------- /macros/spells/darkness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/darkness.js -------------------------------------------------------------------------------- /macros/spells/divineWord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/divineWord.js -------------------------------------------------------------------------------- /macros/spells/enlargeReduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/enlargeReduce.js -------------------------------------------------------------------------------- /macros/spells/ensnaringStrike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/ensnaringStrike.js -------------------------------------------------------------------------------- /macros/spells/eyebite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/eyebite.js -------------------------------------------------------------------------------- /macros/spells/fireShield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/fireShield.js -------------------------------------------------------------------------------- /macros/spells/flamingSphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/flamingSphere.js -------------------------------------------------------------------------------- /macros/spells/fleshToStone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/fleshToStone.js -------------------------------------------------------------------------------- /macros/spells/greenFlameBlade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/greenFlameBlade.js -------------------------------------------------------------------------------- /macros/spells/hailOfThorns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/hailOfThorns.js -------------------------------------------------------------------------------- /macros/spells/heroesFeast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/heroesFeast.js -------------------------------------------------------------------------------- /macros/spells/heroism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/heroism.js -------------------------------------------------------------------------------- /macros/spells/hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/hex.js -------------------------------------------------------------------------------- /macros/spells/hideousLaughter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/hideousLaughter.js -------------------------------------------------------------------------------- /macros/spells/huntersMark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/huntersMark.js -------------------------------------------------------------------------------- /macros/spells/irresistibleDance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/irresistibleDance.js -------------------------------------------------------------------------------- /macros/spells/levitate-not-used.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/levitate-not-used.js -------------------------------------------------------------------------------- /macros/spells/mistyStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/mistyStep.js -------------------------------------------------------------------------------- /macros/spells/moonbeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/moonbeam.js -------------------------------------------------------------------------------- /macros/spells/protectionfromEnergy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/protectionfromEnergy.js -------------------------------------------------------------------------------- /macros/spells/rayofEnfeeblement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/rayofEnfeeblement.js -------------------------------------------------------------------------------- /macros/spells/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/sleep.js -------------------------------------------------------------------------------- /macros/spells/spikeGrowth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/spikeGrowth.js -------------------------------------------------------------------------------- /macros/spells/spiritGuardians2014.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/spiritGuardians2014.js -------------------------------------------------------------------------------- /macros/spells/spiritGuardians2024.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/spiritGuardians2024.js -------------------------------------------------------------------------------- /macros/spells/spiritShroud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/spiritShroud.js -------------------------------------------------------------------------------- /macros/spells/stormSphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/stormSphere.js -------------------------------------------------------------------------------- /macros/spells/thunderousSmite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/thunderousSmite.js -------------------------------------------------------------------------------- /macros/spells/tolltheDead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/tolltheDead.js -------------------------------------------------------------------------------- /macros/spells/wardingBond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/wardingBond.js -------------------------------------------------------------------------------- /macros/spells/witchBolt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/witchBolt.js -------------------------------------------------------------------------------- /macros/spells/zephyrStrike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/macros/spells/zephyrStrike.js -------------------------------------------------------------------------------- /module-alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/module-alpha.json -------------------------------------------------------------------------------- /module-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/module-dev.json -------------------------------------------------------------------------------- /module-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/module-template.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/package.json -------------------------------------------------------------------------------- /src/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/_module.mjs -------------------------------------------------------------------------------- /src/api.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/api.mjs -------------------------------------------------------------------------------- /src/apps/CreateSpellwroughtTattooDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/CreateSpellwroughtTattooDialog.js -------------------------------------------------------------------------------- /src/apps/DDBAdventureFlags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBAdventureFlags.js -------------------------------------------------------------------------------- /src/apps/DDBAdventureImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBAdventureImporter.js -------------------------------------------------------------------------------- /src/apps/DDBAppV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBAppV2.js -------------------------------------------------------------------------------- /src/apps/DDBCharacterManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBCharacterManager.js -------------------------------------------------------------------------------- /src/apps/DDBCookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBCookie.js -------------------------------------------------------------------------------- /src/apps/DDBDebugger.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBDebugger.mjs -------------------------------------------------------------------------------- /src/apps/DDBItemConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBItemConfig.js -------------------------------------------------------------------------------- /src/apps/DDBKeyChangeDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBKeyChangeDialog.js -------------------------------------------------------------------------------- /src/apps/DDBMuncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBMuncher.js -------------------------------------------------------------------------------- /src/apps/DDBSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/DDBSetup.js -------------------------------------------------------------------------------- /src/apps/MonsterReplacer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/MonsterReplacer.js -------------------------------------------------------------------------------- /src/apps/SceneEnhancerExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/apps/SceneEnhancerExport.js -------------------------------------------------------------------------------- /src/config/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/_module.mjs -------------------------------------------------------------------------------- /src/config/dictionary/actor/actions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/actor/actions.mjs -------------------------------------------------------------------------------- /src/config/dictionary/actor/actor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/actor/actor.mjs -------------------------------------------------------------------------------- /src/config/dictionary/actor/conditions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/actor/conditions.mjs -------------------------------------------------------------------------------- /src/config/dictionary/actor/currency.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/actor/currency.mjs -------------------------------------------------------------------------------- /src/config/dictionary/actor/monsters.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/actor/monsters.mjs -------------------------------------------------------------------------------- /src/config/dictionary/actor/resets.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/actor/resets.mjs -------------------------------------------------------------------------------- /src/config/dictionary/actor/senses.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/actor/senses.mjs -------------------------------------------------------------------------------- /src/config/dictionary/actor/sizes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/actor/sizes.mjs -------------------------------------------------------------------------------- /src/config/dictionary/dictionary.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/dictionary.mjs -------------------------------------------------------------------------------- /src/config/dictionary/effects/excluded.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/effects/excluded.mjs -------------------------------------------------------------------------------- /src/config/dictionary/effects/vision5e.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/effects/vision5e.mjs -------------------------------------------------------------------------------- /src/config/dictionary/encounters.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/encounters.mjs -------------------------------------------------------------------------------- /src/config/dictionary/folders/compendiums.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/folders/compendiums.mjs -------------------------------------------------------------------------------- /src/config/dictionary/generics/numbers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/generics/numbers.mjs -------------------------------------------------------------------------------- /src/config/dictionary/generics/sources.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/generics/sources.mjs -------------------------------------------------------------------------------- /src/config/dictionary/items/equipment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/items/equipment.mjs -------------------------------------------------------------------------------- /src/config/dictionary/items/generics.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/items/generics.mjs -------------------------------------------------------------------------------- /src/config/dictionary/items/magicItems.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/items/magicItems.mjs -------------------------------------------------------------------------------- /src/config/dictionary/items/types.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/items/types.mjs -------------------------------------------------------------------------------- /src/config/dictionary/items/weapons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/items/weapons.mjs -------------------------------------------------------------------------------- /src/config/dictionary/messages/messages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/messages/messages.mjs -------------------------------------------------------------------------------- /src/config/dictionary/parsing/actions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/parsing/actions.mjs -------------------------------------------------------------------------------- /src/config/dictionary/parsing/companions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/parsing/companions.mjs -------------------------------------------------------------------------------- /src/config/dictionary/parsing/features.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/parsing/features.mjs -------------------------------------------------------------------------------- /src/config/dictionary/parsing/identifiers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/parsing/identifiers.mjs -------------------------------------------------------------------------------- /src/config/dictionary/spell/spell.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/dictionary/spell/spell.mjs -------------------------------------------------------------------------------- /src/config/settings/settings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/config/settings/settings.mjs -------------------------------------------------------------------------------- /src/effects/DDBEffectHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/DDBEffectHelper.mjs -------------------------------------------------------------------------------- /src/effects/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/_module.mjs -------------------------------------------------------------------------------- /src/effects/abilityOverrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/abilityOverrides.js -------------------------------------------------------------------------------- /src/effects/acEffects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/acEffects.js -------------------------------------------------------------------------------- /src/effects/auras/ActorDamageOnEntry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/auras/ActorDamageOnEntry.mjs -------------------------------------------------------------------------------- /src/effects/auras/AuraOnly.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/auras/AuraOnly.mjs -------------------------------------------------------------------------------- /src/effects/auras/ConditionOnEntry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/auras/ConditionOnEntry.mjs -------------------------------------------------------------------------------- /src/effects/auras/DamageOnEntry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/auras/DamageOnEntry.mjs -------------------------------------------------------------------------------- /src/effects/auras/Test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/auras/Test.mjs -------------------------------------------------------------------------------- /src/effects/auras/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/auras/_module.mjs -------------------------------------------------------------------------------- /src/effects/auras/shared.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/auras/shared.mjs -------------------------------------------------------------------------------- /src/effects/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/effects.js -------------------------------------------------------------------------------- /src/effects/enhancers/DDBEnhancers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/enhancers/DDBEnhancers.mjs -------------------------------------------------------------------------------- /src/effects/enhancers/Spells/WardingBond.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/enhancers/Spells/WardingBond.mjs -------------------------------------------------------------------------------- /src/effects/enhancers/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/enhancers/_module.mjs -------------------------------------------------------------------------------- /src/effects/external/ChrisPremadesHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/external/ChrisPremadesHelper.mjs -------------------------------------------------------------------------------- /src/effects/external/ExternalAutomations.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/external/ExternalAutomations.mjs -------------------------------------------------------------------------------- /src/effects/external/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/external/_module.mjs -------------------------------------------------------------------------------- /src/effects/feats/favoredFoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/feats/favoredFoe.js -------------------------------------------------------------------------------- /src/effects/feats/flurryOfBlows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/feats/flurryOfBlows.js -------------------------------------------------------------------------------- /src/effects/feats/slayersPrey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/feats/slayersPrey.js -------------------------------------------------------------------------------- /src/effects/monsterFeatures/deathlyChoir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/monsterFeatures/deathlyChoir.js -------------------------------------------------------------------------------- /src/effects/monsterFeatures/giantSpider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/monsterFeatures/giantSpider.js -------------------------------------------------------------------------------- /src/effects/monsterFeatures/multiAttack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/monsterFeatures/multiAttack.js -------------------------------------------------------------------------------- /src/effects/monsterFeatures/quasit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/monsterFeatures/quasit.js -------------------------------------------------------------------------------- /src/effects/monsterFeatures/strahdZombie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/monsterFeatures/strahdZombie.js -------------------------------------------------------------------------------- /src/effects/monsterFeatures/suaveDefense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/monsterFeatures/suaveDefense.js -------------------------------------------------------------------------------- /src/effects/monsterFeatures/taunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/monsterFeatures/taunt.js -------------------------------------------------------------------------------- /src/effects/monsterFeatures/venomTroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/monsterFeatures/venomTroll.js -------------------------------------------------------------------------------- /src/effects/restrictions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/restrictions.js -------------------------------------------------------------------------------- /src/effects/specialMonsters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/specialMonsters.js -------------------------------------------------------------------------------- /src/effects/specialSpells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/specialSpells.js -------------------------------------------------------------------------------- /src/effects/spells/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/README.MD -------------------------------------------------------------------------------- /src/effects/spells/blackTentacles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/blackTentacles.js -------------------------------------------------------------------------------- /src/effects/spells/callLightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/callLightning.js -------------------------------------------------------------------------------- /src/effects/spells/chillTouch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/chillTouch.js -------------------------------------------------------------------------------- /src/effects/spells/divineWord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/divineWord.js -------------------------------------------------------------------------------- /src/effects/spells/eyebite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/eyebite.js -------------------------------------------------------------------------------- /src/effects/spells/guidingBolt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/guidingBolt.js -------------------------------------------------------------------------------- /src/effects/spells/magicStone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/magicStone.js -------------------------------------------------------------------------------- /src/effects/spells/moonbeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/moonbeam.js -------------------------------------------------------------------------------- /src/effects/spells/phantasmalKiller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/phantasmalKiller.js -------------------------------------------------------------------------------- /src/effects/spells/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/sleep.js -------------------------------------------------------------------------------- /src/effects/spells/spikeGrowth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/spikeGrowth.js -------------------------------------------------------------------------------- /src/effects/spells/stormSphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/stormSphere.js -------------------------------------------------------------------------------- /src/effects/spells/tolltheDead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/tolltheDead.js -------------------------------------------------------------------------------- /src/effects/spells/vitriolicSphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/effects/spells/vitriolicSphere.js -------------------------------------------------------------------------------- /src/hooks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks.mjs -------------------------------------------------------------------------------- /src/hooks/init/DDBEffectHooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/init/DDBEffectHooks.js -------------------------------------------------------------------------------- /src/hooks/init/adventureImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/init/adventureImporter.js -------------------------------------------------------------------------------- /src/hooks/init/chatHooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/init/chatHooks.js -------------------------------------------------------------------------------- /src/hooks/init/extendClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/init/extendClasses.js -------------------------------------------------------------------------------- /src/hooks/init/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/init/settings.js -------------------------------------------------------------------------------- /src/hooks/init/setupLogging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/init/setupLogging.js -------------------------------------------------------------------------------- /src/hooks/macroActivity/MacroActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/macroActivity/MacroActivity.js -------------------------------------------------------------------------------- /src/hooks/macroActivity/MacroActivityData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/macroActivity/MacroActivityData.js -------------------------------------------------------------------------------- /src/hooks/macroActivity/MacroSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/macroActivity/MacroSheet.js -------------------------------------------------------------------------------- /src/hooks/macroActivity/loadActivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/macroActivity/loadActivity.js -------------------------------------------------------------------------------- /src/hooks/ready/addDDBConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/addDDBConfig.js -------------------------------------------------------------------------------- /src/hooks/ready/anchorInjection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/anchorInjection.js -------------------------------------------------------------------------------- /src/hooks/ready/checkCompendiums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/checkCompendiums.js -------------------------------------------------------------------------------- /src/hooks/ready/checkVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/checkVersion.js -------------------------------------------------------------------------------- /src/hooks/ready/ddbConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/ddbConfig.js -------------------------------------------------------------------------------- /src/hooks/ready/enrichers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/enrichers.js -------------------------------------------------------------------------------- /src/hooks/ready/fallbackConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/fallbackConfig.js -------------------------------------------------------------------------------- /src/hooks/ready/fallbackRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/fallbackRules.js -------------------------------------------------------------------------------- /src/hooks/ready/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/items.js -------------------------------------------------------------------------------- /src/hooks/ready/migraton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/migraton.js -------------------------------------------------------------------------------- /src/hooks/ready/originFixing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/originFixing.js -------------------------------------------------------------------------------- /src/hooks/ready/registerGameSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/registerGameSettings.js -------------------------------------------------------------------------------- /src/hooks/ready/registerSheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/registerSheets.js -------------------------------------------------------------------------------- /src/hooks/ready/storage.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/storage.mjs -------------------------------------------------------------------------------- /src/hooks/ready/welcomeMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/ready/welcomeMessage.js -------------------------------------------------------------------------------- /src/hooks/renderJournalSheet/adventure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/renderJournalSheet/adventure.js -------------------------------------------------------------------------------- /src/hooks/renderJournalSheet/buildNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/renderJournalSheet/buildNotes.js -------------------------------------------------------------------------------- /src/hooks/renderJournalSheet/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/renderJournalSheet/shared.js -------------------------------------------------------------------------------- /src/hooks/renderMuncher/addMuncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/renderMuncher/addMuncher.js -------------------------------------------------------------------------------- /src/hooks/socket/sockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/socket/sockets.js -------------------------------------------------------------------------------- /src/hooks/tattoo/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/hooks/tattoo/main.mjs -------------------------------------------------------------------------------- /src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/index.mjs -------------------------------------------------------------------------------- /src/lib/AdvancedDialog.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/AdvancedDialog.mjs -------------------------------------------------------------------------------- /src/lib/CompendiumHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/CompendiumHelper.mjs -------------------------------------------------------------------------------- /src/lib/Crosshairs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/Crosshairs.mjs -------------------------------------------------------------------------------- /src/lib/DDBCampaigns.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DDBCampaigns.mjs -------------------------------------------------------------------------------- /src/lib/DDBCompendiumFolders.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DDBCompendiumFolders.mjs -------------------------------------------------------------------------------- /src/lib/DDBDebug.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DDBDebug.mjs -------------------------------------------------------------------------------- /src/lib/DDBItemImporter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DDBItemImporter.mjs -------------------------------------------------------------------------------- /src/lib/DDBMacros.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DDBMacros.mjs -------------------------------------------------------------------------------- /src/lib/DDBProxy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DDBProxy.mjs -------------------------------------------------------------------------------- /src/lib/DDBSimpleMacro.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DDBSimpleMacro.mjs -------------------------------------------------------------------------------- /src/lib/DDBSources.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DDBSources.mjs -------------------------------------------------------------------------------- /src/lib/DialogHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/DialogHelper.mjs -------------------------------------------------------------------------------- /src/lib/FileHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/FileHelper.mjs -------------------------------------------------------------------------------- /src/lib/FolderHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/FolderHelper.mjs -------------------------------------------------------------------------------- /src/lib/Iconizer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/Iconizer.mjs -------------------------------------------------------------------------------- /src/lib/Logger.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/Logger.mjs -------------------------------------------------------------------------------- /src/lib/MuncherSettings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/MuncherSettings.mjs -------------------------------------------------------------------------------- /src/lib/NameMatcher.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/NameMatcher.mjs -------------------------------------------------------------------------------- /src/lib/Notifications.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/Notifications.mjs -------------------------------------------------------------------------------- /src/lib/OriginFixer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/OriginFixer.mjs -------------------------------------------------------------------------------- /src/lib/PatreonHelper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/PatreonHelper.mjs -------------------------------------------------------------------------------- /src/lib/Secrets.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/Secrets.mjs -------------------------------------------------------------------------------- /src/lib/Utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/Utils.mjs -------------------------------------------------------------------------------- /src/lib/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/_module.mjs -------------------------------------------------------------------------------- /src/lib/base64Check.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/lib/base64Check.mjs -------------------------------------------------------------------------------- /src/muncher/DDBCharacterImporter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/DDBCharacterImporter.mjs -------------------------------------------------------------------------------- /src/muncher/DDBFrameImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/DDBFrameImporter.js -------------------------------------------------------------------------------- /src/muncher/DDBItemsImporter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/DDBItemsImporter.mjs -------------------------------------------------------------------------------- /src/muncher/DDBMonsterImporter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/DDBMonsterImporter.mjs -------------------------------------------------------------------------------- /src/muncher/DDBMuleHandler.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/DDBMuleHandler.mjs -------------------------------------------------------------------------------- /src/muncher/adventure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/adventure.js -------------------------------------------------------------------------------- /src/muncher/adventure/AdventureMunch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/adventure/AdventureMunch.js -------------------------------------------------------------------------------- /src/muncher/adventure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/adventure/LICENSE -------------------------------------------------------------------------------- /src/muncher/adventure/PageFinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/adventure/PageFinder.js -------------------------------------------------------------------------------- /src/muncher/adventure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/adventure/README.md -------------------------------------------------------------------------------- /src/muncher/adventure/ThirdPartyMunch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/adventure/ThirdPartyMunch.js -------------------------------------------------------------------------------- /src/muncher/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/classes.js -------------------------------------------------------------------------------- /src/muncher/classes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/classes/classes.js -------------------------------------------------------------------------------- /src/muncher/classes/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/classes/options.js -------------------------------------------------------------------------------- /src/muncher/classes/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/classes/shared.js -------------------------------------------------------------------------------- /src/muncher/classes/subclasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/classes/subclasses.js -------------------------------------------------------------------------------- /src/muncher/prices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/prices.js -------------------------------------------------------------------------------- /src/muncher/spells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/spells.js -------------------------------------------------------------------------------- /src/muncher/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/tools.js -------------------------------------------------------------------------------- /src/muncher/vehicles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/muncher/vehicles.js -------------------------------------------------------------------------------- /src/parser/DDBCharacter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/DDBCharacter.js -------------------------------------------------------------------------------- /src/parser/DDBEncounter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/DDBEncounter.mjs -------------------------------------------------------------------------------- /src/parser/DDBEncounterFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/DDBEncounterFactory.js -------------------------------------------------------------------------------- /src/parser/DDBExtras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/DDBExtras.js -------------------------------------------------------------------------------- /src/parser/DDBMonster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/DDBMonster.js -------------------------------------------------------------------------------- /src/parser/DDBMonsterFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/DDBMonsterFactory.js -------------------------------------------------------------------------------- /src/parser/activities/DDBFeatureActivity.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/activities/DDBFeatureActivity.mjs -------------------------------------------------------------------------------- /src/parser/activities/DDBItemActivity.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/activities/DDBItemActivity.mjs -------------------------------------------------------------------------------- /src/parser/activities/DDBSpellActivity.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/activities/DDBSpellActivity.mjs -------------------------------------------------------------------------------- /src/parser/activities/DDBVehicleActivity.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/activities/DDBVehicleActivity.mjs -------------------------------------------------------------------------------- /src/parser/activities/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/activities/_module.mjs -------------------------------------------------------------------------------- /src/parser/character/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | *.json 3 | test.js -------------------------------------------------------------------------------- /src/parser/character/abilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/abilities.js -------------------------------------------------------------------------------- /src/parser/character/ac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/ac.js -------------------------------------------------------------------------------- /src/parser/character/bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/bio.js -------------------------------------------------------------------------------- /src/parser/character/conditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/conditions.js -------------------------------------------------------------------------------- /src/parser/character/consumptionLinking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/consumptionLinking.js -------------------------------------------------------------------------------- /src/parser/character/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/currency.js -------------------------------------------------------------------------------- /src/parser/character/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/effects.js -------------------------------------------------------------------------------- /src/parser/character/globalBonuses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/globalBonuses.js -------------------------------------------------------------------------------- /src/parser/character/hp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/hp.js -------------------------------------------------------------------------------- /src/parser/character/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/index.js -------------------------------------------------------------------------------- /src/parser/character/infusions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/infusions.js -------------------------------------------------------------------------------- /src/parser/character/initiative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/initiative.js -------------------------------------------------------------------------------- /src/parser/character/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/inventory.js -------------------------------------------------------------------------------- /src/parser/character/proficiencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/proficiencies.js -------------------------------------------------------------------------------- /src/parser/character/race.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/race.js -------------------------------------------------------------------------------- /src/parser/character/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/resources.js -------------------------------------------------------------------------------- /src/parser/character/senses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/senses.js -------------------------------------------------------------------------------- /src/parser/character/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/size.js -------------------------------------------------------------------------------- /src/parser/character/skills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/skills.js -------------------------------------------------------------------------------- /src/parser/character/special/special.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/special/special.js -------------------------------------------------------------------------------- /src/parser/character/specialTraits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/specialTraits.js -------------------------------------------------------------------------------- /src/parser/character/speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/speed.js -------------------------------------------------------------------------------- /src/parser/character/spellCasting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/spellCasting.js -------------------------------------------------------------------------------- /src/parser/character/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/character/token.js -------------------------------------------------------------------------------- /src/parser/classes/DDBClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/classes/DDBClass.js -------------------------------------------------------------------------------- /src/parser/classes/DDBSubClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/classes/DDBSubClass.js -------------------------------------------------------------------------------- /src/parser/companions/DDBCompanion2014.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/DDBCompanion2014.mjs -------------------------------------------------------------------------------- /src/parser/companions/DDBCompanion2024.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/DDBCompanion2024.mjs -------------------------------------------------------------------------------- /src/parser/companions/SRDExtractor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/SRDExtractor.mjs -------------------------------------------------------------------------------- /src/parser/companions/types/ArcaneEye.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/types/ArcaneEye.mjs -------------------------------------------------------------------------------- /src/parser/companions/types/CRSRD.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/types/CRSRD.mjs -------------------------------------------------------------------------------- /src/parser/companions/types/ConjureFey.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/types/ConjureFey.mjs -------------------------------------------------------------------------------- /src/parser/companions/types/Duplicate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/types/Duplicate.mjs -------------------------------------------------------------------------------- /src/parser/companions/types/EarthenGrasp.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/parser/companions/types/Illusions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/types/Illusions.mjs -------------------------------------------------------------------------------- /src/parser/companions/types/MageHand.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/types/MageHand.mjs -------------------------------------------------------------------------------- /src/parser/companions/types/_data.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/companions/types/_data.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/DDBFeatEnricher.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/DDBFeatEnricher.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/DDBItemEnricher.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/DDBItemEnricher.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/DDBSpellEnricher.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/DDBSpellEnricher.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/_helper.js -------------------------------------------------------------------------------- /src/parser/enrichers/_linkBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/_linkBuilder.js -------------------------------------------------------------------------------- /src/parser/enrichers/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/class/Generic.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/class/Generic.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/class/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/class/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/class/monk/Ki.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/class/monk/Ki.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/class/monster-hunter/_module.mjs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/parser/enrichers/data/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/data/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/effects/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/effects/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/.editorconfig -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Alert.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Alert.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/BoonOfFate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/BoonOfFate.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Charger.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Charger.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Chef.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Chef.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Crusher.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Crusher.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/DualWielder.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/DualWielder.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Durable.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Durable.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/EpicBoon.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/EpicBoon.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Generic.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Generic.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Healer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Healer.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/MageSlayer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/MageSlayer.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/MartialAdept.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/MartialAdept.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Observant.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Observant.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Piercer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Piercer.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Poisoner.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Poisoner.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/RitualCaster.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/RitualCaster.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Sharpshooter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Sharpshooter.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Slasher.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Slasher.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/SpellSniper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/SpellSniper.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/Telekinetic.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/Telekinetic.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/WarCaster.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/WarCaster.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/feat/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/feat/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/generic/AuraOf.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/generic/AuraOf.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/generic/Grapple.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/generic/Grapple.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/generic/Lucky.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/generic/Lucky.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/generic/None.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/generic/None.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/generic/Shove.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/generic/Shove.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/generic/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/generic/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/Acid.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/Acid.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/AcidVial.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/AcidVial.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/AirRender.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/AirRender.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/ArcaneOil.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/ArcaneOil.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/BeadOfForce.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/BeadOfForce.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/BootsOfSpeed.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/BootsOfSpeed.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/Candle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/Candle.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/DemonArmor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/DemonArmor.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/DragonWing.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/DragonWing.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/FlameTongue.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/FlameTongue.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/HealersKit.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/HealersKit.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/Lamp.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/Lamp.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/MoonSickle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/MoonSickle.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/Net.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/Net.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/PearlOfPower.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/PearlOfPower.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/RingOfTheRam.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/RingOfTheRam.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/SiegeStaff.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/SiegeStaff.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/Staff.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/Staff.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/StinkBomb.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/StinkBomb.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/SunBlade.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/SunBlade.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/TomeOf.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/TomeOf.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/Torch.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/Torch.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/Vial.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/Vial.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/WandOfOrcus.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/WandOfOrcus.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/Waterskin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/Waterskin.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/item/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/item/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/mixins/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/mixins/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/monster/CarrionCrawler/_module.mjs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/parser/enrichers/monster/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/monster/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/AcidArrow.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/AcidArrow.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Aid.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Aid.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/AlterSelf.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/AlterSelf.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/AnimateDead.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/AnimateDead.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ArcaneEye.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ArcaneEye.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ArcaneHand.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ArcaneHand.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ArcaneSword.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ArcaneSword.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ArcaneVigor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ArcaneVigor.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/AuraOfLife.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/AuraOfLife.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Bane.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Bane.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Banishment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Banishment.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Barkskin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Barkskin.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/BladeWard.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/BladeWard.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Bless.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Bless.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Blur.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Blur.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Catapult.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Catapult.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ChaosBolt.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ChaosBolt.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ChillTouch.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ChillTouch.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Cloudkill.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Cloudkill.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ColorSpray.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ColorSpray.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Command.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Command.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Confusion.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Confusion.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ConjureFey.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ConjureFey.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Contagion.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Contagion.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Darkness.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Darkness.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Darkvision.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Darkvision.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/DivineFavor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/DivineFavor.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/DivineSmite.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/DivineSmite.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Earthquake.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Earthquake.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Entangle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Entangle.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Enthrall.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Enthrall.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Eyebite.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Eyebite.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/FaerieFire.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/FaerieFire.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/FalseLife.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/FalseLife.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/FeatherFall.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/FeatherFall.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Feeblemind.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Feeblemind.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/FingerGuns.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/FingerGuns.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/FireShield.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/FireShield.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/FlameBlade.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/FlameBlade.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Fly.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Fly.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Forbiddance.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Forbiddance.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Friends.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Friends.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Frostbite.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Frostbite.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Grease.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Grease.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Guidance.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Guidance.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/GuidingBolt.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/GuidingBolt.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/GustOfWind.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/GustOfWind.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Haste.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Haste.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/HeatMetal.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/HeatMetal.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/HellsLash.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/HellsLash.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/HeroesFeast.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/HeroesFeast.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Heroism.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Heroism.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Hex.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Hex.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/HoldThing.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/HoldThing.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/HolyAura.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/HolyAura.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/HuntersMark.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/HuntersMark.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/IceKnife.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/IceKnife.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Light.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Light.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Longstrider.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Longstrider.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/MageArmor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/MageArmor.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/MageHand.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/MageHand.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/MagicWeapon.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/MagicWeapon.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/MajorImage.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/MajorImage.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Maze.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Maze.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/MindBlank.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/MindBlank.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/MindSliver.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/MindSliver.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/MirrorImage.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/MirrorImage.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Mislead.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Mislead.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/MistyStep.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/MistyStep.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Polymorph.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Polymorph.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/RaiseDead.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/RaiseDead.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/RayOfFrost.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/RayOfFrost.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Regenerate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Regenerate.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Resistance.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Resistance.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Sanctuary.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Sanctuary.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ShadowArmor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ShadowArmor.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ShadowBlade.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ShadowBlade.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Shield.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Shield.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Shillelagh.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Shillelagh.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Silence.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Silence.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/SilentImage.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/SilentImage.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Sleep.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Sleep.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Slow.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Slow.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/SpiderClimb.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/SpiderClimb.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/SpikeGrowth.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/SpikeGrowth.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Stoneskin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Stoneskin.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/StormSphere.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/StormSphere.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Suggestion.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Suggestion.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Swarm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Swarm.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/SwordBurst.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/SwordBurst.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Symbol.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Symbol.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/ThunderStep.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/ThunderStep.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Thunderclap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Thunderclap.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/TidalWave.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/TidalWave.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/TollTheDead.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/TollTheDead.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/TrueStrike.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/TrueStrike.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WallOfFire.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WallOfFire.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WallOfForce.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WallOfForce.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WallOfIce.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WallOfIce.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WallOfLight.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WallOfLight.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WallOfSand.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WallOfSand.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WallOfStone.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WallOfStone.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WallOfWater.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WallOfWater.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WardingBond.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WardingBond.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WaterBullet.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WaterBullet.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/Web.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/Web.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WindWall.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WindWall.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/WitchBolt.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/WitchBolt.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/spell/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/spell/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/trait/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/trait/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/trait/gnome/_module.mjs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/parser/enrichers/trait/halfling/_module.mjs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/parser/enrichers/trait/human/_module.mjs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/parser/enrichers/trait/orc/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/enrichers/trait/orc/_module.mjs -------------------------------------------------------------------------------- /src/parser/enrichers/trait/tiefling/_module.mjs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/parser/extendParsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/extendParsers.js -------------------------------------------------------------------------------- /src/parser/features/DDBAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/features/DDBAction.js -------------------------------------------------------------------------------- /src/parser/features/DDBAttackAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/features/DDBAttackAction.js -------------------------------------------------------------------------------- /src/parser/features/DDBChoiceFeature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/features/DDBChoiceFeature.js -------------------------------------------------------------------------------- /src/parser/features/DDBClassFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/features/DDBClassFeatures.js -------------------------------------------------------------------------------- /src/parser/features/DDBFeature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/features/DDBFeature.js -------------------------------------------------------------------------------- /src/parser/features/DDBFeatureMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/features/DDBFeatureMixin.js -------------------------------------------------------------------------------- /src/parser/features/DDBInfusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/features/DDBInfusion.js -------------------------------------------------------------------------------- /src/parser/features/DDBInfusionFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/features/DDBInfusionFactory.js -------------------------------------------------------------------------------- /src/parser/item/DDBItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/item/DDBItem.js -------------------------------------------------------------------------------- /src/parser/item/MagicItemMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/item/MagicItemMaker.js -------------------------------------------------------------------------------- /src/parser/lib/DDBDataUtils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/DDBDataUtils.mjs -------------------------------------------------------------------------------- /src/parser/lib/DDBDescriptions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/DDBDescriptions.mjs -------------------------------------------------------------------------------- /src/parser/lib/DDBModifiers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/DDBModifiers.mjs -------------------------------------------------------------------------------- /src/parser/lib/DDBReferenceLinker.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/DDBReferenceLinker.mjs -------------------------------------------------------------------------------- /src/parser/lib/DDBRuleJournalFactory.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/DDBRuleJournalFactory.mjs -------------------------------------------------------------------------------- /src/parser/lib/DDBTable.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/DDBTable.mjs -------------------------------------------------------------------------------- /src/parser/lib/DDBTemplateStrings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/DDBTemplateStrings.mjs -------------------------------------------------------------------------------- /src/parser/lib/FilterModifiers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/FilterModifiers.mjs -------------------------------------------------------------------------------- /src/parser/lib/ProficiencyFinder.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/ProficiencyFinder.mjs -------------------------------------------------------------------------------- /src/parser/lib/SystemHelpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/SystemHelpers.mjs -------------------------------------------------------------------------------- /src/parser/lib/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/lib/_module.mjs -------------------------------------------------------------------------------- /src/parser/monster/abilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/abilities.js -------------------------------------------------------------------------------- /src/parser/monster/ac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/ac.js -------------------------------------------------------------------------------- /src/parser/monster/conditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/conditions.js -------------------------------------------------------------------------------- /src/parser/monster/environments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/environments.js -------------------------------------------------------------------------------- /src/parser/monster/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/features.js -------------------------------------------------------------------------------- /src/parser/monster/habitats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/habitats.js -------------------------------------------------------------------------------- /src/parser/monster/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/helpers.js -------------------------------------------------------------------------------- /src/parser/monster/hp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/hp.js -------------------------------------------------------------------------------- /src/parser/monster/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/languages.js -------------------------------------------------------------------------------- /src/parser/monster/movement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/movement.js -------------------------------------------------------------------------------- /src/parser/monster/senses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/senses.js -------------------------------------------------------------------------------- /src/parser/monster/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/size.js -------------------------------------------------------------------------------- /src/parser/monster/skills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/skills.js -------------------------------------------------------------------------------- /src/parser/monster/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/source.js -------------------------------------------------------------------------------- /src/parser/monster/special.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/special.js -------------------------------------------------------------------------------- /src/parser/monster/spellcasting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/spellcasting.js -------------------------------------------------------------------------------- /src/parser/monster/spells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/spells.js -------------------------------------------------------------------------------- /src/parser/monster/templates/feat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/templates/feat.js -------------------------------------------------------------------------------- /src/parser/monster/templates/monster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/templates/monster.js -------------------------------------------------------------------------------- /src/parser/monster/treasure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/treasure.js -------------------------------------------------------------------------------- /src/parser/monster/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/monster/type.js -------------------------------------------------------------------------------- /src/parser/race/DDBRace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/race/DDBRace.js -------------------------------------------------------------------------------- /src/parser/race/DDBRaceTrait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/race/DDBRaceTrait.js -------------------------------------------------------------------------------- /src/parser/spells/CharacterSpellFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/spells/CharacterSpellFactory.js -------------------------------------------------------------------------------- /src/parser/spells/DDBSpell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/spells/DDBSpell.js -------------------------------------------------------------------------------- /src/parser/spells/DDBSpellListFactory.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/spells/DDBSpellListFactory.mjs -------------------------------------------------------------------------------- /src/parser/spells/GenericSpellFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/spells/GenericSpellFactory.js -------------------------------------------------------------------------------- /src/parser/spells/SpellListFactory.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/spells/SpellListFactory.mjs -------------------------------------------------------------------------------- /src/parser/spells/ability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/spells/ability.js -------------------------------------------------------------------------------- /src/parser/spells/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/spells/metadata.js -------------------------------------------------------------------------------- /src/parser/vehicle/DDBComponentFeature.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/DDBComponentFeature.mjs -------------------------------------------------------------------------------- /src/parser/vehicle/abilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/abilities.js -------------------------------------------------------------------------------- /src/parser/vehicle/capacity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/capacity.js -------------------------------------------------------------------------------- /src/parser/vehicle/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/components.js -------------------------------------------------------------------------------- /src/parser/vehicle/conditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/conditions.js -------------------------------------------------------------------------------- /src/parser/vehicle/ddb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/ddb.js -------------------------------------------------------------------------------- /src/parser/vehicle/movement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/movement.js -------------------------------------------------------------------------------- /src/parser/vehicle/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/size.js -------------------------------------------------------------------------------- /src/parser/vehicle/templates/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/templates/component.js -------------------------------------------------------------------------------- /src/parser/vehicle/templates/vehicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/templates/vehicle.js -------------------------------------------------------------------------------- /src/parser/vehicle/threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/threshold.js -------------------------------------------------------------------------------- /src/parser/vehicle/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/type.js -------------------------------------------------------------------------------- /src/parser/vehicle/vehicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/parser/vehicle/vehicle.js -------------------------------------------------------------------------------- /src/updater/character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/src/updater/character.js -------------------------------------------------------------------------------- /storage/README.md: -------------------------------------------------------------------------------- 1 | This directory is used to cache some images from DDB. 2 | -------------------------------------------------------------------------------- /tools/create-symlinks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/tools/create-symlinks.mjs -------------------------------------------------------------------------------- /vendor/libwrapper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/vendor/libwrapper/LICENSE -------------------------------------------------------------------------------- /vendor/libwrapper/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/vendor/libwrapper/shim.js -------------------------------------------------------------------------------- /vendor/lowdash/_module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/vendor/lowdash/_module.mjs -------------------------------------------------------------------------------- /vendor/lowdash/isequal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/vendor/lowdash/isequal.js -------------------------------------------------------------------------------- /vendor/lowdash/uniq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/vendor/lowdash/uniq.js -------------------------------------------------------------------------------- /vendor/parseTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/vendor/parseTable.js -------------------------------------------------------------------------------- /vendor/zipjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/vendor/zipjs/LICENSE -------------------------------------------------------------------------------- /vendor/zipjs/zip-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/vendor/zipjs/zip-fs.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrPrimate/ddb-importer/HEAD/webpack.config.js --------------------------------------------------------------------------------