├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── __mocks__ │ ├── active-state.ts │ └── save-game.json ├── actions │ └── initialize.ts ├── components │ ├── AbstractLoadButton │ │ ├── component.tsx │ │ └── index.ts │ ├── Appbar.tsx │ ├── BackButton │ │ ├── component.tsx │ │ ├── connector.ts │ │ └── index.ts │ ├── BehaviorChooserDialog.tsx │ ├── ButtonLink.tsx │ ├── CommitTextField.tsx │ ├── ConfirmationDialog.tsx │ ├── DLCChip.tsx │ ├── DuplicantMenu │ │ ├── component.tsx │ │ ├── components │ │ │ ├── CloneMenuItem │ │ │ │ ├── component.tsx │ │ │ │ ├── connector.ts │ │ │ │ └── index.ts │ │ │ ├── CopyMenuItem │ │ │ │ ├── component.tsx │ │ │ │ ├── connector.ts │ │ │ │ └── index.ts │ │ │ ├── ExportMenuItem │ │ │ │ ├── component.tsx │ │ │ │ ├── connector.ts │ │ │ │ └── index.ts │ │ │ ├── ImportMenuItem │ │ │ │ ├── component.tsx │ │ │ │ ├── connector.ts │ │ │ │ └── index.ts │ │ │ └── PasteMenuItem │ │ │ │ ├── component.tsx │ │ │ │ ├── connector.ts │ │ │ │ └── index.ts │ │ └── index.ts │ ├── DuplicantPortrait.tsx │ ├── ExampleChip │ │ ├── component.tsx │ │ ├── connector.ts │ │ └── index.ts │ ├── GithubButton.tsx │ ├── ImportWarningDialog │ │ ├── component.tsx │ │ ├── connector.ts │ │ └── index.ts │ ├── ListItemLink.tsx │ ├── LoadButton │ │ ├── component.tsx │ │ └── index.ts │ ├── LoadExampleButton │ │ ├── component.tsx │ │ ├── connector.ts │ │ └── index.ts │ ├── LoadIconButton │ │ ├── component.tsx │ │ └── index.ts │ ├── LoadingDialog │ │ ├── component.tsx │ │ ├── connector.ts │ │ └── index.ts │ ├── ModifiedChip.tsx │ ├── Nav.tsx │ ├── PageContainer.tsx │ ├── RedirectIfNoSave.tsx │ ├── RequireDLC.tsx │ ├── SaveIconButton │ │ ├── component.tsx │ │ ├── connector.ts │ │ └── index.ts │ ├── SettingsButton.tsx │ ├── Sidebar.tsx │ └── utils.ts ├── debug.ts ├── enzyme.ts ├── exportable-behaviors.ts ├── history.ts ├── index.ejs ├── index.tsx ├── math.ts ├── nav-links.ts ├── pages │ ├── ChangelogPage │ │ ├── ChangelogPage.tsx │ │ └── index.ts │ ├── CreatureEditorPage │ │ ├── CreatureEditorPage.tsx │ │ ├── components │ │ │ ├── CreatureEditor │ │ │ │ ├── CreatureEditor.tsx │ │ │ │ └── index.ts │ │ │ └── CreatureNotFound.tsx │ │ └── index.ts │ ├── CreaturesPage │ │ ├── CreaturesPage.tsx │ │ ├── components │ │ │ ├── CreatureList.tsx │ │ │ └── CreatureListItem │ │ │ │ ├── CreatureListItem.tsx │ │ │ │ ├── components │ │ │ │ └── EditButton.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── DuplicantEditorPage │ │ ├── DuplicantEditorPage.tsx │ │ ├── components │ │ │ ├── DuplicantEditor │ │ │ │ ├── DuplicantEditor.tsx │ │ │ │ ├── components │ │ │ │ │ ├── Appearance │ │ │ │ │ │ ├── Appearance.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── HeadPortrait.tsx │ │ │ │ │ │ │ └── Portrait.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Attributes │ │ │ │ │ │ ├── Attributes.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── AttributeField.tsx │ │ │ │ │ │ │ └── AttributeName.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── DuplicantName.tsx │ │ │ │ │ ├── Effects │ │ │ │ │ │ ├── Effects.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── AddEffectButton.tsx │ │ │ │ │ │ │ └── AddEffectDialog.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Health │ │ │ │ │ │ ├── Health.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── Value.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Interests │ │ │ │ │ │ ├── Interests.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── AddAptitudeButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Skills │ │ │ │ │ │ ├── Skills.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── Experience │ │ │ │ │ │ │ │ ├── component.tsx │ │ │ │ │ │ │ │ ├── connector.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── Masteries.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── Traits │ │ │ │ │ │ ├── Traits.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ └── AddTraitButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── DuplicantNotFound.tsx │ │ └── index.ts │ ├── DuplicantsPage │ │ ├── DuplicantsPage.tsx │ │ ├── components │ │ │ ├── DuplicantList.tsx │ │ │ └── DuplicantListItem │ │ │ │ ├── DuplicantListItem.tsx │ │ │ │ ├── components │ │ │ │ ├── DuplicantAttributes │ │ │ │ │ ├── DuplicantAttributes.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ └── Attribute.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── DuplicantName.tsx │ │ │ │ ├── DuplicantTraits.tsx │ │ │ │ └── EditButton.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── GeysersPage │ │ ├── GeysersPage.tsx │ │ ├── components │ │ │ └── GeyserListItem.tsx │ │ └── index.ts │ ├── MaterialsPage │ │ ├── MaterialsPage.tsx │ │ ├── components │ │ │ ├── DeleteLooseButton.tsx │ │ │ └── MaterialsTable.tsx │ │ └── index.ts │ ├── OverviewPage │ │ ├── component.tsx │ │ ├── components │ │ │ ├── NoSave.tsx │ │ │ ├── SaveError │ │ │ │ ├── component.tsx │ │ │ │ └── index.ts │ │ │ └── SaveOverview │ │ │ │ ├── SaveOverview.tsx │ │ │ │ ├── components │ │ │ │ └── Difficulty.tsx │ │ │ │ ├── index.ts │ │ │ │ └── state-props.ts │ │ ├── connector.ts │ │ └── index.ts │ ├── PlanetsPage │ │ ├── PlanetsPage.tsx │ │ ├── components │ │ │ ├── PlanetList.tsx │ │ │ └── PlanetListItem │ │ │ │ ├── PlanetListItem.tsx │ │ │ │ ├── components │ │ │ │ └── RecoverableElement.tsx │ │ │ │ └── index.ts │ │ └── index.ts │ ├── RawEditorPage │ │ ├── RawEditorPage.tsx │ │ ├── components │ │ │ ├── BreadcrumbPath │ │ │ │ ├── BreadcrumbPath.tsx │ │ │ │ └── index.ts │ │ │ ├── FieldEditor │ │ │ │ ├── EditorProps.ts │ │ │ │ ├── components │ │ │ │ │ ├── BooleanFieldEditor.tsx │ │ │ │ │ ├── NumberFieldEditor.tsx │ │ │ │ │ └── TextFieldEditor.tsx │ │ │ │ ├── editor-connector.ts │ │ │ │ └── index.tsx │ │ │ ├── ObjectEditor │ │ │ │ ├── ObjectEditor.tsx │ │ │ │ └── index.ts │ │ │ └── RawObjectTree │ │ │ │ ├── RawObjectTree.tsx │ │ │ │ └── index.ts │ │ ├── connector.ts │ │ ├── editor-data.ts │ │ └── index.ts │ └── SettingsPage │ │ ├── SettingsPage.tsx │ │ ├── components │ │ └── Language │ │ │ ├── component.tsx │ │ │ ├── connector.ts │ │ │ └── index.ts │ │ └── index.ts ├── root.tsx ├── routes.tsx ├── runtime-env.ts ├── services │ ├── i18n │ │ ├── actions │ │ │ └── set-language.ts │ │ ├── components │ │ │ └── I18NProvider.tsx │ │ ├── i18n.ts │ │ ├── persist.ts │ │ ├── reducer │ │ │ ├── index.ts │ │ │ └── set-language.ts │ │ ├── selectors │ │ │ └── language.ts │ │ └── state.ts │ ├── offline-mode │ │ ├── actions │ │ │ ├── offline-probe-completed.ts │ │ │ ├── offline-switch-completed.ts │ │ │ └── set-offline-enabled.ts │ │ ├── hooks │ │ │ └── useOfflineModeSettings.ts │ │ ├── reducer │ │ │ ├── index.ts │ │ │ ├── offline-probe-completed.ts │ │ │ └── offline-switch-completed.ts │ │ ├── saga │ │ │ ├── index.ts │ │ │ ├── initialize.ts │ │ │ └── set-offline-enabled.ts │ │ ├── selectors.ts │ │ └── state.ts │ └── oni-save │ │ ├── actions │ │ ├── change-geyser-parameter.ts │ │ ├── change-geyser-type.ts │ │ ├── clone-duplicant.ts │ │ ├── copy-behaviors.ts │ │ ├── delete-loose-material.ts │ │ ├── export-behaviors.ts │ │ ├── import-behaviors.ts │ │ ├── load-example.ts │ │ ├── load-onisave.ts │ │ ├── merge-behaviors.ts │ │ ├── modify-behavior-path.ts │ │ ├── modify-behavior.ts │ │ ├── modify-difficulty.ts │ │ ├── modify-planet.ts │ │ ├── modify-raw.ts │ │ ├── parse-progress.ts │ │ ├── paste-behaviors.ts │ │ ├── receive-onisave.ts │ │ └── save-onisave.ts │ │ ├── creatures.ts │ │ ├── hooks │ │ ├── useBehavior.ts │ │ ├── useDifficulty.ts │ │ ├── useGameObject.ts │ │ ├── useGameObjects.ts │ │ ├── useGeyser.ts │ │ ├── useLoadFile.ts │ │ ├── useMaterials.ts │ │ ├── usePlanet.ts │ │ └── usePlanets.ts │ │ ├── materials.ts │ │ ├── reducer │ │ ├── change-geyser-parameter.ts │ │ ├── change-geyser-type.spec.ts │ │ ├── change-geyser-type.ts │ │ ├── clone-duplicant.spec.ts │ │ ├── clone-duplicant.ts │ │ ├── copy-behaviors.ts │ │ ├── delete-looe-material.ts │ │ ├── import-warn-checksum.ts │ │ ├── index.ts │ │ ├── load-example.ts │ │ ├── load-onisave.ts │ │ ├── merge-behaviors.spec.ts │ │ ├── merge-behaviors.ts │ │ ├── modify-behavior-path.spec.ts │ │ ├── modify-behavior-path.ts │ │ ├── modify-behavior.spec.ts │ │ ├── modify-behavior.ts │ │ ├── modify-difficulty.ts │ │ ├── modify-planet.ts │ │ ├── modify-raw.ts │ │ ├── parse-progress.ts │ │ ├── paste-behaviors.ts │ │ ├── receive-onisave.ts │ │ └── utils.ts │ │ ├── saga │ │ ├── export-behaviors.ts │ │ ├── import-behaviors.ts │ │ ├── index.ts │ │ ├── load-onisave.ts │ │ └── save-onisave.ts │ │ ├── save-serializer.worker.ts │ │ ├── selectors │ │ ├── behaviors.ts │ │ ├── copy-paste.ts │ │ ├── dlc.ts │ │ ├── game-objects.ts │ │ ├── geysers.ts │ │ ├── loading-status.ts │ │ ├── material.ts │ │ ├── save-game.ts │ │ ├── settings.ts │ │ ├── space-manager.ts │ │ ├── ui-state.ts │ │ └── utils.ts │ │ ├── state.ts │ │ ├── test-utils.ts │ │ ├── utils.ts │ │ ├── worker-instance.ts │ │ └── worker-messages.ts ├── state │ ├── index.ts │ └── utils.ts ├── store │ ├── components │ │ └── StoreProvider.tsx │ ├── devtool-sanitizer.ts │ ├── persist.ts │ ├── reducer.ts │ ├── saga.ts │ ├── store.ts │ └── utils.ts ├── style.css ├── theme.ts ├── translations │ ├── cs │ │ ├── common.json │ │ └── oni.json │ ├── en │ │ ├── common.json │ │ └── oni.json │ ├── es │ │ ├── common.json │ │ └── oni.json │ ├── ru │ │ └── common.json │ └── zh │ │ ├── common.json │ │ └── oni.json ├── tsconfig.json ├── types │ └── types.d.ts └── utils.ts └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | **/Thumbs.db -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/package.json -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/.vscode/settings.json -------------------------------------------------------------------------------- /src/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/.vscode/tasks.json -------------------------------------------------------------------------------- /src/__mocks__/active-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/__mocks__/active-state.ts -------------------------------------------------------------------------------- /src/__mocks__/save-game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/__mocks__/save-game.json -------------------------------------------------------------------------------- /src/actions/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/actions/initialize.ts -------------------------------------------------------------------------------- /src/components/AbstractLoadButton/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/AbstractLoadButton/component.tsx -------------------------------------------------------------------------------- /src/components/AbstractLoadButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/AbstractLoadButton/index.ts -------------------------------------------------------------------------------- /src/components/Appbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/Appbar.tsx -------------------------------------------------------------------------------- /src/components/BackButton/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/BackButton/component.tsx -------------------------------------------------------------------------------- /src/components/BackButton/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/BackButton/connector.ts -------------------------------------------------------------------------------- /src/components/BackButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/BackButton/index.ts -------------------------------------------------------------------------------- /src/components/BehaviorChooserDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/BehaviorChooserDialog.tsx -------------------------------------------------------------------------------- /src/components/ButtonLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ButtonLink.tsx -------------------------------------------------------------------------------- /src/components/CommitTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/CommitTextField.tsx -------------------------------------------------------------------------------- /src/components/ConfirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ConfirmationDialog.tsx -------------------------------------------------------------------------------- /src/components/DLCChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DLCChip.tsx -------------------------------------------------------------------------------- /src/components/DuplicantMenu/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/component.tsx -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/CloneMenuItem/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/CloneMenuItem/component.tsx -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/CloneMenuItem/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/CloneMenuItem/connector.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/CloneMenuItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/CloneMenuItem/index.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/CopyMenuItem/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/CopyMenuItem/component.tsx -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/CopyMenuItem/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/CopyMenuItem/connector.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/CopyMenuItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/CopyMenuItem/index.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/ExportMenuItem/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/ExportMenuItem/component.tsx -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/ExportMenuItem/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/ExportMenuItem/connector.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/ExportMenuItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/ExportMenuItem/index.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/ImportMenuItem/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/ImportMenuItem/component.tsx -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/ImportMenuItem/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/ImportMenuItem/connector.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/ImportMenuItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/ImportMenuItem/index.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/PasteMenuItem/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/PasteMenuItem/component.tsx -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/PasteMenuItem/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/PasteMenuItem/connector.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/components/PasteMenuItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/components/PasteMenuItem/index.ts -------------------------------------------------------------------------------- /src/components/DuplicantMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantMenu/index.ts -------------------------------------------------------------------------------- /src/components/DuplicantPortrait.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/DuplicantPortrait.tsx -------------------------------------------------------------------------------- /src/components/ExampleChip/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ExampleChip/component.tsx -------------------------------------------------------------------------------- /src/components/ExampleChip/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ExampleChip/connector.ts -------------------------------------------------------------------------------- /src/components/ExampleChip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ExampleChip/index.ts -------------------------------------------------------------------------------- /src/components/GithubButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/GithubButton.tsx -------------------------------------------------------------------------------- /src/components/ImportWarningDialog/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ImportWarningDialog/component.tsx -------------------------------------------------------------------------------- /src/components/ImportWarningDialog/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ImportWarningDialog/connector.ts -------------------------------------------------------------------------------- /src/components/ImportWarningDialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ImportWarningDialog/index.ts -------------------------------------------------------------------------------- /src/components/ListItemLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ListItemLink.tsx -------------------------------------------------------------------------------- /src/components/LoadButton/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadButton/component.tsx -------------------------------------------------------------------------------- /src/components/LoadButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadButton/index.ts -------------------------------------------------------------------------------- /src/components/LoadExampleButton/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadExampleButton/component.tsx -------------------------------------------------------------------------------- /src/components/LoadExampleButton/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadExampleButton/connector.ts -------------------------------------------------------------------------------- /src/components/LoadExampleButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadExampleButton/index.ts -------------------------------------------------------------------------------- /src/components/LoadIconButton/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadIconButton/component.tsx -------------------------------------------------------------------------------- /src/components/LoadIconButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadIconButton/index.ts -------------------------------------------------------------------------------- /src/components/LoadingDialog/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadingDialog/component.tsx -------------------------------------------------------------------------------- /src/components/LoadingDialog/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadingDialog/connector.ts -------------------------------------------------------------------------------- /src/components/LoadingDialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/LoadingDialog/index.ts -------------------------------------------------------------------------------- /src/components/ModifiedChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/ModifiedChip.tsx -------------------------------------------------------------------------------- /src/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/Nav.tsx -------------------------------------------------------------------------------- /src/components/PageContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/PageContainer.tsx -------------------------------------------------------------------------------- /src/components/RedirectIfNoSave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/RedirectIfNoSave.tsx -------------------------------------------------------------------------------- /src/components/RequireDLC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/RequireDLC.tsx -------------------------------------------------------------------------------- /src/components/SaveIconButton/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/SaveIconButton/component.tsx -------------------------------------------------------------------------------- /src/components/SaveIconButton/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/SaveIconButton/connector.ts -------------------------------------------------------------------------------- /src/components/SaveIconButton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/SaveIconButton/index.ts -------------------------------------------------------------------------------- /src/components/SettingsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/SettingsButton.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/components/utils.ts -------------------------------------------------------------------------------- /src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/debug.ts -------------------------------------------------------------------------------- /src/enzyme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/enzyme.ts -------------------------------------------------------------------------------- /src/exportable-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/exportable-behaviors.ts -------------------------------------------------------------------------------- /src/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/history.ts -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/math.ts -------------------------------------------------------------------------------- /src/nav-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/nav-links.ts -------------------------------------------------------------------------------- /src/pages/ChangelogPage/ChangelogPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/ChangelogPage/ChangelogPage.tsx -------------------------------------------------------------------------------- /src/pages/ChangelogPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/ChangelogPage/index.ts -------------------------------------------------------------------------------- /src/pages/CreatureEditorPage/CreatureEditorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreatureEditorPage/CreatureEditorPage.tsx -------------------------------------------------------------------------------- /src/pages/CreatureEditorPage/components/CreatureEditor/CreatureEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreatureEditorPage/components/CreatureEditor/CreatureEditor.tsx -------------------------------------------------------------------------------- /src/pages/CreatureEditorPage/components/CreatureEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreatureEditorPage/components/CreatureEditor/index.ts -------------------------------------------------------------------------------- /src/pages/CreatureEditorPage/components/CreatureNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreatureEditorPage/components/CreatureNotFound.tsx -------------------------------------------------------------------------------- /src/pages/CreatureEditorPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreatureEditorPage/index.ts -------------------------------------------------------------------------------- /src/pages/CreaturesPage/CreaturesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreaturesPage/CreaturesPage.tsx -------------------------------------------------------------------------------- /src/pages/CreaturesPage/components/CreatureList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreaturesPage/components/CreatureList.tsx -------------------------------------------------------------------------------- /src/pages/CreaturesPage/components/CreatureListItem/CreatureListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreaturesPage/components/CreatureListItem/CreatureListItem.tsx -------------------------------------------------------------------------------- /src/pages/CreaturesPage/components/CreatureListItem/components/EditButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreaturesPage/components/CreatureListItem/components/EditButton.tsx -------------------------------------------------------------------------------- /src/pages/CreaturesPage/components/CreatureListItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreaturesPage/components/CreatureListItem/index.ts -------------------------------------------------------------------------------- /src/pages/CreaturesPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/CreaturesPage/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/DuplicantEditorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/DuplicantEditorPage.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/DuplicantEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/DuplicantEditor.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Appearance/Appearance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Appearance/Appearance.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Appearance/components/HeadPortrait.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Appearance/components/HeadPortrait.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Appearance/components/Portrait.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Appearance/components/Portrait.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Appearance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Appearance/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Attributes/Attributes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Attributes/Attributes.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Attributes/components/AttributeField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Attributes/components/AttributeField.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Attributes/components/AttributeName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Attributes/components/AttributeName.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Attributes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Attributes/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/DuplicantName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/DuplicantName.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Effects/Effects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Effects/Effects.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Effects/components/AddEffectButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Effects/components/AddEffectButton.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Effects/components/AddEffectDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Effects/components/AddEffectDialog.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Effects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Effects/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Health/Health.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Health/Health.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Health/components/Value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Health/components/Value.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Health/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Health/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Interests/Interests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Interests/Interests.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Interests/components/AddAptitudeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Interests/components/AddAptitudeButton.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Interests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Interests/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/Skills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/Skills.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/components/Experience/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/components/Experience/component.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/components/Experience/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/components/Experience/connector.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/components/Experience/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/components/Experience/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/components/Masteries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/components/Masteries.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Skills/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Traits/Traits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Traits/Traits.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Traits/components/AddTraitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Traits/components/AddTraitButton.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Traits/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/components/Traits/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantEditor/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/components/DuplicantNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/components/DuplicantNotFound.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantEditorPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantEditorPage/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/DuplicantsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/DuplicantsPage.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantList.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantListItem/DuplicantListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantListItem/DuplicantListItem.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantAttributes/DuplicantAttributes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantAttributes/DuplicantAttributes.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantAttributes/components/Attribute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantAttributes/components/Attribute.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantAttributes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantAttributes/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantName.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantTraits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantListItem/components/DuplicantTraits.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantListItem/components/EditButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantListItem/components/EditButton.tsx -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/components/DuplicantListItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/components/DuplicantListItem/index.ts -------------------------------------------------------------------------------- /src/pages/DuplicantsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/DuplicantsPage/index.ts -------------------------------------------------------------------------------- /src/pages/GeysersPage/GeysersPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/GeysersPage/GeysersPage.tsx -------------------------------------------------------------------------------- /src/pages/GeysersPage/components/GeyserListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/GeysersPage/components/GeyserListItem.tsx -------------------------------------------------------------------------------- /src/pages/GeysersPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/GeysersPage/index.ts -------------------------------------------------------------------------------- /src/pages/MaterialsPage/MaterialsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/MaterialsPage/MaterialsPage.tsx -------------------------------------------------------------------------------- /src/pages/MaterialsPage/components/DeleteLooseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/MaterialsPage/components/DeleteLooseButton.tsx -------------------------------------------------------------------------------- /src/pages/MaterialsPage/components/MaterialsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/MaterialsPage/components/MaterialsTable.tsx -------------------------------------------------------------------------------- /src/pages/MaterialsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/MaterialsPage/index.ts -------------------------------------------------------------------------------- /src/pages/OverviewPage/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/component.tsx -------------------------------------------------------------------------------- /src/pages/OverviewPage/components/NoSave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/components/NoSave.tsx -------------------------------------------------------------------------------- /src/pages/OverviewPage/components/SaveError/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/components/SaveError/component.tsx -------------------------------------------------------------------------------- /src/pages/OverviewPage/components/SaveError/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/components/SaveError/index.ts -------------------------------------------------------------------------------- /src/pages/OverviewPage/components/SaveOverview/SaveOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/components/SaveOverview/SaveOverview.tsx -------------------------------------------------------------------------------- /src/pages/OverviewPage/components/SaveOverview/components/Difficulty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/components/SaveOverview/components/Difficulty.tsx -------------------------------------------------------------------------------- /src/pages/OverviewPage/components/SaveOverview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/components/SaveOverview/index.ts -------------------------------------------------------------------------------- /src/pages/OverviewPage/components/SaveOverview/state-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/components/SaveOverview/state-props.ts -------------------------------------------------------------------------------- /src/pages/OverviewPage/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/connector.ts -------------------------------------------------------------------------------- /src/pages/OverviewPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/OverviewPage/index.ts -------------------------------------------------------------------------------- /src/pages/PlanetsPage/PlanetsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/PlanetsPage/PlanetsPage.tsx -------------------------------------------------------------------------------- /src/pages/PlanetsPage/components/PlanetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/PlanetsPage/components/PlanetList.tsx -------------------------------------------------------------------------------- /src/pages/PlanetsPage/components/PlanetListItem/PlanetListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/PlanetsPage/components/PlanetListItem/PlanetListItem.tsx -------------------------------------------------------------------------------- /src/pages/PlanetsPage/components/PlanetListItem/components/RecoverableElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/PlanetsPage/components/PlanetListItem/components/RecoverableElement.tsx -------------------------------------------------------------------------------- /src/pages/PlanetsPage/components/PlanetListItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/PlanetsPage/components/PlanetListItem/index.ts -------------------------------------------------------------------------------- /src/pages/PlanetsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/PlanetsPage/index.ts -------------------------------------------------------------------------------- /src/pages/RawEditorPage/RawEditorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/RawEditorPage.tsx -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/BreadcrumbPath/BreadcrumbPath.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/BreadcrumbPath/BreadcrumbPath.tsx -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/BreadcrumbPath/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/BreadcrumbPath/index.ts -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/FieldEditor/EditorProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/FieldEditor/EditorProps.ts -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/FieldEditor/components/BooleanFieldEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/FieldEditor/components/BooleanFieldEditor.tsx -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/FieldEditor/components/NumberFieldEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/FieldEditor/components/NumberFieldEditor.tsx -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/FieldEditor/components/TextFieldEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/FieldEditor/components/TextFieldEditor.tsx -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/FieldEditor/editor-connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/FieldEditor/editor-connector.ts -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/FieldEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/FieldEditor/index.tsx -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/ObjectEditor/ObjectEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/ObjectEditor/ObjectEditor.tsx -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/ObjectEditor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/ObjectEditor/index.ts -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/RawObjectTree/RawObjectTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/RawObjectTree/RawObjectTree.tsx -------------------------------------------------------------------------------- /src/pages/RawEditorPage/components/RawObjectTree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/components/RawObjectTree/index.ts -------------------------------------------------------------------------------- /src/pages/RawEditorPage/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/connector.ts -------------------------------------------------------------------------------- /src/pages/RawEditorPage/editor-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/editor-data.ts -------------------------------------------------------------------------------- /src/pages/RawEditorPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/RawEditorPage/index.ts -------------------------------------------------------------------------------- /src/pages/SettingsPage/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/SettingsPage/SettingsPage.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/components/Language/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/SettingsPage/components/Language/component.tsx -------------------------------------------------------------------------------- /src/pages/SettingsPage/components/Language/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/SettingsPage/components/Language/connector.ts -------------------------------------------------------------------------------- /src/pages/SettingsPage/components/Language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/SettingsPage/components/Language/index.ts -------------------------------------------------------------------------------- /src/pages/SettingsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/pages/SettingsPage/index.ts -------------------------------------------------------------------------------- /src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/root.tsx -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /src/runtime-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/runtime-env.ts -------------------------------------------------------------------------------- /src/services/i18n/actions/set-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/i18n/actions/set-language.ts -------------------------------------------------------------------------------- /src/services/i18n/components/I18NProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/i18n/components/I18NProvider.tsx -------------------------------------------------------------------------------- /src/services/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/i18n/i18n.ts -------------------------------------------------------------------------------- /src/services/i18n/persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/i18n/persist.ts -------------------------------------------------------------------------------- /src/services/i18n/reducer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/i18n/reducer/index.ts -------------------------------------------------------------------------------- /src/services/i18n/reducer/set-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/i18n/reducer/set-language.ts -------------------------------------------------------------------------------- /src/services/i18n/selectors/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/i18n/selectors/language.ts -------------------------------------------------------------------------------- /src/services/i18n/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/i18n/state.ts -------------------------------------------------------------------------------- /src/services/offline-mode/actions/offline-probe-completed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/actions/offline-probe-completed.ts -------------------------------------------------------------------------------- /src/services/offline-mode/actions/offline-switch-completed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/actions/offline-switch-completed.ts -------------------------------------------------------------------------------- /src/services/offline-mode/actions/set-offline-enabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/actions/set-offline-enabled.ts -------------------------------------------------------------------------------- /src/services/offline-mode/hooks/useOfflineModeSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/hooks/useOfflineModeSettings.ts -------------------------------------------------------------------------------- /src/services/offline-mode/reducer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/reducer/index.ts -------------------------------------------------------------------------------- /src/services/offline-mode/reducer/offline-probe-completed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/reducer/offline-probe-completed.ts -------------------------------------------------------------------------------- /src/services/offline-mode/reducer/offline-switch-completed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/reducer/offline-switch-completed.ts -------------------------------------------------------------------------------- /src/services/offline-mode/saga/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/saga/index.ts -------------------------------------------------------------------------------- /src/services/offline-mode/saga/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/saga/initialize.ts -------------------------------------------------------------------------------- /src/services/offline-mode/saga/set-offline-enabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/saga/set-offline-enabled.ts -------------------------------------------------------------------------------- /src/services/offline-mode/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/selectors.ts -------------------------------------------------------------------------------- /src/services/offline-mode/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/offline-mode/state.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/change-geyser-parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/change-geyser-parameter.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/change-geyser-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/change-geyser-type.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/clone-duplicant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/clone-duplicant.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/copy-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/copy-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/delete-loose-material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/delete-loose-material.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/export-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/export-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/import-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/import-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/load-example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/load-example.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/load-onisave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/load-onisave.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/merge-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/merge-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/modify-behavior-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/modify-behavior-path.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/modify-behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/modify-behavior.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/modify-difficulty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/modify-difficulty.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/modify-planet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/modify-planet.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/modify-raw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/modify-raw.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/parse-progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/parse-progress.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/paste-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/paste-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/receive-onisave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/receive-onisave.ts -------------------------------------------------------------------------------- /src/services/oni-save/actions/save-onisave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/actions/save-onisave.ts -------------------------------------------------------------------------------- /src/services/oni-save/creatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/creatures.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/useBehavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/useBehavior.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/useDifficulty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/useDifficulty.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/useGameObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/useGameObject.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/useGameObjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/useGameObjects.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/useGeyser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/useGeyser.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/useLoadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/useLoadFile.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/useMaterials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/useMaterials.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/usePlanet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/usePlanet.ts -------------------------------------------------------------------------------- /src/services/oni-save/hooks/usePlanets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/hooks/usePlanets.ts -------------------------------------------------------------------------------- /src/services/oni-save/materials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/materials.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/change-geyser-parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/change-geyser-parameter.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/change-geyser-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/change-geyser-type.spec.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/change-geyser-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/change-geyser-type.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/clone-duplicant.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/clone-duplicant.spec.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/clone-duplicant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/clone-duplicant.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/copy-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/copy-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/delete-looe-material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/delete-looe-material.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/import-warn-checksum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/import-warn-checksum.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/index.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/load-example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/load-example.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/load-onisave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/load-onisave.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/merge-behaviors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/merge-behaviors.spec.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/merge-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/merge-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/modify-behavior-path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/modify-behavior-path.spec.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/modify-behavior-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/modify-behavior-path.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/modify-behavior.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/modify-behavior.spec.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/modify-behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/modify-behavior.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/modify-difficulty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/modify-difficulty.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/modify-planet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/modify-planet.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/modify-raw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/modify-raw.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/parse-progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/parse-progress.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/paste-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/paste-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/receive-onisave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/receive-onisave.ts -------------------------------------------------------------------------------- /src/services/oni-save/reducer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/reducer/utils.ts -------------------------------------------------------------------------------- /src/services/oni-save/saga/export-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/saga/export-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/saga/import-behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/saga/import-behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/saga/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/saga/index.ts -------------------------------------------------------------------------------- /src/services/oni-save/saga/load-onisave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/saga/load-onisave.ts -------------------------------------------------------------------------------- /src/services/oni-save/saga/save-onisave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/saga/save-onisave.ts -------------------------------------------------------------------------------- /src/services/oni-save/save-serializer.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/save-serializer.worker.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/behaviors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/behaviors.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/copy-paste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/copy-paste.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/dlc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/dlc.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/game-objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/game-objects.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/geysers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/geysers.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/loading-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/loading-status.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/material.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/save-game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/save-game.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/settings.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/space-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/space-manager.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/ui-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/ui-state.ts -------------------------------------------------------------------------------- /src/services/oni-save/selectors/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/selectors/utils.ts -------------------------------------------------------------------------------- /src/services/oni-save/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/state.ts -------------------------------------------------------------------------------- /src/services/oni-save/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/test-utils.ts -------------------------------------------------------------------------------- /src/services/oni-save/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/utils.ts -------------------------------------------------------------------------------- /src/services/oni-save/worker-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/worker-instance.ts -------------------------------------------------------------------------------- /src/services/oni-save/worker-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/services/oni-save/worker-messages.ts -------------------------------------------------------------------------------- /src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/state/index.ts -------------------------------------------------------------------------------- /src/state/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/state/utils.ts -------------------------------------------------------------------------------- /src/store/components/StoreProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/store/components/StoreProvider.tsx -------------------------------------------------------------------------------- /src/store/devtool-sanitizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/store/devtool-sanitizer.ts -------------------------------------------------------------------------------- /src/store/persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/store/persist.ts -------------------------------------------------------------------------------- /src/store/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/store/reducer.ts -------------------------------------------------------------------------------- /src/store/saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/store/saga.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/store/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/store/utils.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/style.css -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/theme.ts -------------------------------------------------------------------------------- /src/translations/cs/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/cs/common.json -------------------------------------------------------------------------------- /src/translations/cs/oni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/cs/oni.json -------------------------------------------------------------------------------- /src/translations/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/en/common.json -------------------------------------------------------------------------------- /src/translations/en/oni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/en/oni.json -------------------------------------------------------------------------------- /src/translations/es/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/es/common.json -------------------------------------------------------------------------------- /src/translations/es/oni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/es/oni.json -------------------------------------------------------------------------------- /src/translations/ru/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/ru/common.json -------------------------------------------------------------------------------- /src/translations/zh/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/zh/common.json -------------------------------------------------------------------------------- /src/translations/zh/oni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/translations/zh/oni.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/types/types.d.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/src/utils.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoboPhred/oni-duplicity/HEAD/webpack.config.js --------------------------------------------------------------------------------