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.
 
 
 

519 lines
10 KiB

  1. options = [
  2. {
  3. "name": "Basics",
  4. "optional": false,
  5. "entries": [
  6. {
  7. "name": "Name",
  8. "id": "name",
  9. "type": "text"
  10. },
  11. {
  12. "name": "Species",
  13. "id": "species",
  14. "type": "text"
  15. },
  16. {
  17. "name": "Scale",
  18. "id": "scale",
  19. "type": "float",
  20. "default": "1"
  21. },
  22. {
  23. "name": "Height",
  24. "id": "baseHeight",
  25. "type": "float",
  26. "default": "2.26",
  27. "unit": "length"
  28. },
  29. {
  30. "name": "Weight",
  31. "id": "baseWeight",
  32. "type": "float",
  33. "default": "135",
  34. "unit": "mass"
  35. },
  36. {
  37. "name": "Paw area",
  38. "id": "basePawArea",
  39. "type": "float",
  40. "default": "0.1",
  41. "unit": "area"
  42. },
  43. {
  44. "name": "Hand area",
  45. "id": "baseHandArea",
  46. "type": "float",
  47. "default": "0.1",
  48. "unit": "area"
  49. },
  50. {
  51. "name": "Ass area",
  52. "id": "baseAssArea",
  53. "type": "float",
  54. "default": "0.2",
  55. "unit": "area"
  56. }
  57. ]
  58. },
  59. {
  60. "name": "Difficulty",
  61. "optional": false,
  62. "entries":
  63. [
  64. {
  65. "type": "radio",
  66. "id": "difficulty",
  67. "default": "0",
  68. "choices":
  69. [
  70. {
  71. "name": "Sandbox",
  72. "value": "0"
  73. },
  74. {
  75. "name": "Stompvival",
  76. "value": "1"
  77. }
  78. ]
  79. }
  80. ]
  81. },
  82. {
  83. "name": "Brutality",
  84. "optional": false,
  85. "entries":
  86. [
  87. {
  88. "type": "radio",
  89. "id": "brutality",
  90. "default": "1",
  91. "choices":
  92. [
  93. {
  94. "name": "Non-fatal",
  95. "value": "0"
  96. },
  97. {
  98. "name": "Fatal",
  99. "value": "1"
  100. },
  101. {
  102. "name": "Gory",
  103. "value": "2"
  104. },
  105. {
  106. "name": "Sadistic",
  107. "value": "3"
  108. },
  109. ]
  110. }
  111. ]
  112. },
  113. {
  114. "name": "Victims",
  115. "optional": false,
  116. "entries":
  117. [
  118. {
  119. "name": "Human prey",
  120. "id": "victimsHuman",
  121. "type": "checkbox"
  122. },
  123. {
  124. "name": "Military",
  125. "id": "victimsMilitary",
  126. "type": "checkbox"
  127. },
  128. {
  129. "name": "Macros",
  130. "id": "victimsMacros",
  131. "type": "checkbox"
  132. },
  133. {
  134. "name": "Micros",
  135. "id": "victimsMicros",
  136. "type": "checkbox"
  137. }
  138. ]
  139. },
  140. {
  141. "name": "Oral Vore",
  142. "id": "oralVore",
  143. "optional": true,
  144. "entries":
  145. [
  146. {
  147. "name": "Digestion time",
  148. "id": "oralDigestTime",
  149. "type": "float",
  150. "default": "15"
  151. }
  152. ]
  153. },
  154. {
  155. "name": "Anal Vore",
  156. "id": "analVore",
  157. "optional": true,
  158. "entries":
  159. [
  160. {
  161. "name": "Anus diameter",
  162. "id": "baseAnalVoreDiameter",
  163. "type": "float",
  164. "default": "0.2",
  165. "unit": "length"
  166. },
  167. {
  168. "name": "Digestion time",
  169. "id": "analDigestTime",
  170. "type": "float",
  171. "default": "15"
  172. },
  173. {
  174. "name": "Anal vore goes to stomach",
  175. "id": "analVoreToStomach",
  176. "type": "checkbox"
  177. }
  178. ]
  179. },
  180. {
  181. "name": "Footwear",
  182. "id": "footWear",
  183. "optional": true,
  184. "entries":
  185. [
  186. {
  187. "name": "Socks",
  188. "id": "footSockEnabled",
  189. "type": "subcategory",
  190. "entries":
  191. [
  192. {
  193. "name": "Sock type",
  194. "id": "footSock",
  195. "type": "select",
  196. "choices":
  197. [
  198. {
  199. "name": "Socks",
  200. "value": "sock"
  201. }
  202. ]
  203. }
  204. ]
  205. },
  206. {
  207. "name": "Shoes",
  208. "id": "footShoeEnabled",
  209. "type": "subcategory",
  210. "entries":
  211. [
  212. {
  213. "name": "Shoe type",
  214. "id": "footShoe",
  215. "type": "select",
  216. "choices":
  217. [
  218. {
  219. "name": "Shoes",
  220. "value": "shoe"
  221. },
  222. {
  223. "name": "Boots",
  224. "value": "boot"
  225. },
  226. {
  227. "name": "Trainers",
  228. "value": "trainer"
  229. },
  230. {
  231. "name": "Sandals",
  232. "value": "sandal"
  233. },
  234. ]
  235. }
  236. ]
  237. }
  238. ]
  239. },
  240. {
  241. "name": "Arousal",
  242. "id": "arousalEnabled",
  243. "optional": true,
  244. "entries":
  245. [
  246. {
  247. "name": "Arousal multiplier",
  248. "id": "arousalFactor",
  249. "type": "float",
  250. "default": "1"
  251. },
  252. {
  253. "name": "Edge multiplier",
  254. "id": "edgeFactor",
  255. "type": "float",
  256. "default": "1"
  257. }
  258. ]
  259. },
  260. {
  261. "name": "Tail",
  262. "id": "hasTail",
  263. "optional": true,
  264. "entries":
  265. [
  266. {
  267. "name": "Number of tails",
  268. "id": "tailCount",
  269. "type": "float",
  270. "default": "1"
  271. },
  272. {
  273. "name": "Tail description",
  274. "id": "tailType",
  275. "type": "text",
  276. "default": "fluffy"
  277. },
  278. {
  279. "name": "Tail length",
  280. "id": "baseTailLength",
  281. "type": "float",
  282. "default": "1",
  283. "unit": "length"
  284. },
  285. {
  286. "name": "Tail diameter",
  287. "id": "baseTailDiameter",
  288. "type": "float",
  289. "default": "0.3",
  290. "unit": "length"
  291. },
  292. {
  293. "name": "Tail Vore",
  294. "id": "tailMaw",
  295. "type": "subcategory",
  296. "entries":
  297. [
  298. {
  299. "name": "Tail stretchiness",
  300. "id": "tailStretchiness",
  301. "type": "float",
  302. "default": "1"
  303. },
  304. {
  305. "name": "Digestion time",
  306. "id": "tailDigestTime",
  307. "type": "float",
  308. "default": "15"
  309. },
  310. {
  311. "name": "Tail vore goes to stomach",
  312. "id": "tailVoreToStomach",
  313. "type": "checkbox"
  314. }
  315. ]
  316. }
  317. ]
  318. },
  319. {
  320. "name": "Pouch",
  321. "id": "hasPouch",
  322. "optional": true,
  323. "entries":
  324. [
  325. {
  326. "name": "Absorption",
  327. "id": "pouchAbsorption",
  328. "type": "checkbox"
  329. }
  330. ]
  331. },
  332. {
  333. "name": "Male Genitals",
  334. "id": "maleParts",
  335. "optional": true,
  336. "entries":
  337. [
  338. {
  339. "name": "Cock description",
  340. "id": "dickType",
  341. "type": "text",
  342. "default": "canine"
  343. },
  344. {
  345. "name": "Cock length",
  346. "id": "baseDickLength",
  347. "type": "float",
  348. "default": "0.3",
  349. "unit": "length"
  350. },
  351. {
  352. "name": "Cock diameter",
  353. "id": "baseDickDiameter",
  354. "type": "float",
  355. "default": "0.08",
  356. "unit": "length"
  357. },
  358. {
  359. "name": "Cock stretchiness",
  360. "id": "dickStretchiness",
  361. "type": "float",
  362. "default": "1"
  363. },
  364. {
  365. "name": "Ball diameter",
  366. "id": "baseBallDiameter",
  367. "type": "float",
  368. "default": "0.05",
  369. "unit": "length",
  370. },
  371. {
  372. "name": "Orgasm size",
  373. "id": "baseCumRatio",
  374. "type": "float",
  375. "default": "1",
  376. },
  377. {
  378. "name": "Passive cum production",
  379. "id": "cumScale",
  380. "type": "float",
  381. "default": "0.01"
  382. },
  383. {
  384. "name": "Cum storage factor",
  385. "id": "cumStorageScale",
  386. "type": "float",
  387. "default": "1"
  388. },
  389. {
  390. "name": "Cock Vore",
  391. "id": "cockVoreEnabled",
  392. "type": "subcategory",
  393. "entries":
  394. [
  395. {
  396. "name": "Cum digestion factor",
  397. "id": "baseCumDigestFactor",
  398. "type": "float",
  399. "default": "1"
  400. },
  401. {
  402. "name": "Digestion time",
  403. "id": "cockDigestTime",
  404. "type": "float",
  405. "default": "15"
  406. }
  407. ]
  408. },
  409. {
  410. "name": "Sheath",
  411. "id": "hasSheath",
  412. "type": "subcategory",
  413. "entries":
  414. [
  415. {
  416. "name": "Absorption",
  417. "id": "sheathAbsorptionEnabled",
  418. "type": "checkbox"
  419. }
  420. ]
  421. },
  422. {
  423. "name": "Musk",
  424. "id": "maleMuskEnabled",
  425. "type": "subcategory",
  426. "entries":
  427. [
  428. {
  429. "name": "Musk factor",
  430. "id": "baseMaleMuskArea",
  431. "type": "float",
  432. "default": "0.5"
  433. }
  434. ]
  435. }
  436. ]
  437. },
  438. {
  439. "name": "Female Genitals",
  440. "id": "femaleParts",
  441. "optional": true,
  442. "entries":
  443. [
  444. {
  445. "name": "Slit length",
  446. "id": "baseVaginaLength",
  447. "type": "float",
  448. "default": "0.1",
  449. "unit": "length"
  450. },
  451. {
  452. "name": "Slit width",
  453. "id": "baseVaginaWidth",
  454. "type": "float",
  455. "default": "0.05",
  456. "unit": "length"
  457. },
  458. {
  459. "name": "Slit stretchiness",
  460. "id": "vaginaStretchiness",
  461. "type": "float",
  462. "default": "1"
  463. },
  464. {
  465. "name": "Orgasm size",
  466. "id": "baseFemcumRatio",
  467. "type": "float",
  468. "default": "1",
  469. },
  470. {
  471. "name": "Passive femcum production",
  472. "id": "femcumScale",
  473. "type": "float",
  474. "default": "0.01"
  475. },
  476. {
  477. "name": "Femcum storage factor",
  478. "id": "femcumStorageScale",
  479. "type": "float",
  480. "default": "1"
  481. },
  482. {
  483. "name": "Unbirth",
  484. "id": "unbirthEnabled",
  485. "type": "subcategory",
  486. "entries":
  487. [
  488. {
  489. "name": "Femcum digestion factor",
  490. "id": "baseFemcumDigestFactor",
  491. "type": "float",
  492. "default": "1"
  493. },
  494. {
  495. "name": "Digestion time",
  496. "id": "unbirthDigestTime",
  497. "type": "float",
  498. "default": "15"
  499. }
  500. ]
  501. },
  502. {
  503. "name": "Musk",
  504. "id": "femaleMuskEnabled",
  505. "type": "subcategory",
  506. "entries":
  507. [
  508. {
  509. "name": "Musk factor",
  510. "id": "baseFemaleMuskArea",
  511. "type": "float",
  512. "default": "0.5"
  513. }
  514. ]
  515. }
  516. ]
  517. }
  518. ];