munch
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

139 Zeilen
4.2 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Feast</title>
  6. <link rel="stylesheet" href="feast.css">
  7. <script src="combat.js"></script>
  8. <script src="objects.js"></script>
  9. <script src="dialog.js"></script>
  10. <script src="world.js"></script>
  11. <script src="vore.js"></script>
  12. <script src="feast.js"></script>
  13. <meta name="theme-color" content="#000000" />
  14. <meta name="description" content="A vore text adventure" />
  15. <meta property="og:title" content="Feast" />
  16. <meta property="og:description" content="A vore text adventure" />
  17. <meta property="og:image" content="https://chemicalcrux.org/feast/feast.png" />
  18. <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
  19. </head>
  20. <body>
  21. <div id="game-and-stats">
  22. <div id="log">
  23. Welcome to Feast v0.0.1
  24. </div>
  25. <div id="stats">
  26. <div class="stat-line" id="time">Time: to get a watch</div>
  27. <div class="stat-line" id="stat-name">Vim: 15</div>
  28. <div class="stat-line" id="stat-health">Pulchritude: 44</div>
  29. <div class="stat-line" id="stat-fullness">Imagination: 97</div>
  30. </div>
  31. </div>
  32. <div id="footer">
  33. <div class="selector" id="selector-explore">
  34. <div id="compass">
  35. <table>
  36. <tr>
  37. <th>
  38. <button class="compass-button" id="compass-north-west">North West</button>
  39. </th>
  40. <th>
  41. <button class="compass-button" id="compass-north">North</button>
  42. </th>
  43. <th>
  44. <button class="compass-button" id="compass-north-east">North East</button>
  45. </th>
  46. </tr>
  47. <tr>
  48. <th>
  49. <button class="compass-button" id="compass-west">West</button>
  50. </th>
  51. <th>
  52. <button class="compass-button inactive-button" id="compass-filler" disabled="true"></button>
  53. </th>
  54. <th>
  55. <button class="compass-button" id="compass-east">East</button>
  56. </th>
  57. </tr>
  58. <tr>
  59. <th>
  60. <button class="compass-button" id="compass-south-west">South West</button>
  61. </th>
  62. <th>
  63. <button class="compass-button" id="compass-south">South</button>
  64. </th>
  65. <th>
  66. <button class="compass-button" id="compass-south-east">South East</button>
  67. </th>
  68. </tr>
  69. </table>
  70. </div>
  71. <div id="actions">
  72. <table>
  73. <tr>
  74. <th>
  75. <button class="action-button" id="action-look">Look</button>
  76. </th>
  77. <th>
  78. <button class="inactive-button action-button" disabled="true" ></button>
  79. </th>
  80. <th>
  81. <button class="inactive-button action-button" disabled="true" ></button>
  82. </th>
  83. </tr>
  84. <tr>
  85. <th>
  86. <button class="inactive-button action-button" disabled="true" ></button>
  87. </th>
  88. <th>
  89. <button class="inactive-button action-button" disabled="true"></button>
  90. </th>
  91. <th>
  92. <button class="inactive-button action-button" disabled="true" ></button>
  93. </th>
  94. </tr>
  95. <tr>
  96. <th>
  97. <button class="inactive-button action-button" disabled="true" ></button>
  98. </th>
  99. <th>
  100. <button class="inactive-button action-button" disabled="true" ></button>
  101. </th>
  102. <th>
  103. <button class="inactive-button action-button" disabled="true" ></button>
  104. </th>
  105. </tr>
  106. </table>
  107. </div>
  108. </div>
  109. <div class="selector" id="selector-combat">
  110. <div id="combat">
  111. <table>
  112. <tr>
  113. <th>
  114. <button class="combat-button">Punch</button>
  115. </th>
  116. <th>
  117. <button class="combat-button">Eat</button>
  118. </th>
  119. <th>
  120. <button class="combat-button">Sneeze</button>
  121. </th>
  122. </tr>
  123. </table>
  124. </div>
  125. </div>
  126. <div class="selector" id="selector-dialog">
  127. <ul id="dialog">
  128. </ul>
  129. </div>
  130. </div>
  131. </body>
  132. </html>