├── .env.example ├── .gitattributes ├── .github ├── config.yml └── workflows │ ├── codeql-analysis.yml │ └── codespell.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── chinese └── great-wall │ ├── 0 │ ├── 0.md │ ├── 1-1A.md │ ├── 1.md │ ├── 2.md │ ├── 3-1A.md │ ├── 3-1B.md │ ├── 3-1C.md │ ├── 3-1D.md │ ├── 3.md │ └── 4.md │ ├── 1 │ ├── 0.md │ └── 1.md │ ├── 14 │ ├── 0.md │ └── 1.md │ └── begin-journey.md ├── english ├── covid-19 │ ├── 0 │ │ ├── 0-B.md │ │ ├── 0-BB.md │ │ ├── 0-BBA.md │ │ ├── 0-C.md │ │ ├── 0-CA.md │ │ ├── 0-CC.md │ │ ├── 0-CD.md │ │ ├── 0-D.md │ │ ├── 0-DA.md │ │ ├── 0-DB.md │ │ ├── 0-DD.md │ │ ├── 0-DDA.md │ │ └── 0.md │ ├── 1 │ │ ├── 1-A.md │ │ ├── 1-B.md │ │ ├── 1-C.md │ │ ├── 1-CB.md │ │ ├── 1-D.md │ │ ├── 1-DB.md │ │ └── 1.md │ ├── 2 │ │ ├── 2-A.md │ │ ├── 2-B.md │ │ ├── 2-BA.md │ │ ├── 2-BB.md │ │ ├── 2-BBC.md │ │ └── 2.md │ ├── 3 │ │ ├── 3-A.md │ │ ├── 3-AA.md │ │ ├── 3-AB.md │ │ ├── 3-C.md │ │ ├── 3-CA.md │ │ ├── 3-CAA.md │ │ ├── 3-CB.md │ │ └── 3.md │ ├── 4 │ │ └── 4.md │ ├── WIP.md │ ├── begin-journey.md │ ├── decision_tree.excalidraw │ └── decision_tree.png ├── mines-of-moria │ ├── 0 │ │ └── 0.md │ ├── 1 │ │ └── 1.md │ ├── 2 │ │ └── 2.md │ ├── 3 │ │ └── 3.md │ ├── 4 │ │ └── 4.md │ ├── 5 │ │ └── 5.md │ ├── 10 │ │ └── 10.md │ ├── 11 │ │ └── 11.md │ ├── 12 │ │ └── 12.md │ ├── 13 │ │ └── 13.md │ ├── 14 │ │ └── 14.md │ ├── 15 │ │ └── 15.md │ ├── 16 │ │ └── 16.md │ ├── 17 │ │ └── 17.md │ ├── 18 │ │ └── 18.md │ ├── 19 │ │ └── 19.md │ ├── 20 │ │ └── 20.md │ ├── 21 │ │ └── 21.md │ ├── 22 │ │ └── 22.md │ ├── 23 │ │ └── 23.md │ ├── 24 │ │ └── 24.md │ ├── 25 │ │ └── 25.md │ ├── 26 │ │ └── 26.md │ ├── 27 │ │ └── 27.md │ └── begin-journey.md ├── normal-dungeon │ ├── 0 │ │ ├── 0-1A.md │ │ ├── 0-1AA.md │ │ ├── 0-1AAA.md │ │ ├── 0-1B.md │ │ ├── 0.md │ │ ├── 1-1A.md │ │ ├── 1-1B.md │ │ ├── 1-1BA.md │ │ ├── 1-1BB.md │ │ ├── 1-1BC.md │ │ ├── 1-1C.md │ │ ├── 1-1CA.md │ │ ├── 1-1CB.md │ │ ├── 1-1D.md │ │ ├── 1-1DA.md │ │ ├── 1-1DB.md │ │ └── 1-1DC.md │ ├── 1 │ │ ├── 1-1.md │ │ ├── 1-1A.md │ │ ├── 1.md │ │ ├── 2-1A.md │ │ ├── 2-1B.md │ │ ├── 2-1C.md │ │ ├── 2-1D.md │ │ ├── 2.md │ │ ├── 3-1.md │ │ ├── 3-2.md │ │ ├── 3-3.md │ │ ├── 3-4.md │ │ ├── 3.md │ │ └── 4.md │ ├── 2 │ │ ├── 1-A.md │ │ ├── 1.md │ │ ├── 2.md │ │ ├── 3-A.md │ │ ├── 3-B.md │ │ ├── 3-C.md │ │ ├── 3-D.md │ │ └── 3.md │ ├── 3 │ │ ├── 1-1A.md │ │ ├── 1.md │ │ ├── 2-2.md │ │ ├── 2.md │ │ ├── 3-1.md │ │ ├── 3.md │ │ ├── 4-1.md │ │ └── 4.md │ ├── 4 │ │ ├── 0.md │ │ ├── 1-A.md │ │ ├── 1.md │ │ ├── 2.md │ │ ├── 3-A.md │ │ ├── 3-B.md │ │ ├── 3-C.md │ │ ├── 3.md │ │ └── 4.md │ ├── 5 │ │ ├── 1-A.md │ │ ├── 1-B.md │ │ ├── 1.md │ │ ├── 2.md │ │ ├── 3.md │ │ ├── 4.md │ │ └── 5.md │ ├── 6 │ │ ├── 1.md │ │ ├── 2.md │ │ ├── 3.md │ │ ├── 4.md │ │ ├── 5.md │ │ ├── 5A.md │ │ ├── 5AA.md │ │ ├── 5AAA.md │ │ ├── 5B.md │ │ ├── 5BB.md │ │ ├── 6.md │ │ ├── 7.md │ │ └── 8.md │ ├── 7 │ │ ├── 0.md │ │ ├── 1-A.md │ │ ├── 1-B.md │ │ ├── 1-BA.md │ │ ├── 1-BAB.md │ │ ├── 1-BB.md │ │ ├── 1-BBA.md │ │ ├── 1-BBC.md │ │ ├── 1-BBCA.md │ │ ├── 1-BBCB.md │ │ ├── 1-BC.md │ │ ├── 1-BCA.md │ │ ├── 1-C.md │ │ ├── 1-CA.md │ │ ├── 1.md │ │ └── 2.md │ ├── 9 │ │ ├── 0.md │ │ ├── 1.md │ │ ├── 2.md │ │ ├── 3-A.md │ │ ├── 3-B.md │ │ ├── 3-C.md │ │ ├── 3-CA.md │ │ ├── 3-CB.md │ │ ├── 3-D.md │ │ ├── 3-DA.md │ │ ├── 4-A.md │ │ ├── 4-B.md │ │ ├── 4.md │ │ ├── 5-A.md │ │ ├── 5-AB.md │ │ ├── 5-B.md │ │ ├── 5-C.md │ │ ├── 5-CA.md │ │ ├── 5-D.md │ │ ├── 5-DA.md │ │ ├── 6-A.md │ │ ├── 6-B.md │ │ ├── 6-C.md │ │ ├── 6-D.md │ │ ├── 6-D1.md │ │ ├── 6-DA.md │ │ ├── 6-DB.md │ │ ├── 6-E.md │ │ ├── 6-EA.md │ │ └── 6-F.md │ ├── begin-journey.md │ ├── decision_tree.excalidraw │ └── decision_tree.png ├── sci-fi-dungeon │ ├── 0 │ │ └── 0.md │ ├── 1 │ │ ├── 1-A.md │ │ ├── 1-A1.md │ │ ├── 1-A2.md │ │ ├── 1-A2X.md │ │ ├── 1-B.md │ │ ├── 1-B1.md │ │ ├── 1-B1A.md │ │ ├── 1-B1B.md │ │ ├── 1-B1BB.md │ │ ├── 1-C.md │ │ └── B1BX.md │ ├── WIP.md │ └── begin-journey.md └── time-travel │ ├── 0 │ ├── 0 │ │ └── 0.md │ ├── 1 │ │ └── 1.md │ ├── 2 │ │ ├── 2-1.md │ │ └── 2.md │ ├── 3 │ │ ├── 3-1.md │ │ └── 3.md │ ├── 4 │ │ ├── 4-1.md │ │ └── 4.md │ ├── 5 │ │ └── 5.md │ ├── 6 │ │ ├── 6-1.md │ │ ├── 6-1A.md │ │ ├── 6-2A.md │ │ ├── 6-2B.md │ │ └── 6.md │ ├── 7 │ │ ├── 7-1.md │ │ ├── 7-1A.md │ │ ├── 7-1B.md │ │ ├── 7-2.md │ │ ├── 7-2A.md │ │ ├── 7-2AA.md │ │ ├── 7-2AB.md │ │ ├── 7-2ABA.md │ │ ├── 7-3.md │ │ ├── 7-4.md │ │ └── 7.md │ ├── 8 │ │ ├── 8-1.md │ │ ├── 8-2.md │ │ ├── 8-2A.md │ │ ├── 8-2AA.md │ │ ├── 8-2AB.md │ │ ├── 8-2ABA.md │ │ ├── 8-2ABB.md │ │ ├── 8-2ABC.md │ │ ├── 8-2ABD.md │ │ ├── 8-2ABDA.md │ │ ├── 8-2ABE.md │ │ ├── 8-2AC.md │ │ ├── 8-2AD.md │ │ ├── 8-2ADA.md │ │ ├── 8-2AE.md │ │ ├── 8-2AEA.md │ │ ├── 8-2B.md │ │ ├── 8-2C.md │ │ ├── 8-2CB.md │ │ ├── 8-2CBA.md │ │ ├── 8-2CBB.md │ │ ├── 8-3.md │ │ ├── 8-3A.md │ │ ├── 8-4.md │ │ └── 8.md │ ├── 9 │ │ ├── 9-1.md │ │ ├── 9-1A.md │ │ ├── 9-1B.md │ │ ├── 9-1BA.md │ │ ├── 9-1BB.md │ │ ├── 9-1BC.md │ │ ├── 9-1BCB.md │ │ ├── 9-1BCC.md │ │ ├── 9-1BD.md │ │ ├── 9-2.md │ │ ├── 9-3.md │ │ ├── 9-3A.md │ │ ├── 9-3AA.md │ │ ├── 9-3AB.md │ │ ├── 9-3B.md │ │ ├── 9-4A.md │ │ ├── 9-4AA.md │ │ ├── 9-4AB.md │ │ ├── 9-4AC.md │ │ └── 9-4B.md │ ├── 10 │ │ ├── 10-1.md │ │ ├── 10-1A.md │ │ ├── 10-1B.md │ │ ├── 10-1BA.md │ │ ├── 10-2.md │ │ ├── 10-2A.md │ │ ├── 10-2B.md │ │ ├── 10-3.md │ │ ├── 10-3A.md │ │ └── 10-3B.md │ └── 1800-won.md │ ├── 1 │ ├── 0.md │ ├── 1.md │ └── 2.md │ ├── 2 │ ├── 0.md │ ├── 1.md │ ├── 2-A.md │ ├── 2-B.md │ ├── 2.md │ ├── 3-A.md │ ├── 3-B.md │ └── 3.md │ ├── begin-journey.md │ ├── decision_tree.excalidraw │ └── decision_tree.png ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── portuguese └── normal-dungeon │ ├── 0 │ ├── 0-1A.md │ ├── 0-1AA.md │ ├── 0-1AAA.md │ ├── 0-1B.md │ ├── 0.md │ ├── 1-1A.md │ ├── 1-1B.md │ ├── 1-1BA.md │ ├── 1-1BB.md │ ├── 1-1C.md │ ├── 1-1CA.md │ └── 1-1CB.md │ ├── 1 │ ├── 1-1.md │ ├── 1-1A.md │ ├── 1.md │ ├── 2-1A.md │ ├── 2-1B.md │ ├── 2-1C.md │ ├── 2-1D.md │ ├── 2.md │ ├── 3-1.md │ ├── 3-2.md │ ├── 3-3.md │ ├── 3-4.md │ ├── 3.md │ └── 4.md │ ├── 2 │ ├── 1-A.md │ ├── 1.md │ ├── 2.md │ ├── 3-A.md │ ├── 3-B.md │ ├── 3-C.md │ └── 3.md │ ├── 3 │ ├── 1-1A.md │ ├── 1.md │ ├── 2.md │ ├── 3-1.md │ ├── 3.md │ ├── 4-1.md │ └── 4.md │ ├── 4 │ ├── 0.md │ ├── 1-A.md │ ├── 1.md │ ├── 2.md │ ├── 3-A.md │ ├── 3-B.md │ ├── 3-C.md │ ├── 3.md │ └── 4.md │ ├── 5 │ ├── 1-A.md │ ├── 1-B.md │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ └── 5.md │ ├── 6 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ └── 4.md │ └── begin-journey.md ├── spanish └── normal-dungeon │ ├── 0 │ ├── 0-1A.md │ ├── 0-1AA.md │ ├── 0-1AAA.md │ ├── 0-1B.md │ ├── 0.md │ ├── 1-1A.md │ ├── 1-1B.md │ ├── 1-1BA.md │ ├── 1-1BB.md │ ├── 1-1BC.md │ ├── 1-1C.md │ ├── 1-1CA.md │ └── 1-1CB.md │ ├── 1 │ ├── 1-1.md │ ├── 1-1A.md │ ├── 1.md │ ├── 2-1A.md │ ├── 2-1B.md │ ├── 2-1C.md │ ├── 2-1D.md │ ├── 2.md │ ├── 3-1.md │ ├── 3-2.md │ ├── 3-3.md │ ├── 3-4.md │ ├── 3.md │ └── 4.md │ ├── 2 │ ├── 1-A.md │ ├── 1.md │ ├── 2.md │ ├── 3-A.md │ ├── 3-B.md │ ├── 3-C.md │ ├── 3-D.md │ └── 3.md │ ├── 3 │ ├── 1-1A.md │ ├── 1.md │ ├── 2-2.md │ ├── 2.md │ ├── 3-1.md │ ├── 3.md │ ├── 4-1.md │ └── 4.md │ ├── 4 │ ├── 0.md │ ├── 1-A.md │ ├── 1.md │ ├── 2.md │ ├── 3-A.md │ ├── 3-B.md │ ├── 3-C.md │ ├── 3.md │ └── 4.md │ ├── 5 │ ├── 1-A.md │ ├── 1-B.md │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ └── 5.md │ ├── 6 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ └── 4.md │ ├── 7 │ ├── 0.md │ ├── 1-A.md │ ├── 1-B.md │ ├── 1-BA.md │ ├── 1-BAB.md │ ├── 1-BB.md │ ├── 1-BBA.md │ ├── 1-BBC.md │ ├── 1-BBCA.md │ ├── 1-BBCB.md │ ├── 1-BC.md │ ├── 1-BCA.md │ ├── 1-C.md │ ├── 1-CA.md │ ├── 1.md │ └── 2.md │ ├── 9 │ ├── 0.md │ ├── 1.md │ ├── 2.md │ ├── 3-A.md │ ├── 3-B.md │ ├── 3-C.md │ ├── 3-CA.md │ ├── 3-CB.md │ ├── 3-D.md │ ├── 3-DA.md │ ├── 4-A.md │ ├── 4-B.md │ ├── 4.md │ ├── 5-A.md │ ├── 5-AB.md │ ├── 5-B.md │ ├── 5-C.md │ ├── 5-CA.md │ ├── 5-D.md │ ├── 5-DA.md │ ├── 6-A.md │ └── 6-B.md │ ├── begin-journey.md │ ├── decision_tree.excalidraw │ └── decision_tree.png ├── src ├── components │ ├── card-grid.jsx │ ├── copyright.jsx │ ├── hide-appbar.jsx │ ├── layout.jsx │ └── seo.jsx ├── data │ └── dungeon-info.json ├── pages │ ├── 404.jsx │ └── index.jsx ├── templates │ └── blog-post.jsx └── utils │ ├── styles.js │ └── typography.js ├── start-new-game.md ├── static └── images │ ├── covid-19.jpg │ ├── dungeon.jpg │ ├── great-wall.jpg │ ├── icon.png │ ├── mines-of-moria.jpg │ ├── scifi-dungeon.jpg │ └── time-travel.jpg ├── translations ├── README.ch.md ├── README.fr.md └── README.md └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | GATSBY_GITHUB_REPO_URL=https://github.com/MakeContributions/markdown-dungeon 2 | GATSBY_BASE_IMAGE_URL=../../images/ 3 | GATSBY_DEFAULT_IMAGE_NAME=dungeon.jpg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.md text 4 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | newIssueWelcomeComment: > 2 | Thanks for opening your first issue here! Be sure to follow the issue template! 3 | 4 | newPRWelcomeComment: > 5 | Thanks for opening this pull request! Please check out our contributing guidelines. 6 | 7 | firstPRMergeComment: | 8 | Congrats on merging your first pull request! We here at [MakeContributions](https://github.com/MakeContributions) are proud of you! 🎉🎉🎉🎉. 9 | You are invited to join the team on [Github](https://github.com/MakeContributions) and [Discord](https://discord.gg/ydWxdqbTyK). 10 | -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- 1 | name: codespell 2 | on: 3 | push: 4 | branches: [ master ] 5 | pull_request: 6 | branches: [ master ] 7 | jobs: 8 | codespell: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | - uses: actions/setup-python@v2 13 | - run: pip install codespell 14 | - run: codespell --ignore-words-list="" --quiet-level=2 --skip="yarn.lock,start-new-game.md,./spanish,./portuguese,./chinese,./translations/README.*.md" 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 MakeContributions 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /chinese/great-wall/0/0.md: -------------------------------------------------------------------------------- 1 | 你是一個小兵,今年中秋節,你的將軍叫你做一個任務,他想要拜節和送月餅給長城每一個關卡的將軍,你的任務是依序拜節和送月餅,你該怎麼做? 2 | 3 | [👌 接受](2.md) 4 | 5 | [🙅‍♂️ 拒絕](1.md) 6 | 7 | [👌→🍴 接受然後自己偷吃月餅](3.md) 8 | -------------------------------------------------------------------------------- /chinese/great-wall/0/1-1A.md: -------------------------------------------------------------------------------- 1 | 將軍: 「竟然不接受,那你回去吃自己吧」。 2 | 3 | **你失去了所有的東西。** 4 | 5 | [重新開始](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /chinese/great-wall/0/1.md: -------------------------------------------------------------------------------- 1 | 將軍聽了很生氣,你確定要拒絕? 2 | 3 | [是的](1-1A.md) 4 | 5 | [想了又想,還是接受好了](2.md) -------------------------------------------------------------------------------- /chinese/great-wall/0/2.md: -------------------------------------------------------------------------------- 1 | 將軍: 「既然你接受了,那我問你,你第一關要去哪裡?」 2 | 3 | [山海關](../1/0.md) 4 | 5 | [黃崖關](../14/0.md) 6 | 7 | [我哪知道 ⁉](4.md) 8 | -------------------------------------------------------------------------------- /chinese/great-wall/0/3-1A.md: -------------------------------------------------------------------------------- 1 | 將軍很生氣,**一刀砍死你了**。 2 | 3 | [重新開始](../begin-journey.md) 4 | -------------------------------------------------------------------------------- /chinese/great-wall/0/3-1B.md: -------------------------------------------------------------------------------- 1 | 將軍: 「偷吃就偷吃,還找藉口,既然你那麼喜歡吃,你就吃完所有的月餅吧」。 2 | 3 | **你被撐死了。** 4 | 5 | [重新開始](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /chinese/great-wall/0/3-1C.md: -------------------------------------------------------------------------------- 1 | 將軍: 「看起来不错。有啥口味?」。 2 | 3 | [莲蓉](3-1D.md) 4 | 5 | [豆沙](3-1D.md) 6 | -------------------------------------------------------------------------------- /chinese/great-wall/0/3-1D.md: -------------------------------------------------------------------------------- 1 | 將軍吃了一口觉得好难吃 :「这什么垃圾东西,去死吧 !」。 2 | 3 | **一刀砍死你了**。 4 | 5 | [重新開始](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /chinese/great-wall/0/3.md: -------------------------------------------------------------------------------- 1 | 你偷吃月餅被將軍發現了,你該怎麼做? 2 | 3 | [反正被發現了,繼續吃](3-1A.md) 4 | 5 | [和他說你肚子餓了](3-1B.md) 6 | 7 | [问将军要不要一起吃](3-1C.md) -------------------------------------------------------------------------------- /chinese/great-wall/0/4.md: -------------------------------------------------------------------------------- 1 | 將軍: 「回去問你地理老師吧。」 2 | 3 | **你失去了所有的東西。** 4 | 5 | [重新開始](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /chinese/great-wall/1/0.md: -------------------------------------------------------------------------------- 1 | # 山海關 「天下第一關」 2 | 拜好節,送好月餅,該去下一關了。 3 | 4 | [玉門關](1.md) 5 | 6 | [黃崖關](../14/1.md) -------------------------------------------------------------------------------- /chinese/great-wall/1/1.md: -------------------------------------------------------------------------------- 1 | 做人有始有終是好事,但不能沒有過程。 2 | 3 | [重新開始](../begin-journey.md) 4 | -------------------------------------------------------------------------------- /chinese/great-wall/14/0.md: -------------------------------------------------------------------------------- 1 | **Ooops....你選錯了** 2 | 3 | [重新開始](../begin-journey.md) 4 | -------------------------------------------------------------------------------- /chinese/great-wall/14/1.md: -------------------------------------------------------------------------------- 1 | 路還沒有蓋好,所以吃月餅吧。 2 | 3 | > 請幫忙蓋路。 4 | 5 | [貢獻指南](../../../README.md#contribution-guidelines) 6 | -------------------------------------------------------------------------------- /chinese/great-wall/begin-journey.md: -------------------------------------------------------------------------------- 1 | 你現在是一個小小兵,請不要選錯否則會被你的將軍砍頭或回家吃自己。 2 | 3 | [🤠開始](0/0.md) 4 | -------------------------------------------------------------------------------- /english/covid-19/0/0-B.md: -------------------------------------------------------------------------------- 1 | Hmmm. What a sleeper 😴! 2 | 3 | You took another nap which lasted one day ⏰! 4 | 5 | ❓ **You woke up again. What will you do? 🤷🏽‍♀️🤷🏽‍♂️** ❓ 6 | 7 | - [➡️ Go into dungeon](../1/1.md) 8 | - [🎲 Play some games](0-BB.md) 9 | - [📢 Cry for help](0-C.md) 10 | - [💪 Do some exercise](0-D.md) 11 | -------------------------------------------------------------------------------- /english/covid-19/0/0-BB.md: -------------------------------------------------------------------------------- 1 | ❓ **Great! Which game 🎲 will you play?** ❓ 2 | 3 | - [Rock, Paper, 🧻 Scissor ✂](0-BBA.md) 4 | 5 | - [Snake & Ladder](../WIP.md) 6 | 7 | - [🚫 Don't play & find a way out](../WIP.md) 8 | -------------------------------------------------------------------------------- /english/covid-19/0/0-BBA.md: -------------------------------------------------------------------------------- 1 | ❓ **Pick a *rock*, *paper*, or *scissors*?** ❓ 2 | 3 | - [🥊 Rock?](../WIP.md) 4 | - [📄 Paper?](../WIP.md) 5 | - [✂️ Scissors?](../WIP.md) 6 | -------------------------------------------------------------------------------- /english/covid-19/0/0-C.md: -------------------------------------------------------------------------------- 1 | You *cried* 😭 for help 📢 as *loud* as you can. 2 | 3 | But, seems like no one is around 🤷‍♂️. 4 | 5 | *You thought about your family* 👪 *and how they must be worried about you* 😟. 6 | 7 | ❓ ***What will you do?*** ❓ 8 | 9 | - [🚪 Find a way out](../WIP.md) 10 | - [🏛️ Check the dungeon](../1/1.md) 11 | - [😔 Spend the rest of your life in this underground](0-CC.md) 12 | - [💉 New hope](0-CD.md) 13 | -------------------------------------------------------------------------------- /english/covid-19/0/0-CA.md: -------------------------------------------------------------------------------- 1 | You looked around and found a door 🤔 that was not locked 🔓. 2 | 3 | Quickly, you broke the chain 💥⛓ with all your ⚡*power*⚡ and ran to the door 🚪. 4 | 5 | Hearing the sound, came the figures and they *chased* you. 🏃🏽‍♀️🏃🏽‍♂️ 6 | 7 | 🦸‍♀️ **But, this was your day.** 🦸‍♂️ 8 | 9 | You opened the door before the 👿 figures 👿 caught you and *shut it.* 🚪 10 | 11 | 12 | 13 | The dungeon is building, please help us contribute it. 🏗 14 | 15 | [Contribution Guidelines](../../../README.md#contribution-guidelines) 16 | -------------------------------------------------------------------------------- /english/covid-19/0/0-CC.md: -------------------------------------------------------------------------------- 1 | You took a painful decision. 💔 2 | 3 | You spent the rest of your life inside the underground. 🐀 🐁 4 | 5 | The first few days was OK, but then you became very much 🍝 *hungry* 🍝 and 💦 *thirsty* 💦. 6 | 7 | 💀💀💀 8 | 9 | *On day 5, you are dead ⚰️!* 10 | 11 | **THE END!** 12 | 13 | [▶ Restart the game](../begin-journey.md) 14 | -------------------------------------------------------------------------------- /english/covid-19/0/0-CD.md: -------------------------------------------------------------------------------- 1 | you wait for long time, 2 | New hope comes 💉 vaccine , 3 | everything becoming normal slowly you waits for your turn 4 | your turn come you get vaccinated 💉 5 | 6 | covid 🦠 is still there .... 7 | people still wear 😷 mask .... 8 | 9 | **CONTINUE!** 10 | [▶ Restart the game](../begin-journey.md) 11 | -------------------------------------------------------------------------------- /english/covid-19/0/0-D.md: -------------------------------------------------------------------------------- 1 | You did some *pushups* and your *muscles* 💪 are powerful now. 2 | 3 | - [🔋 Strengthen my muscles more](0-DA.md) 4 | - [⛓️ Break the chain with the power you acquired](0-DB.md) 5 | - [🎮 Play some games](0-BB.md) 6 | - [📚 Read some books](0-DD.md) -------------------------------------------------------------------------------- /english/covid-19/0/0-DA.md: -------------------------------------------------------------------------------- 1 | You try to exercise once more, but you are very much tired 😩. 2 | 3 | - [🛌 Take a long nap](0-B.md) 4 | - [🚪 Find a way out](../WIP.md) 5 | - [🏛 Go into dungeon](../1/1.md) 6 | -------------------------------------------------------------------------------- /english/covid-19/0/0-DB.md: -------------------------------------------------------------------------------- 1 | You try to break the chain with the power you acquired. 2 | 3 | 💥 Wow! It broke into pieces! 💥 4 | 5 | Hearing the sound, came the figures. 👥 6 | 7 | ❓ *What will you do?* ❓ 8 | 9 | - [⚔️ Fight them! ](../WIP.md) 10 | - [🏃 Run away!](../1/1-A.md) 11 | - [🗣 Ask who they are](../WIP.md) 12 | -------------------------------------------------------------------------------- /english/covid-19/0/0-DD.md: -------------------------------------------------------------------------------- 1 | **Great!** 2 | 3 | ❓ *Which book 📖 will you read?* ❓ 4 | 5 | - [📖 Harry Potter](../0/0-DDA.md) 6 | - [👥 The Invisible Man](../WIP.md) 7 | - [🏛 Go into dungeon](../1/1.md) 8 | -------------------------------------------------------------------------------- /english/covid-19/0/0-DDA.md: -------------------------------------------------------------------------------- 1 | *You've finished reading Harry Potter* 2 | **Then something magical happens when a sword, a hat and a magic eight ball appear in front of you** 3 | 4 | ❓ *Which item do you choose?* ❓ 5 | 6 | - [⚔Sword](../WIP.md) 7 | - [🎩Hat](../WIP.md) 8 | - [🎱Eight Ball](../WIP.md) -------------------------------------------------------------------------------- /english/covid-19/0/0.md: -------------------------------------------------------------------------------- 1 | Wake Up! 🕙🛌🏽 2 | 3 | You open your eyes 👁️ slowly and wonder where you are 😕. 4 | 5 | Your stomach rumbles with hunger 😣 and your whole body throbs with awful pain 🤕. 6 | 7 | Your leg is chained to a pole and in front of you lies a dark dungeon 🏛️. 8 | 9 | - [🗡️ Search for a weapon around you](../3/3.md) 10 | - [😴 Go back to sleep](0-B.md) 11 | - [📢 Cry for help](0-C.md) 12 | - [💪 Do some push ups](0-D.md) -------------------------------------------------------------------------------- /english/covid-19/1/1-A.md: -------------------------------------------------------------------------------- 1 | **Too late!🕔** 2 | 3 | The chain ⛓️ in your leg stops you from escaping and the figures 😈 enjoy the tasty meal they got that day 😋. 4 | 5 | THE END! 🎬 6 | 7 | [🔄 Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/covid-19/1/1-B.md: -------------------------------------------------------------------------------- 1 | *The memories of your loved ones ❤️ flashed through 2 | your brain 🧠 and your eyes are flooded with tears 😢.* 3 | 4 | You close your eyes 👁️ slowly as the sphere-shaped figures 😈 approach you. 5 | 6 | Waiting for a fast death, you prayed 🙏🏻. 7 | 8 | The figures opened your mouth 😮 and entered inside. You *suffocated*, *coughed*, *sneezed* and your whole body *pained* 🤢. 9 | 10 | **At last, you fell down without any motion ☠️.** 11 | 12 | THE END! 🎬 13 | 14 | [🔄 Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/covid-19/1/1-C.md: -------------------------------------------------------------------------------- 1 | You collected your maximum power 💪 to your arms and tried to break the chain ⛓️. 2 | 3 | **Surprisingly, it broke!** 4 | 5 | You ran away 🏃‍♂️ from the figures and you found a door 🚪. 6 | 7 | You opened it, entered inside, and found yourself in a dark room 👀. 8 | 9 | - [✋ Stay in the room for one day](../2/2-A.md) 10 | - [⚔️ Open the door and fight the figures](1-CB.md) 11 | - [🧰 Find something that's useful in the room](../2/2.md) -------------------------------------------------------------------------------- /english/covid-19/1/1-CB.md: -------------------------------------------------------------------------------- 1 | You fought the figures. 2 | 😎 Wow! Are you the next Bruce Lee 💪? You killed every figures and the others ran away. 3 | 4 | **Brilliant 👊🏽!** 5 | 6 | - [🗡 Chase the rest of the figures](../WIP.md) 7 | - [🏛 Go into the dungeon](../3/3.md) 8 | -------------------------------------------------------------------------------- /english/covid-19/1/1-D.md: -------------------------------------------------------------------------------- 1 | You fell down to your knees 🧎, cried and pleaded them 🙏 not to kill you. 2 | 3 | The figures 😈 were surprised at first. 4 | 5 | Then, they asked you ❓ if you will be obedient. 6 | 7 | *You said yes 👍.* 8 | 9 | **This was the first time you took a closer look 🧐 at them. They were the Covid-19 virus 😷🦠!** 10 | 11 | The viruses told you to allow them to enter inside you and if yes, they will set you free ☑️. 12 | 13 | - [👪 Think about your family and let the viruses enter inside](../WIP.md) 14 | - [⚔️ Say no and fight with the viruses](1-DB.md) 15 | - [🏃‍♂️ Escape from them!](../WIP.md) 16 | -------------------------------------------------------------------------------- /english/covid-19/1/1-DB.md: -------------------------------------------------------------------------------- 1 | You have chosen to fight the virus 🦠. 2 | 3 | Unfortunately, you now have been tested positive for Covid-19 😷. 4 | 5 | You'll have to find a place to quarantine for a couple of weeks before you can go out again - Doctor's advice 👩🏽‍⚕️ 6 | 7 | THE END! 🎬 8 | 9 | [🔄 Restart the game](../begin-journey.md) 10 | -------------------------------------------------------------------------------- /english/covid-19/1/1.md: -------------------------------------------------------------------------------- 1 | You walked 🚶‍♂️ cautiously towards the dungeon. 2 | 3 | Suddenly, the chain ⛓️ tied between your leg and a pole stops you from walking and you fell down ⬇️. 4 | 5 | Hearing the sound 🔊 came two sphere-shaped figures 😈 which kidnapped you earlier. 6 | 7 | - [🏃‍♂️ Run away!](1-A.md) 8 | - [☠️ Wait for them to kill you](1-B.md) 9 | - [🔨 Try to break the chain](1-C.md) 10 | - [🙏 Pleade them to not kill you](1-D.md) -------------------------------------------------------------------------------- /english/covid-19/2/2-A.md: -------------------------------------------------------------------------------- 1 | You stayed in the room for 24 hours feared about the figures. 😓😩 2 | Slowly, your eyes adjusted 👀. 3 | 4 | *After taking a long nap 🛌, you woke up as the sunlight shone through the chings of the door.* 5 | 6 | - [🏛 Open the door and go to dungeon](../WIP.md) 7 | - [🚪 Check if there are any ways to escape in the room](../WIP.md) 8 | -------------------------------------------------------------------------------- /english/covid-19/2/2-B.md: -------------------------------------------------------------------------------- 1 | After finding the sword ⚔️ while you tried to look for more things, You step on something that 2 | 3 | made a cranke sound. you look below and low narrowly see a broken test-tube. 4 | 5 | Next to the broken-tube you find a candle and pick it up. 6 | 7 | 8 | - [Look for lighter in the pokects](2-BA.md) 9 | - [Collect more things](2-BA.md) 10 | -------------------------------------------------------------------------------- /english/covid-19/2/2-BA.md: -------------------------------------------------------------------------------- 1 | You Found a lighter in the you left pocket but it not working😫. 2 | 3 | While you try to ignite the lighter there was a Strong knock in on the door🚪✊. 4 | 5 | What will you do? 6 | 7 | - [Wait Quitly for in the Room](../WIP.md) 8 | - [keep trying to ignite lighter to burn candle](../WIP.md) 9 | - [Charge the outside with the sword](../WIP.md) 10 | - [Find a place to hide for surprise attack](../WIP.md) 11 | -------------------------------------------------------------------------------- /english/covid-19/2/2-BB.md: -------------------------------------------------------------------------------- 1 | While you look for more things you find a place to where there is small ray of light is coming💡 2 | 3 | from a glass window. also there was a door near it. 4 | 5 | 6 | - [go to the window](../WIP.md) 7 | - [open the door](../WIP.md) 8 | - [Collect more things](2-BBC.md) 9 | -------------------------------------------------------------------------------- /english/covid-19/2/2-BBC.md: -------------------------------------------------------------------------------- 1 | While you try to Find more Things there was a Strong knock in on the door🚪✊. 2 | 3 | What will you do? 4 | 5 | - [Wait Quitly for in the Room](../WIP.md) 6 | - [keep trying to ignite lighter to burn candle](../WIP.md) 7 | - [Charge the outside with the sword](../WIP.md) 8 | - [Find a place to hide for surprise attack](../WIP.md) 9 | -------------------------------------------------------------------------------- /english/covid-19/2/2.md: -------------------------------------------------------------------------------- 1 | You stayed inside the room and shut the door close 🚪. 2 | 3 | After your eyes adjusted to the darkness, you checked if there is something in the room that's useful. 4 | 5 | *Surprisingly, you found a really cool sword ⚔️ and took it.* 6 | 7 | - [🚪 Open the door and fight the figures](2-A.md) 8 | - [Collect more things](2-B.md) 9 | -------------------------------------------------------------------------------- /english/covid-19/3/3-A.md: -------------------------------------------------------------------------------- 1 | Taking the ***lamp*** 🏮 in your hand 🖐🏻, you inspect 🔎 the *golden craftsmanship of the ancient piece of art 🖼*. 2 | 3 | Something calls 📞 to you within this beautiful artifact 🖼, something... **ALIVE!!🤯** 4 | 5 | - [Rub the lamp 🧽](3-AA.md) 6 | - [Look inside the spout of the lamp 👀🏮](3-AB.md) 7 | - [Put the lamp 🏮 back down ⬇️](3.md) 8 | -------------------------------------------------------------------------------- /english/covid-19/3/3-AA.md: -------------------------------------------------------------------------------- 1 | As you rub 🧽 the lamp with your hand 🖐🏻, you see *a great smoke swirl* forth from the artifact 🖼🌀. 2 | 3 | The gray swirls 🌀 twist in the air 🌪 until the smoke forms into a vaguely human 👂🏻👃🏻👅👁 shape: ***A red genie 🧞!!***. He asks you : 4 | 5 | "*What will your wishes be then?*" 6 | 7 | - [🖼 Fame and Glory!](../WIP.md) 8 | - [🤑 Wealth and riches!](../WIP.md) 9 | - [🆓 I free you great djinn from your bonds of service 🙏🏻](../WIP.md) 10 | -------------------------------------------------------------------------------- /english/covid-19/3/3-AB.md: -------------------------------------------------------------------------------- 1 | Peering 👁 inside the lamp 🏮 you see a teeny-weeny red man 🧍🏻‍♂️ with curling ears reading a book 📖. 2 | 3 | - [👋🏻 Shout hello!](../WIP.md) 4 | - [🧽 Rub the lamp 🏮](3-AA.md) 5 | - [⬇️ Throw the lamp on the floor 🏮](../WIP.md) 6 | -------------------------------------------------------------------------------- /english/covid-19/3/3-C.md: -------------------------------------------------------------------------------- 1 | Suddenly, your restless gaze 🙄 wandered over the floor, discovering a sharp tool 💉. 2 | 3 | You realize that it's a syringe 💉 with some kind of serum inside it 💉🥃. 4 | 5 | - [⬇️ Throw the syringe 💉 away](3-CB.md) 6 | - [💉 Inject the syringe 💉 into your flesh 💪🏻](3-CA.md) -------------------------------------------------------------------------------- /english/covid-19/3/3-CA.md: -------------------------------------------------------------------------------- 1 | You are now ***A BAT??!!! 🤯😱🦇***. You realize that the serum 🥃 was the first COVID-19 🦠 antidote, turning you into a bat 🦇 to help fight off the virus 😧. 2 | 3 | ***What will you do?*** 4 | 5 | - [🔍 Search the room again with your sensitive bat 🦇 vision 👀](3-CAA.md) 6 | - [👋 Make click noises to check if other bats 🦇 are nearby](../WIP.md) 7 | -------------------------------------------------------------------------------- /english/covid-19/3/3-CAA.md: -------------------------------------------------------------------------------- 1 | You found a few small pills💊💊💊 at a dark corner 🌑. Each pill has a label 🏷️ on it. 2 | 3 | ***Which pill 💊 will you choose?*** 4 | 5 | - [🧛Vampire](../WIP.md) 6 | - [🦇Bat Monster](../WIP.md) 7 | - [🤖Transformer](../WIP.md) -------------------------------------------------------------------------------- /english/covid-19/3/3-CB.md: -------------------------------------------------------------------------------- 1 | You throw the syringe into the dark end of the dungeon 2 | 3 | _"Ahhhhhhh!!!😨"_ A familiar piercing sound coming from it. 4 | 5 | - [🤔 Curious and walk into it](../1/1.md) 6 | - [😨 Better not to move](../WIP.md) 7 | -------------------------------------------------------------------------------- /english/covid-19/3/3.md: -------------------------------------------------------------------------------- 1 | You search 🔍 around in the dust for a while, discovering a shining lamp 🏮. 2 | 3 | - [⬆️ Pick up the lamp 🏮](3-A.md) 4 | - [👀 Look inside the lamp 🏮](3-AB.md) 5 | - [⏱️ Wait for a while and then continue searching for a weapon 🔪](3-C.md) 6 | -------------------------------------------------------------------------------- /english/covid-19/4/4.md: -------------------------------------------------------------------------------- 1 | You have entered the room where you're ready to vaccinate 💉. 2 | 3 | ***Which vaccine brand do you want to pick?*** 4 | 5 | [Pfizer 💉](../WIP.md) 6 | 7 | [Moderna 💉](../WIP.md) 8 | 9 | [Astra-Zeneca 💉](../WIP.md) 10 | 11 | [Johnson & Johnson💉](../WIP.md) 12 | 13 | [🔙 Not Vaccinating](../WIP.md) 14 | -------------------------------------------------------------------------------- /english/covid-19/WIP.md: -------------------------------------------------------------------------------- 1 | ## 🚧 This area of the dungeon is currently being worked upon. 🚧 2 | 3 | Now you are trapped in a jail Darker than Darkness itself. The shread of red moonlight are only thing you look for in the blooming darkness. 4 | 5 | There Comes Noting but despair and agony To suddenly hearing a cat 🙀 with mask on face and protective barrier around it glow like only hope of mankind or maybe only the remaining of mankind. 6 | 7 | Watch What happes next another time. 8 | 9 | If you have something to add here then you can help us by [contributing to this dungeon](https://github.com/MakeContributions/markdown-dungeon/issues/112) 🙂 10 | 11 | -------------------------------------------------------------------------------- /english/covid-19/begin-journey.md: -------------------------------------------------------------------------------- 1 | **The world 🌎 is staying in their homes 🏠 due to the dangerous Covid-19 pandemic 😷.** 2 | *But, it is none of your business 🙅‍♂️.* 3 | 4 | You walk 🚶‍♂️ out of your house with no precautionary methods to meet a friend 👨. 5 | 6 | After walking halfway, three *sphere-shaped* figures 😈 with *thorns* sticking out their body comes towards you and you don't remember anything that happened the rest of the day 💫... 7 | 8 | [🤠 Begin your journey](0/0.md) 🤠 9 | 10 | 🚧 This dungeon is still under development. You can still play it and have fun. 11 | 12 | To complete the dungeon, you can [contribute](../../#contribution-guidelines). 🚧 -------------------------------------------------------------------------------- /english/covid-19/decision_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/english/covid-19/decision_tree.png -------------------------------------------------------------------------------- /english/mines-of-moria/0/0.md: -------------------------------------------------------------------------------- 1 | # **At the Gate** 2 | # What is the password? 3 | - [Open sesame](../begin-journey.md) 4 | - [Yabadabadoo](../begin-journey.md) 5 | - [Gollum stinks](../begin-journey.md) 6 | - [Friend](../1/1.md) 7 | 8 | -------------------------------------------------------------------------------- /english/mines-of-moria/1/1.md: -------------------------------------------------------------------------------- 1 | # **You enter the mine** 2 | 3 | Everywhere is darkness. The air is fowl and dank. 4 | 5 | Gandalf provides some light with his staff. 6 | 7 | You look around and see a tomb, around it lay what appear to be skeletons, dwarf skeletons. 8 | 9 | 10 | - [Run screaming back out the door](../begin-journey.md) 11 | - [Walk up to the tomb](../2/2.md) 12 | 13 | 14 | -------------------------------------------------------------------------------- /english/mines-of-moria/10/10.md: -------------------------------------------------------------------------------- 1 | # **Armed with the Sword** 2 | 3 | The spirit of Ballin rises up out of the tomb. 4 | 5 | What do you do now? 6 | 7 | - [Run screaming back out the entrance door](../begin-journey.md) 8 | - [Swing the sword wildly at the ghost, hoping to at least keep it from doing something to you](../11/11.md) 9 | - ["Pardon the intrusion, oh Ballin, son of Fundin, but I need your sword."](../12/12.md) 10 | - [Run at and crash through the rotten wooden door, sword in hand](../14/14.md) 11 | - [Apologize, and quickly put the sword back](../4/4.md) 12 | -------------------------------------------------------------------------------- /english/mines-of-moria/11/11.md: -------------------------------------------------------------------------------- 1 | # **Death pays a visit - You ticked off Ballin** 2 | 3 | The spirit of Ballin raises his arm and with a terrible wail, draws the life force from your body. 4 | 5 | You are now dead. 6 | 7 | Have a nice day. 8 | 9 | What do you do now? 10 | - [This game sucks, I quit](../begin-journey.md) 11 | -------------------------------------------------------------------------------- /english/mines-of-moria/12/12.md: -------------------------------------------------------------------------------- 1 | # **Pardon the intrusion, oh Ballin, son of Fundin, but I need your sword.** 2 | 3 | Ballin speaks "You have invaded my resting place and taken my sword. Why should I help you?" 4 | 5 | - [Run screaming back out the entrance door](../begin-journey.md) 6 | - ["Because if you don't, you're just a jerk"](../11/11.md) 7 | - ["I am on a quest"](../13/13.md) 8 | -------------------------------------------------------------------------------- /english/mines-of-moria/13/13.md: -------------------------------------------------------------------------------- 1 | # **I am on a quest** 2 | 3 | Ballin says "I know this to be true. You are the Ringbearer, entrusted with destroying the Ring of Power. I will not hinder you." 4 | 5 | - [Run screaming back out the entrance door](../begin-journey.md) 6 | - ["Uh thanks, I guess"](../14/14.md) 7 | 8 | -------------------------------------------------------------------------------- /english/mines-of-moria/14/14.md: -------------------------------------------------------------------------------- 1 | # **A loud noise** 2 | 3 | As you start walking towards the rotting wooden door, Merry, who is sitting next to an open well, accidentally knocks an old bucket attached to a rusty chain, which falls down the well, banging and making a terrible amount of noise....all....the...way...to....the.........................bottom......boom! 4 | 5 | "You fool!" shouts Gandalf, "throw yourself in next time and rid us of your nonsense!" 6 | 7 | Then far off in the distance, drums..... drums.... drums in the deep.... 8 | 9 | Everyone in the fellowship looks around anxiously. 10 | 11 | What do you do? 12 | 13 | - [Run screaming back out the entrance door](../begin-journey.md) 14 | - [Open up the rotting wooden door and see what lies ahead](../15/15.md) 15 | 16 | -------------------------------------------------------------------------------- /english/mines-of-moria/15/15.md: -------------------------------------------------------------------------------- 1 | # **Here they come!@@@@** 2 | - [Fight for your lives](../16/16.md) 3 | 4 | -------------------------------------------------------------------------------- /english/mines-of-moria/16/16.md: -------------------------------------------------------------------------------- 1 | # **Here they come!@@@@** 2 | 3 | There are orcs... many many orcs running towards you... they are all armed and yearning to kill. 4 | 5 | You slam the door shut and try to secure it. The orcs with axes begin chopping holes in the rotten wooden door. 6 | 7 | Legolas fires arrows through the holes,killing the unfortunate orcs in the line of fire. 8 | 9 | The orcs break through the door...... 10 | 11 | - [Fight for your lives](../17/17.md) 12 | 13 | -------------------------------------------------------------------------------- /english/mines-of-moria/17/17.md: -------------------------------------------------------------------------------- 1 | # **Chop chop, kill kill, slash slash** 2 | 3 | Orc bodies lie strewn around the chamber. You have lived to fight another day. 4 | 5 | - [Walk through the wooden door](../18/18.md) 6 | 7 | -------------------------------------------------------------------------------- /english/mines-of-moria/18/18.md: -------------------------------------------------------------------------------- 1 | # **Walking in darkness** 2 | 3 | With the light from Gandalf's staff the fellowship walks down the dark tunnel. 4 | 5 | Everyone is looking around fearfully into the darkness. 6 | 7 | - [Walk](../19/19.md) 8 | 9 | -------------------------------------------------------------------------------- /english/mines-of-moria/19/19.md: -------------------------------------------------------------------------------- 1 | # **Walking in darkness....still.... walking....** 2 | 3 | Apparently, the tunnel is rather long. 4 | 5 | - [Walk](../20/20.md) 6 | 7 | -------------------------------------------------------------------------------- /english/mines-of-moria/2/2.md: -------------------------------------------------------------------------------- 1 | # **The Tomb** 2 | 3 | The tomb is covered with cobwebs and dust from cavern ceiling above. You brush these away to read, written on the tomb 4 | 5 | 'Here lies Ballin, son of Fundin, Lord of Moria' 6 | 7 | What do you do now? 8 | 9 | - [Run screaming back out the door](../begin-journey.md) 10 | - [Open the tomb](../3/3.md) 11 | - [Look around](../4/4.md) 12 | -------------------------------------------------------------------------------- /english/mines-of-moria/20/20.md: -------------------------------------------------------------------------------- 1 | # **A huge chamber** 2 | 3 | At last the tunnel widens into a huge chamber. The voices of the fellowship echo in the darkness. 4 | 5 | Spanning this chamber is a stone bridge. 6 | 7 | - [Cross the bridge](../21/21.md) 8 | 9 | -------------------------------------------------------------------------------- /english/mines-of-moria/21/21.md: -------------------------------------------------------------------------------- 1 | # **A horrible sound** 2 | 3 | 4 | As your party begins to cross the bridge, an ominious light grows at the end of the tunnel and a horrible growl is heard. 5 | 6 | Aragorn says "What is that?" 7 | 8 | Gandalf sadly looks down the tunnel. 9 | 10 | "This is a foe far beyond any of you. It's a Balrog...." 11 | - ["What should we do Gandalf?"](../22/22.md) 12 | 13 | -------------------------------------------------------------------------------- /english/mines-of-moria/22/22.md: -------------------------------------------------------------------------------- 1 | # **Run!** 2 | 3 | 4 | The light grows brighter and heavy footsteps are heard. The Balrog is approaching the entrance to the chamber and the bridge where your fellowship stands. 5 | 6 | 7 | - [Gandalf shouts "Run!"](../23/23.md) 8 | 9 | -------------------------------------------------------------------------------- /english/mines-of-moria/23/23.md: -------------------------------------------------------------------------------- 1 | # Gandalf stands at the center of the bridge 2 | 3 | 4 | The party runs across the bridge to the relative safety of the other side. 5 | 6 | As Gandalf stands defiantly in the center of the bridge, the Balrog appears. 7 | 8 | Cloaked in flame, eyes afire, and bearing a hideous flaming whip the Balrog is a demon of the underworld. Huge wings open from it's shoulders as it screams out in challenge and cracks it's whip. 9 | 10 | - [Gandalf raises his staff and addresses the flaming demonic Balrog](../24/24.md) 11 | 12 | -------------------------------------------------------------------------------- /english/mines-of-moria/24/24.md: -------------------------------------------------------------------------------- 1 | # Gandalf stands at the center of the bridge 2 | 3 | 4 | The party runs across the bridge to the relative safety of the other side. 5 | 6 | As Gandalf stands defiantly in the center of the bridge, the Balrog appears. 7 | 8 | Cloaked in flame, eyes afire, and bearing a hideous flaming whip the Balrog is a demon of the underworld. Huge wings open from it's shoulders as it screams out in challenge and cracks it's whip. 9 | 10 | "You cannot pass!" 11 | 12 | Silence, but the Balrog's flame dims and the darkness grows around it. It takes a step on the bridge. 13 | 14 | "You cannot pass! I am a servent of the Secret Fire, wielder of the flame of Anor. You cannot pass. The dark fire will not avail you, flame of Udun. Go back to the Shadow! You cannot pass!" 15 | 16 | The Balrog steps further onto the bridge. 17 | 18 | - [Gandalf strikes his staff on the bridge](../25/25.md) 19 | 20 | -------------------------------------------------------------------------------- /english/mines-of-moria/25/25.md: -------------------------------------------------------------------------------- 1 | # The bridge collapses 2 | 3 | At the striking of Gandalf's staff, the bridge breaks under the Balrog's feet. 4 | 5 | The flaming creature drops into the dark abyss below. 6 | 7 | Gandalf is able to clutch onto the edge of the remaining span and hangs there looking towards his companions. 8 | 9 | - ["Fly you fools!"](../26/26.md) 10 | -------------------------------------------------------------------------------- /english/mines-of-moria/26/26.md: -------------------------------------------------------------------------------- 1 | # Gandalf drops into the abyss 2 | 3 | "No!" cries Frodo. 4 | 5 | "Come, we must obey his final command!" says Aragorn. 6 | 7 | The party runs blindly through the darkness. 8 | 9 | The darkness begins to receed and the exit from the mines is found. 10 | 11 | [Your party steps out of Moria and into the daylight.](../27/27.md) 12 | -------------------------------------------------------------------------------- /english/mines-of-moria/27/27.md: -------------------------------------------------------------------------------- 1 | # You are safe, for now 2 | 3 | Congratulations! While Gandalf has apparently died, you and your fellowship have survived the journey through the Mines of Moria. 4 | 5 | What will your fellowship do now that Gandalf is gone? 6 | 7 | Hmmm.... 8 | Click the Home icon to return to the Dungeon selection page. 9 | -------------------------------------------------------------------------------- /english/mines-of-moria/3/3.md: -------------------------------------------------------------------------------- 1 | # **Opening the Tomb** 2 | 3 | The lid to the coffin is heavy stone, but with help from your companions you move it aside far enough to see inside the dank coffin. Inside is the decomposed body of Ballin, Lord of Moria. 4 | 5 | In his hands is a small sword. 6 | 7 | What do you do now? 8 | 9 | - [Run screaming back out the door](../begin-journey.md) 10 | - [You take the sword](../10/10.md) 11 | - [You sigh sadly, and look around](../4/4.md) 12 | 13 | -------------------------------------------------------------------------------- /english/mines-of-moria/4/4.md: -------------------------------------------------------------------------------- 1 | # **Looking around** 2 | 3 | The burial chamber is hewn from the mountain itself. Cobwebs hang the walls and ceiling. 4 | 5 | You see a rotting wooden door. 6 | 7 | What do you do now? 8 | 9 | - [Run screaming back out the entrance door](../begin-journey.md) 10 | - [Reach back in the tomb and take the sword](../10/10.md) 11 | - [Go to the wooden door](../5/5.md) 12 | 13 | -------------------------------------------------------------------------------- /english/mines-of-moria/5/5.md: -------------------------------------------------------------------------------- 1 | # **The Rotting Wooden Door** 2 | 3 | What do you do now? 4 | 5 | - [Run screaming back out the entrance door](../begin-journey.md) 6 | - [Walk towards the wooden door](../14/14.md) 7 | -------------------------------------------------------------------------------- /english/mines-of-moria/begin-journey.md: -------------------------------------------------------------------------------- 1 | This dungeon is inspired by The Lord of the Rings by J. R. R. Tolkien 2 | --------------------------------------------------------------------- 3 | 4 | You are Frodo Baggins, Ring bearer and part of the Fellowship of the Ring. You are tasked with the quest of taking the one Ring of Power to Mount Doom in Mordor and, by throwing it in the fires of lava, destroying it. This is the only way the Ring can be destroyed, and the only way that the Dark Lord Sauron can be undone and defeated. 5 | 6 | You have journeyed with your fellows from Rivendell where the quest was laid on you by the elders. Having travelled far, and denied an easier route over the mountains, you stand now before the gate to the Mines of Moria. 7 | 8 | In the cliff wall, there is a silvery portal, illuminated by the moonlight.Elvish writing adorns it. 9 | 10 | According to Gandalf the writing reads; 11 | 12 | "The Doors of Durin, Lord of Moria. Speak, friend, and enter." * 13 | 14 | [👨Begin your journey 👩](0/0.md) 15 | 16 | 17 | * From The Fellowship of the Ring, Book One of The Lord of the Rings, by J. R. R. Tolkien 18 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/0-1A.md: -------------------------------------------------------------------------------- 1 | You do 20 push-ups and you feel very proud of yourself. 2 | Your muscles have gotten 💪stronger! 3 | 4 | - [💪Train muscles again](0-1AA.md) 5 | - [🧠Train your Brain](0-1B.md) 6 | - [Go into dungeon](../1/2.md) 7 | 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/0-1AA.md: -------------------------------------------------------------------------------- 1 | Your muscles aren't getting 💪stronger; in fact they feel very tired. 2 | You've overtrained them 😩! 3 | 4 | - [💪Train your muscles again anyway](0-1AAA.md) 5 | - [🧠Train your Brain](0-1B.md) 6 | - [Go into dungeon](../1/2.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/0-1AAA.md: -------------------------------------------------------------------------------- 1 | 💀 Your muscles are so tired that you can't move anymore. 2 | You have gotten *Rhabdomyolysis*. 😱 3 | You call for help but nobody is there, so you die in a few days. 4 | 5 | **THE END 🎬** 6 | 7 | [Restart the game](../begin-journey.md) 8 | 9 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/0-1B.md: -------------------------------------------------------------------------------- 1 | Choose one method: 2 | 3 | - [🧘Meditate](1-1A.md) 4 | - [📖Read a book](1-1B.md) 5 | - [📺Watch an instructional video](1-1C.md) -------------------------------------------------------------------------------- /english/normal-dungeon/0/0.md: -------------------------------------------------------------------------------- 1 | **Wake up!!!** 2 | 3 | When you wake up, you have no idea where you are. In fact, you are blanked. 😵 4 | In front of you lies a dungeon. 🏯 5 | 6 | *What will you do?* 7 | 8 | - [Go into dungeon](../1/1.md) 9 | - [💪Train my muscles](0-1A.md) 10 | - [🙆‍♂️ Explore the surroundings](../7/0.md) 11 | - [📖Train my brain](0-1B.md) 12 | - [🔙🔜Find a way out](../3/1.md) 13 | - [😒Lie back down and brood](1-1D.md) 14 | - [😴Sleep again](../../../README.md) 15 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1A.md: -------------------------------------------------------------------------------- 1 | Great 👏, You meditated for 30 minutes. 🕐 2 | 3 | - [🧘Meditate again](1-1A.md) 4 | - [📖Read a book](1-1B.md) 5 | - [💪Train muscles](0-1A.md) 6 | - [Go into dungeon](../1/2.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1B.md: -------------------------------------------------------------------------------- 1 | Which book will you read 📖 ? 2 | 3 | - [🛡The Art of War by Sun Tzu](1-1BA.md) 4 | - [🧭Survive! by Les Stroud](1-1BB.md) 5 | - [🧙🏿‍♂️The Hobbit by J.R.R. Tolkien](1-1BC.md) 6 | - [Go into dungeon](../1/2.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1BA.md: -------------------------------------------------------------------------------- 1 | You read Sun Tzu's book, the Art of War. 2 | 3 | Your favorite quote is: 4 | 5 | “*If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you know neither the enemy nor yourself, you will succumb in every battle.*” 6 | 7 | What will you do next? 8 | 9 | - [🧘Meditate](1-1A.md) 10 | - [📖Read a book](1-1B.md) 11 | - [💪Train muscles](0-1A.md) 12 | - [Go into dungeon](../1/2.md) 13 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1BB.md: -------------------------------------------------------------------------------- 1 | You read Les Stroud's book, Survive! 2 | 3 | You now know how to trap animals and cook them. 4 | 5 | *What will you do next?* 6 | 7 | - [🧘Meditate](1-1A.md) 8 | - [📖Read a book](1-1B.md) 9 | - [💪Train muscles](0-1A.md) 10 | - [Go into dungeon](../1/2.md) 11 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1BC.md: -------------------------------------------------------------------------------- 1 | You read Tolkiens's book, The Hobbit! 2 | 3 | Now you feel prepared to start your own journey. 4 | 5 | *What will you do next?* 6 | 7 | - [🧘Meditate](1-1A.md) 8 | - [📖Read a book](1-1B.md) 9 | - [💪Train muscles](0-1A.md) 10 | - [Go into dungeon](../1/2.md) 11 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1C.md: -------------------------------------------------------------------------------- 1 | What kind of video do you want to watch? 2 | 3 | - [Short video](1-1CA.md) 4 | - [Long video](1-1CB.md) -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1CA.md: -------------------------------------------------------------------------------- 1 | You watch a short video. 2 | 3 | You feel more informed than before. 4 | 5 | *What do you want to do now?* 6 | 7 | - [Go into dungeon](../1/1.md) 8 | - [💪Train my muscle](0-1A.md) 9 | - [🧠Train my brain](0-1B.md) 10 | - [🔙🔜Find a way out](../3/1.md) 11 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1CB.md: -------------------------------------------------------------------------------- 1 | You watch a long video. 2 | 3 | You feel much more informed than before. 4 | 5 | You also feel a bit tired; the video went on for quite a while. 6 | 7 | *What do you want to do now?* 8 | 9 | - [Go into dungeon](../1/1.md) 10 | - [💪Train my muscle](0-1A.md) 11 | - [🧠Train my brain](0-1B.md) 12 | - [🔙🔜Find a way out](../3/1.md) 13 | - [😴Sleep again](../../../README.md) -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1D.md: -------------------------------------------------------------------------------- 1 | In defiance to your situation, you decide to lie down on the cold 🥶, hard stone *beside* the hay mattress 🛏. 2 | 3 | After several hours of brooding, you feel no better for wear 🤷‍♂️. 4 | 5 | If anything, you can feel your once sated belly begin to ache. 6 | 7 | *What do you want to do now?* 8 | 9 | - [Go into dungeon](../1/1.md) 10 | - [💪Train my muscle](0-1A.md) 11 | - [🧠Train my brain](0-1B.md) 12 | - [🔙🔜Find a way out](../3/1.md) 13 | - [😒Continue brooding](1-1DA.md) 14 | - [😴Sleep again](../../../README.md) 15 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1DA.md: -------------------------------------------------------------------------------- 1 | You lie back down, this time on the hay mattress, and continue to brood 😒. 2 | 3 | After several more hours of brooding, you can feel your stomach crying out in agony. 4 | 5 | If only you had brought some bacon 🥓... 6 | 7 | *What do you want to do now?* 8 | 9 | - [Go into dungeon](../1/1.md) 10 | - [💪Train my muscle](0-1A.md) 11 | - [🧠Train my brain](0-1B.md) 12 | - [🔙🔜Find a way out](../3/1.md) 13 | - [😒Continue brooding](1-1DB.md) 14 | - [😴Sleep again](../../../README.md) 15 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1DB.md: -------------------------------------------------------------------------------- 1 | You lie back down on the hay mattress, attempting to ignore the ever-growing pain in your stomach. 2 | 3 | After several excruciating hours of brooding, you begin to wonder when your last meal was. 4 | 5 | Had you even eaten breakfast 🥓 before being doomed to this dank dungeon? 6 | 7 | *What do you want to do now?* 8 | 9 | - [Go into dungeon](../1/1.md) 10 | - [💪Train my muscle](0-1A.md) 11 | - [🧠Train my brain](0-1B.md) 12 | - [🔙🔜Find a way out](../3/1.md) 13 | - [😒Continue brooding](1-1DC.md) 14 | - [😴Sleep again](../../../README.md) 15 | -------------------------------------------------------------------------------- /english/normal-dungeon/0/1-1DC.md: -------------------------------------------------------------------------------- 1 | In either a move of defiance or sheer stupidity, you decide to continue lying on the hay mattress 🛏. 2 | 3 | Your stomach hurts so badly that you can hardly imagine standing up. 4 | 5 | You think of home and all the sweet, sweet bacon 🥓 just sitting in your pantry as the dungeon slowly fades away. 6 | 7 | You starve to death ☠. 8 | 9 | **THE END 🎬** 10 | 11 | [Restart the game](../begin-journey.md) 12 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/1-1.md: -------------------------------------------------------------------------------- 1 | 🐉 dragon was incapacitated by your spell, so you quickly advance to the treasure. 2 | 3 | - [You see 🔅 light off to the side. Perhaps this is an exit!?](1-1A.md) 4 | 5 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/1-1A.md: -------------------------------------------------------------------------------- 1 | You turn towards the light. 2 | 3 | The dungeon suddenly opens to a dusky sky full of grey clouds. 4 | 5 | Shadows scurry between the trees. 6 | - [🐉 Turn back to dragon](3-2.md) 7 | - [🌲 Go outside and approach the shadows in the forest](../3/4.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/1.md: -------------------------------------------------------------------------------- 1 | The 🐉dragon finds, and makes short work of you. 2 | 3 | You are dead ☠️. 4 | 5 | **THE END 🎬** 6 | 7 | [Restart the game](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/2-1A.md: -------------------------------------------------------------------------------- 1 | Ooops...you don't have a 💼 backpack, but you find a ✨magic circle ⭕️ instead. 2 | 3 | - [Touch it 👉⭕️](3.md) 4 | - [Forget it now ](../2/1.md) 5 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/2-1B.md: -------------------------------------------------------------------------------- 1 | When you try to destroy the ⚔️ sword, the 🐉dragon hears the noise. 2 | - [⚔️Try to kill the dragon](2-1C.md) 3 | - [🏃‍♀️Run🏃‍♂️ away](3-1.md) 4 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/2-1C.md: -------------------------------------------------------------------------------- 1 | You lack the skills of a swordsman 😕 , and so the dragon wastes no time in killing you ☠️. 2 | 3 | THE END 🎬 4 | 5 | [Restart the game](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/2-1D.md: -------------------------------------------------------------------------------- 1 | The 🐉 dragon turns to you. 2 | 3 | It bares its fangs and asks you if you are friend or foe. 4 | 5 | - [Say you are a friend](3-3.md) 6 | - [Say you are a foe](3-4.md) -------------------------------------------------------------------------------- /english/normal-dungeon/1/2.md: -------------------------------------------------------------------------------- 1 | You found a ⚔️ sword, but you don't have the ability to use it. 2 | 3 | - [Keep it in the backpack 💼](2-1A.md) 4 | - [Destroy it 💥](2-1B.md) 5 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/3-1.md: -------------------------------------------------------------------------------- 1 | You wish you had spent more time working your cardio, as you have no chance in 🏃‍♂️outrunning🏃‍♀️ the 🐉dragon. 2 | It quickly catches up and kills you 😵. 3 | 4 | **THE END 🎬** 5 | 6 | - [Restart the game](../begin-journey.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/3-2.md: -------------------------------------------------------------------------------- 1 | Ooops.... You woke up the dragon 🐉. 2 | 3 | - [🏃‍♀️Run🏃‍♂️ away](3-1.md) 4 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/3-3.md: -------------------------------------------------------------------------------- 1 | The 🐉 dragon smiles. 2 | 3 | It is glad to see an adventurer who is finally willing to befriend a dragon. 4 | 5 | It shares some of its 💰 treasure with you, then sends you on your way. 6 | 7 | - [Continue your journey](../2/1.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/3-4.md: -------------------------------------------------------------------------------- 1 | The 🐉 dragon laughs and says 'Then die', as it covers you with flames. 2 | 3 | You quickly burn to a crisp 🍟 and die 😵. 4 | 5 | **THE END 🎬** 6 | 7 | - [Restart the game](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/1/3.md: -------------------------------------------------------------------------------- 1 | This is a long-distance⏳ transportation circle, and you found a 🐉dragon sleeping💤. 2 | 3 | - [Sneak towards it 🤫👟](4.md) 4 | - [Leave it alone ](../2/1.md) 5 | - [😫😫 Call for help](3-2.md) 6 | - [Hail the dragon](2-1D.md) -------------------------------------------------------------------------------- /english/normal-dungeon/1/4.md: -------------------------------------------------------------------------------- 1 | While sneaking you find the 🐉dragon's 💰treasure. 2 | 3 | - [Take it 🤑](1.md) 4 | - [Cast an Enchantment Spell 🎶](1-1.md) 5 | - [First take care of the dragon ⚔️](2-1C.md) 6 | - [Hail the dragon](2-1D.md) -------------------------------------------------------------------------------- /english/normal-dungeon/2/1-A.md: -------------------------------------------------------------------------------- 1 | You pick up the blade and hold it firmly in your hands. 2 | 3 | * [Sneak assassinate them 🩸](3-A.md) 4 | * [Approach them](2.md) -------------------------------------------------------------------------------- /english/normal-dungeon/2/1.md: -------------------------------------------------------------------------------- 1 | You see a shady figure 🕴 in the distance. 2 | The surrounding lights are dead, so you cannot see who it is. You see a short blade 🗡 nearby. 3 | 4 | * [Approach them](3.md) 5 | * [Pick up the blade 🗡](1-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/2/2.md: -------------------------------------------------------------------------------- 1 | As you approach, the figure whips out their sword ⚔️. 2 | 3 | You see it running towards you. 4 | 5 | * [Run 🏃](3-B.md) 6 | * [Fight back 🛡️](3-C.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/2/3-A.md: -------------------------------------------------------------------------------- 1 | You sneak up on the figure and slit their throat 🗡️🩸. 2 | 3 | They crumble into a pile of dust ⚱️. 4 | 5 | In the distance, you see a flight of stairs leading to a large doorway 🚪. 6 | 7 | * [Climb stairs](../3/1.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/2/3-B.md: -------------------------------------------------------------------------------- 1 | You could not outrun the ghostly figure. 2 | It strikes you down in one swift motion ☠️. 3 | 4 | **THE END 🎬** 5 | 6 | [Restart the game](../begin-journey.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/2/3-C.md: -------------------------------------------------------------------------------- 1 | You prepare to fight the figure. 2 | 3 | In a quick stroke, you slice through the figure's ghostly form 🤺. 4 | 5 | They crumble into a pile of dust ⚱️. In the distance, you see a flight of stairs leading to a large doorway 🚪. 6 | 7 | * [Climb stairs](../3/1.md) 8 | * [Investigate the dust pile ⚱️](3-D.md) -------------------------------------------------------------------------------- /english/normal-dungeon/2/3-D.md: -------------------------------------------------------------------------------- 1 | You sift through the shadowy dust in search for clues 👇. 2 | 3 | There is nothing there but dust. Disappointed, you wipe your dusty fingers on your shirt 👕. 4 | 5 | The dust will not come off your hands. 6 | 7 | **😲 Strange.** 8 | 9 | * [Climb stairs](../3/1.md) -------------------------------------------------------------------------------- /english/normal-dungeon/2/3.md: -------------------------------------------------------------------------------- 1 | As you approach, the figure whips out their sword ⚔️. 2 | You see it running towards you. 3 | 4 | Without a weapon, you are unable to defend yourself ☠️. 5 | 6 | **THE END 🎬** 7 | 8 | [Restart the game](../begin-journey.md) 9 | -------------------------------------------------------------------------------- /english/normal-dungeon/3/1-1A.md: -------------------------------------------------------------------------------- 1 | As you head toward your 🏡home, your thoughts drifts toward your 💞loved one, and how they must be 😟worried about you. 2 | 3 | It's 🌒dusk as the glinting silhouette of your dwelling catches your eye across the horizon. 4 | 5 | - 💀[Something seems amiss, so you venture forth with an uneasiness of what may lie ahead](../3/2.md) 6 | - 🌲 [There is a movement between the shades of the trees](4.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/3/1.md: -------------------------------------------------------------------------------- 1 | 😃 Great you found a 🛣 way out! 2 | 3 | Are you sure you don't want to check out the dungeon? 4 | 5 | There's also a strange path you can check out as well! 6 | 7 | - [Go back to the front of the dungeon](../begin-journey.md) 8 | - [Check out the path](../9/0.md) 9 | - [🏡 Go home](1-1A.md) 10 | -------------------------------------------------------------------------------- /english/normal-dungeon/3/2-2.md: -------------------------------------------------------------------------------- 1 | You go to the backyard of your house 🏡 and opens the door 🚪 slightly. Suddenly, two goblins 👺👺 emerged from inside and finished you with their sharp sword ⚔️. 2 | 3 | As you lay they, dying 💀, you wonder what life would have been like if you made different decisions 💭 ... 4 | 5 | THE END! 🎬 6 | 7 | [🔄 Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/normal-dungeon/3/2.md: -------------------------------------------------------------------------------- 1 | As you approach your home, the 🚪door is ajar, ever so slightly, 🕯candlelight emanating from the cracks. 2 | 3 | ⚔️[Approach the door from the front?](3.md) 4 | 5 | 🏰[Sneak around and enter from the back?](2-2.md) 6 | 7 | ❔[Go to your neighbour's first and ask if they witnessed anything](3-1.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/3/3-1.md: -------------------------------------------------------------------------------- 1 | You approach your neighbour's house and notice the 🚪🎛 door knob has been broken. As you move closer towards the door, you see a figure run past from the window. What do you do❓ 2 | 3 | ▶[Enter your neighbours house to find who that is](../4/4.md) 4 | 5 | 🔙[Go back to your house](2.md) -------------------------------------------------------------------------------- /english/normal-dungeon/3/3.md: -------------------------------------------------------------------------------- 1 | As you approach the 🚪door, you hear a 😱shriek. You 💥bust open the door and startle the three goblins inside. They scamper toward the back of the house to escape. 2 | 3 | 👺[Chase after the goblins](../4/2.md) 4 | 5 | 👩‍💼[Check on your wife, to make sure she's safe](../4/1.md) 6 | -------------------------------------------------------------------------------- /english/normal-dungeon/3/4-1.md: -------------------------------------------------------------------------------- 1 | You run after the 🐰 with the ⏱, the thicket 🌿 gets higher and tighter, until you can see only a wild pattern of greens. You make a further step... 2 | 3 | ⚫ [You fall into a hole](../0/0.md) 4 | -------------------------------------------------------------------------------- /english/normal-dungeon/3/4.md: -------------------------------------------------------------------------------- 1 | You follow the shadow and find out, that it is a 🐇 with a ⏱ flitting through the bushes 🌿. 2 | 3 | [🐇 Follow the rabbit](4-1.md) 4 | 5 | [🏡 Turn back to your way home](2.md) 6 | -------------------------------------------------------------------------------- /english/normal-dungeon/4/0.md: -------------------------------------------------------------------------------- 1 | The dungeon is building, please help us contribute it 2 | 3 | [Contribution Guidelines](../../../README.md#contribution-guidelines) 4 | -------------------------------------------------------------------------------- /english/normal-dungeon/4/1-A.md: -------------------------------------------------------------------------------- 1 | The night 🌃 has given rise to a bright, sunny day ⛅. 2 | 3 | In your sleep 😴 , you had a vision 👁️ that of a knight ♞ guiding your way 👉🏻. Keeping that in mind, you are ready to start your day.😄 4 | 5 | Where do you want to go? 6 | 7 | - [ 👉🏻 Go to the secret mountain⛰️](3.md) 8 | 9 | - [👉🏻 Go to some of your friends ❤️🧍🏻‍♀️🧍🏻‍♂️](3-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/4/1.md: -------------------------------------------------------------------------------- 1 | As you go into your home 🏠, your wife 👩🏻 is crying and tells you how she managed to escape and hide from the 👺goblins 😭. 2 | 3 | She also tells you that there is a ***secret mountain*** ⛰️ where the goblins 👺 are keeping your son 👦😲 ! 4 | 5 | 6 | - [Go to the Secret Mountain **Now**!⛰️](2.md) 7 | 8 | - [Try to confront her 🙂 and sleep in for tonight.😴](1-A.md) 9 | 10 | -------------------------------------------------------------------------------- /english/normal-dungeon/4/2.md: -------------------------------------------------------------------------------- 1 | In the pitch blackness of the night 🌑, you are unable to see 😑 the wild beasts 👹 lurking in the shrubbery, waiting for their chance to strike. 2 | 3 | 🩸 Your death ☠️ is painful and bloody as the untamed beasts feast 🍽 upon your still warm corpse ⚱. 🩸 4 | 5 | 6 | THE END 🎬 ☹ 7 | 8 | - [Restart the game?🔁](../begin-journey.md) 9 | 10 | -------------------------------------------------------------------------------- /english/normal-dungeon/4/3-A.md: -------------------------------------------------------------------------------- 1 | Luckily, they had a map 🗺️ to guide and help you find your son 👦🏻. The path leads you far away 🧭 from home 🏡 until ... you come across two bridges 🌉. Unfortunately, the map says nothing of this bridge 😕. 2 | 3 | Which way will you go? 🤔 4 | 5 | - [Go to the left bridge ⬅️](3-B.md) 6 | - [Go to the right bridge ➡️](3-C.md) -------------------------------------------------------------------------------- /english/normal-dungeon/4/3-B.md: -------------------------------------------------------------------------------- 1 | You might have done well 👍🏻 to test the weight limit of the bridge before walking it 🚶🏻‍♂️. 2 | 3 | Whether it be due to poor construction or old age 😕, the bridge 🌉 cracks under your weight, and you fall to a painful death.☠️ 4 | 5 | 6 | THE END 🎬 7 | 8 | 9 | - [Restart the game 🔁](../begin-journey.md) 10 | 11 | -------------------------------------------------------------------------------- /english/normal-dungeon/4/3-C.md: -------------------------------------------------------------------------------- 1 | Luckily, you seem to have chosen the right path. 👍🏻 2 | You find the ***secret mountain*** ⛰️ just in time, and you are able to rescue your dear son 👦🎉 from the goblins 👺. On the way back through the cold night, you spot a sword ⚔️ lying on the ground. 3 | 4 | What will you do?🤔 5 | 6 | - [Pick up the Sword ✔⚔️](../5/1.md) 7 | - [Leave the Sword ❌⚔️](../5/2.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/4/3.md: -------------------------------------------------------------------------------- 1 | After days of searching, you are unable to find the secret mountain⛰️. 2 | 3 | Overcome with desperation and hopelessness 😧, knowing the goblins 👺 have surely eaten your son 👦 by now, you are overcome by grief, and hang yourself off a branch from a nearby tree 🌳💀. Perhaps some help from a friend 🙋🏻‍♀️🙋🏻‍♂️ would have prevented your demise 💘 ? 4 | 5 | Hopefully you will see him again in the next world 🌎... 6 | 7 | THE END🎬 8 | 9 | - [Restart the game 🔁](../begin-journey.md) -------------------------------------------------------------------------------- /english/normal-dungeon/4/4.md: -------------------------------------------------------------------------------- 1 | You open the door 🚪 to your neighbour's house 🏡, and the first thing you see is a trail of blood 💉 streaked on the floor... 2 | 3 | How do you react? 4 | 5 | - [get scared and go back to your house 😩🏡](../3/2.md) 6 | - [continue to follow the trail to see where it leads 🏃](../5/5.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/5/1-A.md: -------------------------------------------------------------------------------- 1 | **😲 You and your son 👦🏻 were killed ☠️ by the goblins 👺 😲** 2 | 3 | ***THE END*** 🎬 4 | 5 | - [Restart the game 🔁](../begin-journey.md) -------------------------------------------------------------------------------- /english/normal-dungeon/5/1-B.md: -------------------------------------------------------------------------------- 1 | A horse 🐎 jumped in front of you. 2 | 3 | It was a **Knight** ♘, like in *your vision 👁️*. He told you to get up on the horse 🐎. 4 | 5 | *How will you react?* 6 | 7 | - [Get up on the horse 🐴](3.md) 8 | - [Avoid him and run away 🏃🏼](2.md) -------------------------------------------------------------------------------- /english/normal-dungeon/5/1.md: -------------------------------------------------------------------------------- 1 | Goblins 👺 were following you on the way!😲 2 | 3 | A goblin 👺 shot you with an arrow 🏹 and you fall down. *What would you do?* 4 | 5 | - [Tell your son to run 🏃 like a chicken 🐔](1-A.md) 6 | - [Face the goblins 👺 with your sword ⚔️, protecting 🛡 your son 👦](1-B.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/5/2.md: -------------------------------------------------------------------------------- 1 | **You were followed and killed ☠️ by the goblins 👺😲.** 2 | 3 | ***THE END 🎬*** 4 | 5 | - [Restart the game? 🔁](../begin-journey.md) -------------------------------------------------------------------------------- /english/normal-dungeon/5/3.md: -------------------------------------------------------------------------------- 1 | With the help of the Knight ♘, you escaped the goblins 👺 and reached home!🏠 2 | 3 | The Knight ♘ said 📜 ... 4 | 5 | *'Decisions mold or destroy your life. Always remember that'.* 6 | 7 | From that day on, you have taken the right decisions 👍🏻 through out your life! 💓 8 | 9 | - [Get inside your home🏠](4.md) -------------------------------------------------------------------------------- /english/normal-dungeon/5/4.md: -------------------------------------------------------------------------------- 1 | **Thanks for playing this dungeon!🐉🐉😁** 2 | 3 | You can build your own dungeons by contributing!: 4 | 5 | - [Contribution Guidelines](../../../README.md#contribution-guidelines) -------------------------------------------------------------------------------- /english/normal-dungeon/5/5.md: -------------------------------------------------------------------------------- 1 | On the way to the bathroom 🛁 while following the blood trail 🩸, you find a dead body ☠ lying in the bathtub 🛁 😵 2 | 3 | Suddenly, you hear some noise coming from upstairs ↗️. 4 | 5 | *What will you do?🤔* 6 | 7 | - [Go upstairs ↗️](../6/1.md) 8 | - [Runaway 🏃 and leave the house 🏠](../6/4.md) 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /english/normal-dungeon/6/1.md: -------------------------------------------------------------------------------- 1 | While heading upstairs, you find another trail of blood🩸. There are broken windows 🪟 and glass shards are scattered all over the place. 2 | 3 | A loud noise emanates from the master bedroom. 🛌 4 | 5 | - [Investigate the master bedroom 🛌](2.md) 6 | - [Runaway 🏃 and leave the house 🏠](4.md) 7 | - [Hide 🐭](5.md) -------------------------------------------------------------------------------- /english/normal-dungeon/6/2.md: -------------------------------------------------------------------------------- 1 | You enter the bedroom 🛏 and stumble upon the murderer 😈 thrusting his knife 🔪 into another victim. 2 | 3 | He spots you 👀 while committing this heinous crime.😱 4 | 5 | - [You run to escape the room 🏃 and go down the stairs ↙️](3.md) 6 | -------------------------------------------------------------------------------- /english/normal-dungeon/6/3.md: -------------------------------------------------------------------------------- 1 | You are too late! Intense pain overwhelms you as you take your last breath! 🪦 2 | 3 | ***THE END 🎬*** 4 | 5 | - [Restart the game](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /english/normal-dungeon/6/4.md: -------------------------------------------------------------------------------- 1 | While leaving the house 🏃🏻‍♂️🏠, you are hit 🎯 at the base of your skull 🤕. 2 | Pain overwhelms you as you lose consciousness 😵. 3 | 4 | - [Regain consciousness 😖](../0/0.md) 5 | -------------------------------------------------------------------------------- /english/normal-dungeon/6/5.md: -------------------------------------------------------------------------------- 1 | There are two wardrobes🚪🚪 in the room. 2 | One has some carvings decorating it🕰️. The other one is plain. 3 | There is a bit of fabric💟 hanging out of the decorated wardrobes' door. 4 | 5 | - [Hide in the plain😐 wardrobe](5A.md) 6 | - [Hide in the decorated wardrobe🕰️](5B.md) -------------------------------------------------------------------------------- /english/normal-dungeon/6/5A.md: -------------------------------------------------------------------------------- 1 | You open the plain wardrobes' door, and there is just enough place for you to slip in between coats and jackets. 2 | 3 | Do you stay? 4 | 5 | - [Stay in the wardrobe🐁](5AA.md) 6 | - [Leave💨 the wardrobe](1.md) -------------------------------------------------------------------------------- /english/normal-dungeon/6/5AA.md: -------------------------------------------------------------------------------- 1 | The sounds from the bedroom stop. There are heavy steps coming nearer. 2 | You hold your breath until they pass you by and leave down the stairs↙. 3 | 4 | - [Stay in the wardrobe🐁](5AAA.md) 5 | - [Leave the wardrobe🏃](6.md) -------------------------------------------------------------------------------- /english/normal-dungeon/6/5AAA.md: -------------------------------------------------------------------------------- 1 | You stay in the wardrobe. It is kind of dusty💨 here but the darkness is quite comforting🌃. 2 | 3 | - [Stay🐁](5AAA.md) 4 | - [Leave🏃](6.md) -------------------------------------------------------------------------------- /english/normal-dungeon/6/5B.md: -------------------------------------------------------------------------------- 1 | You open the decorated wardrobe, and its door🚪 creaks loudly😣. 2 | In horror, you realise that it is overfull🛑 with clothes. 3 | You hear heavy steps behind you. 4 | 5 | - [Turn around🥺](5BB.md) 6 | - [Close your eyes and whimper😖](6.md) 7 | - [Try to run🏃](4.md) -------------------------------------------------------------------------------- /english/normal-dungeon/6/5BB.md: -------------------------------------------------------------------------------- 1 | The murderer is your neighbor himself😲🤯😭. 2 | "Bad luck you had to show up right now and see my face.😱" 3 | 4 | He stabs you with a knife🗡️. 5 | 6 | ***THE END 🎬*** 7 | 8 | - [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/normal-dungeon/6/6.md: -------------------------------------------------------------------------------- 1 | You leave the wardrobe. There are now bloody🩸 footprints👣 leading out of the bedroom and down ↙ the stairs. 2 | 3 | - [Enter the master bedroom🛏 ](8.md) 4 | - [Go back to hiding🐁](5AAA.md) 5 | - [Flee to your own home↙🏃](../3/3.md) -------------------------------------------------------------------------------- /english/normal-dungeon/6/7.md: -------------------------------------------------------------------------------- 1 | You are hit on the back of the head🤕 and lose consciousness. 2 | 3 | - [Regain consciousness 😖](../0/0.md) 4 | -------------------------------------------------------------------------------- /english/normal-dungeon/6/8.md: -------------------------------------------------------------------------------- 1 | The master bedroom is furnished in dark oak. 2 | In the middle of the room there is a king-size bed🛏️. 3 | The person lying on it🛌, judging by their wounds and the amount of blood🩸 draining into the bedding, is very dead💀. 4 | 5 | - [Flee to your own home🏃](../3/3.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/0.md: -------------------------------------------------------------------------------- 1 | You looked around 🙆‍♂️ and found a ladder. You climbed it 🧗‍♂️ and saw a crying man 😭 sitting alone. 2 | 3 | *What will you do?* 4 | 5 | - [🤔 Check who the man is](1.md) 6 | - [🏃‍♂️ Run back to the dungeon](../1/2.md) 7 | - [🔎 Ignore the man and find a way out](2.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-A.md: -------------------------------------------------------------------------------- 1 | You spun around 🔄 and found a door 🚪. You opened it and found a way out 🛣️! 2 | 3 | *Are you sure you don't want to talk with the man?* 4 | 5 | - [😊 Relax and talk with the man](1-B.md) 6 | - [🏃‍♂️ Just get out of here!](../3/1-1A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-B.md: -------------------------------------------------------------------------------- 1 | You sat 🪑 near the crying man. The blood 🩸 flowing from his head is dripping down. 2 | 3 | You tried to comfort him and asked why he is crying 😭 again ❓. He says three goblins 👺 attacked him and kidnapped his son 👦. 4 | 5 | - [🔎 Help the man find his son](1-BA.md) 6 | - [🎮 Play Tic-Tac-Toe with the man](1-BB.md) 7 | - [😴 Ignore him and go to sleep](1-BC.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BA.md: -------------------------------------------------------------------------------- 1 | You asked ❓ where his son 👦🏻 is, and he said the goblins 👺 took him to a ***secret mountain*** ⛰️. 2 | 3 | - [🦸‍♂️ Go to the mountain and rescue the boy 👦🏻](../4/2.md) 4 | - [❓ Ask how the man ended up in this place](1-BAB.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BAB.md: -------------------------------------------------------------------------------- 1 | The man said: 2 | 3 | *"I am you and you know me. You know me and you are me".* 4 | 5 | You were confused 😕 at first, and then, you realized 🤯 that the man you are speaking to is your self conscious 🧠! 6 | 7 | You later realize that your son 👦 is waiting for someone to rescue him from the evil goblins 👺! 8 | 9 | - [⛰️ Run to the ***secret mountain*** and rescue your son!](../4/2.md) 10 | - [😴 Take a long nap and go the mountain tomorrow](1-BC.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BB.md: -------------------------------------------------------------------------------- 1 | You won 3 times playing Tic-Tac-Toe 🎮. You are a champion 🏆! 2 | 3 | - [🤾‍♂️ Play again!](1-BBA.md) 4 | - [📚 Read a book](../0/1-1B.md) 5 | - [🎲 Play other games](1-BBC.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BBA.md: -------------------------------------------------------------------------------- 1 | You try to play again but don't have the strength 💪. Sleepiness is taking you under control, and you can't stop yawning 😴. 2 | 3 | - [🛌 Take a long nap](1-BC.md) 4 | - [🏃‍♂️ Get out of here!](../3/1.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BBC.md: -------------------------------------------------------------------------------- 1 | Great 👍🏻! Which game will you play ❓ 2 | 3 | - [🕵️‍♂️ Hide and Seek](1-BBCA.md) 4 | - [♟️ Chess](1-BBCB.md) 5 | - [🔙 Get back to the front of the dungeon](../begin-journey.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BBCA.md: -------------------------------------------------------------------------------- 1 | You played Hide and Seek 🕵️‍♂️, and you won 🏆 every time. You are a great player 👍🏻🙂! 2 | 3 | - [🔄 Play again](1-BBA.md) 4 | - [🏃‍♂️ Get out of here](1-A.md) 5 | - [🔎 Explore the dungeon 🏟️ ](../1/2.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BBCB.md: -------------------------------------------------------------------------------- 1 | You played Chess ♟️, and you won every time 🏆. You are a great player 😁! 2 | 3 | - [🔄 Play again](1-BBA.md) 4 | - [🏃‍♂️ Get out of here](1-A.md) 5 | - [🔎 Explore the dungeon 🏟️](../1/2.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BC.md: -------------------------------------------------------------------------------- 1 | You took a *LONG* nap 😴. It's 10 AM ⏰ the next day! 2 | 3 | - [🦥 Be lazy and sleep more 😴](1-BCA.md) 4 | - [🌅 Wake Up](../0/0.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-BCA.md: -------------------------------------------------------------------------------- 1 | You try to sleep again 😴, but something is wrong 😕. 2 | 3 | Too late to take action ⚔️, you are inside the dungeon, and the dragon 🐉 enjoys your tasty flesh 🩸☠️. 4 | 5 | ***THE END 🎬*** 6 | 7 | [🔄 Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-C.md: -------------------------------------------------------------------------------- 1 | You took a crayon 🖍️ from your pocket and drew a beautiful face 🙂 for him. You are proud of the artist 🎨 inside you. 2 | 3 | - [🤪 Draw more crazy stuff](1-CA.md) 4 | - [🏃‍♂️ Stop this madness and find a way out](1-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1-CA.md: -------------------------------------------------------------------------------- 1 | You saw 👀 a wall 🧱 and drew 🧹 so many things that you don't even know. You think that you will be the next da Vinci 👨‍🎨! You continued drawing, until sleepiness 💤 caught you under control. 2 | 3 | - [🛏️ Take a long nap 😴](1-BC.md) 4 | - [🏃‍♂️ Find a way out](1-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/7/1.md: -------------------------------------------------------------------------------- 1 | You walked towards the man 🚶‍♂️ and asked why he is crying 😭. 2 | He turned his head and... 3 | 4 | Aaah 😱! 5 | 6 | He has no face 🟡, and his head is covered with cold blood 🩸! 7 | 8 | - [🏃‍♂️ Run away!](1-A.md) 9 | - [😊 Relax and talk with the man](1-B.md) 10 | - [🖍️ Draw a face for him](1-C.md) 11 | -------------------------------------------------------------------------------- /english/normal-dungeon/7/2.md: -------------------------------------------------------------------------------- 1 | You spun around and found a door 🚪. You opened it and found a way out 🛣️! 2 | 3 | *Are you sure you don't want to ask why the man is crying 😭?* 4 | 5 | - [😊 Ask why he is crying](1.md) 6 | - [**🏃JUST GET OUT OF HERE!!!**](../3/1-1A.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/0.md: -------------------------------------------------------------------------------- 1 | Following down the path, you see that it leads towards a dark forest 🌳. 2 | 3 | You can't hear any birds 🦜 chirping or animals 🐑 calling. Death ☠ lingers 😨 here. 4 | 5 | - [ Continue down the path ➡️](1.md) 6 | - [ Go back 🔙](../3/1.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/1.md: -------------------------------------------------------------------------------- 1 | You stand in front of a large, ominous castle 🏰, gargoyle statues 🗿 standing guard at either side of the entrance way. 2 | 3 | Torches 🔥, long since burnt out, stand parallel to the rather large, foreboding oak door 🚪. You notice the door 🚪 stands slightly ajar, indicating you may not be the first person to have stopped here today... 4 | 5 | - [➡️ Enter inside](2.md) 6 | - [There may be someone inside; let's enter cautiously 😐...](2.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/2.md: -------------------------------------------------------------------------------- 1 | Entering inside, you step into a rather **large main hall**, which has seen better days. 2 | 3 | Thick layers of dust cover the furniture 🛋 that, in its time, must have been rather extravagant, but now, it has lost its splendor. A large spiraling stairway leads upwards to the second floor, while there are two more doors 🚪🚪 to your left ⬅ and right ➡. You also notice a large door 🚪 ajar leading down to a dark cellar. 4 | 5 | 6 | - [Go upstairs ↗](3-A.md) 7 | - [ Go through the left door ⬅🚪](3-B.md) 8 | - [Go through the right door ➡️🚪](3-C.md) 9 | - [Go into the dark cellar ↘](3-D.md) 10 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/3-A.md: -------------------------------------------------------------------------------- 1 | You find yourself in a large hallway, with doors 🚪 on the left ⬅ and doors 🚪 on the right ➡. 2 | 3 | A large scenery painting 🖼 hangs on the wall 🧱 in front of you of a beautiful cliff 🧗🏻‍♂️, with mountains 🏔 in the distance crowned by a crimson sunset 🌇. 4 | 5 | While there doesn't seem to be anything in the hallway of interest, there is one door 🚪 on your left ⬅, and three doors on your right. 6 | 7 | 🚪🚪🚪➡ 8 | 9 | ***Where will you go?*** 10 | 11 | - [Door 🚪 on the left](5-A.md) 12 | - [First door on the right](5-B.md) 13 | - [Second door on the right](5-C.md) 14 | - [Third door on the right](5-D.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/3-B.md: -------------------------------------------------------------------------------- 1 | Stepping through the door 🚪⬅ on the left, you find yourself now in a large, extravagant dining hall, dust-covered chairs 🪑 lining the expansive dining table, cobwebs 🕸 covering their backs and arms. There's enough seats for over twenty people, but obviously dinner hasn't been served in quite some time. 2 | 3 | You can see another door 🚪 on the other end of the hall to the right ➡, that you can only assume must lead to the kitchens. 4 | 5 | 6 | - [➡️ Go through the door 🚪 on the right](4.md) 7 | - [🔙 Go back to the hall](2.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/3-C.md: -------------------------------------------------------------------------------- 1 | Going through the door 🚪 on the right ➡, you have walked into what seems to be a small office, complete with a writing desk, some bookshelves 📚, and some chairs 🪑 for guests to sit upon. 2 | 3 | - [Check the desk?](3-CA.md) 4 | - [ Examine the bookshelves? 📚](3-CB.md) 5 | - [ Go back 🔙](2.md) 6 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/3-CA.md: -------------------------------------------------------------------------------- 1 | Dust covers the scattered papers 📰 that lie upon the desk, all written in a language you cannot read 😐. No notes seems to be on the piece of papers 📰 or in its drawers. 2 | 3 | ***What will you do next?*** 4 | 5 | - [Examine the bookshelves? 📚](3-CB.md) 6 | - [Go back 🔙](2.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/3-CB.md: -------------------------------------------------------------------------------- 1 | The books 📕 on the bookshelf 📚 all seem to be written in a language you cannot understand 😕, but whilst flipping through them, you recognize magical runes and symbols drawn in the diagrams. Perhaps these books are about sorcery? 2 | 3 | ***What will you do next?*** 4 | 5 | - [Check the desk?](3-CA.md) 6 | - [Go back 🔙](2.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/3-D.md: -------------------------------------------------------------------------------- 1 | Upon reaching the bottom of the stairs you find only a narrow hallway with 3 heavy wooden doors. 2 | 3 | 🚪🚪🚪 4 | 5 | You try to open them, all but the second door 🚪 are securely locked. You hear a faint, distant violin 🎻 playing behind the second door. 6 | 7 | 🎻🎵🎵 8 | 9 | - [The music 🎶 is too tempting; Cautiously go through the second door...](./3-DA.md) 10 | - [Go back 🔙](2.md) 11 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/3-DA.md: -------------------------------------------------------------------------------- 1 | You enter the room to a bright light 💡, and the music 🎶 stops, the bright light fades and your eyes 👀 adjust, you realize the room is empty except for 6 candle holders on the walls holding candles 🕯. 2 | 3 | 4 | You can see no other doors 🚪 in the room. Why did the music 🎶 stop and what was that bright light 💡? 5 | 6 | - [🔙 Go back](2.md) 7 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/4-A.md: -------------------------------------------------------------------------------- 1 | Walking to the next room, you are startled by the sound of snarling. Before you can react, a goblin 👺 leaps out at you. 2 | 3 | Quickly grabbing your sword ⚔️, you sidestep its leap and in one fall downward,you chop off its head ⚔. Good thing you took that sword! 4 | 5 | Looking inside the room, you find what looks to be another dead adventurer 😐 ; judging by the state of the corpse ⚰️, he must have been dead for a couple of weeks now. 6 | 7 | - [🔙 Go back](3-B.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/4-B.md: -------------------------------------------------------------------------------- 1 | Walking to the next room, you are startled by the sound of snarling. 2 | 3 | **Before you can react, a goblin 👺 leaps out at you!!!** 4 | 5 | Lacking anything to defend yourself with, you desperately try to run 🏃🏻‍♂️ away from the goblin 👺, but it leaps and knocks you to the ground. It stabs you 🔪 in the back 🔙 as you try to swat it off, and its knife 🔪 next comes down upon your throat. 6 | 7 | ***THE END 💀*** 8 | 9 | - [Restart the game 🔁](../begin-journey.md) 10 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/4.md: -------------------------------------------------------------------------------- 1 | Walking inside 🚶🏻‍♂️, you see that you've walked into a small hallway that only leads to one other room. 2 | 3 | On the wall 🧱, you notice a large, great sword placed on a stand ⚔. 4 | 5 | Will you take the sword ⚔? 6 | 7 | 8 | - [ Take the sword ⚔️](4-A.md) 9 | - [ Leave the sword ⬇️⚔](4-B.md) 10 | - [ Go back 🔙](3-B.md) 11 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/5-A.md: -------------------------------------------------------------------------------- 1 | You have found what appears to be the storage room. Inside you find many kitchen utensils 🥄🍴, cleaning utensils 🧼🧹, as well as tools for housekeeping 🛠. You do not find anything of particular note, except for a large knife 🔪, which might come in handy in a fight. 2 | 3 | - [Take the knife 🔪](5-AB.md) 4 | - [Leave the room](3-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/5-AB.md: -------------------------------------------------------------------------------- 1 | You take the knife in hand 🔪✋🏻. While it would not be your personal weapon of choice, it can definitely do some damage. 2 | 3 | - [Leave the room](3-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/5-B.md: -------------------------------------------------------------------------------- 1 | You have found what appears to be a small, walk-in tool closet, most likely used by the previous inhabitants to store their house-keeping tools 🛠. You find large scythes ⛏ for cutting the grass, hoes, buckets, ropes, and shovels. 2 | 3 | Unfortunately, there's nothing you could potentially use for a fight. Best to leave everything as is 😕. 4 | 5 | - [Go back 🔙](3-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/5-C.md: -------------------------------------------------------------------------------- 1 | You walk 🚶🏻‍♂️ inside the room to see large bookcases stacked with books 📚; it appears you have found the library. 2 | 3 | - [Browse through the books 📚](5-CA.md) 4 | - [Go back 🔙](3-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/5-CA.md: -------------------------------------------------------------------------------- 1 | Leisurely thumbing through whatever book 📔 catches your eye 👁, you find some books on poetry 🎼, some books on geography 🌍, and some books in a language you cannot read 😕. 2 | 3 | Still, you feel as though you have come out of this somewhat more knowledgeable than you were before. 4 | 5 | - [Go back 🔙](3-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/5-D.md: -------------------------------------------------------------------------------- 1 | You have entered into a large hallway, which leads down at least twenty feet to a large hallway, whose sides are lined with windows that show the outside. 2 | 3 | This hallway, which terminates with a single lone door 🚪, seems to lead to the back of the castle 🏰. The floor is lined with an ornate red carpet 🟥, and has long burnt-out torches lining the walls every five feet 🔥. 4 | 5 | - [Go down the hall](5-DA.md) 6 | - [Go back 🔙](3-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/5-DA.md: -------------------------------------------------------------------------------- 1 | Walking 🚶🏻‍♂️ down the hall, you suddenly notice a large shadow move right over you through the windows. 2 | 3 | The windows rattle violently, filling you with dread as to what could have caused that. You steel your nerves 😟 and continue forward to open the door 🚪... 4 | 5 | You find yourself in front of a large spiral staircase that leads downwards to the castle's lower levels. Clearly, this mammoth fortress is quite a bit bigger than it initially seemed. You could only imagine what wonders await below... 6 | 7 | - [Venture downward ↘](6-A.md) 8 | - [Go back 🔙](5-D.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-A.md: -------------------------------------------------------------------------------- 1 | Going down the stone granite steps of the spiral staircase, your torch 🔥 lighting your way, you find yourself at a single solitary door 🚪, unbarred by anything more than a simple wooden latch. You undo the latch and enter inside. 2 | 3 | You are shocked to find yourself at what appears to be a large facility, that can only be described as a dungeon. A large corridor makes up the bulk of the room, with five cells on each of its side. Each of the cells is barred by a large steel gate, and the room reeks with dampness. Why in the world does this castle have a dungeon?... 4 | 5 | - [Explore the room 🔍](6-C.md) 6 | - [Go back upstairs ↗](6-B.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-B.md: -------------------------------------------------------------------------------- 1 | You return to the second ✌🏻 floor by the entrance. 2 | 3 | - [Explore second floor 🔍](3-A.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-C.md: -------------------------------------------------------------------------------- 1 | After careful consideration, you decide to explore the facility. Making use of your torch to light the path, you make your way down the large corridor of the facility. 2 | 3 | You take a look around at the cells at the sides of the corridor. You do your best to make out the contents of each cell with the help of your torch, dimly lighting the interiors of each room. 4 | 5 | Most of the cells were locked and most were also empty. Only three cells held something noteworthy and accessible, at least from what you can see with the help of your torch. 6 | 7 | One cell contains two wooden chests. Another room has a table with a few things. The last cell contains the remains of a man. 8 | 9 | - [Explore the cell with the two chests 🔍](6-D.md) 10 | - [Explore the cell with the table ↗](6-E.md) 11 | - [Explore the cell with the remains ↗](6-F.md) 12 | - [Go back upstairs ↗](6-B.md) 13 | - [Continue along the corridor... ↗](../4/0.md) 14 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-D.md: -------------------------------------------------------------------------------- 1 | You enter into the room with two chests. The two chests are positioned across one another, each taking an opposite side of the room. 2 | 3 | There is a chest to your left and a chest to your right. 4 | 5 | - [Investigate the chest to your left 🔍](6-DA.md) 6 | - [Investigate the chest to your right ↗](6-DB.md) 7 | - [Head back to the corridor ↗](6-C.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-D1.md: -------------------------------------------------------------------------------- 1 | You approach the chest, and then... 2 | 3 | SNAP! 4 | 5 | The chest devours you whole! It was a mimic the entire time! 😱 6 | 7 | 💀 You die shortly after of blood loss and suffocation. 8 | 9 | **THE END 🎬** 10 | 11 | [Restart the game](../begin-journey.md) 12 | 13 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-DA.md: -------------------------------------------------------------------------------- 1 | You shine your light over the chest to your left. It looks like your regular old chest, but as you approach it slowly, a foul stench hits your nostrils. 2 | 3 | Something doesn't feel right. You feel like you're being watched. You feel fear slowly creep into your veins as you are a few feet away from the container. 4 | 5 | It isn't too late to turn back now. 6 | 7 | - [Attempt to open the chest 🔍](6-D1.md) 8 | - [Return to the corridor ↗](6-C.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-DB.md: -------------------------------------------------------------------------------- 1 | You approach the chest to your right. You investigate it with the help of your torch. You try to open it, but it's locked. 2 | 3 | You try to force the chest open, but it won't budge. It seems that whatever loot is inside the chest is going to have to keep waiting. 4 | 5 | You feel a strange presence emanating from behind you, but when you turn around, it's just another chest. You feel like you're being watched, but you quickly dismiss the feeling as you head back to the corridor. 6 | 7 | - [Head back to the corridor ↗](6-C.md) 8 | -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-E.md: -------------------------------------------------------------------------------- 1 | You enter the room with the table. On top of the table you see a roll of parchment. 2 | 3 | - [Investigate the chest to your left 🔍](6-DA.md) 4 | - [Head back to the corridor ↗](6-C.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-EA.md: -------------------------------------------------------------------------------- 1 | You unroll the piece of parchment and discover that it's a map! 2 | 3 | The map details the different rooms of the dungeon, including the room you are in. Apparently, the dungeon was used to house a minotaur! A beast that is half-man, half-bull. He is located at the other side of the dungeon in what seems to be the biggest cell in the building. 4 | 5 | You also notice what seems to be labeled as the exit on the other side of the dungeon, right next to the minotaur's holding cell. You gulp loudly in fear of what the beast might do when it does get its hands on you. 6 | 7 | The room with the minotaur is just a few rooms across after going through the main hall, which comes after the corridor. 8 | 9 | With this information, you head back to the corridor. 10 | 11 | - [Head back to the corridor ↗](6-C.md) -------------------------------------------------------------------------------- /english/normal-dungeon/9/6-F.md: -------------------------------------------------------------------------------- 1 | You enter the room with the human remains. You look at it. You feel sad. 2 | 3 | You think to yourself as to why you bothered walking into this room. I bet that guy lived a life of wonder and adventure, but unfortunately met his tragic end in this dungeon. 4 | 5 | This revelation instills in you a new hope that maybe, just maybe, you'll make it out of here alive. You've already made it this far, what's stopping you? 6 | 7 | You make your way back to the corridor. 8 | 9 | - [Head back to the corridor ↗](6-C.md) -------------------------------------------------------------------------------- /english/normal-dungeon/begin-journey.md: -------------------------------------------------------------------------------- 1 | You've been thrown into the dungeons. Cold🥶, hungry😣, tired😩, the only object you see is a thin hay mattress lying on the floor. You crash on the 🛌bed, unaware of the path that lies ahead🛣. 2 | 3 | [🤠 Begin your journey](0/0.md) 4 | -------------------------------------------------------------------------------- /english/normal-dungeon/decision_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/english/normal-dungeon/decision_tree.png -------------------------------------------------------------------------------- /english/sci-fi-dungeon/0/0.md: -------------------------------------------------------------------------------- 1 | **Wake up!!** 2 | 3 | "prisoner 66 - condition stable 😐. Crime - smuggling" 4 | You got yourself caught, trapped in a bright white room. 5 | Ahead of you a glowing red barrier. 🟥 6 | 7 | *What will you do?* 8 | 9 | - [Attack the guards 🤜](../1/1-A.md) 10 | - [Cooperate with Guards 💂💂](../1/1-B.md) 11 | - [😥Beg for mercy](../1/1-C.md) 12 | -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-A.md: -------------------------------------------------------------------------------- 1 | *You knocked out both guards, and got the access key with with their Space-Gun. You swipe the access key in the cell lock...* 2 | As you opened the gate, a red alarm bangs the spaceship. 3 | You see a convoy of guards coming from one of the gates. 4 | 5 | - [Run towards the second gate](1-A1.md) 6 | - [Take the fight with your Space-Gun](1-A2.md) -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-A1.md: -------------------------------------------------------------------------------- 1 | *You swipe the key and the gate is locked* 2 | You run towards the other gate and they are locked too. 3 | You check your guns ammo and its not enough for the convoy. 4 | 5 | *What will you do?* 6 | 7 | - [Drop your weapon & surrender](../WIP.md) 8 | - [Fight until your last breath](1-A2.md) -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-A2.md: -------------------------------------------------------------------------------- 1 | **You killed some guard but now you are out of ammo.** 2 | 3 | _What will you do now?_ 4 | 5 | - [You saw a window and try to escape.](../WIP.md) 6 | - [Get yourself killed. but no surrender](1-A2X.md) 7 | -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-A2X.md: -------------------------------------------------------------------------------- 1 | **You fought with pride.** 2 | 3 | You are dead ☠️. 4 | 5 | **THE END 🎬** 6 | 7 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-B.md: -------------------------------------------------------------------------------- 1 | **Guard1 to Control Room** 2 | > shifting prisoner 66 to cell B-628. Requesting cell access. 3 | 4 | Now you are shifted to a new cell where other prisoners are kept. 5 | Everyone is staring at you, but you saw a familiar face. You walk towards him and booom!!. You find your childhood friend Ash. You both decide to escape the prison with help of a gurad whom Ash knows. 6 | At night a guard came and opened gates for you and Ash. 7 | *guard goes back to its position. You take the spaceship map and your attention goes to control room and spaceship's parking area.* 8 | 9 | *What will you both decide to do?* 10 | 11 | - [Sneak in the control room and free other prisoners](1-B1.md) 12 | - [Go to the Parking Area](../WIP.md) 13 | 14 | 15 | -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-B1.md: -------------------------------------------------------------------------------- 1 | >You and Ash decided to go to the control room and free other prisoners. 2 | 3 | On the way to control room, you saw two guards 💂‍♂️💂‍♂️, guarding the elevators. 4 | 5 | *What will you do?* 6 | 7 | - [Distract them and sneak into the elevator.](1-B1A.md) 8 | - [Kill both of 'em & take their dresses.](1-B1B.md) -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-B1A.md: -------------------------------------------------------------------------------- 1 | *You & Ash distracted them, and are now going to the 6th floor where control room is situated.* 2 | 3 | 🛗🛗🛗 4 | 5 | **TING TONG, 6TH FLOOR!** 6 | 7 | >GUARD3 : Hands Up, On your knees now. 8 | >GUARD5 : DONT MOVE!! 9 | 10 | *Everything ends here, both of you are now being shifted to maximum security prison* 11 | 12 | 🔚 13 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-B1B.md: -------------------------------------------------------------------------------- 1 | *Both of you took their dresses and now going to the 6th floor where control room is.* 2 | 3 | **TING TONG! 3rd FLOOR** 🛗 4 | >Two guards enter the elevator. 5 | 6 | >GUARD1 : HEY THERE! 7 | 8 | >ASH : HELLO BROTHER. 9 | 10 | >GUARD2 : WHERE YOU GUYS HEADING? 11 | 12 | >ASH : CONTROL ROOM, COMMANDER CALLED US. 13 | 14 | >GUARD1 : THEN GOOD LUCK WITH THAT. 15 | 16 | - [6TH FLOOR 👉](../B1BA.md) 17 | - [Knock out two guards 🤜](../B1BB.md) 18 | -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-B1BB.md: -------------------------------------------------------------------------------- 1 | You two quickly kill the guards and head to the 6th floor. 2 | 3 | **TING TONG! 6th FLOOR** 4 | 5 | As soon as the door opened, the two of you immediately looked around, trying to find a room to hide the body of the guard. 6 | 7 | Thankfully no one noticed what was going on in the elevator 8 | 9 | There are now two paths, with a dangerous aura on the left and a deadly aura on the right. 10 | 11 | Which will you go? 12 | 13 | - [Left path](../WIP.md) 14 | - [Right path](../WIP.md) 15 | -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/1-C.md: -------------------------------------------------------------------------------- 1 | The guards don't care if you beg and force you to transfer. 2 | 3 | There are now only 2 options for you to take action. 4 | - [Attack the guards 🤜](../1/1-A.md) 5 | - [Cooperate with Guards 💂💂](../1/1-B.md) 6 | -------------------------------------------------------------------------------- /english/sci-fi-dungeon/1/B1BX.md: -------------------------------------------------------------------------------- 1 | **TING TONG! 6th FLOOR** 2 | 3 | After you and Ash reach the 6th floor 4 | Both of you will be immediately attacked by those 2 guards. 5 | 6 | >ASH : What made you attack us, you betrayed your honor to the Empire? 7 | 8 | >GUARD1 : Do you really think the guards don't know each other? 9 | 10 | >GUARD2 : The two of us may be just a little guard, but that's not an excuse for our incompetence. 11 | 12 | After we were caught, they locked us in a more secure place and we were being watched every second. 13 | 14 | You have failed to escape 15 | 16 | You are dead ☠️. 17 | 18 | THE END 🎬 19 | 20 | [Restart the game](../begin-journey.md) 21 | -------------------------------------------------------------------------------- /english/sci-fi-dungeon/WIP.md: -------------------------------------------------------------------------------- 1 | ## 🚧 This area of the dungeon is currently being worked upon. 🚧 2 | 3 | If you have something to add here then you can help us by [contributing to this dungeon](https://github.com/MakeContributions/markdown-dungeon/issues/112) 🙂 4 | 5 | - [Back to Begin Journey](begin-journey.md) -------------------------------------------------------------------------------- /english/sci-fi-dungeon/begin-journey.md: -------------------------------------------------------------------------------- 1 | You were caught smuggling! Now you find yourself trapped aboard the Empire's spaceship 🚀 Doing nothing means life imprisonment 🔒, you must escape! 2 | 3 | 4 | [👨‍🚀 Begin your journey 👩‍🚀](0/0.md) 5 | -------------------------------------------------------------------------------- /english/time-travel/0/0/0.md: -------------------------------------------------------------------------------- 1 | **You landed in middle of the forest, covered with nothing but trees and wild animals 🐅🌳🌲🍂.** 2 | 3 | *The sky looks cleaner because of less pollution 🌃.* 4 | 5 | What do you want to do 🤷‍♀️🤷‍♂️? 6 | 7 | - [Travel back to the future 🌠](../1/1.md) 8 | - [🌳🪓⛺ Gather wood to build a shelter](../2/2.md) 9 | - [🥣 Search for food](../7/7.md) 10 | -------------------------------------------------------------------------------- /english/time-travel/0/1/1.md: -------------------------------------------------------------------------------- 1 | **Your time machine broke. 💔** 2 | 3 | *Your time machine uncontrollably accelerates to over 10X the speed of light 🌠🌠💫.* 4 | 5 | Your body is violently throw out and torn up whilst attempting the return journey 🩸 6 | 7 | You. Are. Dead. 8 | 💀☠😐⚰ 9 | 10 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-1.md: -------------------------------------------------------------------------------- 1 | **You untie the woman 👩.** 2 | 3 | She is so happy, she can hardly stop kissing you 😘. As the adrenaline wears off, she warns you it's not safe here. Her memory isn't clear, but she swears she saw two more werewolves 🐺 nearby. 4 | 5 | You look around, hoping to make a plan. You see a patch of bushes 🌳 at the end of the clearing. You think to yourself that it's either forwards 🔪 or backwards... 6 | 7 | - [🏞️ Go back through the gorge](10-1A.md) 8 | - [🌳 Cut 🔪 the bushes](10-1B.md) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-1A.md: -------------------------------------------------------------------------------- 1 | **You turn back to face the darkness of the gorge that brought you here 🏞️.** 2 | 3 | *Two smaller werewolves 🐺🐺 emerge from the sliver of blackness in the gorge* 4 | 5 | You don't have the strength 😫 to fight anymore. 6 | 7 | They ambush you both. 8 | 9 | You die ☠️. 10 | 11 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-1B.md: -------------------------------------------------------------------------------- 1 | **You cut the bushes 🌳.** 2 | 3 | This path leads back to the river! 4 | 5 | The river is shallow here and you both have no problems crossing the river. 6 | 7 | Soon, you are back in your shelter ⛺ with this beautiful woman 👩 8 | 9 | - [Stay there and start living with woman 👩](10-1BA) 10 | - [🌠 Go back to your times](../1800-won) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-1BA.md: -------------------------------------------------------------------------------- 1 | **Congratulations! 🥳** 2 | 3 | You lived happily ever after with this beautiful woman 💑... 4 | 5 | ...until 🐺 🐺 😈 6 | 7 | Thanks for playing! 🥳 8 | 9 | - [🔄 Start from beginning](../../begin-journey.md) 10 | 11 | You can build your own dungeons by contributing!: 12 | 13 | - [Contribution Guidelines](../../../../README.md#contribution-guidelines) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-2.md: -------------------------------------------------------------------------------- 1 | **You kill her 🔪 👩 in cold blood.** 2 | 3 | Her screams 😱 echo into the clearing and fade from the night air ☠️. 4 | 5 | You can see bushes 🌳 at the other end of the clearing. Your machete drips with her blood 🔪. 6 | 7 | - [🏞️ Go back through the gorge](10-1A.md) 8 | - [🌳 Cut 🔪 the bushes](10-2A.md) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-2A.md: -------------------------------------------------------------------------------- 1 | **You cut the bushes 🌳.** 2 | 3 | This path leads back to the river! 4 | 5 | The river is shallow here and you have no problems crossing. 6 | 7 | Soon, you are in your shelter ⛺. You feel terible about what you did. Her screams and blood will haunt your dreams ☹️. 8 | 9 | - [Stay there for a night 🌙](10-2B) 10 | - [🌠 Go back to your times](../1800-won) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-2B.md: -------------------------------------------------------------------------------- 1 | **You are feeling sleepy 💤.** 2 | 3 | You lie in bed 🛌 and drift off to an uncomfortable sleep. 4 | 5 | At midnight 🌙, the door 🚪 creaks open. You are wrenched from your nightmares by the feeling of an icecicle piercing your heart 💔. 6 | 7 | As your vision fades to black you make out the silhouettes of two werewolves in the moonlight 🐺🐺 crouched by your bedside. 8 | 9 | As your final breath escapes you hear their shrill voices ringing in your ears: 10 | *"For our father..."* 11 | 12 | You died ☠️. 13 | 14 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-3.md: -------------------------------------------------------------------------------- 1 | **You leave the helpless woman 👩 tied up.** 2 | 3 | She screams 😱 in panic. 4 | 5 | You can see bushes 🌳 on the other side of the clearing. You are sure you can cut them with your machate 🔪. 6 | 7 | - [🏞️ Go back through the gorge](10-1A.md) 8 | - [🌳 Cut 🔪 the bushes](10-3A.md) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-3A.md: -------------------------------------------------------------------------------- 1 | **You cut the bushes 🌳.** 2 | 3 | This path leads back to the river! 4 | 5 | The river is shallow here and you have no problems crossing. 6 | 7 | Soon, you are in your shelter ⛺. You wonder if you did the right thing by leaving the woman 👩. 8 | 9 | - [Stay there for a night 🌙](10-3B) 10 | - [🌠 Go back to your times](../1800-won) -------------------------------------------------------------------------------- /english/time-travel/0/10/10-3B.md: -------------------------------------------------------------------------------- 1 | **Congratulations! 🥳** 2 | 3 | You survived and killed the werewolf 🐺! Now you can play other dungeon or rooms! 4 | 5 | Thanks for playing! 🥳 6 | 7 | - [🔄 Start from beginning](../../begin-journey.md) 8 | 9 | You can build your own dungeons by contributing!: 10 | 11 | - [Contribution Guidelines](../../../../README.md#contribution-guidelines) -------------------------------------------------------------------------------- /english/time-travel/0/1800-won.md: -------------------------------------------------------------------------------- 1 | **Congratulations! 🥳** 2 | 3 | You survived and killed the werewolf 🐺! Now you can play other dungeons or rooms! 4 | 5 | Thanks for playing! 🥳 6 | 7 | - [🔄 Start from beginning](../begin-journey.md) 8 | 9 | You can build your own dungeons by contributing!: 10 | 11 | - [Contribution Guidelines](../../../README.md#contribution-guidelines) -------------------------------------------------------------------------------- /english/time-travel/0/2/2-1.md: -------------------------------------------------------------------------------- 1 | **You gathered some woods 🌳.** 2 | 3 | What do you do next? 4 | 5 | - [⛺ Build a shelter](../3/3-1.md) 6 | - [⏲ Travel back to the future](../1/1.md) -------------------------------------------------------------------------------- /english/time-travel/0/2/2.md: -------------------------------------------------------------------------------- 1 | **You gathered some wood 🌳.** 2 | 3 | What do you do next? 4 | 5 | - [⛺ Build a shelter](../3/3.md) 6 | - [⏲ Travel back to the future](../1/1.md) 7 | -------------------------------------------------------------------------------- /english/time-travel/0/3/3-1.md: -------------------------------------------------------------------------------- 1 | **You built a shelter 🎁⛺!** 2 | 3 | *Sun is about to set* 🌆. *You miss your friends*(👦🧑👧👩‍🦰) *back in the future*. 4 | 5 | - [⏲ Go back to the future](../1/1.md) 6 | - [🕶 Stay there for a night](../4/4-1.md) -------------------------------------------------------------------------------- /english/time-travel/0/3/3.md: -------------------------------------------------------------------------------- 1 | **After 2 hours, you managed to build a cozy shelter 🎁⛺!** 2 | 3 | *Sun is about to set* 🌆. *You miss your friends*(👦🧑👧👩‍🦰) *back in the future*. 4 | 5 | - [⏲ Go back to the future](../1/1.md) 6 | - [🕶 Stay there for a night](../4/4.md) -------------------------------------------------------------------------------- /english/time-travel/0/4/4-1.md: -------------------------------------------------------------------------------- 1 | **It's getting dark 🌃, you have some extra firewood leftover from building your shelter.** 2 | 3 | *Do you build a fire in your newly created fireplace?* 4 | - [Build A Fire 🔥](../6/6-1.md) 5 | - [Sit in the dark 🪑](../5/5.md) -------------------------------------------------------------------------------- /english/time-travel/0/4/4.md: -------------------------------------------------------------------------------- 1 | **It's getting dark 🌃, you have some extra firewood leftover from building your shelter.** 2 | 3 | *Do you build a fire in your newly created fireplace?* 4 | - [Build A Fire 🔥](../6/6.md) 5 | - [Sit in the dark 🪑](../5/5.md) -------------------------------------------------------------------------------- /english/time-travel/0/5/5.md: -------------------------------------------------------------------------------- 1 | **You sit in the dark shelter alone and fall asleep.😴🛌** 2 | 3 | **Whilst asleep, a hungry tiger snuck into your cozy shelter 🐅🐯** 4 | 5 | He. Kills. You. 😐🥩 6 | 7 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/6/6-1.md: -------------------------------------------------------------------------------- 1 | **You sit by the fire and enjoy the warmth. 🔥💺** 2 | 3 | Your stomach growls with hunger 😟. 4 | 5 | - [Cook meat 🥩 and eat](6-1A.md) 6 | - [🛌 Go to sleep](6-2B.md) -------------------------------------------------------------------------------- /english/time-travel/0/6/6-1A.md: -------------------------------------------------------------------------------- 1 | **You ate cooked meat and felt sleepy.** 2 | 3 | *You fall asleep by the fire and it's cosy 🤗. You awake in the morning in your new house.* 4 | 5 | - [🚶‍♂️ Explore the area](../8/8.md) 6 | - [⏲ Go to the future year 2100](../../1/0.md) 7 | - [🌠 Go back to your present](../1/1.md) -------------------------------------------------------------------------------- /english/time-travel/0/6/6-2A.md: -------------------------------------------------------------------------------- 1 | **In the darkness of the forest, you get lucky and stumble into a tasty-looking berry bush 🍇** 2 | 3 | You make your way back to camp, munching on your tasty treats. 4 | Unfortunately, you're not the only one in the forest who's looking for a meal... 5 | A rabid wolf 🐺 smells your berries and attacks. 6 | 7 | You slowly and painfully bleed out until you die 🩸☠️ 8 | 9 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/6/6-2B.md: -------------------------------------------------------------------------------- 1 | **You wake up famished and have no strength to do anything.** 2 | 3 | Spending the night in the past was fun, but you're so hungry and tired. 4 | You look at your time machine and remember the possibilities are endless... 5 | 6 | - [Travel back to the future 🌠](../1/1.md) -------------------------------------------------------------------------------- /english/time-travel/0/6/6.md: -------------------------------------------------------------------------------- 1 | **You sit by the fire and enjoy the warmth. 🔥💺** 2 | 3 | Your stomach growls with hunger 😟. 4 | 5 | - [Forage for food](6-2A.md) 6 | - [Stay home ⛺ and go to sleep](6-2B.md) -------------------------------------------------------------------------------- /english/time-travel/0/7/7-1.md: -------------------------------------------------------------------------------- 1 | **Within 10 minutes, you begin to feel dizzy 🍄. Your world slowly starts spinning 🌀 and you blissfully fall down to meet the soft forest floor. You close your eyes.** 2 | 3 | Your eyes crack open. Suddenly, a huge rainbow 🌈 bunny-rabbit 🐰 appears, politely asking if you know the way to Valhalla... 4 | You understand his perfect English, but your head is still spinning when you try to speak: 5 | 6 | - [🙊 ymmhmmmhmmm](7-1A.md) 7 | - [↪️ Point to a random direction](7-1B.md) 8 | -------------------------------------------------------------------------------- /english/time-travel/0/7/7-1A.md: -------------------------------------------------------------------------------- 1 | **The huge rainbow 🌈 bunny-rabbit 🐰 gets angry at your blasphemous mumbling and throws shurikens at you.** 2 | 3 | Everything happened so fast! Your wounds don't feel real. Paralyzed by what took place, you bleed out and die ☠️. 4 | 5 | [🔄 Restart the game](../../begin-journey.md) 6 | -------------------------------------------------------------------------------- /english/time-travel/0/7/7-1B.md: -------------------------------------------------------------------------------- 1 | **He thanks you and leaves you to enjoy your bliss.** 2 | 3 | - [🥣 Look for something else to eat](7-3.md) 4 | - [🌳🪓⛺ Gather wood to build a shelter](../2/2.md) 5 | -------------------------------------------------------------------------------- /english/time-travel/0/7/7-2.md: -------------------------------------------------------------------------------- 1 | **You see a little bunny-rabbit 🐰 jumping around.** 2 | 3 | - [👐 Try to kill him with your bare hands](7-2A.md) 4 | - [🥣 Look for something else to eat](7-3.md) 5 | - [🌳🪓⛺ Gather wood to build a shelter](../2/2.md) 6 | -------------------------------------------------------------------------------- /english/time-travel/0/7/7-2A.md: -------------------------------------------------------------------------------- 1 | **The bunny-rabbit 🐰 noticed you and runs away.** 2 | 3 | - [🏃 Chase him](7-2AA.md) 4 | - [🤾‍♂️ Throw a stone at him](7-2AB.md) 5 | - [🥣 Look for something else to eat](7-3.md) 6 | - [🌳🪓⛺ Gather wood to build a shelter](../2/2.md) 7 | -------------------------------------------------------------------------------- /english/time-travel/0/7/7-2AA.md: -------------------------------------------------------------------------------- 1 | **You take off after the bunny-rabbit 🐰 with the speed of Usain Bolt 🇯🇲, randomly darting through the trees after your prey.** 2 | 3 | *On your pursuit, a rabid wolf 🐺 joins in the hunt! Unwilling to share your next meal, you abandon your chase by attacking the beast instead!*** 4 | 5 | You manage to fight off the rabid wolf, but you've been bitten and are badly bleeding. Within hours, rabies sets in - driving you mad. Alone, hungry and confused deep inside the forest, you think of the time machine and your friends back in the future.You eventually succumb to your injurues, and die ☠️. 6 | 7 | [🔄 Restart the game](../../begin-journey.md) 8 | -------------------------------------------------------------------------------- /english/time-travel/0/7/7-2AB.md: -------------------------------------------------------------------------------- 1 | **You thrown 🤾‍♂️ a stone at the bunny-rabbit 🐰.** 2 | 3 | Critical HIT! You obtained **meat** 🥩. 4 | 5 | - [🤤 Eat raw meat 🥩](7-2ABA.md) 6 | - [🌳🪓⛺ Gather wood to build a shelter](../2/2-1.md) -------------------------------------------------------------------------------- /english/time-travel/0/7/7-2ABA.md: -------------------------------------------------------------------------------- 1 | **It wasn't edible. You vomit 🤮.** 2 | 3 | You feel better after vommitting, but still hungry. 4 | 5 | - [🥣 Look for something else to eat](7-3.md) 6 | - [🌳🪓⛺ Gather wood to build a shelter](../2/2.md) 7 | -------------------------------------------------------------------------------- /english/time-travel/0/7/7-3.md: -------------------------------------------------------------------------------- 1 | **You get lucky and stumble into a tasty-looking berry bush 🍇** 2 | 3 | You continue through the lush forest, munching on your tasty treats. 4 | Unfortunately, you're not the only one in the forest who's looking for a meal... 5 | A rabid wolf 🐺 smells your berries and attacks. 6 | 7 | You slowly and painfully bleed out until you die 🩸☠️ 8 | 9 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/7/7-4.md: -------------------------------------------------------------------------------- 1 | You came back to shelter ⛺. 2 | 3 | What do you want to do? 4 | 5 | - [🚶‍♂️ Explore the area](../8/8.md) 6 | - [⏲ Go to the future year 2100](../../1/0.md) 7 | - [🌠 Go back to your present](../1/1.md) 8 | 9 | -------------------------------------------------------------------------------- /english/time-travel/0/7/7.md: -------------------------------------------------------------------------------- 1 | **You are looking around and notice strange-looking mushrooms 🍄.** 2 | 3 | As you approach the mushroom patch, you hear the faint sounds of animals nearby... 4 | What do you do? 5 | 6 | - [🍄 Pick and eat the mushrooms](7-1.md) 7 | - [🦻 Follow the sounds of the animals](7-2.md) 8 | - [🥣 Look for something else to eat](7-3.md) 9 | - [🌳🪓⛺ Gather wood to build a shelter](../2/2.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-1.md: -------------------------------------------------------------------------------- 1 | **The bushes 🌳🌲 on the other side of the river are too tall to pass through.** 2 | 3 | Without a machete 🔪 you are unable to proceed. 4 | 5 | - [⬅️ Go back](8-4.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2.md: -------------------------------------------------------------------------------- 1 | **You see the river widens up and becomes quite dangerous.** 2 | 3 | *the rocks create rapids which throw white water over 1m into the air* 4 | 5 | What now? 6 | 7 | - [⬆️ Go upstream](8-2A.md) 8 | - [➡️ Cross the river](8-2B.md) 9 | - [⬇️ Go back](8-4.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2A.md: -------------------------------------------------------------------------------- 1 | **You reluctantly press onwards. After about a mile, the gently-sloping river bank shifts to ominous, narrow canyon walls on either side.** 2 | 3 | The river slices through the surrounding hillside 🏞️, leaving a trecherous gorge in its wake that stretches into endless blackness. 4 | 5 | Uphill ⛰️ the path continues in a series of switchbacks and loose boulders. 6 | 7 | *Your path forks in two* 8 | 9 | - [⛰️ Go uphill](8-2AA.md) 10 | - [🏞️ Go through the gorge](8-2C.md) 11 | - [⬇️ Go back](8-2.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2AA.md: -------------------------------------------------------------------------------- 1 | **You wind your way uphill until you reach an ramshackle farm 🏚️🌾.** 2 | 3 | Just beyond the boulders you spy the remains of a mostly-collapsed barn. Next to it lies what appears to be a woodshed. As you near your approach, to your delight and releif, a small farmhouse 🏚️ with well-kept fields 🌾 morph into view. 4 | 5 | - [🏚️ Enter farmhouse](8-2AB.md) 6 | - [🚪 Enter woodshed](8-2AC.md) 7 | - [🚪 Enter barn](8-2AD.md) 8 | - [⬇️ Go back](8-2A.md) 9 | -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2AB.md: -------------------------------------------------------------------------------- 1 | **You enter the farmhouse 🏚️.** 2 | 3 | In the front room now, you see a table with four chairs 🪑, a fireplace 🔥 with cooking utensils, and some books 📚. 4 | 5 | In the corner, you see the entance to the back room. 6 | 7 | - [📚 Read books](8-2ABA.md) 8 | - [🚪 Enter back room](8-2ABB.md) 9 | - [🚪 Go to woodshed](8-2AC.md) 10 | - [🚪 Go to barn](8-2AD.md) 11 | - [⬇️ Go back](8-2A.md) 12 | -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2ABA.md: -------------------------------------------------------------------------------- 1 | **You open some books 📖 and read.** 2 | 3 | You first pick up a copy of *Monstres And Their Kynde* 📘written in archaic English. You skim to learn it's about wolves 🐺 and werewolves. It piques your interest, inviting you to explore the other titles. 4 | 5 | Returning the tattered chunk to the table, your eye catches **bold** lettering engraved on sheepskin: 6 | *Les Lupus Horrifique* 📗 by a Dr. Raphael Peltonne 👨‍⚕️. The book is filled with terrifying events concerning a mass outbreak of lupus 🐺 and rabies - told in an excecdingly cynical way. 7 | 8 | - [🚪 Enter back room](8-2ABC.md) 9 | - [🚪 Go to woodshed](8-2AE.md) 10 | - [🚪 Go to barn](8-2AE.md) 11 | - [⬇️ Go back](8-2AE.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2ABB.md: -------------------------------------------------------------------------------- 1 | **The back room's contents include three beds, dirty and unmade.** 2 | 3 | The smoldering coals of this bedroom's fireplace dimmly light the room. 4 | 5 | Clothes are piled everywhere, both men's 👔 and women's 👚, and an upright wardrobe actually holds reasonably clean, respectable clothes. 6 | 7 | In the glint of the firelight you spy a machete 🔪 by the bedside table. 8 | 9 | - [🔪 Take machete and go back](8-2ABD.md) 10 | - [🚪 Go to woodshed](8-2AE.md) 11 | - [🚪 Go to barn](8-2AE.md) 12 | - [⬇️ Go back](8-2AE.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2ABC.md: -------------------------------------------------------------------------------- 1 | **The back room's contents include three beds, dirty and unmade.** 2 | 3 | The smoldering coals of this bedroom's fireplace dimmly light the room. 4 | 5 | Clothes are piled everywhere, both men's 👔 and women's 👚, and an upright wardrobe actually holds reasonably clean, respectable clothes. 6 | 7 | In the glint of the firelight you spy a machete 🔪 by the bedside table. 8 | 9 | - [🔪 Take machete and go back](8-2ABE.md) 10 | - [🚪 Go to woodshed](8-2AE.md) 11 | - [🚪 Go to barn](8-2AE.md) 12 | - [⬇️ Go back](8-2AE.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2ABD.md: -------------------------------------------------------------------------------- 1 | **You are back in front room.** 2 | 3 | In the front room now, you are greeted by the same table with four chairs 🪑, a fireplace 🔥 with cooking utensils, and some books 📚. 4 | 5 | In the corner, you stand with the entance to the back room behind you. 6 | 7 | - [📚 Read books](8-2ABDA.md) 8 | - [🚪 Go to woodshed](8-2AE.md) 9 | - [🚪 Go to barn](8-2AE.md) 10 | - [⬇️ Go back](8-2AE.md) 11 | -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2ABDA.md: -------------------------------------------------------------------------------- 1 | **You open some books 📖 and read.** 2 | 3 | You first pick up a copy of *Monstres And Their Kynde* 📘written in archaic English. You skim to learn it's about wolves 🐺 and werewolves. It piques your interest, inviting you to explore the other titles. 4 | 5 | Returning the tattered chunk to the table, your eye catches **bold** lettering engraved on sheepskin: 6 | *Les Lupus Horrifique* 📗 by a Dr. Raphael Peltonne 👨‍⚕️. The book is filled with terrifying events concerning a mass outbreak of lupus 🐺 and rabies - told in an excecdingly cynical way. 7 | 8 | - [🚪 Go to woodshed](8-2ABE.md) 9 | - [🚪 Go to barn](8-2ABE.md) 10 | - [⬇️ Go back](8-2ABE.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2ABE.md: -------------------------------------------------------------------------------- 1 | **You go outside the farmhouse, and see that sun is going down 🌄.** 2 | 3 | *You must have lost track of time* 4 | 5 | - [⬇️ Go back](../9/9-1.md) 6 | - [🥱 Stay here overnight](8-2AEA) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2AC.md: -------------------------------------------------------------------------------- 1 | **The woodshed holds nearly eight cords of well-cured hardwood.** 2 | 3 | Some sticks have teeth marks on them. 4 | 5 | - [🏚️ Go to farmhouse](8-2AB.md) 6 | - [🚪 Go to barn](8-2AD.md) 7 | - [⬇️ Go back](8-2A.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2AD.md: -------------------------------------------------------------------------------- 1 | **There are a few bones 🦴 strewn about.** 2 | 3 | - [🦴 Take a look at the bones](8-2ADA.md) 4 | - [🏚️ Go to farmhouse](8-2AB.md) 5 | - [🚪 Go to woodshed](8-2AC.md) 6 | - [⬇️ Go back](8-2A.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2ADA.md: -------------------------------------------------------------------------------- 1 | **Without a doubt... These are human bones 🦴 and skulls 💀.** 2 | 3 | - [🏚️ Go to farmhouse](8-2AB.md) 4 | - [🚪 Go to woodshed](8-2AC.md) 5 | - [⬇️ Go back](8-2A.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2AE.md: -------------------------------------------------------------------------------- 1 | **You go outside the farmhouse, and see that sun is going down 🌄.** 2 | 3 | *You must have lost track of time* 4 | 5 | - [⬇️ Go back](../9/9-2.md) 6 | - [🥱 Stay here overnight](8-2AEA.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2AEA.md: -------------------------------------------------------------------------------- 1 | **You decide to sleep in the largest bed, nearest where the machete was found 🛌.** 2 | 3 | You sleep soundly, and gently stir to the sound of footsteps in the frontroom. 4 | 5 | Not fully awake, you sit up, and promptly receive a blunt blow to the head - knocking you back onto your pillow. 6 | 7 | Before you could react, a second one follows. 8 | 9 | You're dying ☠️. 10 | 11 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2B.md: -------------------------------------------------------------------------------- 1 | **You are trying to cross the river, but you are quickly swept along by the current.** 2 | 3 | Your body thrashes against the rapids. You get knocked unconscious underwater, and drown ☠️. 4 | 5 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2C.md: -------------------------------------------------------------------------------- 1 | **You walk confidently into the gorge.** 2 | 3 | Shortly after entering, you hear screams 😱 echoing off the walls in the distance. 4 | 5 | - [🏃‍♂️ Run](../9/9-1BA.md) 6 | - [🚶‍♂️ Walk carefully](8-2CB.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2CB.md: -------------------------------------------------------------------------------- 1 | **After about 20 minutes you reach a valley.** 2 | 3 | At the end of this ravine you see a woman 👩 tied to a tree and crying 😢. 4 | 5 | - [Untie her 👩](8-2CBA.md) 6 | - [Walk to her carefully and watch 👀 the area around](8-2CBB.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2CBA.md: -------------------------------------------------------------------------------- 1 | **You run up to the woman and try to untie her.** 2 | 3 | Suddenly, something knocks you to the ground 💢. You see a human-like hairy monster with the face of a wolf 🐺. He is displeased and very hungry. 4 | 5 | He takes his blade from his sheath and stabs violently towards your face. 6 | 7 | You died ☠️. 8 | 9 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-2CBB.md: -------------------------------------------------------------------------------- 1 | **You approach the woman carefully.** 2 | 3 | Suddenly, something knocks you to the ground 💢. You see a human-like hairy monster with the face of a wolf 🐺. He is displeased and very hungry. 4 | 5 | He takes his blade from his sheath and stabs violently towards your face. 6 | 7 | You died ☠️. 8 | 9 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-3.md: -------------------------------------------------------------------------------- 1 | **You are walking downstream and find nothing but wagon wheels and garbage tossed ⚙️ from the railway 🛤️.** 2 | 3 | *Waste produced in the nearby mines makes the river smaller and dirtier as it flows downstream.* 4 | 5 | - [➡️ Cross the river](8-3A.md) 6 | - [⬆️ Go upstream](8-4.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-3A.md: -------------------------------------------------------------------------------- 1 | **You attempt to cross, but the waste from the mine is no ordinary waste.** 2 | 3 | It is radioactive waste, and the river is very toxic! 4 | 5 | You died ☠️. 6 | 7 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8-4.md: -------------------------------------------------------------------------------- 1 | **You backtrack to your starting place along the river bank** 2 | 3 | Where do you want to go now? 4 | 5 | 6 | - [⬆️ Go upstream](8-2.md) 7 | - [⬇️ Go downstream](8-3.md) 8 | - [⛺ Go back to the shelter](../7/7-4.md) -------------------------------------------------------------------------------- /english/time-travel/0/8/8.md: -------------------------------------------------------------------------------- 1 | **You leave your shelter and come across a nearby river 🏞️.** 2 | 3 | The river is narrow and shallow. You are sure you are able to cross it. 4 | 5 | - [➡️ Cross the river](8-1.md) 6 | - [⬆️ Go upstream](8-2.md) 7 | - [⬇️ Go downstream](8-3.md) 8 | - [⛺ Go back to the shelter](../7/7-4.md) 9 | -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1.md: -------------------------------------------------------------------------------- 1 | **You traverse back to the fork and see the gorge 🏞️ and the way back to your shelter.** 2 | 3 | - [⬇️ Go downstream](9-1A.md) 4 | - [🏞️ Go through the gorge](9-1B.md) 5 | -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1A.md: -------------------------------------------------------------------------------- 1 | **You turn back towards your shelter and carefully start down the path** 2 | 3 | You slip and hit your head on a rock. 4 | 5 | You died ☠️. 6 | 7 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1B.md: -------------------------------------------------------------------------------- 1 | **You bravely face the gorge and enter.** 2 | 3 | You hear screams 😱 in the distance. 4 | 5 | - [🏃‍♂️ Run](9-1BA.md) 6 | - [🚶‍♂️ Walk carefully](9-1BB.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1BA.md: -------------------------------------------------------------------------------- 1 | **You slipped and hit a rock.** 2 | 3 | You died ☠️. 4 | 5 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1BB.md: -------------------------------------------------------------------------------- 1 | **After about 20 minutes you reach a valley.** 2 | 3 | At the end of the gorge you see a woman 👩 tied to a tree. She's helplessly crying 😢. 4 | 5 | - [Untie her 👩](9-1BC.md) 6 | - [Approach her carefully and check your surroundings 👀 ](9-1BD.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1BC.md: -------------------------------------------------------------------------------- 1 | **You run up to the woman and try to untie her.** 2 | 3 | Suddenly, something angrily knocks you to the ground 💢. Lording over you is a real werewolf 🐺😠. 4 | 5 | - [Defend yourself with a machete 🔪](9-3.md) 6 | - [🔪 Get up and try to stab werewolf](9-1BCB.md) 7 | - [🏃‍♂️ Get up and run away](9-1BCC.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1BCB.md: -------------------------------------------------------------------------------- 1 | **You are trying to get up.** 2 | 3 | The blow was so powerful you can barely stand. You hit with machete 🔪, but werewolf dodge it and stab you in your face 🤕. 4 | 5 | You're dying ☠️. 6 | 7 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1BCC.md: -------------------------------------------------------------------------------- 1 | **You run 🏃‍♂️ as fast as you can.** 2 | 3 | You feel the white-hot pain of a blade pierce your back. 4 | 5 | You run with the blade in your back until you bleed out 🩸, and die ☠️. 6 | 7 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-1BD.md: -------------------------------------------------------------------------------- 1 | **You appraoch her carefully.** 2 | 3 | Suddenly, you hear approaching footsteps and turn to see a werewolf 🐺 running sprinting towards you - and gaining speed! 4 | 5 | 6 | - [🏃‍♂️ Try to dodge his attack](9-4A.md) 7 | - [🔪 Attack werewolf 🐺](9-4B.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-2.md: -------------------------------------------------------------------------------- 1 | **You traverse back to the fork and see the gorge 🏞️ and the way back to your shelter.** 2 | 3 | - [⬇️ Go downstream](9-1A.md) 4 | - [🏞️ Go through the gorge](../8/8-2C.md) 5 | -------------------------------------------------------------------------------- /english/time-travel/0/9/9-3.md: -------------------------------------------------------------------------------- 1 | **The werewolf 🐺 is going to strike at you.** 2 | 3 | - [👈 Defend left side](9-3A.md) 4 | - [👉 Defend right side](9-3B.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-3A.md: -------------------------------------------------------------------------------- 1 | **You perry left with your machete 🔪.** 2 | 3 | You defend just-in-time as his right paw clenches 🤜 your machete. He leans closer and the twilight reveals big, sharp teeth that are machetes of their own 🩸. 4 | 5 | - [Push him with the machete with both hands 🔪](9-3AA.md) 6 | - [Try to hit him in the face with other hand 🤛](9-3AB.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-3AA.md: -------------------------------------------------------------------------------- 1 | **You struggle against the werewolf 🐺 fighting with your machete 🔪.** 2 | 3 | It wasn't easy, but your effort was just enough. The wererolf 🐺 recoils in pain, allowing you a brief chance to strike! 4 | 5 | - [🧍 Combat roll and attack!](9-4AA.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-3AB.md: -------------------------------------------------------------------------------- 1 | **You try your best uppercut 🤛 whilst guarding yourself with your machete.** 2 | 3 | The cunning werewolf 🐺 side-steps your punch and bites your neck 🤕. 4 | 5 | You let out a gasp as the blood warms your tired body on its way out onto the ground. It's over ☠️. 6 | 7 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-3B.md: -------------------------------------------------------------------------------- 1 | **You perry right with your machete 🔪.** 2 | 3 | The relentless werewolf attacks your undefended side with his right paw 🤜, landing a jaw-crushing blow to your face 🤕. 4 | 5 | You died ☠️. 6 | 7 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-4A.md: -------------------------------------------------------------------------------- 1 | **You attempt to dodge his attack.** 2 | 3 | You stare at your fate, the werewolf 🐺 with his paws 🤜 coming straight for your head. 4 | 5 | But at the last moment, you see the werewolf 🐺 stopped behind you. 6 | 7 | - [Attack him 🏃🔪](9-4AA.md) 8 | - [Run away 🏃](9-1BCC.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-4AA.md: -------------------------------------------------------------------------------- 1 | **You stab 🔪💢 the werewolf 🐺.** 2 | 3 | Your strike wounds him deeply. The werewolf howls in pain 😱 but is not beaten. He swipes his razor sharp claws at you in rage 😡. 4 | 5 | - [Try to avoid 💨](9-4AB.md) 6 | - [Push him with the machete 🔪](9-4AC.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-4AB.md: -------------------------------------------------------------------------------- 1 | **The werewolf 🐺 is trying to hit you, but you successfully avoid him** 2 | 3 | You gather yourself and notice his back is turned, allowing you to strike! 4 | 5 | You stab 🔪💢 him once more, a fatal blow that releases his bowels. You're confident that it's over... 6 | 7 | - [Rescue woman 👩](../10/10-1.md) 8 | - [🔪 Kill woman 👩](../10/10-2.md) 9 | - [⬆️ Go back](../10/10-3.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-4AC.md: -------------------------------------------------------------------------------- 1 | **The werewolf 🐺 is trying to hit you.** 2 | 3 | You slice at him with your machete 🔪. Your hits were strong, but his were stronger. 4 | 5 | You fall to the ground with a broken spine 🤕. 6 | 7 | You lie paralyzed, helpless, awaiting your fate ☠️. 8 | 9 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/0/9/9-4B.md: -------------------------------------------------------------------------------- 1 | **The werewolf 🐺 is sprinting towards you.** 2 | 3 | You brace yourself with your machete 🔪 in hand, ready for the worst. 4 | 5 | As he gets within striking distance, you buckle in fear. You barely scratch through his tough hide, and he proceeds to tear you apart with his claws 🤜💢. 6 | 7 | You died ☠️. 8 | 9 | [🔄 Restart the game](../../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/1/0.md: -------------------------------------------------------------------------------- 1 | **Future is pretty exciting. Flying cars all around 🚗 but global warming has exploited almost all of earth's resources.** 2 | 3 | *SpaceX and NASA are working together to send everyone to Mars since Earth has become uninhabitable.* 4 | 5 | - [😥 You get overwhelmed and go back to the past](../begin-journey.md) 6 | - [😎 Stay and help people colonize on Mars](1.md) -------------------------------------------------------------------------------- /english/time-travel/1/1.md: -------------------------------------------------------------------------------- 1 | **You are a good human for helping people. 🦸‍♀️🦸‍♂️🌟** 2 | 3 | *But your body is unable to bear the climatic conditions of 2100!* 4 | 5 | You must go back before it's too late ⌛! 6 | 7 | - [😎 Don't go back and keep helping](2.md) 8 | - [⏲ Go back](../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/1/2.md: -------------------------------------------------------------------------------- 1 | **Your body gives up to high CO2 rate in 2100** 2 | 3 | You die a martyr! 😭 ♥💖 4 | 5 | Respect to you 🕊☮. 6 | 7 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/2/0.md: -------------------------------------------------------------------------------- 1 | **You're now in the year 2400. 🚀 Humankind has migrated from Mars to the Moon!** 2 | 3 | *However, resources are depleting fast. What do you do?* 4 | 5 | - [😥 Get overwhelmed and go back to the past](../begin-journey.md) 6 | - [😎 Take initiative and lead your own project](1.md) -------------------------------------------------------------------------------- /english/time-travel/2/1.md: -------------------------------------------------------------------------------- 1 | **Wow you have decided to help your community and become a leader! You must come up with a way to save everyone.** 2 | 3 | *Your project must benefit the whole society. What project will you take on?* 4 | 5 | - [🌱 Lead a committee to learn and teach plant cultivation on the Moon](2.md) 6 | - [🛰️ Gather a team of engineers to develop new technology](3.md) 7 | - [😰 Get anxious because you're an introvert and go back to the past](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /english/time-travel/2/2-A.md: -------------------------------------------------------------------------------- 1 | **Your team has found native soil to use in cultivating crops! 🌾 Unfortunately, the native soil was found to be poisonous to all humans** 2 | 3 | *The results of this discovery came too late and humankind has come to an end ☠️* 4 | 5 | *You were unsuccessful in saving the human race 😞* 6 | 7 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/2/2-B.md: -------------------------------------------------------------------------------- 1 | **Congrats! 🎉 Your agriculture committee has successfully created a greenhouse to grow crops for the next 50 years! 🌿** 2 | 3 | Your project and your team have saved humankind from extinction! 🎊 4 | 5 | Thank you for playing! 👏 6 | 7 | - [🔄 Start from beginning](../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/2/2.md: -------------------------------------------------------------------------------- 1 | **You're agriculture committee🌿 is making great progress in cultivating the Moon🌕** 2 | 3 | *What is the next advancement they make?✍️* 4 | 5 | - [🪴 Discover native soil on the Moon](2-A.md) 6 | - [🏡 Successfully create a sustainable greenhouse](2-B.md) -------------------------------------------------------------------------------- /english/time-travel/2/3-A.md: -------------------------------------------------------------------------------- 1 | **The engineers successfully build the dome 🌎 and humanity survives for the next 25 years as a direct result! 🥳** 2 | 3 | Your project and your team have saved humankind from extinction! 4 | 5 | Thank you for playing! 👏 6 | 7 | - [🔄 Start from beginning](../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/2/3-B.md: -------------------------------------------------------------------------------- 1 | **You denied the engineers' plans. 👨‍⚖️ They all get mad at you and quit the team.** 2 | 3 | *You are left without a team and an unsuccessful project 😢* 4 | 5 | There is no more time 🕥 to lead another project and humankind slowly ceases to exist. 😵 6 | 7 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /english/time-travel/2/3.md: -------------------------------------------------------------------------------- 1 | **You have gathered a team of top engineers 🏫 to save hummanity from extinction** 2 | 3 | *The engineers tell you that they have been working on the blueprints for a sealed dome that would create a cooler environment for humans to survive 💨* 4 | 5 | - [👨‍⚖️ You approve of these blueprints and allow the engineers to build the dome](3-A.md) 6 | - [🧐 You are skeptical of their plans and deny the funds for this project](3-B.md) -------------------------------------------------------------------------------- /english/time-travel/begin-journey.md: -------------------------------------------------------------------------------- 1 | **You were going back from school to your house one day and you find a weird looking machine. 😕😵** 2 | 3 | Looks like a van but has no wheels. 🚙 4 | 5 | *You pray to God - 'Please be it a time machine'.* 👀 6 | 7 | You find a timer and a label on the machine that says '**time machine**'. 😮 8 | 9 | Where do you travel first? 10 | 11 | - [☠ 1800](0/0/0.md) 12 | - [🤔 2100](1/0.md) 13 | - [🌑 2400](2/0.md) 14 | 15 | 🚧 This dungeon is still under development. You can still play it and have fun. 16 | 17 | To complete the dungeon, you can [contribute](../../#contribution-guidelines). 🚧 -------------------------------------------------------------------------------- /english/time-travel/decision_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/english/time-travel/decision_tree.png -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | require('prism-themes/themes/prism-base16-ateliersulphurpool.light.css'); 2 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/0-1A.md: -------------------------------------------------------------------------------- 1 | Seus músculos estão 💪mais fortes 2 | 3 | [💪 Treinamento muscular completo, repetir?](0-1AA.md) 4 | 5 | [🧠 Treinar seu cérebro](0-1B.md) 6 | 7 | [Ir para a dungeon](../1/2.md) 8 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/0-1AA.md: -------------------------------------------------------------------------------- 1 | Seus 💪 músculos não ficaram mais fortes dessa vez. Você ficou muito cansado pois treinou demais! 2 | 3 | [💪 Treinar músculos novamente, não importa](0-1AAA.md) 4 | 5 | [🧠 Treinar meu cerebro](0-1B.md) 6 | 7 | [Ir para a dungeon](../1/2.md) 8 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/0-1AAA.md: -------------------------------------------------------------------------------- 1 | 💀 Você está tão cansado que já não consegue mais se mover. 2 | Você pede ajuda, mas não há ninguém, então você morre poucos dias depois. 3 | 4 | FIM 🎬 5 | 6 | [Recomeçar a jornada](../begin-journey.md) 7 | 8 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/0-1B.md: -------------------------------------------------------------------------------- 1 | Escolha um método 2 | 3 | [🧘 Meditar](1-1A.md) 4 | 5 | [📖 Ler um livro](1-1B.md) 6 | 7 | [📺 Assistir a um vídeo instrutivo](1-1C.md) 8 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/0.md: -------------------------------------------------------------------------------- 1 | # Acorda 2 | 3 | Quando você acorda, não sabe onde está, mas na sua frente tem uma masmorra, o que fazer? 4 | 5 | [Ir para a dungeon](../1/1.md) 6 | 7 | [💪 Treinar meus músculos](0-1A.md) 8 | 9 | [📖 Treinar meu cérebro](0-1B.md) 10 | 11 | [🔙🔜 Procurar uma saida](../3/1.md) 12 | 13 | [😴 Dormir novamente](../../../README.md) 14 | 15 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/1-1A.md: -------------------------------------------------------------------------------- 1 | ótimo, você acabou de meditar por 30 minutos 2 | 3 | [🧘 Meditar novamente](1-1A.md) 4 | 5 | [📖 Ler um livro](1-1B.md) 6 | 7 | [💪 Treinar meus músculos](0-1A.md) 8 | 9 | [Ir para a dungeon](../1/2.md) 10 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/1-1B.md: -------------------------------------------------------------------------------- 1 | Qual livro você irá ler📖 ? 2 | 3 | [🛡 A Arte da Guerra de Sun Tzu](1-1BA.md) 4 | 5 | [🧭 Survive! de Les Stroud](1-1BB.md) 6 | 7 | [Ir para a dungeon](../1/2.md) 8 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/1-1BA.md: -------------------------------------------------------------------------------- 1 | Você leu o livro de Sun Tzu, a Arte da Guerra. 2 | 3 | Sua frase favorita é: 4 | “Se você conhece o inimigo e conhece a si mesmo, 5 | não precisa temer o resultado de cem batalhas. 6 | Se você se conhece mas não conhece o inimigo, 7 | para cada vitória ganha sofrerá também uma derrota. 8 | Se você não conhece nem o inimigo nem a si mesmo, perderá todas as batalhas” 9 | O que você fará agora?? 10 | 11 | [🧘 Meditar](1-1A.md) 12 | 13 | [📖 Ler um livro](1-1B.md) 14 | 15 | [💪 Treinar meus músculos](0-1A.md) 16 | 17 | [Ir para a dungeon](../1/2.md) 18 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/1-1BB.md: -------------------------------------------------------------------------------- 1 | Você leu o livro de Les Stroud, Survive! 2 | 3 | Agora você sabe como prender animais e cozinhá-los. 4 | 5 | O que você fará agora? 6 | 7 | [🧘 Meditar](1-1A.md) 8 | 9 | [📖 Ler um livro](1-1B.md) 10 | 11 | [💪 Treinar meus músculos](0-1A.md) 12 | 13 | [Ir para a dungeon](../1/2.md) 14 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/1-1C.md: -------------------------------------------------------------------------------- 1 | Que tipo de vídeo você quer assistir? 2 | 3 | [Vídeo curto](1-1CA.md) 4 | 5 | [Vídeo longo](1-1CB.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/1-1CA.md: -------------------------------------------------------------------------------- 1 | Você assiste a um pequeno vídeo. 2 | 3 | Você se sente mais informado do que antes. 4 | 5 | O que você quer fazer agora? 6 | 7 | [Ir para a dungeon](../1/1.md) 8 | 9 | [💪 Treinar meus músculos](0-1A.md) 10 | 11 | [📖 Treinar meu cérebro](0-1B.md) 12 | 13 | [🔙🔜 Procurar uma saída](../3/1.md) 14 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/0/1-1CB.md: -------------------------------------------------------------------------------- 1 | Você assiste a um longo vídeo. 2 | 3 | Você se sente muito mais informado do que antes. 4 | 5 | Você também se sente um pouco cansado, o vídeo continuou por um bom tempo. 6 | 7 | O que você quer fazer agora? 8 | 9 | [Ir para a dungeon](../1/1.md) 10 | 11 | [💪 Treinar meus músculos](0-1A.md) 12 | 13 | [📖 Treinar meu cérebro](0-1B.md) 14 | 15 | [🔙🔜 Procurar uma saída](../3/1.md) 16 | 17 | [😴 Dormir denovo](../../../README.md) 18 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/1-1.md: -------------------------------------------------------------------------------- 1 | O 🐉 dragão foi incapacitado pelo seu feitiço, então você rapidamente avança para o tesouro. 2 | 3 | [Você vê 🔅 luz ao lado. Talvez essa seja uma saída!?](1-1A.md) 4 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/1-1A.md: -------------------------------------------------------------------------------- 1 | Você se vira em direção a luz. O abismo subitamente se abre para um céu escuro, cheio de nuvens cinzentas. Sombras correm entre as árvores. 2 | 3 | 🐉 [Voltar ao local do dragão](3-2.md) 4 | 5 | 🌲 [Sair e abordar as sombras na floresta](../3/4.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/1.md: -------------------------------------------------------------------------------- 1 | O 🐉 dragão te encontrou, então você foi morto ☠️ . 2 | 3 | FIM 🎬 4 | 5 | [Reiniciar o jogo](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/2-1A.md: -------------------------------------------------------------------------------- 1 | Ooops...você não tem uma 💼mochila, mas você encontra um ⭕️ círculo mágico✨ . 2 | 3 | [Tocá-lo 👉⭕️](3.md) 4 | 5 | [Esquecer disso ](../2/1.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/2-1B.md: -------------------------------------------------------------------------------- 1 | Quando você tenta destruir a ⚔️ espada, o 🐉 dragão escuta o barulho que você faz. 2 | 3 | [⚔️Tentar matar o dragão](2-1C.md) 4 | 5 | [🏃‍♀️Fugir🏃‍♂️](3-1.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/2-1C.md: -------------------------------------------------------------------------------- 1 | Você não tem as habilidades para lutar com uma espada 😕, então você não pôde matar o dragão, mas ele matou você ☠️. 2 | 3 | FIM 🎬 4 | 5 | [Reiniciar o jogo](../begin-journey.md) 6 | 7 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/2-1D.md: -------------------------------------------------------------------------------- 1 | O dragão 🐉 se vira para você. Ele mostra suas presas e pergunta se você é amigo ou inimigo. 2 | 3 | [Diga que você é um amigo](3-3.md) 4 | 5 | [Diga que você é um inimigo](3-4.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/2.md: -------------------------------------------------------------------------------- 1 | Você encontrou uma espada ⚔️, mas não tem a habilidade para usá-la. 2 | 3 | [Guarde na mochila 💼](2-1A.md) 4 | 5 | [Destrua-a💥](2-1B.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/3-1.md: -------------------------------------------------------------------------------- 1 | Você não poderia 🏃‍♂️ correr 🏃‍♀️ mais rápido que o 🐉 dragão, então você morreu 😵. 2 | 3 | FIM 🎬 4 | 5 | [Reiniciar o jogo](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/3-2.md: -------------------------------------------------------------------------------- 1 | Ooops.... Você acorda o dragão 🐉. 2 | 3 | [🏃‍♀️Fugir🏃‍♂️](3-1.md) 4 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/3-3.md: -------------------------------------------------------------------------------- 1 | O dragão 🐉 sorri. É um prazer ver um aventureiro que finalmente deseja fazer amizade com um dragão. Ele compartilha um pouco de seu 💰 tesouro com você e depois o manda embora. 2 | 3 | [Continue sua jornada](../2/1.md) 4 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/3-4.md: -------------------------------------------------------------------------------- 1 | O dragão 🐉 ri e diz 'Então morra', enquanto cobre você de chamas. Você morreu 😵. 2 | 3 | FIM 🎬 4 | 5 | [Reiniciar o jogo](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/3.md: -------------------------------------------------------------------------------- 1 | Este é um círculo de transporte de longa distância⏳ e você encontrou o 🐉 dragon dormindo💤. 2 | 3 | [Esgueirar-se em direção a ele 🤫👟](4.md) 4 | 5 | [Deixa pra lá ](../2/1.md) 6 | 7 | [😫😫 Pedir ajuda](3-2.md) 8 | 9 | [Saudar o dragão](2-1D.md) 10 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/1/4.md: -------------------------------------------------------------------------------- 1 | Enquanto esgueirava, você encontrou o tesouro do 🐉 dragão 2 | 3 | [Pegue 🤑](1.md) 4 | 5 | [Lançar um feitiço de encantamento](1-1.md)🎶 6 | 7 | [Primeiro cuide do dragão ⚔️](2-1C.md) 8 | 9 | [Saudar o dragão](2-1D.md) 10 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/2/1-A.md: -------------------------------------------------------------------------------- 1 | Você pega a lâmina e a segura firmemente em suas mãos. 2 | 3 | O que você faz? 4 | 5 | * [Assassine-os sorrateiramente 🩸](3-A.md) 6 | 7 | * [Aproxime-se deles](2.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/2/1.md: -------------------------------------------------------------------------------- 1 | Você vê uma figura sombria 🕴 à distância. As luzes ao seu redor estão apagadas, então você não pode ver quem é. Você vê uma lâmina curta 🗡 próxima. 2 | 3 | O que você faz? 4 | 5 | * [Aproxime-se deles](3.md) 6 | 7 | * [Pegue a lâmina 🗡](1-A.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/2/2.md: -------------------------------------------------------------------------------- 1 | Conforme você se aproxima, a figura saca sua espada ⚔️. Você o vê correndo em sua direção. O que você faz? 2 | 3 | * [Corre 🏃](3-B.md) 4 | 5 | * [Revide 🛡️](3-C.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/2/3-A.md: -------------------------------------------------------------------------------- 1 | Você se aproxima sorrateiramente da figura e corta sua garganta 🗡️🩸. Eles se transformam em uma pilha de poeira ⚱️. À distância, você vê um lance de escadas que leva a uma grande porta 🚪. 2 | 3 | * [Suba as escadas](../3/1.md) 4 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/2/3-B.md: -------------------------------------------------------------------------------- 1 | Você não consegue fugir da figura fantasmagórica. Ele o atinge com um movimento rápido ☠️. 2 | 3 | O FIM 🎬 4 | 5 | [Reinicie o jogo](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/2/3-C.md: -------------------------------------------------------------------------------- 1 | Você se prepara para lutar contra a figura. Com um movimento rápido, você corta a forma fantasmagórica da figura 🤺. Eles se transformam em uma pilha de poeira ⚱️. À distância, você vê um lance de escadas que leva a uma grande porta 🚪. 2 | 3 | * [Suba as escadas](../3/1.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/2/3.md: -------------------------------------------------------------------------------- 1 | Conforme você se aproxima, a figura saca sua espada ⚔️. Você o vê correndo em sua direção. Sem arma, você não consegue se defender ☠️. 2 | 3 | O FIM 🎬 4 | 5 | [Reinicie o jogo](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/3/1-1A.md: -------------------------------------------------------------------------------- 1 | As you head toward your 🏡home, your thoughts drifts toward your 💞loved one, and how they must be 😟worried about you. It's 🌒dusk as the glinting silhouette of your dwelling catches your eye across the horizon. 2 | 3 | 💀[Something seems amiss, so you venture forth with an uneasiness of what may lie ahead](../3/2.md) 4 | 5 | 🌲 [There is a movement between the shades of the trees](4.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/3/1.md: -------------------------------------------------------------------------------- 1 | 😃 Great you found a 🛣 way out! 2 | Are you sure you don't want to check out the dungeon? 3 | 4 | [Go back to the front of the dungeon](../begin-journey.md) 5 | 6 | [🏡 Go home](1-1A.md) 7 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/3/2.md: -------------------------------------------------------------------------------- 1 | As you approach your home, the 🚪door is ajar, ever so slightly, 🕯candlight emanating from the cracks. 2 | 3 | ⚔️[Approach the door from the front?](3.md) 4 | 5 | 🏰[Sneak around and enter from the back?](../begin-journey.md) 6 | 7 | ❔[Go to your neighbour's first and ask if they witnessed anything](3-1.md) 8 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/3/3-1.md: -------------------------------------------------------------------------------- 1 | You approach your neighbour's house and notice the 🚪🎛 door knob has been broken. As you move closer towards the door, you see a figure run past from the window. What do you do❓ 2 | 3 | ▶[Enter your neighbours house to find who that is](../4/4.md) 4 | 5 | 🔙[Go back to your house](2.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/3/3.md: -------------------------------------------------------------------------------- 1 | As you approach the 🚪door, you hear a 😱shriek. You 💥bust open the door and startle the three goblins inside. They scamper toward the back of the house to escape. 2 | 3 | 👺[Chase after the goblins](../4/2.md) 4 | 5 | 👩‍💼[Check on your wife, to make sure she's safe](../4/1.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/3/4-1.md: -------------------------------------------------------------------------------- 1 | You run after the 🐰 with the ⏱, the thicket 🌿 gets higher and tigther, until you can see only a wild pattern of greens. You make a further step... 2 | 3 | ⚫ [You fall into a hole](../0/0.md) 4 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/3/4.md: -------------------------------------------------------------------------------- 1 | You follow the shadow and find out, that it is a 🐇 with a ⏱ flitting through the bushes 🌿. 2 | 3 | [🐇 Follow the rabbit](4-1.md) 4 | 5 | [🏡 Turn back to your way home](2.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/0.md: -------------------------------------------------------------------------------- 1 | The dungeon is building, please help us contribute it 2 | 3 | [Contribution Guidelines](../../../README.md#contribution-guidelines) 4 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/1-A.md: -------------------------------------------------------------------------------- 1 | The night has fallen🌃 and the sun is rising ⛅ Then you had a vision 👁️ that you will be guided by a knight♞. Keeping that in mind, you are ready 2 | 3 | [Go to the secret mountain⛰️](3.md) 4 | 5 | [Go to some of your friends ❤️](3-A.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/1.md: -------------------------------------------------------------------------------- 1 | As you go into the room of the 🏠house, your wife👧🏻 is crying and tells you how she managed to escape and hide from the 👺goblins. She also told you that there is a secret mountain⛰️ where the goblins is keeping your son👦 2 | 3 | [Go to the Secret Mountain Now!⛰️](2.md) 4 | 5 | [Try to confront her and sleep in for tonight.😴](1-A.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/2.md: -------------------------------------------------------------------------------- 1 | It was night,🦇 wild animals killed you in a single blow☠️ 2 | 3 | THE END 🎬 4 | 5 | [Restart the game](../begin-journey.md) 6 | 7 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/3-A.md: -------------------------------------------------------------------------------- 1 | They had a map🗺️ to guide and help you to find your son. Following the map you travelled 🧭 far away from home and you came across two bridges 🌉 You followed the right way that says in the map which way will you go😕? 2 | 3 | [Go to the left bridge ⬅️](3-B.md) 4 | 5 | [Go to the right bridge ➡️](3-C.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/3-B.md: -------------------------------------------------------------------------------- 1 | The bridge collapsed and you died☠️ 2 | 3 | THE END 🎬 4 | 5 | [Restart the game](../begin-journey.md) 6 | 7 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/3-C.md: -------------------------------------------------------------------------------- 1 | It was night and cold but you found the secret mountain ⛰️ just in time, and rescued your son👦 from the 👺 goblins on the way back you saw a sword ⚔️ 2 | 3 | [Pick up the Sword ⚔️](../5/1.md) 4 | 5 | [Leave the Sword ⚔️](../5/2.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/3.md: -------------------------------------------------------------------------------- 1 | Your son👦 was eaten by the goblins 👺. Because you can't find the secret mountain ⛰️ in time. Because of the loss of your only son. You hanged yourself to death💀! 2 | 3 | THE END 🎬 4 | 5 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/4/4.md: -------------------------------------------------------------------------------- 1 | You open the door to your neighbours house and first thing you see on the floor is a trail of blood.💉 2 | 3 | 🏚[get scared and go back to your house](../3/2.md) 4 | 5 | 🏃[continue to follow trail to see where it leads](../5/5.md) 6 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/5/1-A.md: -------------------------------------------------------------------------------- 1 | You and your son were killed ☠️ by the goblins 👺 2 | 3 | THE END 🎬 4 | 5 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/5/1-B.md: -------------------------------------------------------------------------------- 1 | A 🐎horse jumped infront of you. It was a Knight♘ like in your vision👁️. He told to get up on the horse. 2 | 3 | [Get up on the horse](3.md) 4 | 5 | [Avoid him and run away 🏃🏼](2.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/5/1.md: -------------------------------------------------------------------------------- 1 | 👺Goblins were following you on the way, a goblin shot you with an arrow 🏹 and you fall down. What would you do? 2 | 3 | [Tell your son to run 🏃](1-A.md) 4 | 5 | [Face the 👺goblins with you sword ⚔️ protecting your son 👦](1-B.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/5/2.md: -------------------------------------------------------------------------------- 1 | You were followed and killed ☠️ by the goblins👺. 2 | 3 | THE END 🎬 4 | 5 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/5/3.md: -------------------------------------------------------------------------------- 1 | With the help of the Knight ♘ you escaped the goblins 👺 and reached home🏠 The Knight said 📜"Decisions mold or destroy your life always remember that". From that day on you have taken the right decisons through out your life 💓 2 | 3 | [Get inside your home🏠](4.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/5/4.md: -------------------------------------------------------------------------------- 1 | ##Thanks for playing this 🐉🐉dungeon. 2 | 3 | You can build your own dungeons. 4 | [Contribution Guidelines](../../../README.md#contribution-guidelines) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/5/5.md: -------------------------------------------------------------------------------- 1 | On getting to the bathroom while following the blood trail, you find a dead body lying in the bathtub 🛁 😵
2 | 3 | Suddenly you hear some noise upstairs ↗️. 4 | 5 | [Go upstairs ↗️](../6/1.md) 6 | 7 | [Runaway 🏃 and leave the house 🏠](../6/4.md) 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/6/1.md: -------------------------------------------------------------------------------- 1 | On your way upstairs, you find another blood trail, shattered glass windows and broken pieces all over the place.
2 | The noise is louder from the master bedroom. 🛌 3 | 4 | [Go check the master bedroom 🛌 ](2.md) 5 | 6 | [Runaway 🏃 and leave the house 🏠](4.md) 7 | 8 | -------------------------------------------------------------------------------- /portuguese/normal-dungeon/6/2.md: -------------------------------------------------------------------------------- 1 | You enter the bedroom and surprised the murderer making another victim 🔪 . He spotted you while committing his crime. 2 | 3 | [You run to escape the room 🏃 and go down the stairs ↙️](3.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/6/3.md: -------------------------------------------------------------------------------- 1 | Too late! the murderer caught you and killed you. 2 | 3 | THE END 🎬 4 | 5 | [Restart the game](../begin-journey.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/6/4.md: -------------------------------------------------------------------------------- 1 | While leaving the house, you've been hit at the back of your head and you passed out 😵. 2 | 3 | 😖 [Regain consciousness](../0/0.md) -------------------------------------------------------------------------------- /portuguese/normal-dungeon/begin-journey.md: -------------------------------------------------------------------------------- 1 | Você foi jogado nas masmorras. está com frio🥶, com fome😣, e se sente cansado🥱. O único objeto que você vê é um colchão de feno fino estendido no chão. Você deita no 🛌 colchão, sem saber o caminho que está à sua frente🛣. 2 | 3 | [🤠 Começar sua jornada](0/0.md) 4 | 5 | 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/0-1A.md: -------------------------------------------------------------------------------- 1 | Haces 20 flexiones y te sientes extremadamente orgulloso de ti. 2 | 3 | Tus músculos se han hecho más fuertes. 4 | 5 | - [💪 Entrenar mis músculos de nuevo](0-1AA.md) 6 | - [🧠 Entrenar mi mente](0-1B.md) 7 | - [Adentrarme en el calabozo](../1/2.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/0-1AA.md: -------------------------------------------------------------------------------- 1 | Tus músculos no se pueden hacer más fuertes 💪; de hecho se sienten fatigados. 2 | 3 | Has exagerado en tu entrenamiento 😩! 4 | 5 | - [💪 Entrenar mis músculos de cualquier forma](0-1AAA.md) 6 | - [🧠 Entrenar mi mente](0-1B.md) 7 | - [Adentrarme en el calabozo](../1/2.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/0-1AAA.md: -------------------------------------------------------------------------------- 1 | 💀 Tus músculos están tan fatigados que no te puedes mover. 2 | 3 | Te has causado _rabdomiolisis_ 😱. 4 | 5 | Imploras por ayuda pero no hay nadie cerca. Mueres en pocos dias. 6 | 7 | **EL FIN 🎬** 8 | 9 | [Intentar otra vez](../begin-journey.md) 10 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/0-1B.md: -------------------------------------------------------------------------------- 1 | Selecciona tu alternativa: 2 | 3 | - [🧘 Meditar](1-1A.md) 4 | - [📖 Leer un libro](1-1B.md) 5 | - [📺 Ver un tutorial](1-1C.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/0.md: -------------------------------------------------------------------------------- 1 | **Despierta!!!** 2 | 3 | Al despertar, no tienes idea de donde estás. De hecho, no recuerdas nada 😵. 4 | 5 | Enfrente de ti está un calabozo 🏯. 6 | 7 | _¿Qué es lo que harás?_ 8 | 9 | - [Adentrarme en el calabozo](../1/1.md) 10 | - [💪 Entrenar mis músculos](0-1A.md) 11 | - [🙆‍♂️ Explorar los alrededores](../7/0.md) 12 | - [📖 Entrenar mi mente](0-1B.md) 13 | - [🔙🔜 Buscar una salida](../3/1.md) 14 | - [😴 Descansar de nuevo](../../../README.md) 15 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/1-1A.md: -------------------------------------------------------------------------------- 1 | Muy bien 👏, has meditado por 30 minutos 🕐. 2 | 3 | - [🧘 Meditar de nuevo](1-1A.md) 4 | - [📖 Leer un libro](1-1B.md) 5 | - [💪 Entrenar mis músculos](0-1A.md) 6 | - [Adentrarme en el calabozo](../1/2.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/1-1B.md: -------------------------------------------------------------------------------- 1 | ¿Cuál libro quieres leer 📖 ? 2 | 3 | - [🛡 El arte de la guerra de Sun Tzu](1-1BA.md) 4 | - [🧭 Sobrevive! de Les Stroud](1-1BB.md) 5 | - [🧙🏿‍♂️ El Hobbit de J.R.R. Tolkien](1-1BC.md) 6 | - [Adentrarme en el calabozo](../1/2.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/1-1BA.md: -------------------------------------------------------------------------------- 1 | Has leído El Arte de Guerra de Sun Tzu. 2 | 3 | Tu cita favorita es: 4 | 5 | _Si conoces a tu enemigo y te conoces a ti mismo, no temerás el resultado de mil batallas. Si te conoces a ti mismo pero no conces a tu enemigo, por cada victoria sufrirás, también, una derrota. Si no conoces ni a tu enemigo ni a ti mismo, sucumbirás ante cualquier batalla_ 6 | 7 | ¿Qué quieres hacer ahora? 8 | 9 | - [🧘 Meditar](1-1A.md) 10 | - [📖 Leer un libro](1-1B.md) 11 | - [💪 Entrenar mis músculos](0-1A.md) 12 | - [Adentrarme en el calabozo](../1/2.md) 13 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/1-1BB.md: -------------------------------------------------------------------------------- 1 | Has leído el libro, Sobrevive! de Les Stroud 2 | 3 | Ahora sabes como cazar y cocinar animales. 4 | 5 | _¿Qué quieres hacer ahora?_ 6 | 7 | - [🧘 Meditar](1-1A.md) 8 | - [📖 Leer un libro](1-1B.md) 9 | - [💪 Entrenar mis músculos](0-1A.md) 10 | - [Adentrarme en el calabozo](../1/2.md) 11 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/1-1BC.md: -------------------------------------------------------------------------------- 1 | Has leído el libro, El Hobbit de J.R.R. Tolkiens! 2 | 3 | Ahora te sientes listo para comenzar to propia aventura. 4 | 5 | _¿Qué quieres hacer ahora?_ 6 | 7 | - [🧘 Meditar](1-1A.md) 8 | - [📖 Leer un libro](1-1B.md) 9 | - [💪 Entrenar músculos](0-1A.md) 10 | - [Adentrarme en el calabozo](../1/2.md) 11 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/1-1C.md: -------------------------------------------------------------------------------- 1 | ¿Qué clase de video quieres ver? 2 | 3 | - [Video corto](1-1CA.md) 4 | - [Video largo](1-1CB.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/1-1CA.md: -------------------------------------------------------------------------------- 1 | Haz visto un video corto. 2 | 3 | Te sientes mucho más educado que antes. 4 | 5 | _¿Qué quieres hacer ahora?_ 6 | 7 | - [Adentrarme en el calabozo](../1/1.md) 8 | - [💪 Entrenar mis músculos](0-1A.md) 9 | - [📖 Entrenar mi mente](0-1B.md) 10 | - [🔙🔜 Encontrar una salida](../3/1.md) 11 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/0/1-1CB.md: -------------------------------------------------------------------------------- 1 | Has visto un video largo. 2 | 3 | Te sientes mucho más educado que antes. 4 | 5 | También te sientes algo cansado, pasaste un tiempo viendo el video. 6 | 7 | _¿Qué quieres hacer ahora?_ 8 | 9 | - [Adentrarme en el calabozo](../1/1.md) 10 | - [💪 Entrenar mis músculos](0-1A.md) 11 | - [📖 Entrenar mi mente](0-1B.md) 12 | - [🔙🔜 Encontrar una salida](../3/1.md) 13 | - [😴 Dormir otra vez](../../../README.md) 14 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/1-1.md: -------------------------------------------------------------------------------- 1 | 🐉 El dragón fue incapazitado por tu hechizo, y rapidamente te diriges hacia el tesoro. 2 | 3 | - [A un costado vez una luz 🔅. ¿¡Tal ves es una salida!?](1-1A.md) 4 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/1-1A.md: -------------------------------------------------------------------------------- 1 | Te diriges hacia la luz. 2 | 3 | De pronto el calabozo se abre, un polvoriento cielo lleno de nubes grises. 4 | 5 | Sombras pasan por entre los arboles. 6 | 7 | - [🐉 Regresar al dragón](3-2.md) 8 | - [🌲 Continuar hacia la sombra del bosque](../3/4.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/1.md: -------------------------------------------------------------------------------- 1 | Te has encontrado al 🐉 dragón. ¡Estas acabado!. 2 | 3 | Has muerto ☠️. 4 | 5 | **EL FIN 🎬** 6 | 7 | [Comenzar de nuevo](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/2-1A.md: -------------------------------------------------------------------------------- 1 | Ooops... no tienes ninguna mochila, pero, en su lugar, encuentras un circulo ⭕️ magico ✨. 2 | 3 | - [Tocarlo 👉⭕️](3.md) 4 | - [Olvidalo](../2/1.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/2-1B.md: -------------------------------------------------------------------------------- 1 | Cuando intentas destruir la ⚔️ espada, el 🐉 dragón escucha el ruido. 2 | 3 | - [⚔️ Intentar matar al dragón](2-1C.md) 4 | - [🏃‍♀️ Huye 🏃‍♂️ enseguida](3-1.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/2-1C.md: -------------------------------------------------------------------------------- 1 | Tus habilidades con la espada son inexistentes 😕, es por eso que el dragón no pierde tiempo en matarte ☠️. 2 | 3 | **EL FIN 🎬** 4 | 5 | [Comenzar de nuevo](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/2-1D.md: -------------------------------------------------------------------------------- 1 | El 🐉 dragón se vuelve hacia ti. 2 | 3 | Mostrando los dientes pregunta, ¿amigo o enemigo? 4 | 5 | - [Soy un amigo](3-3.md) 6 | - [Soy el enemigo](3-4.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/2.md: -------------------------------------------------------------------------------- 1 | Has encontrado una ⚔️ espada, pero no tienes las habilidades para usarla. 2 | 3 | - [Guardarla en la mochila 💼](2-1A.md) 4 | - [Destruirla 💥](2-1B.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/3-1.md: -------------------------------------------------------------------------------- 1 | Deseas que hubieras pasado mas tiempo ejercitandote, no tienes ninguna oportunidad de 🏃‍♂️huir🏃‍♀️ del 🐉 dragón. 2 | 3 | Rapidamente te alcanza y te mata 😵. 4 | 5 | **EL FIN 🎬** 6 | 7 | - [Comenzar de nuevo](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/3-2.md: -------------------------------------------------------------------------------- 1 | Ooops.... Has despertado el dragón 🐉. 2 | 3 | - [🏃‍♀️ Huye 🏃‍♂️ enseguida](3-1.md) 4 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/3-3.md: -------------------------------------------------------------------------------- 1 | El 🐉 dragón sonríe. 2 | 3 | Está feliz de ver un explorador que finalmente esté dispuesto a ser amigo de un dragón. 4 | 5 | Comparte su tesoro 💰 contigo, luego te deja continuar tu camino. 6 | 7 | - [Continuar mi aventura](../2/1.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/3-4.md: -------------------------------------------------------------------------------- 1 | El 🐉 dragón se ríe y dice: "entonce muere", mientras las flamas te rodean por completo. 2 | 3 | Rapidamente quemas 🍟, quedando solo las cenizas y mueres 😵. 4 | 5 | **EL FIN 🎬** 6 | 7 | - [Comenzar de nuevo](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/3.md: -------------------------------------------------------------------------------- 1 | Es un circulo de transportacion de larga distancia ⏳ y encuentras un 🐉 dragón durmiendo 💤. 2 | 3 | - [Escabuirme hacie el 🤫👟](4.md) 4 | - [Dejarlo en paz](../2/1.md) 5 | - [😫😫 Pide auxilio](3-2.md) 6 | - [Aclamar al dragón](2-1D.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/1/4.md: -------------------------------------------------------------------------------- 1 | Al escabuirte, encuentras el 💰 tesoro del 🐉 dragón. 2 | 3 | - [Tomarlo 🤑](1.md) 4 | - [Lanzar un hechizo de encantamiento 🎶](1-1.md) 5 | - [Primero terminar al dragón ⚔️](2-1C.md) 6 | - [Aclamar al dragón](2-1D.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/2/1-A.md: -------------------------------------------------------------------------------- 1 | Tomas la daga firmemente en tus manos. 2 | 3 | - [Asesinar de imprevisto 🩸](3-A.md) 4 | - [Acercarme un poco](2.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/2/1.md: -------------------------------------------------------------------------------- 1 | Ves una figura 🕴 obscura a la distancia. 2 | 3 | Las luces alrededor estan apagadas, no puedes ver quien es. Ves una daga 🗡 que está cerca. 4 | 5 | - [Acercarme un poco](3.md) 6 | - [Tomar la daga 🗡](1-A.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/2/2.md: -------------------------------------------------------------------------------- 1 | Al acercarte, la figura desenvaina su espada ⚔️. 2 | 3 | La ves correr hacia ti. 4 | 5 | - [Correr 🏃](3-B.md) 6 | - [Defenderme 🛡️](3-C.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/2/3-A.md: -------------------------------------------------------------------------------- 1 | Te escabulles hacia la figura y le cortas la garganta 🗡️🩸. 2 | 3 | Se desmorona en polvo ⚱️. 4 | 5 | A la distancia, vez unas escaleras que llevan a un gran pasillo 🚪. 6 | 7 | - [Subir las escaleras](../3/1.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/2/3-B.md: -------------------------------------------------------------------------------- 1 | No pudiste escapar de la fantasmal figura. 2 | 3 | Has sido derrotado de un solo golpe ☠️. 4 | 5 | **El FIN 🎬** 6 | 7 | [Comenzar de nuevo](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/2/3-C.md: -------------------------------------------------------------------------------- 1 | Te preparas para pelear en contra de la figura. 2 | 3 | De una rapida estocada, cortas a través de la fantasmal figura 🤺. 4 | 5 | Se desmorona en polvo ⚱️. A la distancia, vez unas escaleras que llevan a un gran pasillo 🚪. 6 | 7 | - [Subir las escaleras](../3/1.md) 8 | - [Investiga la pila de polvo ⚱️](3-D.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/2/3-D.md: -------------------------------------------------------------------------------- 1 | Revisas la pila de polvo en busca de pistas 👇. 2 | 3 | No hay nada mas que polvo. Decepcionado, limpias tus polvorientas manos en tu camisa 👕. 4 | 5 | El polvo no se desprende de tus manos. 6 | 7 | **😲 Que raro.** 8 | 9 | - [Sube las escaleras](../3/1.md) 10 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/2/3.md: -------------------------------------------------------------------------------- 1 | Al acercarte, la figura desenvaina su espada ⚔️. 2 | 3 | La ves correr hacia ti. 4 | 5 | Desarmado, no puedes defenderte en contra de la figura ☠️. 6 | 7 | **EL FIN 🎬** 8 | 9 | [Comenzar de nuevo](../begin-journey.md) 10 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/3/1-1A.md: -------------------------------------------------------------------------------- 1 | En el camino hacia tu 🏡 hogar, empiezas a tener pansamientos acerca de tus seres queridos 💞, y cuanto deben estar preocupados 😟 por ti. 2 | 3 | Esta anocheciendo 🌒 y la silueta de tu morada captura tu atencion, destellando atravez del horizonte. 4 | 5 | - 💀 [Algo anda mal, aventurarme hacia adelante con inquietud](../3/2.md) 6 | - 🌲 [Se ve movimiento entre la sombra del bosque](4.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/3/1.md: -------------------------------------------------------------------------------- 1 | 😃 Estupendo has encontrado una salida 🛣! 2 | 3 | ¿Estas seguro de que no quieres explorar el calabozo? 4 | 5 | ¡Tambien hay un extraño camino que puedes explorar! 6 | 7 | - [Rodear hacia la entrada del calabozo](../begin-journey.md) 8 | - [Inspeccionar el camino](../9/0.md) 9 | - [🏡 Ir a mi hogar](1-1A.md) 10 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/3/2-2.md: -------------------------------------------------------------------------------- 1 | Vas al patio trasero de tu casa 🏡 y abres un poco la puerta 🚪. De pronto, dos duendes 👺👺 salen de ella y acaban contigo con sus afiladas espadas ⚔️. 2 | 3 | Estando en el suelo, muriendo 💀, te preguntas que clase de vida habrías tenido de haber tomado otras decisiones 💭 ... 4 | 5 | **EL FIN 🎬** 6 | 7 | [🔄 Comenzar de nuevo](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/3/2.md: -------------------------------------------------------------------------------- 1 | Al aproximarte a tu casa, te das cuenta que la puerta esta un poco abierta, una luz emana de entre las grietas. 2 | 3 | ⚔️ [¿Aproximar hacia la puerta de frente?](3.md) 4 | 5 | 🏰 [¿Escabullirme por detras?](2-2.md) 6 | 7 | ❔ [Preguntar al vecino si ha visto algo raro](3-1.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/3/3-1.md: -------------------------------------------------------------------------------- 1 | Al aproximarte a la casa de tu vecino, te das cuenta de que la perilla de la puerta 🚪🎛 esta rota. Al acercarte a la puerta, vez una silueta pasar por la ventana. 2 | 3 | Que haces❓ 4 | 5 | ▶ [Entrar en la casa del vecino y averiguar que pasa](../4/4.md) 6 | 7 | 🔙 [Regresar a mi casa](2.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/3/3.md: -------------------------------------------------------------------------------- 1 | Al acercarte a la puerta 🚪 escuchas un grito 😱. Entras rompiendo la puerta y dentro, asustas a tres duendes. Ellos corren hacia la parte de atras intentando escapar. 2 | 3 | 👺 [Perseguir a los duendes](../4/2.md) 4 | 5 | 👩‍💼 [Encontrar a mi esposa y asegurarme de que este bien](../4/1.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/3/4-1.md: -------------------------------------------------------------------------------- 1 | Persigues al 🐰 con el ⏱, los matorrales 🌿 se vuelven mas espesos, hasta que te encuentras totalmente rodeado de ellos. Tomas un paso mas... 2 | 3 | ⚫ [Caigo en un agujero](../0/0.md) 4 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/3/4.md: -------------------------------------------------------------------------------- 1 | Sigues la sombra y te das cuenta de que es un 🐇 con un ⏱ corriendo atravez de los arbustos 🌿. 2 | 3 | [🐇 Seguir al conejo](4-1.md) 4 | 5 | [🏡 Regresar al camino hacia mi hogar](2.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/0.md: -------------------------------------------------------------------------------- 1 | El calabozo esta en construccion, porfavor ayudanos con tu contribucion. 2 | 3 | [Reglas de contribucion](../../../README.md#contribution-guidelines) 4 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/1-A.md: -------------------------------------------------------------------------------- 1 | La noche 🌃 ha dado vida a un dia ⛅ brillante y soleado. 2 | 3 | En tus sueños 😴, tienes una vision 👁️ acerca de un caballero ♞ dirigiendo tu camino 👉🏻. Con esto en mente, estas listo para empezar tu dia 😄. 4 | 5 | ¿A donde quieres ir? 6 | 7 | - [👉🏻 Ir a la montaña secretra ⛰️](3.md) 8 | - [👉🏻 Visitar alguno de mis amigos ❤️ 🧍🏻‍♀️ 🧍🏻‍♂️](3-A.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/1.md: -------------------------------------------------------------------------------- 1 | A medida de que avanzas hacia tu casa 🏠, tu esposa 👩🏻 esta llorando, y te cuenta como fue que logro escapar y esconderse de los 👺 duendes 😭. 2 | 3 | ¡Tu esposa te advierte acerca de la montaña secreta ⛰️ donde los duendes 👺 han secuestrado a tu hijo 👦😲! 4 | 5 | - [Ir a la montaña secreta. ¡**Ahora**!⛰️](2.md) 6 | - [Intenta persuadirla 🙂 y duerme por esta noche 😴.](1-A.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/2.md: -------------------------------------------------------------------------------- 1 | A la mita de la noche 🌑, donde no puedes ver a esa salvaje bestia esperando atacar desde los arbustos, esperando la oportunidad para asesinar. 2 | 🩸 Tu muerte ☠️ es dolorosa y sangrienta como la indomita bestia fiesta 🍽 sobre tu todavia calido cuerpo ⚱. 🩸 3 | 4 | **EL FIN 🎬 ☹** 5 | 6 | - [Comenzar de nuevo 🔁](../begin-journey.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/3-A.md: -------------------------------------------------------------------------------- 1 | Muy afortunadamente, alguien tenia un mapa 🗺️, el que te guiara y ayudara a encontrar a tu hijo 👦🏻. El camino te lleva lejos 🧭 de casa 🏡 , hasta que... te encuentras con dos puentes 🌉. 2 | 3 | Desafortunadamente, el mapa no dice nada acerca de ningun puente 😕. 4 | 5 | ¿Cual camino segiras? 🤔 6 | 7 | - [Ir a la izquierda ⬅️](3-B.md) 8 | - [Ir a la derecha ➡️](3-C.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/3-B.md: -------------------------------------------------------------------------------- 1 | Habrias hecho bien 👍🏻 en saber que tan seguro era el puente antes de cruzarlo 🚶🏻‍♂️. 2 | 3 | Ya sea debido a mala construccion o el paso del tiempo 😕, el puente 🌉 se quiebra con tu peso, y caes hacia una dolorosa muerte ☠️. 4 | 5 | **EL FIN 🎬** 6 | 7 | - [Comenzar de nuevo 🔁](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/3-C.md: -------------------------------------------------------------------------------- 1 | Por suerte, parece que elegiste el camino correcto 👍🏻. 2 | 3 | Encuentras la **montaña secreta** ⛰️ justo a tiempo, y eres capaz de salvar a tu hijo querido 👦🎉 de los duendes 👺. En el camino de regreso, atravez de la fría noche, encuentras una espada ⚔️ tirada en el suelo. 4 | 5 | ¿Que es lo que haras? 🤔 6 | 7 | - [Tomar la espada ✔⚔️](../5/1.md) 8 | - [Ignorar la espada ❌⚔️](../5/2.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/3.md: -------------------------------------------------------------------------------- 1 | Después de dias de busqueda, eres incapaz de encontrar la montaña secreta ⛰️. 2 | 3 | Lleno de desesperacion y sin esperanza 😧, sabiendo que los duendes seguramente han devorado a tu hijo, el dolor te vence, y te cuelgas te un arbol 🌳💀. Quiza la ayuda de un amigo 🙋🏻‍♀️🙋🏻‍♂️ pudiera haberte salvado la vida 💘? 4 | 5 | Esperemos que lo puedas ver en el otro mundo 🌎... 6 | 7 | **EL FIN 🎬** 8 | 9 | - [Comienza de nuevo 🔁](../begin-journey.md) 10 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/4/4.md: -------------------------------------------------------------------------------- 1 | Abres la puerta 🚪 de tu vecino 🏡, y lo primero que vez es un rastro de sangre 💉 incrustado en el suelo... 2 | 3 | ¿Cual es tu reacción? 4 | 5 | - [Asustarme y regresar a casa 😩🏡](../3/2.md) 6 | - [Seguir el rastro para ver a donde lleva 🏃](../5/5.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/5/1-A.md: -------------------------------------------------------------------------------- 1 | **😲 Tu y yu hijo 👦🏻 fueron asesinados ☠️ por los duendes 👺 😲** 2 | 3 | **EL FIN** 🎬 4 | 5 | - [Comenzar de nuevo 🔁](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/5/1-B.md: -------------------------------------------------------------------------------- 1 | Un caballo 🐎 salta enfrente de ti. 2 | 3 | Es un **Caballero** ♘, como en tu _vision 👁️_. Te dice que subas a su caballo 🐎. 4 | 5 | _Cual es tu respuesta?_ 6 | 7 | - [Subir al caballo 🐴](3.md) 8 | - [Evitarlo y escapar 🏃🏼](2.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/5/1.md: -------------------------------------------------------------------------------- 1 | Los duendes 👺 te siguen en el camino! 😲 2 | 3 | Un duende 👺 te dispara una flecha 🏹 y caes al suelo. 4 | 5 | _¿Que es lo que haras?_ 6 | 7 | - [Decirle a mi hijo que corra 🏃](1-A.md) 8 | - [Enfrentar a los duendes 👺 con mi espada ⚔️, proteger 🛡 a mi hijo 👦](1-B.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/5/2.md: -------------------------------------------------------------------------------- 1 | **Los duendes te siguieron 👺😲 y te han asesinado ☠️.** 2 | 3 | **EL FIN 🎬** 4 | 5 | - [Comenzar de nuevo 🔁](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/5/3.md: -------------------------------------------------------------------------------- 1 | Con la ayuda de el caballero ♘, escapaste de los duendes 👺 y llegaste a casa 🏠. 2 | 3 | El caballero ♘ dice 📜 ... 4 | 5 | _'Decisiones moldan or destruyen tu vida. Siempre recuerdalo'._ 6 | 7 | Desde ese dia, tomaste las desiciones correctas 👍🏻 por el resto de tu vida! 💓 8 | 9 | - [Entra a casa🏠](4.md) 10 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/5/4.md: -------------------------------------------------------------------------------- 1 | **Gracias por jugar en este calabozo! 🐉🐉😁** 2 | 3 | ¡Contribuye y construye tu propio calabozo!: 4 | 5 | - [Reglas de contribucion](../../../README.md#contribution-guidelines) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/5/5.md: -------------------------------------------------------------------------------- 1 | En el camino al baño 🛁 mientras sigues el rastro de sangre 🩸, encuentras un cuerpo ☠ dentro de la bañera 🛁 😵. 2 | 3 | De pronto escuchas un ruido, viene de arriba ↗️. 4 | 5 | _¿Que es lo que haras? 🤔_ 6 | 7 | - [Investigar ↗️](../6/1.md) 8 | - [Escapar 🏃 y huir del lugar 🏠](../6/4.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/6/1.md: -------------------------------------------------------------------------------- 1 | En tu camino hacia arriba, encuentras otro rastro de sangre 🩸. Las ventanas estan destrozadas 🪟 y hay cristales rotos esparcidos por todo el lugar. 2 | 3 | Un extraño ruido se puede escuchar, parece que viene de el cuarto principal 🛌. 4 | 5 | - [Investigar el cuarto principal 🛌](2.md) 6 | - [Escapar 🏃 y alejarme de el lugar 🏠](4.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/6/2.md: -------------------------------------------------------------------------------- 1 | Entras al cuarto 🛏 y te encuentras con el 😈 clavando su 🔪 en otra de sus victimas. 2 | 3 | Te ha visto 👀 mientras comete ese atroz crimen 😱. 4 | 5 | - [Correr y escapar 🏃 por las escaleras ↙️](3.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/6/3.md: -------------------------------------------------------------------------------- 1 | ¡Es demasiado tarde! El intenso dolor se apodera de ti mientras tomas tu ultimo aliento 🪦. 2 | 3 | **EL FIN 🎬** 4 | 5 | - [Comenar de nuevo](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/6/4.md: -------------------------------------------------------------------------------- 1 | Mientras te alejas de la casa 🏃🏻‍♂️🏠, te golpean 🎯 en la cabeza 🤕. 2 | 3 | El dolor es tan insoportble que pierdes la conciencia 😵. 4 | 5 | - [Recuperar la conciencia 😖](../0/0.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/0.md: -------------------------------------------------------------------------------- 1 | Miras alrededor 🙆‍♂️ y encuentras una escalera. Subes 🧗‍♂️ y encuentras a un solo hombre llorado 😭. 2 | 3 | _¿Que es lo que haras?_ 4 | 5 | - [🤔 Investigar quien es el hombre](1.md) 6 | - [🏃‍♂️ Regresar al calabozo](../1/2.md) 7 | - [🔎 Ignorar al hombre y encontrar una salida](2.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-A.md: -------------------------------------------------------------------------------- 1 | Das la vuelta 🔄 y encuentras una puerta 🚪. ¡La abres y encuentras la salida 🛣️! 2 | 3 | _¿Estas seguro de que no quieres hablar con el hombre?_ 4 | 5 | - [😊 Calmarme y hablar con el](1-B.md) 6 | - [🏃‍♂️ ¡Escapar inmediatamente!](../3/1-1A.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-B.md: -------------------------------------------------------------------------------- 1 | Te sientas 🪑 cerca de el hombre llorando. La sangre 🩸 escurre desde su cabeza. 2 | 3 | Intentas consolarlo y le preguntas por que esta llorando 😭 otra vez ❓. Te dice que tres duendes 👺 lo han atacado y secuestrado a su hijo 👦. 4 | 5 | - [🔎 Ayudar al hombre a encontrar a su hijo](1-BA.md) 6 | - [🎮 Jugar gato con el hombre](1-BB.md) 7 | - [😴 Ignorarlo e ir a dormir](1-BC.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BA.md: -------------------------------------------------------------------------------- 1 | Preguntas ❓ donde esta su hijo 👦🏻, el hombre te dice que los duendes se lo han llevado a la **_montaña secreta_** ⛰️. 2 | 3 | - [🦸‍♂️ Ir a la montaña y rescatar al niño 👦🏻](../4/2.md) 4 | - [❓ Preguntar al hombre como fue que terminó asi](1-BAB.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BAB.md: -------------------------------------------------------------------------------- 1 | El hombre dice: 2 | 3 | _"Yo soy tu, y tu me conoces. Tu me conoces y tu eres yo"._ 4 | 5 | Al principio estas confundido, y luego, te das cuenta 🤯 que el hombre con el que hablas es tu subconciente 🧠! 6 | 7 | Despues realizas que tu hijo 👦 esta esperando a ser rescatado de los malvados duendes 👺! 8 | 9 | - [⛰️ Apresurarme hacia la **_montaña secreta_** y rescatar a mi hijo](../4/2.md) 10 | - [😴 Tomar una larga siesta e ir a la montaña en la mañana](1-BC.md) 11 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BB.md: -------------------------------------------------------------------------------- 1 | Has ganado tres veces jugando gato 🎮. ¡Eres un campeon 🏆! 2 | 3 | - [🤾‍♂️ Jugar de nuevo](1-BBA.md) 4 | - [📚 Leer un libro](../0/1-1B.md) 5 | - [🎲 Jugar otro juego](1-BBC.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BBA.md: -------------------------------------------------------------------------------- 1 | Intentas jugar de nuevo pero no tienes energias 💪. Te esta ganando el sueño, y no puedes parar de bostezar 😴. 2 | 3 | - [🛌 Tomar una larga siesta](1-BC.md) 4 | - [🏃‍♂️ ¡Salir de aqui!](../3/1.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BBC.md: -------------------------------------------------------------------------------- 1 | ¡Genial 👍🏻! Cual juego quieres jugar ❓ 2 | 3 | - [🕵️‍♂️ Escondidas](1-BBCA.md) 4 | - [♟️ Ajedrez](1-BBCB.md) 5 | - [🔙 Regresar a la entrada del calabozo](../begin-journey.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BBCA.md: -------------------------------------------------------------------------------- 1 | Juegas a las escondidas 🕵️‍♂️, y ganas 🏆 todas las veces. Eres un gran jugador 👍🏻🙂! 2 | 3 | - [🔄 Jugar otra vez](1-BBA.md) 4 | - [🏃‍♂️ Salir dde aqui](1-A.md) 5 | - [🔎 Explorar el calabozo 🏟️ ](../1/2.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BBCB.md: -------------------------------------------------------------------------------- 1 | Juegas ajedrez ♟️ y ganas todas las veces 🏆. ¡Eres un gran jugador 😁! 2 | 3 | - [🔄 Jugar de nuevo](1-BBA.md) 4 | - [🏃‍♂️ Salir de aqui](1-A.md) 5 | - [🔎 Explorar el calabozo 🏟️](../1/2.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BC.md: -------------------------------------------------------------------------------- 1 | Has tomado una muy _LARGA_ siesta 😴. Son las 10:00am ⏰ del siguiente dia. 2 | 3 | - [🦥 Ser perezoso y dormir mas 😴](1-BCA.md) 4 | - [🌅 Despertar](../0/0.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-BCA.md: -------------------------------------------------------------------------------- 1 | Tratas de dormir mas 😴, pero algo anda mal 😕. 2 | 3 | Demasiado tarde para reaccionar ⚔️, estas dentro del calabozo, y el dragón disfruta de tu sabrosa carne 🩸☠️. 4 | 5 | **EL FIN 🎬** 6 | 7 | [🔄 Comenzar de nuevo](../begin-journey.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-C.md: -------------------------------------------------------------------------------- 1 | Has tomado un crayon 🖍️ de tu bolsa y dibujas una hermosa cara 🙂 para el. Estas orgulloso del artista 🎨 dentro de ti. 2 | 3 | - [🤪 Dibujar mas cosas locas](1-CA.md) 4 | - [🏃‍♂️ Detener esta locura y encontrar una salida](1-A.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1-CA.md: -------------------------------------------------------------------------------- 1 | Has encontrado 👀 una pared 🧱 y dibujas tantas cosas que no tienes idea. Piensas que eres el proximo Da Vinci 👨‍🎨. Continuas dibujando hasta que el sueño te vence por completo. 2 | 3 | - [🛏️ Tomar una larga siesta 😴](1-BC.md) 4 | - [🏃‍♂️ Encontrar una salida](1-A.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/1.md: -------------------------------------------------------------------------------- 1 | Caminas hacia el hombre 🚶‍♂️ Y preguntas por que esta lloradno 😭. 2 | 3 | Y al voltear su cabeza... 4 | 5 | Aaah 😱! 6 | 7 | ¡No tiene cara 🟡, y su cabeza esta cubierta de sangre fria 🩸! 8 | 9 | - [🏃‍♂️ ¡Escapar inmediatamente!](1-A.md) 10 | - [😊 Tranquilizarme y hablar con el hombre](1-B.md) 11 | - [🖍️ Dibujarle una cara](1-C.md) 12 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/7/2.md: -------------------------------------------------------------------------------- 1 | Al voltear encuentras una puerta 🚪. La abres y encuentras una salida 🛣️! 2 | 3 | _Estas seguro de que no quieres saber por que el hombre llora 😭?_ 4 | 5 | - [😊 Preguntarle por que llora](1.md) 6 | - [**¡¡¡🏃SOLO NECESITO SALIR DE AQUI!!!**](../3/1-1A.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/0.md: -------------------------------------------------------------------------------- 1 | Siguiendo el camino, te das cuenta de que lleva a un obscuro bosque 🌳. 2 | 3 | No puedes escuchar ningun pájaro ni sonido alguno de ningun animal. Se siente 😨 la muerte ☠ misma. 4 | 5 | - [ Continua bajando por el camino ➡️](1.md) 6 | - [ Regrersar 🔙](../3/1.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/1.md: -------------------------------------------------------------------------------- 1 | Frente a ti esta un gran y siniestro castillo 🏰, gargolas 🗿 hacen guardia, una en cada lado de la entrada. 2 | 3 | Antorchas 🔥, consumidas desde ya hace mucho, yacen paralelas a las bastante grandes y misteriosas puertas de roble 🚪. Te das cuenta que la puerta esta un poco abierta, indicando que no eres la primera persona que pasa por aqui hoy... 4 | 5 | - [➡️ Entrar de inmediato](2.md) 6 | - [Puede haber alguien dentro; entrar cuidadosamente 😐...](2.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/2.md: -------------------------------------------------------------------------------- 1 | Al entrar, te encuentras con un **corredor bastante grande** que ha visto dias mejores. 2 | 3 | Gruesas capas de polvo cubren los muebles, que en su tiempo, habrian sido bastante extravagantes, pero ahora, han perdido su esplendor. Una gran escalera de caracol lleva al segundo piso, donde hay dos puertas 🚪🚪 mas, una a la izquierda ⬅ y la otra a la derecha ➡. Tambien notas una gran puerta 🚪 entre abierta que lleva aun obscuro sotano. 4 | 5 | - [Ir al segundo piso ↗](3-A.md) 6 | - [Ir por la puerta de la izquierda ⬅🚪](3-B.md) 7 | - [Ir por la puerta de la derecha ➡️🚪](3-C.md) 8 | - [Entrar al obscuro sótano ↘](3-D.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/3-A.md: -------------------------------------------------------------------------------- 1 | Te encuentras en un gran vestibulo, con puertas 🚪 a la izquierda ⬅ y puertas 🚪 a la derecha ➡. 2 | 3 | Una gran pintura 🖼 de un paisaje cuelga de la pared 🧱 frente a ti, de un hermoso acantilado 🧗🏻‍♂️, con montañanas a la distancia coronadas con una puesta de sol color carmesi 🌇. 4 | 5 | Parece ser que no hay nada de interes en el vestibulo, hay una puerta a la izquierda ⬅, y tres puertas a la derecha 🚪🚪🚪 ➡. 6 | 7 | **¿A donde quieres ir?** 8 | 9 | - [La puerta 🚪 de la izquierda](5-A.md) 10 | - [Primera puerta de la derecha](5-B.md) 11 | - [Segunda puerta de la derecha](5-C.md) 12 | - [Tercera puerta de la derecha](5-D.md) 13 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/3-B.md: -------------------------------------------------------------------------------- 1 | Al Atravesar la puerta 🚪⬅ de la izquierda, te ancuentras ahora, en un grande y extravagante comedor, sillas cubiertas de polvo 🪑 recubriendo la costosa mesa del comedor, telarañas 🕸 cubren las sillas. Hay suficientes sillas para veinte personas, pero obviamente la cena no se a servido en un largo tiempo. 2 | 3 | Puedes ver otra puerta 🚪 al otro lado del pasillo a la derecha ➡, puedes solo asumir que lleva a la cocina. 4 | 5 | - [➡️ Ir por la puerta 🚪 de la derecha](4.md) 6 | - [🔙 Regresar al pasillo](2.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/3-C.md: -------------------------------------------------------------------------------- 1 | Al abrir la puerta 🚪 de la derecha ➡, has entrado en lo que parece una pequeña oficina, complementando escritorio, algunos estantes 📚, y unas pocas sillas 🪑 para los visitantes. 2 | 3 | - [Investigar el escritorio](3-CA.md) 4 | - [Examinar las estanterías 📚](3-CB.md) 5 | - [Regresar 🔙](2.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/3-CA.md: -------------------------------------------------------------------------------- 1 | Polvo cubre los papeles 📰 dispersos por todo el escritorio, todos escritos en un lenguaje que no puedes leer 😐. No hay notas ni en los papeles 📰 ni en los cajones. 2 | 3 | **¿Que es lo que haras?** 4 | 5 | - [Examinar las estanterías 📚](3-CB.md) 6 | - [Regresar 🔙](2.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/3-CB.md: -------------------------------------------------------------------------------- 1 | Todos los libros 📕 en las estanterías parecen estar escritos en un lenguaje que no puedes entender 😕, pero mientras volteas las paginas, alcanzas a reconocer runas magicas y simbolos dibujados en los diagramas. ¿Tal vez estos libros son acerca de magia? 2 | 3 | **¿Que haras ahora?** 4 | 5 | - [Revisar el escritorio](3-CA.md) 6 | - [Regresar 🔙](2.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/3-D.md: -------------------------------------------------------------------------------- 1 | Al alcanzar el final de las escaleras te encuentras con un estrecho pasillo con tres puertas de madera muy pesadas. 2 | 3 | 🚪🚪🚪 4 | 5 | Intentas abrirlas, la unica puerta abierta es la segunda puerta 🚪. Escuchas una ténue melodia de un violin 🎻 a la distancia, parece venir de la segunda puerta. 6 | 7 | 🎻🎵🎵 8 | 9 | - [La musica 🎶 es muy tentadora; Proceder con precaucion por la segunda puerta...](./3-DA.md) 10 | - [Regresar 🔙](2.md) 11 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/3-DA.md: -------------------------------------------------------------------------------- 1 | Entras a un cuarto con una luz brillante 💡, y la musica se detiene, la luz brillante se desvanece y tus ojos 👀 se ajustan, te das cuenta que el cuarto esta vacio, excepto por seis sujetavelas en las paredes con velas cada una 🕯. 2 | 3 | No puedes ver ninguna otra puerta 🚪 en el cuarto. ¿Por que la musica se detuvo y que era esa luz brillante 💡? 4 | 5 | - [🔙 Regresar](2.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/4-A.md: -------------------------------------------------------------------------------- 1 | Caminando al siguiente cuarto, te asustas con el sonido de unos gruñidos. Antes de que puedas reaccionar, un duende 👺 salta sobre ti. 2 | 3 | Rapidamente, tomando tu espada ⚔️, dando un paso al lado, y esquivando la caida, le cortas la cabeza ⚔. ¡Por suerte tomaste esa espada! 4 | 5 | Mirando dentro del cuarto, encuentras lo que parece ser otro aventurero 😐; juzgando por el estado del cuerpo ⚰️, parece que a estado muerto por un par de semanas. 6 | 7 | - [🔙 Regresar](3-B.md) 8 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/4-B.md: -------------------------------------------------------------------------------- 1 | Caminando al siguiente cuarto, te asustas con el sonido de unos gruñidos. 2 | 3 | **¡¡¡Antes de que puedas reaccionar, un duende 👺 salta sobre ti!!!** 4 | 5 | Sin nada con que defenderte, tratas de huir desesperadamente 🏃🏻‍♂️ de los duendes 👺, pero salta sobre ti y te derriba al suelo. te apuñala 🔪 en la espalda 🔙 mientras tratas de deshacerte de el, su cuchillo 🔪 termina atravezado en tu garganta. 6 | 7 | **EL FIN 💀** 8 | 9 | - [Comenzar de nuevo 🔁](../begin-journey.md) 10 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/4.md: -------------------------------------------------------------------------------- 1 | Caminas dentro 🚶🏻‍♂️, te das cuenta que has entrado en un pequeño pasillo que solo lleva a otro cuarto. 2 | 3 | En la pared 🧱, notas un grandiosa espada colocadada en su puesto ⚔. 4 | 5 | ¿Tomaras la espada? 6 | 7 | - [ Tomar la espada ⚔️](4-A.md) 8 | - [ Dejar la espada ⬇️⚔](4-B.md) 9 | - [ Regresar 🔙](3-B.md) 10 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/5-A.md: -------------------------------------------------------------------------------- 1 | Has encontrado lo que parece ser un almacen. Dentro encuentras utensilios de cocina 🥄🍴, utensilios de limpieza 🧼🧹, y tambien herramientas de construccion 🛠. No encuentras nada de particular importancia, exepto por un gran cuchillo, que puede ser util en una pelea. 2 | 3 | - [Tomar el cuchillo 🔪](5-AB.md) 4 | - [Abandonar el almacen](3-A.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/5-AB.md: -------------------------------------------------------------------------------- 1 | Tomas el cuchillo en tus manos 🔪✋🏻. Tal vez no sera tu arma de eleciion, pero definitivamente puede hacer daño. 2 | 3 | - [Dejar el cuarto](3-A.md) 4 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/5-B.md: -------------------------------------------------------------------------------- 1 | Has encontrado lo que parece ser un pequeño armario de herramientas, seguramente los habitantes anteriores lo usaban para almacenar sus herramientas 🛠. Encuetras una gran guadaña ⛏ usada para cortar pasto, mangueras, cubetas, cuerdas y palas. 2 | 3 | Desafortunadamente, no hay nada que puedas usar para pelear. Es mejor dejar todo en su lugar 😕. 4 | 5 | - [Regresar 🔙](3-A.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/5-C.md: -------------------------------------------------------------------------------- 1 | Entras 🚶🏻‍♂️ al cuarto para encontrarte un gran librero lleno de libros 📚; parece ser que has encontrado una biblioteca. 2 | 3 | - [Revisa los libros 📚](5-CA.md) 4 | - [Regresar 🔙](3-A.md) 5 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/5-CA.md: -------------------------------------------------------------------------------- 1 | Ojeando ociosamente las paginas de cualquier libro que llama tu atencion 👁, encuentras libros de poesia 🎼, algunos de geografia 🌍, y algunos otros en lenguajes que no puedes entender 😕. 2 | 3 | Aun asi, sientes como si hubieras salido de ahi con mas conocimiento que con el que entraste. 4 | 5 | - [Regresar 🔙](3-A.md) 6 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/5-D.md: -------------------------------------------------------------------------------- 1 | Has entrado a un gran pasillo, el cual se extiende por lo menos 6 metros, los lados estan alineados con las ventanas por las que puedes hechar un vistazo hacia afuera. 2 | 3 | Este pasillo, el cual termina con una sola puerta, parece que lleva a la parte trasera del castillo 🏰. El suelo esta forrado con una adornada carpeta roja 🟥, y tiene antorchas quemadas alineadas cada metro y medio 🔥. 4 | 5 | - [Atravezar el pasillo](5-DA.md) 6 | - [Regresar 🔙](3-A.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/5-DA.md: -------------------------------------------------------------------------------- 1 | Caminando 🚶🏻‍♂️ por el pasillo , de pronto te das cuenta que una gran sombra te asecha a travez de las ventanas. 2 | 3 | Las ventanas vibran violentamente, llenandote de miedo por saber que lo pudo haber causado. Te armas de corage 😟 y continuas adelante para abrir la puerta 🚪... 4 | 5 | Te encuentras enfrente de una gran escalera de caracol que lleva hacia los niveles bajos del castillo. Claramente, esta inmensa fortaleza es mas grande de lo que aparenta. Puedes solo imaginar que es lo que te espera ahi abajo... 6 | 7 | - [Aventurarme en las profundidades ↘](6-A.md) 8 | - [Regresar 🔙](5-D.md) 9 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/6-A.md: -------------------------------------------------------------------------------- 1 | Bajando la escalera de caracol por los escalones hechos de granito, tu antorcha 🔥 alumbra tu camino, te encuentras una solitaria puerta 🚪, asegurada solamente con un cerrojo de madera. Abres la cerradura y entras. 2 | 3 | Sorprendido de encontrarte en lo que parece ser unas grandes instalaciones, que puede ser descrito solo como un calabozo. Un corredor largo que ocupa la mayoria del espacio del cuarto, con cinco celdas en cada lado. Cada una de las celdas esta bloqueada con una gran puerta de acero, y apesta a humedad. ¿Por que rayos este castillo tiene que tener un calabozo?... 4 | 5 | - [Explorar el cuarto 🔍](../4/0.md) 6 | - [Regresar arriba ↗](6-B.md) 7 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/9/6-B.md: -------------------------------------------------------------------------------- 1 | Has regresado al segundo ✌🏻 piso por la entrada. 2 | 3 | - [Explorar el segundo piso 🔍](3-A.md) 4 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/begin-journey.md: -------------------------------------------------------------------------------- 1 | Has sido arrojado a los calabozos. Con Frio 🥶, hambriento 😣 y cansado 😩. El único objeto a la vista es una pequeña cama 🛌 en el suelo hecha de paja. Descansas en ella, sin saber el camino que te espera 🛣. 2 | 3 | [🤠 Comienza tu aventura](0/0.md) 4 | -------------------------------------------------------------------------------- /spanish/normal-dungeon/decision_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/spanish/normal-dungeon/decision_tree.png -------------------------------------------------------------------------------- /src/components/copyright.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Typography from '@material-ui/core/Typography'; 3 | import Link from '@material-ui/core/Link'; 4 | 5 | export default function Copyright() { 6 | return ( 7 | 8 | {'Copyright © '} 9 | 10 | Make Contributions 11 | {' '} 12 | {new Date().getFullYear()} 13 | {'.'} 14 | 15 | ); 16 | } 17 | -------------------------------------------------------------------------------- /src/components/layout.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { BrowserView, MobileView, isMobile } from 'react-device-detect'; 3 | 4 | export default function Layout({ children }) { 5 | const style = { 6 | margin: `2rem auto`, 7 | maxWidth: 650, 8 | padding: `0.5rem 0.5rem`, 9 | border: `1px solid #e1e4e8`, 10 | borderRadius: `6px`, 11 | }; 12 | 13 | if (isMobile) { 14 | style.margin = `auto`; 15 | style.border = `inherit`; 16 | return {children}; 17 | } 18 | 19 | return {children}; 20 | } 21 | -------------------------------------------------------------------------------- /src/pages/404.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Layout from '../components/layout'; 3 | import { Link } from 'gatsby'; 4 | export default function NotFound() { 5 | return ( 6 | 7 |

Page Not Found

8 |

Oops! A monster seems to have eaten this page. Or maybe you fell down the wrong wormhole?!

9 | Go back 10 |
11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /src/templates/blog-post.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { graphql } from 'gatsby'; 3 | import { Home } from '@material-ui/icons'; 4 | import Link from '@material-ui/core/Link'; 5 | import Layout from '../components/layout'; 6 | 7 | // highlight-start 8 | export default function BlogPost({ data }) { 9 | const post = data.markdownRemark; 10 | let html = post.html.replace(/.md/gi, ''); 11 | if (post.fields?.slug.includes('README')) { 12 | html = html.replace( 13 | './LICENSE', 14 | `${process.env.GATSBY_GITHUB_REPO_URL}/blob/master/LICENSE` 15 | ); 16 | } 17 | // highlight-end 18 | return ( 19 | 20 | window.location.href = '/'} color="primary"> 21 |
22 |
23 |
24 | 25 | ); 26 | } 27 | 28 | // highlight-start 29 | export const query = graphql` 30 | query($slug: String!) { 31 | markdownRemark(fields: { slug: { eq: $slug } }) { 32 | html 33 | fields { 34 | slug 35 | } 36 | } 37 | } 38 | `; 39 | // highlight-end 40 | -------------------------------------------------------------------------------- /src/utils/styles.js: -------------------------------------------------------------------------------- 1 | import { makeStyles } from '@material-ui/core/styles'; 2 | 3 | export const homeStyles = makeStyles((theme) => ({ 4 | icon: { 5 | marginRight: theme.spacing(2), 6 | }, 7 | heroContent: { 8 | backgroundColor: theme.palette.background.paper, 9 | padding: theme.spacing(8, 0, 6), 10 | }, 11 | heroButtons: { 12 | marginTop: theme.spacing(4), 13 | }, 14 | cardGrid: { 15 | paddingTop: theme.spacing(8), 16 | paddingBottom: theme.spacing(8), 17 | }, 18 | card: { 19 | height: '100%', 20 | display: 'flex', 21 | flexDirection: 'column', 22 | "&:hover, &:focus": { 23 | backgroundColor: 'rgba(50,50,50)', 24 | color:'white', 25 | boxShadow: '0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22)', 26 | } 27 | }, 28 | cardMedia: { 29 | paddingTop: '56.25%', // 16:9 30 | }, 31 | cardContent: { 32 | flexGrow: 1, 33 | textAlign: 'center', 34 | }, 35 | footer: { 36 | backgroundColor: theme.palette.background.paper, 37 | padding: theme.spacing(6), 38 | }, 39 | toolBar: { 40 | backgroundColor: '#f9f8ff', 41 | color: '#424242', 42 | } 43 | })); 44 | -------------------------------------------------------------------------------- /src/utils/typography.js: -------------------------------------------------------------------------------- 1 | import Typography from 'typography'; 2 | import CodePlugin from 'typography-plugin-code'; 3 | import githubTheme from 'typography-theme-github'; 4 | 5 | const typography = new Typography(githubTheme); 6 | typography.plugins = [new CodePlugin()]; 7 | export const { scale, rhythm, options } = typography; 8 | export default typography; 9 | -------------------------------------------------------------------------------- /start-new-game.md: -------------------------------------------------------------------------------- 1 | # Welcome to the Dungeon! 2 | 3 | Choose your path: 4 | 5 | - [I choose you, the normal dungeon](english/normal-dungeon/begin-journey.md) 6 | - [不到長城非好漢](chinese/great-wall/begin-journey.md) 7 | - [Save yourself from the viruses!](english/covid-19/begin-journey.md) 8 | - [Eu escolho você, a dungeon normal](portuguese/normal-dungeon/begin-journey.md) 9 | - [TIME to travel](english/time-travel/begin-journey.md) 10 | - [Yo te elijo, calabozo normal](spanish/normal-dungeon/begin-journey.md) 11 | - [Escape the Empire's prsion, Sci-fi dungeon](english\sci-fi-dungeon) 12 | - [The Mines of Moria](english/mines-of-moria/begin-journey.md) -------------------------------------------------------------------------------- /static/images/covid-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/static/images/covid-19.jpg -------------------------------------------------------------------------------- /static/images/dungeon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/static/images/dungeon.jpg -------------------------------------------------------------------------------- /static/images/great-wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/static/images/great-wall.jpg -------------------------------------------------------------------------------- /static/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/static/images/icon.png -------------------------------------------------------------------------------- /static/images/mines-of-moria.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/static/images/mines-of-moria.jpg -------------------------------------------------------------------------------- /static/images/scifi-dungeon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/static/images/scifi-dungeon.jpg -------------------------------------------------------------------------------- /static/images/time-travel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeContributions/markdown-dungeon/554e007565f0416e56664f8c4413f119d3abeb8a/static/images/time-travel.jpg -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- 1 | # Translations 2 | 3 | | Code | Translated Link | 4 | | --------------------------- | ------------------------- | 5 | | :globe_with_meridians: | [English](./../README.md) | 6 | | :taiwan: | [繁體中文](./README.ch.md) | 7 | | :fr: | [French](./README.fr.md) | 8 | --------------------------------------------------------------------------------