├── .gitignore ├── README.md ├── debug.log ├── frontend ├── .gitignore ├── README.md ├── components │ ├── Inventory.tsx │ ├── Turtle.tsx │ ├── TurtleSwitcher.tsx │ └── World.tsx ├── next-env.d.ts ├── package.json ├── pages │ ├── _app.tsx │ ├── _document.tsx │ └── index.tsx ├── public │ ├── otherturtle.blend │ ├── otherturtle.glb │ ├── otheruv.png │ ├── turtle.blend │ ├── turtle.glb │ └── uv.png ├── src │ └── theme.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── patches └── carlo+0.9.46.patch ├── src ├── index.ts ├── turtle.ts └── world.ts ├── tsconfig.json ├── tslint.json ├── turtle └── startup.lua ├── world.json ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/README.md -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/debug.log -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/components/Inventory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/components/Inventory.tsx -------------------------------------------------------------------------------- /frontend/components/Turtle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/components/Turtle.tsx -------------------------------------------------------------------------------- /frontend/components/TurtleSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/components/TurtleSwitcher.tsx -------------------------------------------------------------------------------- /frontend/components/World.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/components/World.tsx -------------------------------------------------------------------------------- /frontend/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/next-env.d.ts -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/pages/_app.tsx -------------------------------------------------------------------------------- /frontend/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/pages/_document.tsx -------------------------------------------------------------------------------- /frontend/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/pages/index.tsx -------------------------------------------------------------------------------- /frontend/public/otherturtle.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/public/otherturtle.blend -------------------------------------------------------------------------------- /frontend/public/otherturtle.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/public/otherturtle.glb -------------------------------------------------------------------------------- /frontend/public/otheruv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/public/otheruv.png -------------------------------------------------------------------------------- /frontend/public/turtle.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/public/turtle.blend -------------------------------------------------------------------------------- /frontend/public/turtle.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/public/turtle.glb -------------------------------------------------------------------------------- /frontend/public/uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/public/uv.png -------------------------------------------------------------------------------- /frontend/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/src/theme.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/package.json -------------------------------------------------------------------------------- /patches/carlo+0.9.46.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/patches/carlo+0.9.46.patch -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/turtle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/src/turtle.ts -------------------------------------------------------------------------------- /src/world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/src/world.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint:latest" 3 | } 4 | -------------------------------------------------------------------------------- /turtle/startup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/turtle/startup.lua -------------------------------------------------------------------------------- /world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/world.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomated/turtle-gambit/HEAD/yarn.lock --------------------------------------------------------------------------------