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.
 
 
 

163 lines
5.4 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.0
  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-health">Pulchritude: 44</div>
  31. <div class="stat-line" id="stat-stamina">Imagination: 97</div>
  32. <div class="stat-line" id="stat-fullness">Candy Corn: 3</div>
  33. <div class="stat-line" id="stat-bowels">Emotions: 35/100</div>
  34. </div>
  35. </div>
  36. <div id="footer">
  37. <div class="selector" id="selector-explore">
  38. <div id="compass">
  39. <table>
  40. <tr>
  41. <th>
  42. <button class="compass-button" id="compass-north-west">North West</button>
  43. </th>
  44. <th>
  45. <button class="compass-button" id="compass-north">North</button>
  46. </th>
  47. <th>
  48. <button class="compass-button" id="compass-north-east">North East</button>
  49. </th>
  50. </tr>
  51. <tr>
  52. <th>
  53. <button class="compass-button" id="compass-west">West</button>
  54. </th>
  55. <th>
  56. <button class="compass-button active-button" id="compass-look">Look</button>
  57. </th>
  58. <th>
  59. <button class="compass-button" id="compass-east">East</button>
  60. </th>
  61. </tr>
  62. <tr>
  63. <th>
  64. <button class="compass-button" id="compass-south-west">South West</button>
  65. </th>
  66. <th>
  67. <button class="compass-button" id="compass-south">South</button>
  68. </th>
  69. <th>
  70. <button class="compass-button" id="compass-south-east">South East</button>
  71. </th>
  72. </tr>
  73. </table>
  74. </div>
  75. <div id="actions">
  76. <table>
  77. <tr>
  78. <th>
  79. <button class="action-button" id="action-look">Look</button>
  80. </th>
  81. <th>
  82. <button class="inactive-button action-button" disabled="true"></button>
  83. </th>
  84. <th>
  85. <button class="inactive-button action-button" disabled="true"></button>
  86. </th>
  87. </tr>
  88. <tr>
  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. <th>
  96. <button class="inactive-button action-button" disabled="true"></button>
  97. </th>
  98. </tr>
  99. <tr>
  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. <th>
  107. <button class="inactive-button action-button" disabled="true"></button>
  108. </th>
  109. </tr>
  110. </table>
  111. </div>
  112. </div>
  113. <div class="selector" id="selector-combat">
  114. <ul id="combat">
  115. </ul>
  116. <div id="combat-desc">
  117. </div>
  118. </div>
  119. <div class="selector" id="selector-eaten">
  120. <ul id="eaten">
  121. </ul>
  122. <div id="eaten-desc">
  123. </div>
  124. </div>
  125. <div class="selector" id="selector-dialog">
  126. <ul id="dialog">
  127. </ul>
  128. </div>
  129. </div>
  130. </div>
  131. <div id="create">
  132. <form id="character-form">
  133. <ul id="character-form-list">
  134. <li>
  135. <label for="character-name">Name</label>
  136. <input type="text" id="character-name" name="name" placeholder="Player"/>
  137. </li>
  138. <li>
  139. <label for="character-species">Species</label>
  140. <input type="text" id="character-species" name="species" placeholder="nerd"/>
  141. </li>
  142. <li>
  143. <label for="character-prefs-player-prey">Player can be eaten</label>
  144. <input type="checkbox" id="character-prefs-player-prey" name="prefs-player-prey" checked=true />
  145. <li>
  146. <li>
  147. <label for="character-prefs-player-scat">Disposal/scat</label>
  148. <input type="checkbox" id="character-prefs-player-scat" name="prefs-player-scat"/>
  149. <li>
  150. <button type="button" id="start-button">Start</button>
  151. </li>
  152. </ul>
  153. </form>
  154. </div>
  155. </body>
  156. </html>