├── .github └── FUNDING.yml ├── .gitignore ├── .jsbeautifyrc ├── data ├── monster-attacks.csv ├── monster-attacks.json ├── monster-powers.csv └── monster-powers.json ├── docs ├── CHANGELOG.md ├── README.md └── img │ ├── fire-elemental.png │ ├── frightful-presence.png │ └── scaling-monster-level.gif ├── fonts ├── LondrinaSolid-Black.ttf ├── LondrinaSolid-Light.ttf ├── LondrinaSolid-Regular.ttf ├── LondrinaSolid-Thin.ttf ├── SourceSansPro-Black.ttf ├── SourceSansPro-BlackItalic.ttf ├── SourceSansPro-Bold.ttf ├── SourceSansPro-BoldItalic.ttf ├── SourceSansPro-ExtraLight.ttf ├── SourceSansPro-ExtraLightItalic.ttf ├── SourceSansPro-Italic.ttf ├── SourceSansPro-Light.ttf ├── SourceSansPro-LightItalic.ttf ├── SourceSansPro-Regular.ttf ├── SourceSansPro-SemiBold.ttf └── SourceSansPro-SemiBoldItalic.ttf ├── gmm.css ├── gmm.js ├── gulpfile.js ├── images └── icons │ ├── barbute.svg │ ├── book-cover.svg │ ├── brain.svg │ ├── bullseye.svg │ ├── conversation.svg │ ├── dice-twenty-faces-twenty.svg │ ├── drama-masks.svg │ ├── fluffy-flame.svg │ ├── gold-shell.svg │ ├── heart-beats.svg │ ├── heart-organ.svg │ ├── light-bulb.svg │ ├── lockpicks.svg │ ├── muscle-up.svg │ ├── paint-brush.svg │ ├── retro-controller.svg │ ├── sharp-axe.svg │ ├── shield.svg │ └── treasure-map.svg ├── lang └── en.json ├── module.json ├── package.json ├── packs ├── monster-attacks.db └── monster-powers.db ├── scripts ├── classes │ ├── ActionBlueprint.js │ ├── ActionForge.js │ ├── ActionSheet.js │ ├── DerivedAttribute.js │ ├── Dice.js │ ├── GmmActor.js │ ├── GmmItem.js │ ├── Gui.js │ ├── MonsterBlueprint.js │ ├── MonsterForge.js │ ├── MonsterHelpers.js │ ├── MonsterSheet.js │ ├── RollFormula.js │ ├── Shortcoder.js │ └── Templates.js ├── consts │ ├── Gmm5eAbilities.js │ ├── Gmm5eAlignments.js │ ├── Gmm5eCategories.js │ ├── Gmm5eConditions.js │ ├── Gmm5eDamageTypes.js │ ├── Gmm5eLanguages.js │ ├── Gmm5eSenses.js │ ├── Gmm5eSizes.js │ ├── Gmm5eSkills.js │ ├── Gmm5eSpeeds.js │ ├── Gmm5eUnits.js │ ├── Gmm5eXp.js │ ├── GmmActionActivationTypes.js │ ├── GmmActionAttackDamageTypes.js │ ├── GmmActionAttackTypes.js │ ├── GmmActionBlueprint.js │ ├── GmmActionConsumptionTypes.js │ ├── GmmActionRangeTypes.js │ ├── GmmActionTargetTypes.js │ ├── GmmActionTimePeriods.js │ ├── GmmActionUsePeriods.js │ ├── GmmGuiColors.js │ ├── GmmGuiLayouts.js │ ├── GmmGuiSkins.js │ ├── GmmModuleTitle.js │ ├── GmmMonsterBlueprint.js │ ├── GmmMonsterRanks.js │ └── GmmMonsterRoles.js ├── modals │ ├── ModalAbilityCheck.js │ ├── ModalBasicAttackAc.js │ ├── ModalBasicAttackSave.js │ ├── ModalBasicDamage.js │ └── ModalSavingThrow.js └── vendors │ └── math_js.9.3.2.min.js ├── stylesheets ├── abstracts │ ├── _fonts.scss │ └── _mixins.scss ├── components │ ├── _accordion.scss │ ├── _artifact--action.scss │ ├── _artifact--monster.scss │ ├── _artifact.scss │ ├── _block.scss │ ├── _blueprint--action.scss │ ├── _blueprint--monster.scss │ ├── _blueprint.scss │ ├── _forge--action.scss │ ├── _forge--monster.scss │ ├── _forge.scss │ ├── _modal.scss │ ├── _panel.scss │ ├── _sidebar.scss │ ├── _window--action.scss │ ├── _window--monster.scss │ └── _window.scss └── gmm.scss └── templates ├── action ├── forge.html └── skins │ └── vanity │ ├── artifact.html │ └── blueprint.html └── monster ├── forge.html └── skins └── vanity ├── artifact.html ├── blueprint.html └── partials ├── artifact_action.html ├── artifact_loot.html ├── artifact_spell.html └── blueprint_item.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /data/monster-attacks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/data/monster-attacks.csv -------------------------------------------------------------------------------- /data/monster-attacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/data/monster-attacks.json -------------------------------------------------------------------------------- /data/monster-powers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/data/monster-powers.csv -------------------------------------------------------------------------------- /data/monster-powers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/data/monster-powers.json -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/img/fire-elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/docs/img/fire-elemental.png -------------------------------------------------------------------------------- /docs/img/frightful-presence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/docs/img/frightful-presence.png -------------------------------------------------------------------------------- /docs/img/scaling-monster-level.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/docs/img/scaling-monster-level.gif -------------------------------------------------------------------------------- /fonts/LondrinaSolid-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/LondrinaSolid-Black.ttf -------------------------------------------------------------------------------- /fonts/LondrinaSolid-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/LondrinaSolid-Light.ttf -------------------------------------------------------------------------------- /fonts/LondrinaSolid-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/LondrinaSolid-Regular.ttf -------------------------------------------------------------------------------- /fonts/LondrinaSolid-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/LondrinaSolid-Thin.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-Black.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-Italic.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/SourceSansPro-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/fonts/SourceSansPro-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /gmm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/gmm.css -------------------------------------------------------------------------------- /gmm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/gmm.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/icons/barbute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/barbute.svg -------------------------------------------------------------------------------- /images/icons/book-cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/book-cover.svg -------------------------------------------------------------------------------- /images/icons/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/brain.svg -------------------------------------------------------------------------------- /images/icons/bullseye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/bullseye.svg -------------------------------------------------------------------------------- /images/icons/conversation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/conversation.svg -------------------------------------------------------------------------------- /images/icons/dice-twenty-faces-twenty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/dice-twenty-faces-twenty.svg -------------------------------------------------------------------------------- /images/icons/drama-masks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/drama-masks.svg -------------------------------------------------------------------------------- /images/icons/fluffy-flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/fluffy-flame.svg -------------------------------------------------------------------------------- /images/icons/gold-shell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/gold-shell.svg -------------------------------------------------------------------------------- /images/icons/heart-beats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/heart-beats.svg -------------------------------------------------------------------------------- /images/icons/heart-organ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/heart-organ.svg -------------------------------------------------------------------------------- /images/icons/light-bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/light-bulb.svg -------------------------------------------------------------------------------- /images/icons/lockpicks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/lockpicks.svg -------------------------------------------------------------------------------- /images/icons/muscle-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/muscle-up.svg -------------------------------------------------------------------------------- /images/icons/paint-brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/paint-brush.svg -------------------------------------------------------------------------------- /images/icons/retro-controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/retro-controller.svg -------------------------------------------------------------------------------- /images/icons/sharp-axe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/sharp-axe.svg -------------------------------------------------------------------------------- /images/icons/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/shield.svg -------------------------------------------------------------------------------- /images/icons/treasure-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/images/icons/treasure-map.svg -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/lang/en.json -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/package.json -------------------------------------------------------------------------------- /packs/monster-attacks.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/packs/monster-attacks.db -------------------------------------------------------------------------------- /packs/monster-powers.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/packs/monster-powers.db -------------------------------------------------------------------------------- /scripts/classes/ActionBlueprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/ActionBlueprint.js -------------------------------------------------------------------------------- /scripts/classes/ActionForge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/ActionForge.js -------------------------------------------------------------------------------- /scripts/classes/ActionSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/ActionSheet.js -------------------------------------------------------------------------------- /scripts/classes/DerivedAttribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/DerivedAttribute.js -------------------------------------------------------------------------------- /scripts/classes/Dice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/Dice.js -------------------------------------------------------------------------------- /scripts/classes/GmmActor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/GmmActor.js -------------------------------------------------------------------------------- /scripts/classes/GmmItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/GmmItem.js -------------------------------------------------------------------------------- /scripts/classes/Gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/Gui.js -------------------------------------------------------------------------------- /scripts/classes/MonsterBlueprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/MonsterBlueprint.js -------------------------------------------------------------------------------- /scripts/classes/MonsterForge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/MonsterForge.js -------------------------------------------------------------------------------- /scripts/classes/MonsterHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/MonsterHelpers.js -------------------------------------------------------------------------------- /scripts/classes/MonsterSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/MonsterSheet.js -------------------------------------------------------------------------------- /scripts/classes/RollFormula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/RollFormula.js -------------------------------------------------------------------------------- /scripts/classes/Shortcoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/Shortcoder.js -------------------------------------------------------------------------------- /scripts/classes/Templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/classes/Templates.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eAbilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eAbilities.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eAlignments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eAlignments.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eCategories.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eConditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eConditions.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eDamageTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eDamageTypes.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eLanguages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eLanguages.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eSenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eSenses.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eSizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eSizes.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eSkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eSkills.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eSpeeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eSpeeds.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eUnits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eUnits.js -------------------------------------------------------------------------------- /scripts/consts/Gmm5eXp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/Gmm5eXp.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionActivationTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionActivationTypes.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionAttackDamageTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionAttackDamageTypes.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionAttackTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionAttackTypes.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionBlueprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionBlueprint.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionConsumptionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionConsumptionTypes.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionRangeTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionRangeTypes.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionTargetTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionTargetTypes.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionTimePeriods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionTimePeriods.js -------------------------------------------------------------------------------- /scripts/consts/GmmActionUsePeriods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmActionUsePeriods.js -------------------------------------------------------------------------------- /scripts/consts/GmmGuiColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmGuiColors.js -------------------------------------------------------------------------------- /scripts/consts/GmmGuiLayouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmGuiLayouts.js -------------------------------------------------------------------------------- /scripts/consts/GmmGuiSkins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmGuiSkins.js -------------------------------------------------------------------------------- /scripts/consts/GmmModuleTitle.js: -------------------------------------------------------------------------------- 1 | export const GMM_MODULE_TITLE = "giffyglyphs-5e-monster-maker"; -------------------------------------------------------------------------------- /scripts/consts/GmmMonsterBlueprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmMonsterBlueprint.js -------------------------------------------------------------------------------- /scripts/consts/GmmMonsterRanks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmMonsterRanks.js -------------------------------------------------------------------------------- /scripts/consts/GmmMonsterRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/consts/GmmMonsterRoles.js -------------------------------------------------------------------------------- /scripts/modals/ModalAbilityCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/modals/ModalAbilityCheck.js -------------------------------------------------------------------------------- /scripts/modals/ModalBasicAttackAc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/modals/ModalBasicAttackAc.js -------------------------------------------------------------------------------- /scripts/modals/ModalBasicAttackSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/modals/ModalBasicAttackSave.js -------------------------------------------------------------------------------- /scripts/modals/ModalBasicDamage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/modals/ModalBasicDamage.js -------------------------------------------------------------------------------- /scripts/modals/ModalSavingThrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/modals/ModalSavingThrow.js -------------------------------------------------------------------------------- /scripts/vendors/math_js.9.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/scripts/vendors/math_js.9.3.2.min.js -------------------------------------------------------------------------------- /stylesheets/abstracts/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/abstracts/_fonts.scss -------------------------------------------------------------------------------- /stylesheets/abstracts/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/abstracts/_mixins.scss -------------------------------------------------------------------------------- /stylesheets/components/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_accordion.scss -------------------------------------------------------------------------------- /stylesheets/components/_artifact--action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_artifact--action.scss -------------------------------------------------------------------------------- /stylesheets/components/_artifact--monster.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_artifact--monster.scss -------------------------------------------------------------------------------- /stylesheets/components/_artifact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_artifact.scss -------------------------------------------------------------------------------- /stylesheets/components/_block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_block.scss -------------------------------------------------------------------------------- /stylesheets/components/_blueprint--action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_blueprint--action.scss -------------------------------------------------------------------------------- /stylesheets/components/_blueprint--monster.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_blueprint--monster.scss -------------------------------------------------------------------------------- /stylesheets/components/_blueprint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_blueprint.scss -------------------------------------------------------------------------------- /stylesheets/components/_forge--action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_forge--action.scss -------------------------------------------------------------------------------- /stylesheets/components/_forge--monster.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_forge--monster.scss -------------------------------------------------------------------------------- /stylesheets/components/_forge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_forge.scss -------------------------------------------------------------------------------- /stylesheets/components/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_modal.scss -------------------------------------------------------------------------------- /stylesheets/components/_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_panel.scss -------------------------------------------------------------------------------- /stylesheets/components/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_sidebar.scss -------------------------------------------------------------------------------- /stylesheets/components/_window--action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_window--action.scss -------------------------------------------------------------------------------- /stylesheets/components/_window--monster.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_window--monster.scss -------------------------------------------------------------------------------- /stylesheets/components/_window.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/components/_window.scss -------------------------------------------------------------------------------- /stylesheets/gmm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/stylesheets/gmm.scss -------------------------------------------------------------------------------- /templates/action/forge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/action/forge.html -------------------------------------------------------------------------------- /templates/action/skins/vanity/artifact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/action/skins/vanity/artifact.html -------------------------------------------------------------------------------- /templates/action/skins/vanity/blueprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/action/skins/vanity/blueprint.html -------------------------------------------------------------------------------- /templates/monster/forge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/monster/forge.html -------------------------------------------------------------------------------- /templates/monster/skins/vanity/artifact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/monster/skins/vanity/artifact.html -------------------------------------------------------------------------------- /templates/monster/skins/vanity/blueprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/monster/skins/vanity/blueprint.html -------------------------------------------------------------------------------- /templates/monster/skins/vanity/partials/artifact_action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/monster/skins/vanity/partials/artifact_action.html -------------------------------------------------------------------------------- /templates/monster/skins/vanity/partials/artifact_loot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/monster/skins/vanity/partials/artifact_loot.html -------------------------------------------------------------------------------- /templates/monster/skins/vanity/partials/artifact_spell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/monster/skins/vanity/partials/artifact_spell.html -------------------------------------------------------------------------------- /templates/monster/skins/vanity/partials/blueprint_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giffyglyph/foundry-5e-monster-maker/HEAD/templates/monster/skins/vanity/partials/blueprint_item.html --------------------------------------------------------------------------------