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.
 
 
 

945 lines
18 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. "name": "Same-size stomping",
  59. "id": "sameSizeStomp",
  60. "type": "checkbox"
  61. }
  62. ]
  63. },
  64. {
  65. "name": "Body Details",
  66. "optional": false,
  67. "entries":
  68. [
  69. {
  70. "name": "Foot type",
  71. "id": "footType",
  72. "type": "select",
  73. "choices":
  74. [
  75. {
  76. "name": "Paws",
  77. "value": "paw"
  78. },
  79. {
  80. "name": "Hooves",
  81. "value": "hoof"
  82. },
  83. {
  84. "name": "Feet",
  85. "value": "foot",
  86. },
  87. {
  88. "name": "Avian",
  89. "value": "avian"
  90. }
  91. ]
  92. },
  93. {
  94. "name": "Mouth type",
  95. "id": "jawType",
  96. "type": "select",
  97. "choices":
  98. [
  99. {
  100. "name": "Jaws",
  101. "value": "jaw"
  102. },
  103. {
  104. "name": "Beak",
  105. "value": "beak"
  106. }
  107. ]
  108. }
  109. ]
  110. },
  111. {
  112. "name": "Difficulty",
  113. "optional": false,
  114. "entries":
  115. [
  116. {
  117. "type": "radio",
  118. "id": "difficulty",
  119. "default": "0",
  120. "choices":
  121. [
  122. {
  123. "name": "Sandbox",
  124. "value": "0"
  125. },
  126. {
  127. "name": "Stompvival",
  128. "value": "1"
  129. }
  130. ]
  131. }
  132. ]
  133. },
  134. {
  135. "name": "Brutality",
  136. "optional": false,
  137. "entries":
  138. [
  139. {
  140. "type": "radio",
  141. "id": "brutality",
  142. "default": "1",
  143. "choices":
  144. [
  145. {
  146. "name": "Non-fatal",
  147. "value": "0"
  148. },
  149. {
  150. "name": "Fatal",
  151. "value": "1"
  152. },
  153. {
  154. "name": "Gory",
  155. "value": "2"
  156. },
  157. {
  158. "name": "Sadistic",
  159. "value": "3"
  160. },
  161. ]
  162. }
  163. ]
  164. },
  165. {
  166. "name": "Victims",
  167. "optional": false,
  168. "entries":
  169. [
  170. {
  171. "name": "Human prey",
  172. "id": "victimsHuman",
  173. "type": "checkbox"
  174. },
  175. {
  176. "name": "Military",
  177. "id": "victimsMilitary",
  178. "type": "checkbox"
  179. },
  180. {
  181. "name": "Macros",
  182. "id": "victimsMacros",
  183. "type": "checkbox"
  184. },
  185. {
  186. "name": "Micros",
  187. "id": "victimsMicros",
  188. "type": "checkbox"
  189. }
  190. ]
  191. },
  192. {
  193. "name": "Oral Vore",
  194. "id": "oralVore",
  195. "optional": true,
  196. "entries":
  197. [
  198. {
  199. "name": "Digestion time",
  200. "id": "oralDigestTime",
  201. "type": "float",
  202. "default": "15"
  203. },
  204. {
  205. "name": "Same-size vore",
  206. "id": "sameSizeVore",
  207. "type": "checkbox"
  208. },
  209. {
  210. "name": "Vomiting",
  211. "id": "vomitEnabled",
  212. "type": "checkbox"
  213. }
  214. ]
  215. },
  216. {
  217. "name": "Anal Vore",
  218. "id": "analVore",
  219. "optional": true,
  220. "entries":
  221. [
  222. {
  223. "name": "Anus diameter",
  224. "id": "baseAnalVoreDiameter",
  225. "type": "float",
  226. "default": "0.2",
  227. "unit": "length"
  228. },
  229. {
  230. "name": "Digestion time",
  231. "id": "analDigestTime",
  232. "type": "float",
  233. "default": "15"
  234. },
  235. {
  236. "name": "Anal vore goes to stomach",
  237. "id": "analVoreToStomach",
  238. "type": "checkbox"
  239. }
  240. ]
  241. },
  242. {
  243. "name": "Footwear",
  244. "id": "footWear",
  245. "optional": true,
  246. "entries":
  247. [
  248. {
  249. "name": "Socks",
  250. "id": "footSockEnabled",
  251. "type": "subcategory",
  252. "entries":
  253. [
  254. {
  255. "name": "Sock type",
  256. "id": "footSock",
  257. "type": "select",
  258. "choices":
  259. [
  260. {
  261. "name": "Socks",
  262. "value": "sock"
  263. }
  264. ]
  265. }
  266. ]
  267. },
  268. {
  269. "name": "Shoes",
  270. "id": "footShoeEnabled",
  271. "type": "subcategory",
  272. "entries":
  273. [
  274. {
  275. "name": "Shoe type",
  276. "id": "footShoe",
  277. "type": "select",
  278. "choices":
  279. [
  280. {
  281. "name": "Shoes",
  282. "value": "shoe"
  283. },
  284. {
  285. "name": "Boots",
  286. "value": "boot"
  287. },
  288. {
  289. "name": "Trainers",
  290. "value": "trainer"
  291. },
  292. {
  293. "name": "Sandals",
  294. "value": "sandal"
  295. },
  296. ]
  297. }
  298. ]
  299. }
  300. ]
  301. },
  302. {
  303. "name": "Arousal",
  304. "id": "arousalEnabled",
  305. "optional": true,
  306. "entries":
  307. [
  308. {
  309. "name": "Arousal multiplier",
  310. "id": "arousalFactor",
  311. "type": "float",
  312. "default": "1"
  313. },
  314. {
  315. "name": "Edge multiplier",
  316. "id": "edgeFactor",
  317. "type": "float",
  318. "default": "1"
  319. }
  320. ]
  321. },
  322. {
  323. "name": "Tail",
  324. "id": "hasTail",
  325. "optional": true,
  326. "entries":
  327. [
  328. {
  329. "name": "Number of tails",
  330. "id": "tailCount",
  331. "type": "float",
  332. "default": "1"
  333. },
  334. {
  335. "name": "Tail description",
  336. "id": "tailType",
  337. "type": "text",
  338. "default": "fluffy"
  339. },
  340. {
  341. "name": "Tail length",
  342. "id": "baseTailLength",
  343. "type": "float",
  344. "default": "1",
  345. "unit": "length"
  346. },
  347. {
  348. "name": "Tail diameter",
  349. "id": "baseTailDiameter",
  350. "type": "float",
  351. "default": "0.3",
  352. "unit": "length"
  353. },
  354. {
  355. "name": "Tail Vore",
  356. "id": "tailMaw",
  357. "type": "subcategory",
  358. "entries":
  359. [
  360. {
  361. "name": "Tail stretchiness",
  362. "id": "tailStretchiness",
  363. "type": "float",
  364. "default": "1"
  365. },
  366. {
  367. "name": "Digestion time",
  368. "id": "tailDigestTime",
  369. "type": "float",
  370. "default": "15"
  371. },
  372. {
  373. "name": "Tail vore goes to stomach",
  374. "id": "tailVoreToStomach",
  375. "type": "checkbox"
  376. }
  377. ]
  378. }
  379. ]
  380. },
  381. {
  382. "name": "Pouch",
  383. "id": "hasPouch",
  384. "optional": true,
  385. "entries":
  386. [
  387. {
  388. "name": "Absorption",
  389. "id": "pouchAbsorption",
  390. "type": "checkbox"
  391. }
  392. ]
  393. },
  394. {
  395. "name": "Male Genitals",
  396. "id": "maleParts",
  397. "optional": true,
  398. "entries":
  399. [
  400. {
  401. "name": "Cock description",
  402. "id": "dickType",
  403. "type": "text",
  404. "default": "canine"
  405. },
  406. {
  407. "name": "Cock length",
  408. "id": "baseDickLength",
  409. "type": "float",
  410. "default": "0.3",
  411. "unit": "length"
  412. },
  413. {
  414. "name": "Cock diameter",
  415. "id": "baseDickDiameter",
  416. "type": "float",
  417. "default": "0.08",
  418. "unit": "length"
  419. },
  420. {
  421. "name": "Cock stretchiness",
  422. "id": "dickStretchiness",
  423. "type": "float",
  424. "default": "1"
  425. },
  426. {
  427. "name": "Ball diameter",
  428. "id": "baseBallDiameter",
  429. "type": "float",
  430. "default": "0.05",
  431. "unit": "length",
  432. },
  433. {
  434. "name": "Orgasm size",
  435. "id": "baseCumRatio",
  436. "type": "float",
  437. "default": "1",
  438. },
  439. {
  440. "name": "Passive cum production",
  441. "id": "cumScale",
  442. "type": "float",
  443. "default": "1"
  444. },
  445. {
  446. "name": "Cum storage factor",
  447. "id": "cumStorageScale",
  448. "type": "float",
  449. "default": "1"
  450. },
  451. {
  452. "name": "Cock Vore",
  453. "id": "cockVoreEnabled",
  454. "type": "subcategory",
  455. "entries":
  456. [
  457. {
  458. "name": "Cum digestion factor",
  459. "id": "baseCumDigestFactor",
  460. "type": "float",
  461. "default": "1"
  462. },
  463. {
  464. "name": "Digestion time",
  465. "id": "cockDigestTime",
  466. "type": "float",
  467. "default": "15"
  468. }
  469. ]
  470. },
  471. {
  472. "name": "Sheath",
  473. "id": "hasSheath",
  474. "type": "subcategory",
  475. "entries":
  476. [
  477. {
  478. "name": "Absorption",
  479. "id": "sheathAbsorptionEnabled",
  480. "type": "checkbox"
  481. }
  482. ]
  483. },
  484. {
  485. "name": "Musk",
  486. "id": "maleMuskEnabled",
  487. "type": "subcategory",
  488. "entries":
  489. [
  490. {
  491. "name": "Musk factor",
  492. "id": "baseMaleMuskArea",
  493. "type": "float",
  494. "default": "0.5"
  495. }
  496. ]
  497. }
  498. ]
  499. },
  500. {
  501. "name": "Female Genitals",
  502. "id": "femaleParts",
  503. "optional": true,
  504. "entries":
  505. [
  506. {
  507. "name": "Slit length",
  508. "id": "baseVaginaLength",
  509. "type": "float",
  510. "default": "0.1",
  511. "unit": "length"
  512. },
  513. {
  514. "name": "Slit width",
  515. "id": "baseVaginaWidth",
  516. "type": "float",
  517. "default": "0.05",
  518. "unit": "length"
  519. },
  520. {
  521. "name": "Slit stretchiness",
  522. "id": "vaginaStretchiness",
  523. "type": "float",
  524. "default": "1"
  525. },
  526. {
  527. "name": "Orgasm size",
  528. "id": "baseFemcumRatio",
  529. "type": "float",
  530. "default": "1",
  531. },
  532. {
  533. "name": "Passive femcum production",
  534. "id": "femcumScale",
  535. "type": "float",
  536. "default": "1"
  537. },
  538. {
  539. "name": "Femcum storage factor",
  540. "id": "femcumStorageScale",
  541. "type": "float",
  542. "default": "1"
  543. },
  544. {
  545. "name": "Unbirth",
  546. "id": "unbirthEnabled",
  547. "type": "subcategory",
  548. "entries":
  549. [
  550. {
  551. "name": "Femcum digestion factor",
  552. "id": "baseFemcumDigestFactor",
  553. "type": "float",
  554. "default": "1"
  555. },
  556. {
  557. "name": "Digestion time",
  558. "id": "unbirthDigestTime",
  559. "type": "float",
  560. "default": "15"
  561. }
  562. ]
  563. },
  564. {
  565. "name": "Musk",
  566. "id": "femaleMuskEnabled",
  567. "type": "subcategory",
  568. "entries":
  569. [
  570. {
  571. "name": "Musk factor",
  572. "id": "baseFemaleMuskArea",
  573. "type": "float",
  574. "default": "0.5"
  575. }
  576. ]
  577. }
  578. ]
  579. },
  580. {
  581. "name": "Breasts",
  582. "id": "hasBreasts",
  583. "optional": true,
  584. "entries":
  585. [
  586. {
  587. "name": "Breast diameter",
  588. "id": "baseBreastDiameter",
  589. "type": "float",
  590. "default": "0.1",
  591. "unit": "length"
  592. },
  593. {
  594. "name": "Lactation",
  595. "id": "lactationEnabled",
  596. "type": "subcategory",
  597. "entries":
  598. [
  599. {
  600. "name": "Lactation scale",
  601. "id": "lactationFactor",
  602. "type": "float",
  603. "default": "0.25"
  604. },
  605. {
  606. "name": "Passive milk production",
  607. "id": "lactationScale",
  608. "type": "float",
  609. "default": "1"
  610. }
  611. ]
  612. },
  613. {
  614. "name": "Breast Vore",
  615. "id": "breastVore",
  616. "type": "subcategory",
  617. "entries":
  618. [
  619. {
  620. "name": "Breast stretchiness",
  621. "id": "breastStretchiness",
  622. "type": "float",
  623. "default": "1"
  624. },
  625. {
  626. "name": "Milk digestion scale",
  627. "id": "baseMilkDigestFactor",
  628. "type": "float",
  629. "default": "1"
  630. },
  631. {
  632. "name": "Digestion time",
  633. "id": "breastDigestTime",
  634. "type": "float",
  635. "default": "15"
  636. }
  637. ]
  638. }
  639. ]
  640. },
  641. {
  642. "name": "Stench",
  643. "id": "stenchEnabled",
  644. "optional": true,
  645. "entries":
  646. [
  647. {
  648. "name": "Paw stench scale",
  649. "id": "basePawStenchArea",
  650. "type": "float",
  651. "default": "1"
  652. },
  653. {
  654. "name": "Ass stench scale",
  655. "id": "basePawStenchArea",
  656. "type": "float",
  657. "default": "1.5"
  658. },
  659. {
  660. "name": "Piss stench scale",
  661. "id": "basePawStenchArea",
  662. "type": "float",
  663. "default": "0.75"
  664. },
  665. {
  666. "name": "Scat stench scale",
  667. "id": "basePawStenchArea",
  668. "type": "float",
  669. "default": "3"
  670. },
  671. ]
  672. },
  673. {
  674. "name": "Gas",
  675. "id": "gasEnabled",
  676. "optional": true,
  677. "entries":
  678. [
  679. {
  680. "name": "Belching",
  681. "id": "belchEnabled",
  682. "type": "checkbox"
  683. },
  684. {
  685. "name": "Farting",
  686. "id": "fartEnabled",
  687. "type": "checkbox"
  688. },
  689. {
  690. "name": "Passive gas production",
  691. "id": "gasScale",
  692. "type": "float",
  693. "default": "3"
  694. },
  695. {
  696. "name": "Gas storage scale",
  697. "id": "gasStorageScale",
  698. "type": "float",
  699. "default": "1"
  700. },
  701. {
  702. "name": "Gas digestion factor",
  703. "id": "baseGasDigestFactor",
  704. "type": "float",
  705. "default": "1"
  706. }
  707. ]
  708. },
  709. {
  710. "name": "Soul Vore",
  711. "id": "soulVoreEnabled",
  712. "optional": true,
  713. "entries":
  714. [
  715. {
  716. "name": "Digestion time",
  717. "id": "soulDigestTime",
  718. "type": "float",
  719. "default": "15"
  720. },
  721. {
  722. "type": "radio",
  723. "id": "soulVoreType",
  724. "default": "0",
  725. "choices":
  726. [
  727. {
  728. "name": "Released",
  729. "value": "release"
  730. },
  731. {
  732. "name": "Trapped",
  733. "value": "body"
  734. },
  735. {
  736. "name": "Digested",
  737. "value": "oblivion"
  738. }
  739. ]
  740. }
  741. ]
  742. },
  743. {
  744. "name": "Piss",
  745. "id": "pissEnabled",
  746. "optional": true,
  747. "entries":
  748. [
  749. {
  750. "name": "Passive piss production",
  751. "id": "pissScale",
  752. "type": "float",
  753. "default": "0.3"
  754. },
  755. {
  756. "name": "Piss storage scale",
  757. "id": "pissStorageScale",
  758. "type": "float",
  759. "default": "1"
  760. },
  761. {
  762. "name": "Bladder Vore",
  763. "id": "bladderVore",
  764. "type": "subcategory",
  765. "entries":
  766. [
  767. {
  768. "name": "Urethra diameter",
  769. "id": "baseUrethraDiameter",
  770. "type": "float",
  771. "default": "0.03",
  772. "unit": "length"
  773. },
  774. {
  775. "name": "Urethra stretchiness",
  776. "id": "urethraStretchiness",
  777. "type": "float",
  778. "default": "5"
  779. },
  780. {
  781. "name": "Piss digestion scale",
  782. "id": "basePissDigestFactor",
  783. "type": "float",
  784. "default": "1"
  785. },
  786. {
  787. "name": "Digestion time",
  788. "id": "bladderDigestTime",
  789. "type": "float",
  790. "default": "15"
  791. },
  792. {
  793. "name": "Scale piss with size",
  794. "id": "pissScaleWithSize",
  795. "type": "checkbox"
  796. }
  797. ]
  798. }
  799. ]
  800. },
  801. {
  802. "name": "Scat",
  803. "id": "scatEnabled",
  804. "optional": true,
  805. "entries":
  806. [
  807. {
  808. "name": "Scat digestion scale",
  809. "id": "baseScatDigestFactor",
  810. "type": "float",
  811. "default": "1"
  812. },
  813. {
  814. "name": "Passive scat production",
  815. "id": "scatScale",
  816. "type": "float",
  817. "default": "0.2"
  818. },
  819. {
  820. "name": "Scat storage scale",
  821. "id": "scatStorageScale",
  822. "type": "float",
  823. "default": "1"
  824. },
  825. {
  826. "name": "Scale scat with size",
  827. "id": "scatScaleWithSize",
  828. "type": "checkbox"
  829. }
  830. ]
  831. },
  832. {
  833. "name": "Goo",
  834. "id": "gooEnabled",
  835. "optional": true,
  836. "entries":
  837. [
  838. {
  839. "name": "Digestion",
  840. "id": "gooDigestion",
  841. "type": "subcategory",
  842. "entries":
  843. [
  844. {
  845. "name": "Digestion time",
  846. "id": "gooDigestTime",
  847. "type": "float",
  848. "default": "15"
  849. }
  850. ]
  851. }
  852. ]
  853. },
  854. {
  855. "name": "Paw Vore",
  856. "id": "pawVoreEnabled",
  857. "optional": true,
  858. "entries":
  859. [
  860. {
  861. "name": "Digestion time",
  862. "id": "pawDigestTime",
  863. "type": "float",
  864. "default": "15"
  865. }
  866. ]
  867. },
  868. {
  869. "name": "Crop",
  870. "id": "cropEnabled",
  871. "optional": true,
  872. "entries":
  873. [
  874. {
  875. "name": "Transfer time",
  876. "id": "cropTransferTime",
  877. "type": "float",
  878. "default": "10"
  879. }
  880. ]
  881. },
  882. {
  883. "name": "Breath",
  884. "id": "breathEnabled",
  885. "optional": true,
  886. "entries":
  887. [
  888. {
  889. "name": "Fire",
  890. "id": "breathFire",
  891. "type": "checkbox"
  892. },
  893. {
  894. "name": "Ice",
  895. "id": "breathIce",
  896. "type": "checkbox"
  897. },
  898. {
  899. "name": "Electric",
  900. "id": "breathElectric",
  901. "type": "checkbox"
  902. },
  903. {
  904. "name": "Smoke",
  905. "id": "breathSmoke",
  906. "type": "checkbox"
  907. },
  908. {
  909. "name": "Radiation",
  910. "id": "breathRadiation",
  911. "type": "checkbox"
  912. },
  913. {
  914. "name": "Foul",
  915. "id": "breathFoul",
  916. "type": "checkbox"
  917. },
  918. ]
  919. },
  920. {
  921. "name": "Drool",
  922. "id": "droolEnabled",
  923. "optional": true,
  924. "entries":
  925. [
  926. {
  927. "name": "Drool volume",
  928. "id": "droolBaseVolume",
  929. "type": "float",
  930. "default": "0.0001",
  931. "unit": "volume"
  932. }
  933. ]
  934. },
  935. {
  936. "name": "Magic",
  937. "id": "magicEnabled",
  938. "optional": true,
  939. "entries":
  940. [
  941. ]
  942. }
  943. ];