munch
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

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