munch
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

176 řádky
5.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="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.3
  26. </div>
  27. <div class="stats">
  28. <div id="player-stats">
  29. <div class="stat-line" id="time">Time: to file a bug report, because you shouldn't see this!</div>
  30. <div class="stat-line" id="stat-name">Vim: 15</div>
  31. <div class="stat-line" id="stat-cash">Spondulicks: 150000</div>
  32. <div class="stat-line" id="stat-health">Pulchritude: 44</div>
  33. <div class="stat-line" id="stat-stamina">Imagination: 97</div>
  34. <div class="stat-line" id="stat-fullness">Candy Corn: 3</div>
  35. <div class="stat-line" id="stat-bowels">Emotions: 35/100</div>
  36. </div>
  37. <div id="foe-stats">
  38. FOE
  39. <div class="stat-line" id="stat-foe-name">Vim: 21</div>
  40. <div class="stat-line" id="stat-foe-health">Pulchritude: 21</div>
  41. <div class="stat-line" id="stat-foe-stamina">Imagination: 66</div>
  42. </div>
  43. </div>
  44. </div>
  45. <div id="footer">
  46. <div class="selector" id="selector-explore">
  47. <div id="compass">
  48. <table>
  49. <tr>
  50. <th>
  51. <button class="compass-button" id="compass-north-west">North West</button>
  52. </th>
  53. <th>
  54. <button class="compass-button" id="compass-north">North</button>
  55. </th>
  56. <th>
  57. <button class="compass-button" id="compass-north-east">North East</button>
  58. </th>
  59. </tr>
  60. <tr>
  61. <th>
  62. <button class="compass-button" id="compass-west">West</button>
  63. </th>
  64. <th>
  65. <button class="compass-button active-button" id="compass-look">Look</button>
  66. </th>
  67. <th>
  68. <button class="compass-button" id="compass-east">East</button>
  69. </th>
  70. </tr>
  71. <tr>
  72. <th>
  73. <button class="compass-button" id="compass-south-west">South West</button>
  74. </th>
  75. <th>
  76. <button class="compass-button" id="compass-south">South</button>
  77. </th>
  78. <th>
  79. <button class="compass-button" id="compass-south-east">South East</button>
  80. </th>
  81. </tr>
  82. </table>
  83. </div>
  84. <div id="actions">
  85. <table>
  86. <tr>
  87. <th>
  88. <button class="action-button" id="action-look">Look</button>
  89. </th>
  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. </tr>
  97. <tr>
  98. <th>
  99. <button class="inactive-button action-button" disabled="true"></button>
  100. </th>
  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. </tr>
  108. <tr>
  109. <th>
  110. <button class="inactive-button action-button" disabled="true"></button>
  111. </th>
  112. <th>
  113. <button class="inactive-button action-button" disabled="true"></button>
  114. </th>
  115. <th>
  116. <button class="inactive-button action-button" disabled="true"></button>
  117. </th>
  118. </tr>
  119. </table>
  120. </div>
  121. </div>
  122. <div class="selector" id="selector-combat">
  123. <ul id="combat">
  124. </ul>
  125. <div id="combat-desc">
  126. </div>
  127. </div>
  128. <div class="selector" id="selector-eaten">
  129. <ul id="eaten">
  130. </ul>
  131. <div id="eaten-desc">
  132. </div>
  133. </div>
  134. <div class="selector" id="selector-dialog">
  135. <ul id="dialog">
  136. </ul>
  137. </div>
  138. </div>
  139. </div>
  140. <div id="create">
  141. <form id="character-form">
  142. <ul id="character-form-list">
  143. <li>
  144. <label for="character-name">Name</label>
  145. <input type="text" id="character-name" name="name" placeholder="Player"/>
  146. </li>
  147. <li>
  148. <label for="character-species">Species</label>
  149. <input type="text" id="character-species" name="species" placeholder="nerd"/>
  150. </li>
  151. <li>
  152. <label for="character-prefs-prey">Player can be eaten</label>
  153. <input type="checkbox" id="character-prefs-prey" name="prefs-prey" checked=true />
  154. <li>
  155. <li>
  156. <label for="character-prefs-scat">Disposal/scat</label>
  157. <input type="checkbox" id="character-prefs-scat" name="prefs-scat"/>
  158. <li>
  159. <li>
  160. <label for="character-prefs-gore">Gore</label>
  161. <input type="checkbox" id="character-prefs-gore" name="prefs-gore"/>
  162. <li>
  163. <button type="button" id="start-button">Start</button>
  164. </li>
  165. </ul>
  166. </form>
  167. </div>
  168. </body>
  169. </html>