help.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Schmorn Help & Information</title>
  7. <style>
  8. body {
  9. font-family: 'Iosevka Slab', monospace;
  10. font-size: 1.3rem;
  11. line-height: 1.6;
  12. padding: 20px;
  13. background-color: #000000;
  14. color: #ffffff;
  15. max-width: 800px;
  16. margin: 0 auto;
  17. }
  18. h1 {
  19. color: #ffffff;
  20. border-bottom: 1px solid #ffffff;
  21. padding-bottom: 10px;
  22. margin-top: 0;
  23. font-weight: 700;
  24. }
  25. h2 {
  26. color: #ffffff;
  27. margin-top: 25px;
  28. font-weight: 700;
  29. }
  30. p {
  31. margin-bottom: 15px;
  32. }
  33. ul {
  34. list-style-type: none;
  35. margin-left: 0;
  36. padding-left: 0;
  37. }
  38. li {
  39. margin-bottom: 8px;
  40. padding-left: 1.2em;
  41. position: relative;
  42. }
  43. li:before {
  44. content: '-';
  45. position: absolute;
  46. left: 0;
  47. color: #ffffff;
  48. }
  49. code {
  50. background-color: #333333;
  51. padding: 2px 4px;
  52. border-radius: 2px;
  53. font-family: 'Iosevka Slab', monospace;
  54. color: #ffffff;
  55. }
  56. strong {
  57. color: #ffffff;
  58. }
  59. hr {
  60. border: none;
  61. border-top: 1px solid #555555;
  62. margin: 30px 0;
  63. }
  64. </style>
  65. </head>
  66. <body>
  67. <h1>Schmorn Help</h1>
  68. <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>
  69. <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>
  70. <hr>
  71. <h2>How to play?</h2>
  72. <ul>
  73. <li>All gameplay is handled by pressing appropriate buttons. Press buttons to explore, fight enemies, etc.</li>
  74. <li>The inventory is also interactable: click on a collected item to use it.</li>
  75. <li>Press <strong>Ctrl+R</strong> to restart the game at any time.</li>
  76. <li>Press <strong>F1</strong> to show this help screen.</li>
  77. <li>Run the game with the <code>--cli</code> argument to play in the command line interface.</li>
  78. </ul>
  79. <hr>
  80. <h2>Additional information</h2>
  81. <ul>
  82. <li>Author: <strong>Ondřej Schlaichert</strong></li>
  83. <li>Semester: <strong>ZS 2025/2026</strong></li>
  84. <li>Version: <strong>1.0.0</strong></li>
  85. </ul>
  86. </body>
  87. </html>