crunch
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

128 行
4.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="world.js"></script>
  8. <script src="feast.js"></script>
  9. <meta name="theme-color" content="#000000" />
  10. <meta name="description" content="A vore text adventure" />
  11. <meta property="og:title" content="Feast" />
  12. <meta property="og:description" content="A vore text adventure" />
  13. <meta property="og:image" content="https://chemicalcrux.org/feast/feast.png" />
  14. <link rel="shortcut icon" href="https://chemicalcrux.org/favicon.ico" type="image/x-icon" />
  15. </head>
  16. <body>
  17. <div id="game-and-stats">
  18. <div id="log">
  19. Welcome to Feast v0.0.3
  20. </div>
  21. <div id="stats">
  22. <div class="stat-line" id="stat-name">Vim: 15</div>
  23. <div class="stat-line" id="stat-health">Pulchritude: 44</div>
  24. <div class="stat-line" id="stat-fullness">Imagination: 97</div>
  25. </div>
  26. </div>
  27. <div id="footer">
  28. <div class="selector" id="selector-explore">
  29. <div id="compass">
  30. <table>
  31. <tr>
  32. <th>
  33. <button class="compass-button" id="compass-north-west">North West</button>
  34. </th>
  35. <th>
  36. <button class="compass-button" id="compass-north">North</button>
  37. </th>
  38. <th>
  39. <button class="compass-button" id="compass-north-east">North East</button>
  40. </th>
  41. </tr>
  42. <tr>
  43. <th>
  44. <button class="compass-button" id="compass-west">West</button>
  45. </th>
  46. <th>
  47. <button class="compass-button inactive-compass-button" id="compass-filler" disabled="true"></button>
  48. </th>
  49. <th>
  50. <button class="compass-button" id="compass-east">East</button>
  51. </th>
  52. </tr>
  53. <tr>
  54. <th>
  55. <button class="compass-button" id="compass-south-west">South West</button>
  56. </th>
  57. <th>
  58. <button class="compass-button" id="compass-south">South</button>
  59. </th>
  60. <th>
  61. <button class="compass-button" id="compass-south-east">South East</button>
  62. </th>
  63. </tr>
  64. </table>
  65. </div>
  66. <div id="actions">
  67. <table>
  68. <tr>
  69. <th>
  70. <button class="action-button" id="action-look">Look</button>
  71. </th>
  72. <th>
  73. <button class="inactive-action-button action-button" disabled="true" ></button>
  74. </th>
  75. <th>
  76. <button class="inactive-action-button action-button" disabled="true" ></button>
  77. </th>
  78. </tr>
  79. <tr>
  80. <th>
  81. <button class="inactive-action-button action-button" disabled="true" ></button>
  82. </th>
  83. <th>
  84. <button class="inactive-action-button action-button" disabled="true"></button>
  85. </th>
  86. <th>
  87. <button class="inactive-action-button action-button" disabled="true" ></button>
  88. </th>
  89. </tr>
  90. <tr>
  91. <th>
  92. <button class="inactive-action-button action-button" disabled="true" ></button>
  93. </th>
  94. <th>
  95. <button class="inactive-action-button action-button" disabled="true" ></button>
  96. </th>
  97. <th>
  98. <button class="inactive-action-button action-button" disabled="true" ></button>
  99. </th>
  100. </tr>
  101. </table>
  102. </div>
  103. </div>
  104. <div class="selector" id="selector-combat">
  105. <div id="combat">
  106. <table>
  107. <tr>
  108. <th>
  109. <button class="combat-button">Punch</button>
  110. </th>
  111. <th>
  112. <button class="combat-button">Eat</button>
  113. </th>
  114. <th>
  115. <button class="combat-button">Sneeze</button>
  116. </th>
  117. </tr>
  118. </table>
  119. </div>
  120. </div>
  121. </div>
  122. </body>
  123. </html>