big steppy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

176 lines
3.1 KiB

  1. options = [
  2. {
  3. "name": "Basics",
  4. "id": "basics",
  5. "optional": false,
  6. "entries": [
  7. {
  8. "name": "Name",
  9. "id": "name",
  10. "type": "text"
  11. },
  12. {
  13. "name": "Species",
  14. "id": "species",
  15. "type": "text"
  16. },
  17. {
  18. "name": "Scale",
  19. "id": "scale",
  20. "type": "float",
  21. "default": "1"
  22. },
  23. {
  24. "name": "Height",
  25. "id": "baseHeight",
  26. "type": "float",
  27. "default": "2.26",
  28. "unit": "length"
  29. },
  30. {
  31. "name": "Weight",
  32. "id": "baseWeight",
  33. "type": "float",
  34. "default": "135",
  35. "unit": "mass"
  36. },
  37. {
  38. "name": "Paw area",
  39. "id": "basePawArea",
  40. "type": "float",
  41. "default": "0.1",
  42. "unit": "area"
  43. },
  44. {
  45. "name": "Hand area",
  46. "id": "baseHandArea",
  47. "type": "float",
  48. "default": "0.1",
  49. "unit": "area"
  50. },
  51. {
  52. "name": "Ass area",
  53. "id": "baseAssArea",
  54. "type": "float",
  55. "default": "0.2",
  56. "unit": "area"
  57. }
  58. ]
  59. },
  60. {
  61. "name": "Difficulty",
  62. "id": "difficulty",
  63. "optional": false,
  64. "entries":
  65. [
  66. {
  67. "type": "radio",
  68. "id": "difficulty",
  69. "default": "0",
  70. "choices":
  71. [
  72. {
  73. "name": "Sandbox",
  74. "value": "0"
  75. },
  76. {
  77. "name": "Stompvival",
  78. "value": "1"
  79. }
  80. ]
  81. }
  82. ]
  83. },
  84. {
  85. "name": "Brutality",
  86. "id": "brutality",
  87. "optional": false,
  88. "entries":
  89. [
  90. {
  91. "type": "radio",
  92. "id": "brutality",
  93. "default": "1",
  94. "choices":
  95. [
  96. {
  97. "name": "Non-fatal",
  98. "value": "0"
  99. },
  100. {
  101. "name": "Fatal",
  102. "value": "1"
  103. },
  104. {
  105. "name": "Gory",
  106. "value": "2"
  107. },
  108. {
  109. "name": "Sadistic",
  110. "value": "3"
  111. },
  112. ]
  113. }
  114. ]
  115. },
  116. {
  117. "name": "Victims",
  118. "id": "victims",
  119. "optional": false,
  120. "entries":
  121. [
  122. {
  123. "type": "checkbox",
  124. "id": "victims",
  125. "choices":
  126. [
  127. {
  128. "name": "Human prey",
  129. "value": "Human"
  130. },
  131. {
  132. "name": "Military",
  133. "value": "Military"
  134. },
  135. {
  136. "name": "Other macros",
  137. "value": "Macros"
  138. },
  139. {
  140. "name": "Micros",
  141. "value": "Micros"
  142. },
  143. ]
  144. }
  145. ]
  146. },
  147. {
  148. "name": "Oral Vore",
  149. "id": "oralVore",
  150. "optional": true,
  151. "entries":
  152. [
  153. {
  154. "name": "Digestion time",
  155. "id": "oralDigestTime",
  156. "type": "float",
  157. "default": "15"
  158. }
  159. ]
  160. },
  161. {
  162. "name": "Anal Vore",
  163. "id": "analVore",
  164. "optional": true,
  165. "entries":
  166. [
  167. {
  168. "name": "Digestion time",
  169. "id": "analDigestTime",
  170. "type": "float",
  171. "default": "15"
  172. }
  173. ]
  174. }
  175. ];