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.
 
 
 

85 line
1.5 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. ];