├── .editorconfig ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── get-version.js │ └── main.yml ├── .gitignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── postcss.config.js ├── src ├── config.ts ├── fatex.ts ├── module │ ├── actor │ │ ├── ActorTypes.ts │ │ ├── FateActor.ts │ │ └── sheets │ │ │ ├── CharacterSheet.ts │ │ │ ├── GroupSheet.ts │ │ │ └── InlineActorSheetFate.ts │ ├── applications │ │ ├── sheet-setup │ │ │ ├── DataManager.ts │ │ │ └── SheetSetup.ts │ │ └── template-actors │ │ │ ├── TemplateActorPicker.ts │ │ │ └── TemplateActorSettings.ts │ ├── chat │ │ ├── FateChatCard.ts │ │ ├── FateRoll.ts │ │ └── FateRollHistory.ts │ ├── combat │ │ └── FateCombat.ts │ ├── components │ │ ├── Automation │ │ │ └── Automation.ts │ │ ├── BaseComponent.ts │ │ ├── Configuration │ │ │ └── Configuration.ts │ │ ├── Radio │ │ │ └── Radio.ts │ │ ├── RangeSlider │ │ │ └── RangeSlider.ts │ │ ├── Sortable │ │ │ └── Sortable.ts │ │ └── SubItems │ │ │ └── SubItems.ts │ ├── data │ │ ├── FateChatCardDataModel.ts │ │ ├── FateRollDataModel.ts │ │ ├── FateRollHistoryDataModel.ts │ │ └── fields │ │ │ └── FateRollsArrayField.ts │ ├── features │ │ ├── ActorGroupFeature.ts │ │ ├── ChatActionsFeature.ts │ │ ├── MagicSystem.ts │ │ ├── PrototypeTokenNameSyncFeature.ts │ │ ├── Roll2d6Feature.ts │ │ └── TemplateActorsFeature.ts │ ├── helper │ │ ├── ActorGroupHelper.ts │ │ ├── HandlebarsHelpers.ts │ │ ├── Settings.ts │ │ └── TemplatePreloader.ts │ ├── item │ │ ├── BaseItem.ts │ │ ├── FateItem.ts │ │ ├── ItemSheetFate.ts │ │ ├── ItemTypes.ts │ │ ├── aspect │ │ │ ├── AspectItem.ts │ │ │ └── AspectSheet.ts │ │ ├── consequence │ │ │ ├── ConsequenceItem.ts │ │ │ └── ConsequenceSheet.ts │ │ ├── extra │ │ │ ├── ExtraItem.ts │ │ │ └── ExtraSheet.ts │ │ ├── references │ │ │ ├── ActorReferenceItem.ts │ │ │ ├── ReferenceSheet.ts │ │ │ └── TokenReferenceItem.ts │ │ ├── skill │ │ │ ├── SkillItem.ts │ │ │ └── SkillSheet.ts │ │ ├── stress │ │ │ ├── StressItem.ts │ │ │ └── StressSheet.ts │ │ └── stunt │ │ │ ├── StuntItem.ts │ │ │ └── StuntSheet.ts │ └── scene │ │ └── FateScene.ts ├── styles │ ├── abstract │ │ ├── mixins.scss │ │ └── variables.scss │ ├── base │ │ ├── foundry-ui.scss │ │ └── typography.scss │ ├── components │ │ ├── actions.scss │ │ ├── actor-group │ │ │ └── actor-group.scss │ │ ├── apps │ │ │ ├── setup.scss │ │ │ └── templates.scss │ │ ├── artwork.scss │ │ ├── automation.scss │ │ ├── button.scss │ │ ├── chat.scss │ │ ├── chat │ │ │ └── _item-card.scss │ │ ├── checkbox.scss │ │ ├── copyright.scss │ │ ├── desk.scss │ │ ├── dialog.scss │ │ ├── header.scss │ │ ├── headline.scss │ │ ├── inline-sheet │ │ │ └── inline-sheet.scss │ │ ├── inline-tabs.scss │ │ ├── input.scss │ │ ├── item-description.scss │ │ ├── item-grid.scss │ │ ├── item.scss │ │ ├── messages.scss │ │ ├── radio.scss │ │ ├── scrollbar.scss │ │ ├── settings.scss │ │ ├── sheet │ │ │ ├── configuration.scss │ │ │ └── sheet.scss │ │ ├── skills.scss │ │ ├── slider.scss │ │ ├── stress-track.scss │ │ └── tabs │ │ │ ├── tab-content.scss │ │ │ └── tab-navigation.scss │ ├── fatex.scss │ ├── legacy │ │ └── chat.scss │ └── utils │ │ ├── disabled.scss │ │ ├── effects.scss │ │ ├── padding.scss │ │ ├── position.scss │ │ └── sizing.scss └── types │ └── global.d.ts ├── system ├── assets │ ├── fonts │ │ ├── Montserrat-Black.otf │ │ ├── Montserrat-BlackItalic.otf │ │ ├── Montserrat-Bold.otf │ │ ├── Montserrat-BoldItalic.otf │ │ ├── Montserrat-Italic.otf │ │ ├── Montserrat-Light.otf │ │ ├── Montserrat-LightItalic.otf │ │ ├── Montserrat-Regular.otf │ │ └── fate_icons.ttf │ ├── icons │ │ └── group.svg │ ├── logos │ │ └── powered_by_fate.svg │ └── ui │ │ ├── consequence │ │ ├── type_condition.png │ │ └── type_consequence.png │ │ └── stress │ │ ├── label_preview_0.png │ │ ├── label_preview_1.png │ │ └── label_preview_2.png ├── data │ ├── cn │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ ├── de │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ ├── en │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ ├── core.json │ │ │ └── dfa.json │ ├── es │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ ├── fr │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ ├── gl │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ ├── it │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ ├── ko │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ ├── pt-BR │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ ├── ru │ │ ├── systems.json │ │ └── systems │ │ │ ├── accelerated.json │ │ │ ├── condensed.json │ │ │ └── core.json │ └── sv │ │ ├── systems.json │ │ └── systems │ │ ├── accelerated.json │ │ ├── condensed.json │ │ ├── core.json │ │ └── dfa.json ├── languages │ ├── cn.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── it.json │ ├── ko.json │ ├── pt-BR.json │ ├── ru.json │ └── sv.json ├── system.js ├── system.json ├── template.json └── templates │ ├── actor │ ├── character.hbs │ ├── group.hbs │ ├── limited.hbs │ └── tabs │ │ ├── bio.hbs │ │ ├── extras.hbs │ │ ├── skills.hbs │ │ └── stunts.hbs │ ├── apps │ ├── sheet-setup.hbs │ ├── template-actors-picker.hbs │ └── template-actors.hbs │ ├── chat │ ├── chat-card.hbs │ ├── item-card.hbs │ └── roll.hbs │ ├── components │ ├── app-footer.hbs │ ├── app-header.hbs │ ├── artwork.hbs │ ├── aspects.hbs │ ├── conditions.hbs │ ├── config.hbs │ ├── consequences.hbs │ ├── copyright.hbs │ ├── header-logo.hbs │ ├── header.hbs │ ├── item-footer.hbs │ ├── item-header.hbs │ ├── messages.hbs │ ├── setup-actions.hbs │ └── stress.hbs │ ├── inline-sheet │ └── character.hbs │ └── item │ ├── actorReference-sheet.hbs │ ├── aspect-sheet.hbs │ ├── consequence-sheet.hbs │ ├── extra-sheet.hbs │ ├── settings │ ├── setting-automation-boxes.hbs │ ├── setting-automation-skill-enable.hbs │ ├── setting-editor.hbs │ ├── setting-input.hbs │ ├── setting-rank.hbs │ └── setting-text.hbs │ ├── skill-sheet.hbs │ ├── stress-sheet.hbs │ ├── stunt-sheet.hbs │ └── tokenReference-sheet.hbs ├── tsconfig.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/get-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/.github/workflows/get-version.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [require("autoprefixer")], 3 | }; 4 | -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/fatex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/fatex.ts -------------------------------------------------------------------------------- /src/module/actor/ActorTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/actor/ActorTypes.ts -------------------------------------------------------------------------------- /src/module/actor/FateActor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/actor/FateActor.ts -------------------------------------------------------------------------------- /src/module/actor/sheets/CharacterSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/actor/sheets/CharacterSheet.ts -------------------------------------------------------------------------------- /src/module/actor/sheets/GroupSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/actor/sheets/GroupSheet.ts -------------------------------------------------------------------------------- /src/module/actor/sheets/InlineActorSheetFate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/actor/sheets/InlineActorSheetFate.ts -------------------------------------------------------------------------------- /src/module/applications/sheet-setup/DataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/applications/sheet-setup/DataManager.ts -------------------------------------------------------------------------------- /src/module/applications/sheet-setup/SheetSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/applications/sheet-setup/SheetSetup.ts -------------------------------------------------------------------------------- /src/module/applications/template-actors/TemplateActorPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/applications/template-actors/TemplateActorPicker.ts -------------------------------------------------------------------------------- /src/module/applications/template-actors/TemplateActorSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/applications/template-actors/TemplateActorSettings.ts -------------------------------------------------------------------------------- /src/module/chat/FateChatCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/chat/FateChatCard.ts -------------------------------------------------------------------------------- /src/module/chat/FateRoll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/chat/FateRoll.ts -------------------------------------------------------------------------------- /src/module/chat/FateRollHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/chat/FateRollHistory.ts -------------------------------------------------------------------------------- /src/module/combat/FateCombat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/combat/FateCombat.ts -------------------------------------------------------------------------------- /src/module/components/Automation/Automation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/components/Automation/Automation.ts -------------------------------------------------------------------------------- /src/module/components/BaseComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/components/BaseComponent.ts -------------------------------------------------------------------------------- /src/module/components/Configuration/Configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/components/Configuration/Configuration.ts -------------------------------------------------------------------------------- /src/module/components/Radio/Radio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/components/Radio/Radio.ts -------------------------------------------------------------------------------- /src/module/components/RangeSlider/RangeSlider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/components/RangeSlider/RangeSlider.ts -------------------------------------------------------------------------------- /src/module/components/Sortable/Sortable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/components/Sortable/Sortable.ts -------------------------------------------------------------------------------- /src/module/components/SubItems/SubItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/components/SubItems/SubItems.ts -------------------------------------------------------------------------------- /src/module/data/FateChatCardDataModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/data/FateChatCardDataModel.ts -------------------------------------------------------------------------------- /src/module/data/FateRollDataModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/data/FateRollDataModel.ts -------------------------------------------------------------------------------- /src/module/data/FateRollHistoryDataModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/data/FateRollHistoryDataModel.ts -------------------------------------------------------------------------------- /src/module/data/fields/FateRollsArrayField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/data/fields/FateRollsArrayField.ts -------------------------------------------------------------------------------- /src/module/features/ActorGroupFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/features/ActorGroupFeature.ts -------------------------------------------------------------------------------- /src/module/features/ChatActionsFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/features/ChatActionsFeature.ts -------------------------------------------------------------------------------- /src/module/features/MagicSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/features/MagicSystem.ts -------------------------------------------------------------------------------- /src/module/features/PrototypeTokenNameSyncFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/features/PrototypeTokenNameSyncFeature.ts -------------------------------------------------------------------------------- /src/module/features/Roll2d6Feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/features/Roll2d6Feature.ts -------------------------------------------------------------------------------- /src/module/features/TemplateActorsFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/features/TemplateActorsFeature.ts -------------------------------------------------------------------------------- /src/module/helper/ActorGroupHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/helper/ActorGroupHelper.ts -------------------------------------------------------------------------------- /src/module/helper/HandlebarsHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/helper/HandlebarsHelpers.ts -------------------------------------------------------------------------------- /src/module/helper/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/helper/Settings.ts -------------------------------------------------------------------------------- /src/module/helper/TemplatePreloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/helper/TemplatePreloader.ts -------------------------------------------------------------------------------- /src/module/item/BaseItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/BaseItem.ts -------------------------------------------------------------------------------- /src/module/item/FateItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/FateItem.ts -------------------------------------------------------------------------------- /src/module/item/ItemSheetFate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/ItemSheetFate.ts -------------------------------------------------------------------------------- /src/module/item/ItemTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/ItemTypes.ts -------------------------------------------------------------------------------- /src/module/item/aspect/AspectItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/aspect/AspectItem.ts -------------------------------------------------------------------------------- /src/module/item/aspect/AspectSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/aspect/AspectSheet.ts -------------------------------------------------------------------------------- /src/module/item/consequence/ConsequenceItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/consequence/ConsequenceItem.ts -------------------------------------------------------------------------------- /src/module/item/consequence/ConsequenceSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/consequence/ConsequenceSheet.ts -------------------------------------------------------------------------------- /src/module/item/extra/ExtraItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/extra/ExtraItem.ts -------------------------------------------------------------------------------- /src/module/item/extra/ExtraSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/extra/ExtraSheet.ts -------------------------------------------------------------------------------- /src/module/item/references/ActorReferenceItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/references/ActorReferenceItem.ts -------------------------------------------------------------------------------- /src/module/item/references/ReferenceSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/references/ReferenceSheet.ts -------------------------------------------------------------------------------- /src/module/item/references/TokenReferenceItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/references/TokenReferenceItem.ts -------------------------------------------------------------------------------- /src/module/item/skill/SkillItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/skill/SkillItem.ts -------------------------------------------------------------------------------- /src/module/item/skill/SkillSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/skill/SkillSheet.ts -------------------------------------------------------------------------------- /src/module/item/stress/StressItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/stress/StressItem.ts -------------------------------------------------------------------------------- /src/module/item/stress/StressSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/stress/StressSheet.ts -------------------------------------------------------------------------------- /src/module/item/stunt/StuntItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/stunt/StuntItem.ts -------------------------------------------------------------------------------- /src/module/item/stunt/StuntSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/item/stunt/StuntSheet.ts -------------------------------------------------------------------------------- /src/module/scene/FateScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/module/scene/FateScene.ts -------------------------------------------------------------------------------- /src/styles/abstract/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/abstract/mixins.scss -------------------------------------------------------------------------------- /src/styles/abstract/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/abstract/variables.scss -------------------------------------------------------------------------------- /src/styles/base/foundry-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/base/foundry-ui.scss -------------------------------------------------------------------------------- /src/styles/base/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/base/typography.scss -------------------------------------------------------------------------------- /src/styles/components/actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/actions.scss -------------------------------------------------------------------------------- /src/styles/components/actor-group/actor-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/actor-group/actor-group.scss -------------------------------------------------------------------------------- /src/styles/components/apps/setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/apps/setup.scss -------------------------------------------------------------------------------- /src/styles/components/apps/templates.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/apps/templates.scss -------------------------------------------------------------------------------- /src/styles/components/artwork.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/artwork.scss -------------------------------------------------------------------------------- /src/styles/components/automation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/automation.scss -------------------------------------------------------------------------------- /src/styles/components/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/button.scss -------------------------------------------------------------------------------- /src/styles/components/chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/chat.scss -------------------------------------------------------------------------------- /src/styles/components/chat/_item-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/chat/_item-card.scss -------------------------------------------------------------------------------- /src/styles/components/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/checkbox.scss -------------------------------------------------------------------------------- /src/styles/components/copyright.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/copyright.scss -------------------------------------------------------------------------------- /src/styles/components/desk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/desk.scss -------------------------------------------------------------------------------- /src/styles/components/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/dialog.scss -------------------------------------------------------------------------------- /src/styles/components/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/header.scss -------------------------------------------------------------------------------- /src/styles/components/headline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/headline.scss -------------------------------------------------------------------------------- /src/styles/components/inline-sheet/inline-sheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/inline-sheet/inline-sheet.scss -------------------------------------------------------------------------------- /src/styles/components/inline-tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/inline-tabs.scss -------------------------------------------------------------------------------- /src/styles/components/input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/input.scss -------------------------------------------------------------------------------- /src/styles/components/item-description.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/item-description.scss -------------------------------------------------------------------------------- /src/styles/components/item-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/item-grid.scss -------------------------------------------------------------------------------- /src/styles/components/item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/item.scss -------------------------------------------------------------------------------- /src/styles/components/messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/messages.scss -------------------------------------------------------------------------------- /src/styles/components/radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/radio.scss -------------------------------------------------------------------------------- /src/styles/components/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/scrollbar.scss -------------------------------------------------------------------------------- /src/styles/components/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/settings.scss -------------------------------------------------------------------------------- /src/styles/components/sheet/configuration.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/sheet/configuration.scss -------------------------------------------------------------------------------- /src/styles/components/sheet/sheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/sheet/sheet.scss -------------------------------------------------------------------------------- /src/styles/components/skills.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/skills.scss -------------------------------------------------------------------------------- /src/styles/components/slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/slider.scss -------------------------------------------------------------------------------- /src/styles/components/stress-track.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/stress-track.scss -------------------------------------------------------------------------------- /src/styles/components/tabs/tab-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/tabs/tab-content.scss -------------------------------------------------------------------------------- /src/styles/components/tabs/tab-navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/components/tabs/tab-navigation.scss -------------------------------------------------------------------------------- /src/styles/fatex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/fatex.scss -------------------------------------------------------------------------------- /src/styles/legacy/chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/legacy/chat.scss -------------------------------------------------------------------------------- /src/styles/utils/disabled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/utils/disabled.scss -------------------------------------------------------------------------------- /src/styles/utils/effects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/utils/effects.scss -------------------------------------------------------------------------------- /src/styles/utils/padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/utils/padding.scss -------------------------------------------------------------------------------- /src/styles/utils/position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/utils/position.scss -------------------------------------------------------------------------------- /src/styles/utils/sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/styles/utils/sizing.scss -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /system/assets/fonts/Montserrat-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/Montserrat-Black.otf -------------------------------------------------------------------------------- /system/assets/fonts/Montserrat-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/Montserrat-BlackItalic.otf -------------------------------------------------------------------------------- /system/assets/fonts/Montserrat-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/Montserrat-Bold.otf -------------------------------------------------------------------------------- /system/assets/fonts/Montserrat-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/Montserrat-BoldItalic.otf -------------------------------------------------------------------------------- /system/assets/fonts/Montserrat-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/Montserrat-Italic.otf -------------------------------------------------------------------------------- /system/assets/fonts/Montserrat-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/Montserrat-Light.otf -------------------------------------------------------------------------------- /system/assets/fonts/Montserrat-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/Montserrat-LightItalic.otf -------------------------------------------------------------------------------- /system/assets/fonts/Montserrat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/Montserrat-Regular.otf -------------------------------------------------------------------------------- /system/assets/fonts/fate_icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/fonts/fate_icons.ttf -------------------------------------------------------------------------------- /system/assets/icons/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/icons/group.svg -------------------------------------------------------------------------------- /system/assets/logos/powered_by_fate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/logos/powered_by_fate.svg -------------------------------------------------------------------------------- /system/assets/ui/consequence/type_condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/ui/consequence/type_condition.png -------------------------------------------------------------------------------- /system/assets/ui/consequence/type_consequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/ui/consequence/type_consequence.png -------------------------------------------------------------------------------- /system/assets/ui/stress/label_preview_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/ui/stress/label_preview_0.png -------------------------------------------------------------------------------- /system/assets/ui/stress/label_preview_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/ui/stress/label_preview_1.png -------------------------------------------------------------------------------- /system/assets/ui/stress/label_preview_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/assets/ui/stress/label_preview_2.png -------------------------------------------------------------------------------- /system/data/cn/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/cn/systems.json -------------------------------------------------------------------------------- /system/data/cn/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/cn/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/cn/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/cn/systems/condensed.json -------------------------------------------------------------------------------- /system/data/cn/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/cn/systems/core.json -------------------------------------------------------------------------------- /system/data/de/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/de/systems.json -------------------------------------------------------------------------------- /system/data/de/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/de/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/de/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/de/systems/condensed.json -------------------------------------------------------------------------------- /system/data/de/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/de/systems/core.json -------------------------------------------------------------------------------- /system/data/en/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/en/systems.json -------------------------------------------------------------------------------- /system/data/en/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/en/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/en/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/en/systems/condensed.json -------------------------------------------------------------------------------- /system/data/en/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/en/systems/core.json -------------------------------------------------------------------------------- /system/data/en/systems/dfa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/en/systems/dfa.json -------------------------------------------------------------------------------- /system/data/es/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/es/systems.json -------------------------------------------------------------------------------- /system/data/es/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/es/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/es/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/es/systems/condensed.json -------------------------------------------------------------------------------- /system/data/es/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/es/systems/core.json -------------------------------------------------------------------------------- /system/data/fr/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/fr/systems.json -------------------------------------------------------------------------------- /system/data/fr/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/fr/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/fr/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/fr/systems/condensed.json -------------------------------------------------------------------------------- /system/data/fr/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/fr/systems/core.json -------------------------------------------------------------------------------- /system/data/gl/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/gl/systems.json -------------------------------------------------------------------------------- /system/data/gl/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/gl/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/gl/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/gl/systems/condensed.json -------------------------------------------------------------------------------- /system/data/gl/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/gl/systems/core.json -------------------------------------------------------------------------------- /system/data/it/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/it/systems.json -------------------------------------------------------------------------------- /system/data/it/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/it/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/it/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/it/systems/condensed.json -------------------------------------------------------------------------------- /system/data/it/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/it/systems/core.json -------------------------------------------------------------------------------- /system/data/ko/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/ko/systems.json -------------------------------------------------------------------------------- /system/data/ko/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/ko/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/ko/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/ko/systems/condensed.json -------------------------------------------------------------------------------- /system/data/ko/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/ko/systems/core.json -------------------------------------------------------------------------------- /system/data/pt-BR/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/pt-BR/systems.json -------------------------------------------------------------------------------- /system/data/pt-BR/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/pt-BR/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/pt-BR/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/pt-BR/systems/condensed.json -------------------------------------------------------------------------------- /system/data/pt-BR/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/pt-BR/systems/core.json -------------------------------------------------------------------------------- /system/data/ru/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/ru/systems.json -------------------------------------------------------------------------------- /system/data/ru/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/ru/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/ru/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/ru/systems/condensed.json -------------------------------------------------------------------------------- /system/data/ru/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/ru/systems/core.json -------------------------------------------------------------------------------- /system/data/sv/systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/sv/systems.json -------------------------------------------------------------------------------- /system/data/sv/systems/accelerated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/sv/systems/accelerated.json -------------------------------------------------------------------------------- /system/data/sv/systems/condensed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/sv/systems/condensed.json -------------------------------------------------------------------------------- /system/data/sv/systems/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/sv/systems/core.json -------------------------------------------------------------------------------- /system/data/sv/systems/dfa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/data/sv/systems/dfa.json -------------------------------------------------------------------------------- /system/languages/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/cn.json -------------------------------------------------------------------------------- /system/languages/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/de.json -------------------------------------------------------------------------------- /system/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/en.json -------------------------------------------------------------------------------- /system/languages/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/es.json -------------------------------------------------------------------------------- /system/languages/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/fr.json -------------------------------------------------------------------------------- /system/languages/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/it.json -------------------------------------------------------------------------------- /system/languages/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/ko.json -------------------------------------------------------------------------------- /system/languages/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/pt-BR.json -------------------------------------------------------------------------------- /system/languages/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/ru.json -------------------------------------------------------------------------------- /system/languages/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/languages/sv.json -------------------------------------------------------------------------------- /system/system.js: -------------------------------------------------------------------------------- 1 | /** intentionally blank for development purposes **/ 2 | -------------------------------------------------------------------------------- /system/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/system.json -------------------------------------------------------------------------------- /system/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/template.json -------------------------------------------------------------------------------- /system/templates/actor/character.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/actor/character.hbs -------------------------------------------------------------------------------- /system/templates/actor/group.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/actor/group.hbs -------------------------------------------------------------------------------- /system/templates/actor/limited.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/actor/limited.hbs -------------------------------------------------------------------------------- /system/templates/actor/tabs/bio.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/actor/tabs/bio.hbs -------------------------------------------------------------------------------- /system/templates/actor/tabs/extras.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/actor/tabs/extras.hbs -------------------------------------------------------------------------------- /system/templates/actor/tabs/skills.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/actor/tabs/skills.hbs -------------------------------------------------------------------------------- /system/templates/actor/tabs/stunts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/actor/tabs/stunts.hbs -------------------------------------------------------------------------------- /system/templates/apps/sheet-setup.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/apps/sheet-setup.hbs -------------------------------------------------------------------------------- /system/templates/apps/template-actors-picker.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/apps/template-actors-picker.hbs -------------------------------------------------------------------------------- /system/templates/apps/template-actors.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/apps/template-actors.hbs -------------------------------------------------------------------------------- /system/templates/chat/chat-card.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/chat/chat-card.hbs -------------------------------------------------------------------------------- /system/templates/chat/item-card.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/chat/item-card.hbs -------------------------------------------------------------------------------- /system/templates/chat/roll.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/chat/roll.hbs -------------------------------------------------------------------------------- /system/templates/components/app-footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/app-footer.hbs -------------------------------------------------------------------------------- /system/templates/components/app-header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/app-header.hbs -------------------------------------------------------------------------------- /system/templates/components/artwork.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/artwork.hbs -------------------------------------------------------------------------------- /system/templates/components/aspects.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/aspects.hbs -------------------------------------------------------------------------------- /system/templates/components/conditions.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/templates/components/config.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/config.hbs -------------------------------------------------------------------------------- /system/templates/components/consequences.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/consequences.hbs -------------------------------------------------------------------------------- /system/templates/components/copyright.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/copyright.hbs -------------------------------------------------------------------------------- /system/templates/components/header-logo.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/header-logo.hbs -------------------------------------------------------------------------------- /system/templates/components/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/header.hbs -------------------------------------------------------------------------------- /system/templates/components/item-footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/item-footer.hbs -------------------------------------------------------------------------------- /system/templates/components/item-header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/item-header.hbs -------------------------------------------------------------------------------- /system/templates/components/messages.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/messages.hbs -------------------------------------------------------------------------------- /system/templates/components/setup-actions.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/setup-actions.hbs -------------------------------------------------------------------------------- /system/templates/components/stress.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/components/stress.hbs -------------------------------------------------------------------------------- /system/templates/inline-sheet/character.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/inline-sheet/character.hbs -------------------------------------------------------------------------------- /system/templates/item/actorReference-sheet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/actorReference-sheet.hbs -------------------------------------------------------------------------------- /system/templates/item/aspect-sheet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/aspect-sheet.hbs -------------------------------------------------------------------------------- /system/templates/item/consequence-sheet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/consequence-sheet.hbs -------------------------------------------------------------------------------- /system/templates/item/extra-sheet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/extra-sheet.hbs -------------------------------------------------------------------------------- /system/templates/item/settings/setting-automation-boxes.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/settings/setting-automation-boxes.hbs -------------------------------------------------------------------------------- /system/templates/item/settings/setting-automation-skill-enable.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/settings/setting-automation-skill-enable.hbs -------------------------------------------------------------------------------- /system/templates/item/settings/setting-editor.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/settings/setting-editor.hbs -------------------------------------------------------------------------------- /system/templates/item/settings/setting-input.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/settings/setting-input.hbs -------------------------------------------------------------------------------- /system/templates/item/settings/setting-rank.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/settings/setting-rank.hbs -------------------------------------------------------------------------------- /system/templates/item/settings/setting-text.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/settings/setting-text.hbs -------------------------------------------------------------------------------- /system/templates/item/skill-sheet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/skill-sheet.hbs -------------------------------------------------------------------------------- /system/templates/item/stress-sheet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/stress-sheet.hbs -------------------------------------------------------------------------------- /system/templates/item/stunt-sheet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/stunt-sheet.hbs -------------------------------------------------------------------------------- /system/templates/item/tokenReference-sheet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/system/templates/item/tokenReference-sheet.hbs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anvil-vtt/FateX/HEAD/webpack.config.js --------------------------------------------------------------------------------