| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Schmorn Help & Information</title>
- <style>
- body {
- font-family: 'Iosevka Slab', monospace;
- font-size: 1.3rem;
- line-height: 1.6;
- padding: 20px;
- background-color: #000000;
- color: #ffffff;
- max-width: 800px;
- margin: 0 auto;
- }
- h1 {
- color: #ffffff;
- border-bottom: 1px solid #ffffff;
- padding-bottom: 10px;
- margin-top: 0;
- font-weight: 700;
- }
- h2 {
- color: #ffffff;
- margin-top: 25px;
- font-weight: 700;
- }
- p {
- margin-bottom: 15px;
- }
- ul {
- list-style-type: none;
- margin-left: 0;
- padding-left: 0;
- }
- li {
- margin-bottom: 8px;
- padding-left: 1.2em;
- position: relative;
- }
- li:before {
- content: '-';
- position: absolute;
- left: 0;
- color: #ffffff;
- }
- code {
- background-color: #333333;
- padding: 2px 4px;
- border-radius: 2px;
- font-family: 'Iosevka Slab', monospace;
- color: #ffffff;
- }
- strong {
- color: #ffffff;
- }
- hr {
- border: none;
- border-top: 1px solid #555555;
- margin: 30px 0;
- }
- </style>
- </head>
- <body>
- <h1>Schmorn Help</h1>
- <p><strong>Schmorn</strong> is a simple text adventure game made in Java as part of the <strong>4IT115</strong> course at the <strong>Prague University of Economics and Business (VŠE)</strong>.</p>
- <p>The game tells a story of Schmorn, a weak, inept and power-hungry prince, who gets turned into a worm as a punishment for seeking unlimited power from Oglunda, a powerful witch. The witch casts Schmorn into his Royal Well, forcing him to crawl through the Royal Underground to reach the surface and get his revenge.</p>
- <hr>
- <h2>How to play?</h2>
- <ul>
- <li>All gameplay is handled by pressing appropriate buttons. Press buttons to explore, fight enemies, etc.</li>
- <li>The inventory is also interactable: click on a collected item to use it.</li>
- <li>Press <strong>Ctrl+R</strong> to restart the game at any time.</li>
- <li>Press <strong>F1</strong> to show this help screen.</li>
- <li>Run the game with the <code>--cli</code> argument to play in the command line interface.</li>
- </ul>
- <hr>
- <h2>Additional information</h2>
- <ul>
- <li>Author: <strong>Ondřej Schlaichert</strong></li>
- <li>Semester: <strong>ZS 2025/2026</strong></li>
- <li>Version: <strong>1.0.0</strong></li>
- </ul>
- </body>
- </html>
|