munch
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

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