├── .devcontainer ├── Dockerfile ├── devcontainer.json └── library-scripts │ └── node-debian.sh ├── .editorconfig ├── .github └── workflows │ ├── azure-static-web-apps-purple-mushroom-0656edc10.yml │ ├── playwright-latest.yml │ ├── playwright-onDemand.yml │ └── playwright-scheduled.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── api ├── .funcignore ├── .gitignore ├── .vscode │ └── extensions.json ├── get-character │ ├── function.json │ └── index.ts ├── host.json ├── package-lock.json ├── package.json ├── save-character │ ├── function.json │ └── index.ts └── tsconfig.json ├── config-overrides.js ├── docs └── action.gif ├── package.json ├── playwright.config.ts ├── public ├── android-icon-144x144.png ├── android-icon-192x192.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── index.html ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png ├── ms-icon-70x70.png ├── robots.txt └── staticwebapp.config.json ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── components │ ├── Character │ │ ├── base.tsx │ │ ├── index.tsx │ │ ├── layers │ │ │ ├── accessories.tsx │ │ │ ├── bottom.tsx │ │ │ ├── eyewear.tsx │ │ │ ├── facial-hair.tsx │ │ │ ├── hair.tsx │ │ │ ├── shoes.tsx │ │ │ └── top.tsx │ │ └── styles.js │ ├── CharacterOptions │ │ ├── accessories │ │ │ ├── apple │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── art │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── backpack │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── bag │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── branch │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── briefcase │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── burger │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── camera │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── crab │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── docker-whale │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── index.ts │ │ │ ├── keyboard │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── laptop │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── linux │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── magnifier │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── money │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── mug │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── parrot │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── pepsi │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── radio │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── ramen │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── ruby │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── satellite │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── skateboard │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── stetoscope │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── suitcase │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── tennis │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── tie │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ └── wheel │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ ├── bottoms │ │ │ ├── bathrobe │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── dress │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── index.ts │ │ │ ├── kilt │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── maxi-skirt │ │ │ │ ├── colors.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── mini-skirt │ │ │ │ ├── colors.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── pants │ │ │ │ ├── colors.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ └── prosthetic │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ ├── eyewear │ │ │ ├── eyewear-1 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── eyewear-2 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── eyewear-3 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── eyewear-4 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── eyewear-5 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── eyewear-6 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ └── index.ts │ │ ├── facial-hair │ │ │ ├── colors.ts │ │ │ ├── facial-hair-1 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── facial-hair-2 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── facial-hair-3 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── facial-hair-4 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── facial-hair-5 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ └── index.ts │ │ ├── hair │ │ │ ├── colors.ts │ │ │ ├── hair-1 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-10 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-11 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-12 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-13 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-2 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-3 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-4 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-5 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-6 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-7 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-8 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── hair-9 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ └── index.ts │ │ ├── no-selection.tsx │ │ ├── shoes │ │ │ ├── index.ts │ │ │ ├── shoe-1 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── shoe-2 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── shoe-3 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── shoe-4 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── shoe-5 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── shoe-6 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── shoe-7 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ ├── shoe-8 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ │ └── shoe-9 │ │ │ │ ├── index.ts │ │ │ │ ├── layer.tsx │ │ │ │ └── thumb.tsx │ │ ├── skin │ │ │ └── index.ts │ │ └── tops │ │ │ ├── hoodie │ │ │ ├── colors.ts │ │ │ ├── index.tsx │ │ │ ├── layer.tsx │ │ │ └── thumb.tsx │ │ │ ├── index.ts │ │ │ ├── jacket │ │ │ ├── colors.ts │ │ │ ├── index.tsx │ │ │ ├── layer.tsx │ │ │ └── thumb.tsx │ │ │ ├── shirt │ │ │ ├── colors.ts │ │ │ ├── index.tsx │ │ │ ├── layer.tsx │ │ │ └── thumb.tsx │ │ │ └── t-shirt │ │ │ ├── colors.ts │ │ │ ├── index.tsx │ │ │ ├── layer.tsx │ │ │ └── thumb.tsx │ ├── CharacterRandomizer │ │ ├── character-looks.ts │ │ ├── index.tsx │ │ └── styles.js │ ├── CompanySizeRange │ │ ├── index.tsx │ │ └── styles.ts │ ├── DropdownSelect │ │ ├── arrow-down.svg │ │ ├── index.tsx │ │ └── styles.ts │ ├── HorizontalScroller │ │ ├── index.tsx │ │ └── styles.js │ ├── IdleCountdown │ │ ├── index.tsx │ │ └── styles.js │ ├── Logo │ │ ├── index.tsx │ │ ├── logo.svg │ │ └── styles.js │ ├── OptionPanels │ │ ├── accessories-panel.tsx │ │ ├── body-panel.tsx │ │ ├── bottom-panel.tsx │ │ ├── index.tsx │ │ ├── styles.js │ │ └── top-panel.tsx │ ├── Progress │ │ ├── index.tsx │ │ └── styles.js │ ├── Selectables │ │ ├── option-color-selectable.tsx │ │ ├── option-style-selectable.tsx │ │ └── styles.ts │ ├── StartOver │ │ ├── index.tsx │ │ └── styles.js │ ├── StatGrader │ │ ├── index.tsx │ │ └── styles.ts │ ├── StatPanels │ │ ├── checkmark.tsx │ │ ├── choose-stats.tsx │ │ ├── distribute-points.tsx │ │ ├── evaluate-arrow.tsx │ │ ├── index.tsx │ │ ├── stat-options.ts │ │ └── styles.ts │ ├── Stepper │ │ ├── NextButton.tsx │ │ ├── PrevButton.tsx │ │ ├── StepperFooter.tsx │ │ ├── arrow-back.svg │ │ ├── index.tsx │ │ └── styles.ts │ └── TabSwitcher │ │ └── index.tsx ├── fonts │ └── Silkscreen │ │ ├── Silkscreen.eot │ │ ├── Silkscreen.ttf │ │ ├── Silkscreen.woff │ │ └── Silkscreen.woff2 ├── graphics │ ├── BG_default.svg │ ├── background.svg │ ├── briefcase.svg │ ├── floorlight.tsx │ ├── floppy.svg │ ├── lightbeam.tsx │ ├── lightbulb.svg │ ├── lightning-bolt.svg │ ├── logo.svg │ └── spotlight.svg ├── hooks │ ├── use-click-outside.tsx │ ├── use-interval.ts │ └── use-tab-indicator.tsx ├── icons │ ├── cursor-click.png │ ├── cursor.png │ └── trashcan.svg ├── index.css ├── index.tsx ├── interfaces │ ├── Colors.ts │ ├── IAction.ts │ ├── IBasicInfo.ts │ ├── ICharacter.ts │ ├── IStats.ts │ ├── IStoreState.ts │ └── IUiState.ts ├── react-app-env.d.ts ├── redux │ ├── character │ │ ├── character.actions.ts │ │ ├── character.reducer.ts │ │ ├── character.types.ts │ │ └── index.ts │ ├── createAction.ts │ ├── index.ts │ ├── info │ │ ├── index.ts │ │ ├── info.actions.ts │ │ ├── info.reducer.ts │ │ └── info.types.ts │ ├── stats │ │ ├── index.ts │ │ ├── stats.actions.ts │ │ ├── stats.reducer.ts │ │ └── stats.types.ts │ └── ui │ │ ├── index.ts │ │ ├── ui.actions.ts │ │ ├── ui.reducer.ts │ │ └── ui.types.ts ├── serviceWorker.ts ├── utils │ ├── config.ts │ ├── event-emitter.ts │ ├── format-character-data.ts │ ├── selection-utils.ts │ └── style-utils.ts └── views │ ├── BasicInfo │ ├── index.tsx │ └── styles.js │ ├── Character │ └── index.tsx │ ├── Configurator │ ├── BG_character.svg │ ├── index.tsx │ └── styles.js │ ├── EndScreen │ ├── arrow-down.tsx │ ├── index.tsx │ └── styles.ts │ ├── GameOver │ ├── index.tsx │ ├── styles.ts │ └── title.tsx │ ├── IdleScreen │ ├── index.tsx │ └── styles.js │ ├── Start │ ├── index.tsx │ └── styles.js │ └── Stats │ ├── index.tsx │ └── styles.ts ├── tests ├── Test.README.md └── playwright.spec.ts ├── tsconfig.json └── tsconfig.paths.json /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/library-scripts/node-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.devcontainer/library-scripts/node-debian.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/azure-static-web-apps-purple-mushroom-0656edc10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.github/workflows/azure-static-web-apps-purple-mushroom-0656edc10.yml -------------------------------------------------------------------------------- /.github/workflows/playwright-latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.github/workflows/playwright-latest.yml -------------------------------------------------------------------------------- /.github/workflows/playwright-onDemand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.github/workflows/playwright-onDemand.yml -------------------------------------------------------------------------------- /.github/workflows/playwright-scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.github/workflows/playwright-scheduled.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/README.md -------------------------------------------------------------------------------- /api/.funcignore: -------------------------------------------------------------------------------- 1 | *.js.map 2 | *.ts 3 | .git* 4 | .vscode 5 | local.settings.json 6 | test -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/.vscode/extensions.json -------------------------------------------------------------------------------- /api/get-character/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/get-character/function.json -------------------------------------------------------------------------------- /api/get-character/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/get-character/index.ts -------------------------------------------------------------------------------- /api/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/host.json -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/package.json -------------------------------------------------------------------------------- /api/save-character/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/save-character/function.json -------------------------------------------------------------------------------- /api/save-character/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/save-character/index.ts -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/config-overrides.js -------------------------------------------------------------------------------- /docs/action.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/docs/action.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/android-icon-144x144.png -------------------------------------------------------------------------------- /public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/android-icon-192x192.png -------------------------------------------------------------------------------- /public/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/android-icon-36x36.png -------------------------------------------------------------------------------- /public/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/android-icon-48x48.png -------------------------------------------------------------------------------- /public/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/android-icon-72x72.png -------------------------------------------------------------------------------- /public/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/android-icon-96x96.png -------------------------------------------------------------------------------- /public/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/apple-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/public/staticwebapp.config.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Character/base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/base.tsx -------------------------------------------------------------------------------- /src/components/Character/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/index.tsx -------------------------------------------------------------------------------- /src/components/Character/layers/accessories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/layers/accessories.tsx -------------------------------------------------------------------------------- /src/components/Character/layers/bottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/layers/bottom.tsx -------------------------------------------------------------------------------- /src/components/Character/layers/eyewear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/layers/eyewear.tsx -------------------------------------------------------------------------------- /src/components/Character/layers/facial-hair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/layers/facial-hair.tsx -------------------------------------------------------------------------------- /src/components/Character/layers/hair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/layers/hair.tsx -------------------------------------------------------------------------------- /src/components/Character/layers/shoes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/layers/shoes.tsx -------------------------------------------------------------------------------- /src/components/Character/layers/top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/layers/top.tsx -------------------------------------------------------------------------------- /src/components/Character/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Character/styles.js -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/apple/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/apple/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/apple/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/apple/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/apple/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/apple/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/art/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/art/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/art/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/art/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/art/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/art/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/backpack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/backpack/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/backpack/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/backpack/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/backpack/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/backpack/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/bag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/bag/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/bag/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/bag/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/bag/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/bag/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/branch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/branch/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/branch/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/branch/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/branch/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/branch/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/briefcase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/briefcase/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/briefcase/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/briefcase/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/briefcase/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/briefcase/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/burger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/burger/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/burger/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/burger/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/burger/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/burger/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/camera/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/camera/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/camera/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/camera/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/camera/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/camera/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/crab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/crab/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/crab/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/crab/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/crab/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/crab/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/docker-whale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/docker-whale/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/docker-whale/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/docker-whale/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/docker-whale/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/docker-whale/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/keyboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/keyboard/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/keyboard/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/keyboard/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/keyboard/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/keyboard/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/laptop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/laptop/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/laptop/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/laptop/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/laptop/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/laptop/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/linux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/linux/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/linux/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/linux/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/linux/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/linux/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/magnifier/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/magnifier/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/magnifier/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/magnifier/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/magnifier/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/magnifier/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/money/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/money/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/money/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/money/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/money/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/money/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/mug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/mug/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/mug/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/mug/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/mug/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/mug/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/parrot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/parrot/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/parrot/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/parrot/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/parrot/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/parrot/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/pepsi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/pepsi/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/pepsi/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/pepsi/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/pepsi/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/pepsi/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/radio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/radio/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/radio/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/radio/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/radio/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/radio/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/ramen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/ramen/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/ramen/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/ramen/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/ramen/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/ramen/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/ruby/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/ruby/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/ruby/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/ruby/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/ruby/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/ruby/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/satellite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/satellite/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/satellite/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/satellite/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/satellite/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/satellite/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/skateboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/skateboard/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/skateboard/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/skateboard/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/skateboard/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/skateboard/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/stetoscope/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/stetoscope/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/stetoscope/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/stetoscope/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/stetoscope/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/stetoscope/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/suitcase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/suitcase/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/suitcase/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/suitcase/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/suitcase/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/suitcase/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/tennis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/tennis/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/tennis/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/tennis/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/tennis/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/tennis/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/tie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/tie/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/tie/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/tie/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/tie/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/tie/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/wheel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/wheel/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/wheel/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/wheel/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/accessories/wheel/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/accessories/wheel/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/bathrobe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/bathrobe/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/bathrobe/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/bathrobe/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/bathrobe/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/bathrobe/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/dress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/dress/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/dress/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/dress/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/dress/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/dress/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/kilt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/kilt/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/kilt/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/kilt/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/kilt/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/kilt/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/maxi-skirt/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/maxi-skirt/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/maxi-skirt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/maxi-skirt/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/maxi-skirt/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/maxi-skirt/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/maxi-skirt/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/maxi-skirt/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/mini-skirt/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/mini-skirt/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/mini-skirt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/mini-skirt/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/mini-skirt/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/mini-skirt/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/mini-skirt/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/mini-skirt/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/pants/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/pants/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/pants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/pants/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/pants/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/pants/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/pants/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/pants/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/prosthetic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/prosthetic/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/prosthetic/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/prosthetic/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/bottoms/prosthetic/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/bottoms/prosthetic/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-1/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-1/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-1/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-1/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-1/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-2/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-2/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-2/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-2/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-2/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-3/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-3/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-3/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-3/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-3/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-4/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-4/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-4/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-4/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-4/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-4/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-5/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-5/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-5/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-5/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-5/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-5/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-6/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-6/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-6/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-6/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/eyewear-6/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/eyewear-6/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/eyewear/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/eyewear/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-1/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-1/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-1/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-1/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-1/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-2/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-2/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-2/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-2/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-2/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-3/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-3/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-3/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-3/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-3/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-4/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-4/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-4/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-4/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-4/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-4/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-5/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-5/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-5/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-5/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/facial-hair-5/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/facial-hair-5/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/facial-hair/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/facial-hair/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-1/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-1/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-1/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-1/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-1/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-10/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-10/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-10/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-10/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-10/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-10/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-11/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-11/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-11/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-11/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-11/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-11/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-12/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-12/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-12/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-12/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-12/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-12/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-13/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-13/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-13/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-13/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-13/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-13/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-2/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-2/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-2/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-2/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-2/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-3/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-3/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-3/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-3/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-3/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-4/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-4/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-4/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-4/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-4/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-4/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-5/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-5/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-5/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-5/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-5/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-5/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-6/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-6/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-6/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-6/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-6/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-6/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-7/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-7/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-7/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-7/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-7/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-7/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-8/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-8/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-8/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-8/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-8/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-8/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-9/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-9/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-9/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-9/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/hair-9/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/hair-9/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/hair/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/hair/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/no-selection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/no-selection.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-1/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-1/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-1/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-1/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-1/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-2/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-2/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-2/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-2/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-2/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-3/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-3/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-3/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-3/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-3/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-4/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-4/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-4/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-4/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-4/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-4/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-5/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-5/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-5/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-5/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-5/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-5/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-6/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-6/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-6/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-6/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-6/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-6/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-7/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-7/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-7/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-7/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-7/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-7/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-8/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-8/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-8/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-8/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-8/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-8/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-9/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-9/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-9/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-9/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/shoes/shoe-9/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/shoes/shoe-9/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/skin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/skin/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/hoodie/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/hoodie/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/hoodie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/hoodie/index.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/hoodie/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/hoodie/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/hoodie/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/hoodie/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/index.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/jacket/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/jacket/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/jacket/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/jacket/index.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/jacket/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/jacket/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/jacket/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/jacket/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/shirt/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/shirt/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/shirt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/shirt/index.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/shirt/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/shirt/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/shirt/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/shirt/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/t-shirt/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/t-shirt/colors.ts -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/t-shirt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/t-shirt/index.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/t-shirt/layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/t-shirt/layer.tsx -------------------------------------------------------------------------------- /src/components/CharacterOptions/tops/t-shirt/thumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterOptions/tops/t-shirt/thumb.tsx -------------------------------------------------------------------------------- /src/components/CharacterRandomizer/character-looks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterRandomizer/character-looks.ts -------------------------------------------------------------------------------- /src/components/CharacterRandomizer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterRandomizer/index.tsx -------------------------------------------------------------------------------- /src/components/CharacterRandomizer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CharacterRandomizer/styles.js -------------------------------------------------------------------------------- /src/components/CompanySizeRange/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CompanySizeRange/index.tsx -------------------------------------------------------------------------------- /src/components/CompanySizeRange/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/CompanySizeRange/styles.ts -------------------------------------------------------------------------------- /src/components/DropdownSelect/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/DropdownSelect/arrow-down.svg -------------------------------------------------------------------------------- /src/components/DropdownSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/DropdownSelect/index.tsx -------------------------------------------------------------------------------- /src/components/DropdownSelect/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/DropdownSelect/styles.ts -------------------------------------------------------------------------------- /src/components/HorizontalScroller/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/HorizontalScroller/index.tsx -------------------------------------------------------------------------------- /src/components/HorizontalScroller/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/HorizontalScroller/styles.js -------------------------------------------------------------------------------- /src/components/IdleCountdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/IdleCountdown/index.tsx -------------------------------------------------------------------------------- /src/components/IdleCountdown/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/IdleCountdown/styles.js -------------------------------------------------------------------------------- /src/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/components/Logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Logo/logo.svg -------------------------------------------------------------------------------- /src/components/Logo/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Logo/styles.js -------------------------------------------------------------------------------- /src/components/OptionPanels/accessories-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/OptionPanels/accessories-panel.tsx -------------------------------------------------------------------------------- /src/components/OptionPanels/body-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/OptionPanels/body-panel.tsx -------------------------------------------------------------------------------- /src/components/OptionPanels/bottom-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/OptionPanels/bottom-panel.tsx -------------------------------------------------------------------------------- /src/components/OptionPanels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/OptionPanels/index.tsx -------------------------------------------------------------------------------- /src/components/OptionPanels/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/OptionPanels/styles.js -------------------------------------------------------------------------------- /src/components/OptionPanels/top-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/OptionPanels/top-panel.tsx -------------------------------------------------------------------------------- /src/components/Progress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Progress/index.tsx -------------------------------------------------------------------------------- /src/components/Progress/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Progress/styles.js -------------------------------------------------------------------------------- /src/components/Selectables/option-color-selectable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Selectables/option-color-selectable.tsx -------------------------------------------------------------------------------- /src/components/Selectables/option-style-selectable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Selectables/option-style-selectable.tsx -------------------------------------------------------------------------------- /src/components/Selectables/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Selectables/styles.ts -------------------------------------------------------------------------------- /src/components/StartOver/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StartOver/index.tsx -------------------------------------------------------------------------------- /src/components/StartOver/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StartOver/styles.js -------------------------------------------------------------------------------- /src/components/StatGrader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatGrader/index.tsx -------------------------------------------------------------------------------- /src/components/StatGrader/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatGrader/styles.ts -------------------------------------------------------------------------------- /src/components/StatPanels/checkmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatPanels/checkmark.tsx -------------------------------------------------------------------------------- /src/components/StatPanels/choose-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatPanels/choose-stats.tsx -------------------------------------------------------------------------------- /src/components/StatPanels/distribute-points.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatPanels/distribute-points.tsx -------------------------------------------------------------------------------- /src/components/StatPanels/evaluate-arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatPanels/evaluate-arrow.tsx -------------------------------------------------------------------------------- /src/components/StatPanels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatPanels/index.tsx -------------------------------------------------------------------------------- /src/components/StatPanels/stat-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatPanels/stat-options.ts -------------------------------------------------------------------------------- /src/components/StatPanels/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/StatPanels/styles.ts -------------------------------------------------------------------------------- /src/components/Stepper/NextButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Stepper/NextButton.tsx -------------------------------------------------------------------------------- /src/components/Stepper/PrevButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Stepper/PrevButton.tsx -------------------------------------------------------------------------------- /src/components/Stepper/StepperFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Stepper/StepperFooter.tsx -------------------------------------------------------------------------------- /src/components/Stepper/arrow-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Stepper/arrow-back.svg -------------------------------------------------------------------------------- /src/components/Stepper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Stepper/index.tsx -------------------------------------------------------------------------------- /src/components/Stepper/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/Stepper/styles.ts -------------------------------------------------------------------------------- /src/components/TabSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/components/TabSwitcher/index.tsx -------------------------------------------------------------------------------- /src/fonts/Silkscreen/Silkscreen.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/fonts/Silkscreen/Silkscreen.eot -------------------------------------------------------------------------------- /src/fonts/Silkscreen/Silkscreen.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/fonts/Silkscreen/Silkscreen.ttf -------------------------------------------------------------------------------- /src/fonts/Silkscreen/Silkscreen.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/fonts/Silkscreen/Silkscreen.woff -------------------------------------------------------------------------------- /src/fonts/Silkscreen/Silkscreen.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/fonts/Silkscreen/Silkscreen.woff2 -------------------------------------------------------------------------------- /src/graphics/BG_default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/BG_default.svg -------------------------------------------------------------------------------- /src/graphics/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/background.svg -------------------------------------------------------------------------------- /src/graphics/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/briefcase.svg -------------------------------------------------------------------------------- /src/graphics/floorlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/floorlight.tsx -------------------------------------------------------------------------------- /src/graphics/floppy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/floppy.svg -------------------------------------------------------------------------------- /src/graphics/lightbeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/lightbeam.tsx -------------------------------------------------------------------------------- /src/graphics/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/lightbulb.svg -------------------------------------------------------------------------------- /src/graphics/lightning-bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/lightning-bolt.svg -------------------------------------------------------------------------------- /src/graphics/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/logo.svg -------------------------------------------------------------------------------- /src/graphics/spotlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/graphics/spotlight.svg -------------------------------------------------------------------------------- /src/hooks/use-click-outside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/hooks/use-click-outside.tsx -------------------------------------------------------------------------------- /src/hooks/use-interval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/hooks/use-interval.ts -------------------------------------------------------------------------------- /src/hooks/use-tab-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/hooks/use-tab-indicator.tsx -------------------------------------------------------------------------------- /src/icons/cursor-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/icons/cursor-click.png -------------------------------------------------------------------------------- /src/icons/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/icons/cursor.png -------------------------------------------------------------------------------- /src/icons/trashcan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/icons/trashcan.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/interfaces/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/interfaces/Colors.ts -------------------------------------------------------------------------------- /src/interfaces/IAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/interfaces/IAction.ts -------------------------------------------------------------------------------- /src/interfaces/IBasicInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/interfaces/IBasicInfo.ts -------------------------------------------------------------------------------- /src/interfaces/ICharacter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/interfaces/ICharacter.ts -------------------------------------------------------------------------------- /src/interfaces/IStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/interfaces/IStats.ts -------------------------------------------------------------------------------- /src/interfaces/IStoreState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/interfaces/IStoreState.ts -------------------------------------------------------------------------------- /src/interfaces/IUiState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/interfaces/IUiState.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/redux/character/character.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/character/character.actions.ts -------------------------------------------------------------------------------- /src/redux/character/character.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/character/character.reducer.ts -------------------------------------------------------------------------------- /src/redux/character/character.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/character/character.types.ts -------------------------------------------------------------------------------- /src/redux/character/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/character/index.ts -------------------------------------------------------------------------------- /src/redux/createAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/createAction.ts -------------------------------------------------------------------------------- /src/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/index.ts -------------------------------------------------------------------------------- /src/redux/info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/info/index.ts -------------------------------------------------------------------------------- /src/redux/info/info.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/info/info.actions.ts -------------------------------------------------------------------------------- /src/redux/info/info.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/info/info.reducer.ts -------------------------------------------------------------------------------- /src/redux/info/info.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/info/info.types.ts -------------------------------------------------------------------------------- /src/redux/stats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/stats/index.ts -------------------------------------------------------------------------------- /src/redux/stats/stats.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/stats/stats.actions.ts -------------------------------------------------------------------------------- /src/redux/stats/stats.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/stats/stats.reducer.ts -------------------------------------------------------------------------------- /src/redux/stats/stats.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/stats/stats.types.ts -------------------------------------------------------------------------------- /src/redux/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/ui/index.ts -------------------------------------------------------------------------------- /src/redux/ui/ui.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/ui/ui.actions.ts -------------------------------------------------------------------------------- /src/redux/ui/ui.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/ui/ui.reducer.ts -------------------------------------------------------------------------------- /src/redux/ui/ui.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/redux/ui/ui.types.ts -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/event-emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/utils/event-emitter.ts -------------------------------------------------------------------------------- /src/utils/format-character-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/utils/format-character-data.ts -------------------------------------------------------------------------------- /src/utils/selection-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/utils/selection-utils.ts -------------------------------------------------------------------------------- /src/utils/style-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/utils/style-utils.ts -------------------------------------------------------------------------------- /src/views/BasicInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/BasicInfo/index.tsx -------------------------------------------------------------------------------- /src/views/BasicInfo/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/BasicInfo/styles.js -------------------------------------------------------------------------------- /src/views/Character/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/Character/index.tsx -------------------------------------------------------------------------------- /src/views/Configurator/BG_character.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/Configurator/BG_character.svg -------------------------------------------------------------------------------- /src/views/Configurator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/Configurator/index.tsx -------------------------------------------------------------------------------- /src/views/Configurator/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/Configurator/styles.js -------------------------------------------------------------------------------- /src/views/EndScreen/arrow-down.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/EndScreen/arrow-down.tsx -------------------------------------------------------------------------------- /src/views/EndScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/EndScreen/index.tsx -------------------------------------------------------------------------------- /src/views/EndScreen/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/EndScreen/styles.ts -------------------------------------------------------------------------------- /src/views/GameOver/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/GameOver/index.tsx -------------------------------------------------------------------------------- /src/views/GameOver/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/GameOver/styles.ts -------------------------------------------------------------------------------- /src/views/GameOver/title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/GameOver/title.tsx -------------------------------------------------------------------------------- /src/views/IdleScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/IdleScreen/index.tsx -------------------------------------------------------------------------------- /src/views/IdleScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/IdleScreen/styles.js -------------------------------------------------------------------------------- /src/views/Start/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/Start/index.tsx -------------------------------------------------------------------------------- /src/views/Start/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/Start/styles.js -------------------------------------------------------------------------------- /src/views/Stats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/Stats/index.tsx -------------------------------------------------------------------------------- /src/views/Stats/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/src/views/Stats/styles.ts -------------------------------------------------------------------------------- /tests/Test.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/tests/Test.README.md -------------------------------------------------------------------------------- /tests/playwright.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/tests/playwright.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticwebdev/StartupAdventurer/HEAD/tsconfig.paths.json --------------------------------------------------------------------------------