crunch
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.
 
 
 

156 Zeilen
4.9 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">
  22. <div id="game-and-stats">
  23. <div id="log">
  24. Welcome to Feast v0.0.2
  25. </div>
  26. <div id="stats">
  27. <div class="stat-line" id="time">Time: to get a watch</div>
  28. <div class="stat-line" id="stat-name">Vim: 15</div>
  29. <div class="stat-line" id="stat-health">Pulchritude: 44</div>
  30. <div class="stat-line" id="stat-fullness">Imagination: 97</div>
  31. </div>
  32. </div>
  33. <div id="footer">
  34. <div class="selector" id="selector-explore">
  35. <div id="compass">
  36. <table>
  37. <tr>
  38. <th>
  39. <button class="compass-button" id="compass-north-west">North West</button>
  40. </th>
  41. <th>
  42. <button class="compass-button" id="compass-north">North</button>
  43. </th>
  44. <th>
  45. <button class="compass-button" id="compass-north-east">North East</button>
  46. </th>
  47. </tr>
  48. <tr>
  49. <th>
  50. <button class="compass-button" id="compass-west">West</button>
  51. </th>
  52. <th>
  53. <button class="compass-button inactive-button" id="compass-filler" disabled="true"></button>
  54. </th>
  55. <th>
  56. <button class="compass-button" id="compass-east">East</button>
  57. </th>
  58. </tr>
  59. <tr>
  60. <th>
  61. <button class="compass-button" id="compass-south-west">South West</button>
  62. </th>
  63. <th>
  64. <button class="compass-button" id="compass-south">South</button>
  65. </th>
  66. <th>
  67. <button class="compass-button" id="compass-south-east">South East</button>
  68. </th>
  69. </tr>
  70. </table>
  71. </div>
  72. <div id="actions">
  73. <table>
  74. <tr>
  75. <th>
  76. <button class="action-button" id="action-look">Look</button>
  77. </th>
  78. <th>
  79. <button class="inactive-button action-button" disabled="true"></button>
  80. </th>
  81. <th>
  82. <button class="inactive-button action-button" disabled="true"></button>
  83. </th>
  84. </tr>
  85. <tr>
  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. <th>
  93. <button class="inactive-button action-button" disabled="true"></button>
  94. </th>
  95. </tr>
  96. <tr>
  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. <th>
  104. <button class="inactive-button action-button" disabled="true"></button>
  105. </th>
  106. </tr>
  107. </table>
  108. </div>
  109. </div>
  110. <div class="selector" id="selector-combat">
  111. <ul id="combat">
  112. </ul>
  113. <div id="combat-desc">
  114. </div>
  115. </div>
  116. <div class="selector" id="selector-eaten">
  117. <ul id="eaten">
  118. </ul>
  119. <div id="eaten-desc">
  120. </div>
  121. </div>
  122. <div class="selector" id="selector-dialog">
  123. <ul id="dialog">
  124. </ul>
  125. </div>
  126. </div>
  127. </div>
  128. <div id="create">
  129. <form id="character-form">
  130. <ul id="character-form-list">
  131. <li>
  132. <label for="character-name">Name</label>
  133. <input type="text" id="character-name" name="name"/>
  134. </li>
  135. <li>
  136. <label for="character-species">Species</label>
  137. <input type="text" id="character-species" name="species"/>
  138. </li>
  139. <li>
  140. <label for="character-prefs-player-prey">Player can be eaten</label>
  141. <input type="checkbox" id="character-prefs-player-prey" name="prefs-player-prey" checked=true />
  142. <li>
  143. <button type="button" id="start-button">Start</button>
  144. </li>
  145. </ul>
  146. </form>
  147. </div>
  148. </body>
  149. </html>