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

168 line
5.6 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="customs.js"></script>
  11. <script src="world.js"></script>
  12. <script src="vore.js"></script>
  13. <script src="feast.js"></script>
  14. <meta name="theme-color" content="#000000" />
  15. <meta name="description" content="A vore text adventure" />
  16. <meta property="og:title" content="Feast" />
  17. <meta property="og:description" content="A vore text adventure" />
  18. <meta property="og:image" content="https://chemicalcrux.org/feast/feast.png" />
  19. <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
  20. </head>
  21. <body>
  22. <div id="game">
  23. <div id="game-and-stats">
  24. <div id="log">
  25. Welcome to Feast v0.1.1
  26. </div>
  27. <div id="stats">
  28. <div class="stat-line" id="time">Time: to file a bug report, because you shouldn't see this!</div>
  29. <div class="stat-line" id="stat-name">Vim: 15</div>
  30. <div class="stat-line" id="stat-cash">Spondulicks: 150000</div>
  31. <div class="stat-line" id="stat-health">Pulchritude: 44</div>
  32. <div class="stat-line" id="stat-stamina">Imagination: 97</div>
  33. <div class="stat-line" id="stat-fullness">Candy Corn: 3</div>
  34. <div class="stat-line" id="stat-bowels">Emotions: 35/100</div>
  35. </div>
  36. </div>
  37. <div id="footer">
  38. <div class="selector" id="selector-explore">
  39. <div id="compass">
  40. <table>
  41. <tr>
  42. <th>
  43. <button class="compass-button" id="compass-north-west">North West</button>
  44. </th>
  45. <th>
  46. <button class="compass-button" id="compass-north">North</button>
  47. </th>
  48. <th>
  49. <button class="compass-button" id="compass-north-east">North East</button>
  50. </th>
  51. </tr>
  52. <tr>
  53. <th>
  54. <button class="compass-button" id="compass-west">West</button>
  55. </th>
  56. <th>
  57. <button class="compass-button active-button" id="compass-look">Look</button>
  58. </th>
  59. <th>
  60. <button class="compass-button" id="compass-east">East</button>
  61. </th>
  62. </tr>
  63. <tr>
  64. <th>
  65. <button class="compass-button" id="compass-south-west">South West</button>
  66. </th>
  67. <th>
  68. <button class="compass-button" id="compass-south">South</button>
  69. </th>
  70. <th>
  71. <button class="compass-button" id="compass-south-east">South East</button>
  72. </th>
  73. </tr>
  74. </table>
  75. </div>
  76. <div id="actions">
  77. <table>
  78. <tr>
  79. <th>
  80. <button class="action-button" id="action-look">Look</button>
  81. </th>
  82. <th>
  83. <button class="inactive-button action-button" disabled="true"></button>
  84. </th>
  85. <th>
  86. <button class="inactive-button action-button" disabled="true"></button>
  87. </th>
  88. </tr>
  89. <tr>
  90. <th>
  91. <button class="inactive-button action-button" disabled="true"></button>
  92. </th>
  93. <th>
  94. <button class="inactive-button action-button" disabled="true"></button>
  95. </th>
  96. <th>
  97. <button class="inactive-button action-button" disabled="true"></button>
  98. </th>
  99. </tr>
  100. <tr>
  101. <th>
  102. <button class="inactive-button action-button" disabled="true"></button>
  103. </th>
  104. <th>
  105. <button class="inactive-button action-button" disabled="true"></button>
  106. </th>
  107. <th>
  108. <button class="inactive-button action-button" disabled="true"></button>
  109. </th>
  110. </tr>
  111. </table>
  112. </div>
  113. </div>
  114. <div class="selector" id="selector-combat">
  115. <ul id="combat">
  116. </ul>
  117. <div id="combat-desc">
  118. </div>
  119. </div>
  120. <div class="selector" id="selector-eaten">
  121. <ul id="eaten">
  122. </ul>
  123. <div id="eaten-desc">
  124. </div>
  125. </div>
  126. <div class="selector" id="selector-dialog">
  127. <ul id="dialog">
  128. </ul>
  129. </div>
  130. </div>
  131. </div>
  132. <div id="create">
  133. <form id="character-form">
  134. <ul id="character-form-list">
  135. <li>
  136. <label for="character-name">Name</label>
  137. <input type="text" id="character-name" name="name" placeholder="Player"/>
  138. </li>
  139. <li>
  140. <label for="character-species">Species</label>
  141. <input type="text" id="character-species" name="species" placeholder="nerd"/>
  142. </li>
  143. <li>
  144. <label for="character-prefs-prey">Player can be eaten</label>
  145. <input type="checkbox" id="character-prefs-prey" name="prefs-prey" checked=true />
  146. <li>
  147. <li>
  148. <label for="character-prefs-scat">Disposal/scat</label>
  149. <input type="checkbox" id="character-prefs-scat" name="prefs-scat"/>
  150. <li>
  151. <li>
  152. <label for="character-prefs-gore">Gore</label>
  153. <input type="checkbox" id="character-prefs-gore" name="prefs-gore"/>
  154. <li>
  155. <button type="button" id="start-button">Start</button>
  156. </li>
  157. </ul>
  158. </form>
  159. </div>
  160. </body>
  161. </html>