crunch
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

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