crunch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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