crunch
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

129 linhas
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="time">Time: to get a watch</div>
  23. <div class="stat-line" id="stat-name">Vim: 15</div>
  24. <div class="stat-line" id="stat-health">Pulchritude: 44</div>
  25. <div class="stat-line" id="stat-fullness">Imagination: 97</div>
  26. </div>
  27. </div>
  28. <div id="footer">
  29. <div class="selector" id="selector-explore">
  30. <div id="compass">
  31. <table>
  32. <tr>
  33. <th>
  34. <button class="compass-button" id="compass-north-west">North West</button>
  35. </th>
  36. <th>
  37. <button class="compass-button" id="compass-north">North</button>
  38. </th>
  39. <th>
  40. <button class="compass-button" id="compass-north-east">North East</button>
  41. </th>
  42. </tr>
  43. <tr>
  44. <th>
  45. <button class="compass-button" id="compass-west">West</button>
  46. </th>
  47. <th>
  48. <button class="compass-button inactive-compass-button" id="compass-filler" disabled="true"></button>
  49. </th>
  50. <th>
  51. <button class="compass-button" id="compass-east">East</button>
  52. </th>
  53. </tr>
  54. <tr>
  55. <th>
  56. <button class="compass-button" id="compass-south-west">South West</button>
  57. </th>
  58. <th>
  59. <button class="compass-button" id="compass-south">South</button>
  60. </th>
  61. <th>
  62. <button class="compass-button" id="compass-south-east">South East</button>
  63. </th>
  64. </tr>
  65. </table>
  66. </div>
  67. <div id="actions">
  68. <table>
  69. <tr>
  70. <th>
  71. <button class="action-button" id="action-look">Look</button>
  72. </th>
  73. <th>
  74. <button class="inactive-action-button action-button" disabled="true" ></button>
  75. </th>
  76. <th>
  77. <button class="inactive-action-button action-button" disabled="true" ></button>
  78. </th>
  79. </tr>
  80. <tr>
  81. <th>
  82. <button class="inactive-action-button action-button" disabled="true" ></button>
  83. </th>
  84. <th>
  85. <button class="inactive-action-button action-button" disabled="true"></button>
  86. </th>
  87. <th>
  88. <button class="inactive-action-button action-button" disabled="true" ></button>
  89. </th>
  90. </tr>
  91. <tr>
  92. <th>
  93. <button class="inactive-action-button action-button" disabled="true" ></button>
  94. </th>
  95. <th>
  96. <button class="inactive-action-button action-button" disabled="true" ></button>
  97. </th>
  98. <th>
  99. <button class="inactive-action-button action-button" disabled="true" ></button>
  100. </th>
  101. </tr>
  102. </table>
  103. </div>
  104. </div>
  105. <div class="selector" id="selector-combat">
  106. <div id="combat">
  107. <table>
  108. <tr>
  109. <th>
  110. <button class="combat-button">Punch</button>
  111. </th>
  112. <th>
  113. <button class="combat-button">Eat</button>
  114. </th>
  115. <th>
  116. <button class="combat-button">Sneeze</button>
  117. </th>
  118. </tr>
  119. </table>
  120. </div>
  121. </div>
  122. </div>
  123. </body>
  124. </html>