less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

26129 líneas
649 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. }
  1280. //species
  1281. function getSpeciesInfo(speciesList) {
  1282. let result = new Set();
  1283. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1284. result.add(entry)
  1285. });
  1286. return Array.from(result);
  1287. };
  1288. function getSpeciesInfoHelper(species) {
  1289. if (!speciesData[species]) {
  1290. console.warn(species + " doesn't exist");
  1291. return [];
  1292. }
  1293. if (speciesData[species].parents) {
  1294. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1295. } else {
  1296. return [species];
  1297. }
  1298. }
  1299. characterMakers.push(() => makeCharacter(
  1300. {
  1301. name: "Fen",
  1302. species: ["crux"],
  1303. description: {
  1304. title: "Bio",
  1305. text: "Very furry. Sheds on everything."
  1306. },
  1307. tags: [
  1308. "anthro",
  1309. "goo"
  1310. ]
  1311. },
  1312. {
  1313. back: {
  1314. height: math.unit(2.2428, "meter"),
  1315. weight: math.unit(124.738, "kg"),
  1316. name: "Back",
  1317. image: {
  1318. source: "./media/characters/fen/back.svg",
  1319. extra: 1025 / 935,
  1320. bottom: 0.01
  1321. },
  1322. info: {
  1323. description: {
  1324. mode: "append",
  1325. text: "\n\nHe is not currently looking at you."
  1326. }
  1327. }
  1328. },
  1329. full: {
  1330. height: math.unit(1.34, "meter"),
  1331. weight: math.unit(225, "kg"),
  1332. name: "Full",
  1333. image: {
  1334. source: "./media/characters/fen/full.svg"
  1335. },
  1336. info: {
  1337. description: {
  1338. mode: "append",
  1339. text: "\n\nMunch."
  1340. }
  1341. }
  1342. },
  1343. kneeling: {
  1344. height: math.unit(5.4, "feet"),
  1345. weight: math.unit(124.738, "kg"),
  1346. name: "Kneeling",
  1347. image: {
  1348. source: "./media/characters/fen/kneeling.svg",
  1349. extra: 563 / 507
  1350. }
  1351. },
  1352. goo: {
  1353. height: math.unit(2.8, "feet"),
  1354. weight: math.unit(125, "kg"),
  1355. capacity: math.unit(1, "people"),
  1356. name: "Goo",
  1357. image: {
  1358. source: "./media/characters/fen/goo.svg",
  1359. bottom: 116 / 613
  1360. }
  1361. },
  1362. lounging: {
  1363. height: math.unit(6.5, "feet"),
  1364. weight: math.unit(125, "kg"),
  1365. name: "Lounging",
  1366. image: {
  1367. source: "./media/characters/fen/lounging.svg"
  1368. }
  1369. },
  1370. },
  1371. [
  1372. {
  1373. name: "Normal",
  1374. height: math.unit(2.2428, "meter")
  1375. },
  1376. {
  1377. name: "Big",
  1378. height: math.unit(12, "feet")
  1379. },
  1380. {
  1381. name: "Minimacro",
  1382. height: math.unit(40, "feet"),
  1383. default: true,
  1384. info: {
  1385. description: {
  1386. mode: "append",
  1387. text: "\n\nTOO DAMN BIG"
  1388. }
  1389. }
  1390. },
  1391. {
  1392. name: "Macro",
  1393. height: math.unit(100, "feet"),
  1394. info: {
  1395. description: {
  1396. mode: "append",
  1397. text: "\n\nTOO DAMN BIG"
  1398. }
  1399. }
  1400. },
  1401. {
  1402. name: "Macro+",
  1403. height: math.unit(300, "feet")
  1404. },
  1405. {
  1406. name: "Megamacro",
  1407. height: math.unit(2, "miles")
  1408. }
  1409. ]
  1410. ))
  1411. characterMakers.push(() => makeCharacter(
  1412. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1413. {
  1414. front: {
  1415. height: math.unit(183, "cm"),
  1416. weight: math.unit(80, "kg"),
  1417. name: "Front",
  1418. image: {
  1419. source: "./media/characters/sofia-fluttertail/front.svg",
  1420. bottom: 0.01,
  1421. extra: 2154 / 2081
  1422. }
  1423. },
  1424. frontAlt: {
  1425. height: math.unit(183, "cm"),
  1426. weight: math.unit(80, "kg"),
  1427. name: "Front (alt)",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1430. }
  1431. },
  1432. back: {
  1433. height: math.unit(183, "cm"),
  1434. weight: math.unit(80, "kg"),
  1435. name: "Back",
  1436. image: {
  1437. source: "./media/characters/sofia-fluttertail/back.svg"
  1438. }
  1439. },
  1440. kneeling: {
  1441. height: math.unit(125, "cm"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Kneeling",
  1444. image: {
  1445. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1446. extra: 1033 / 977,
  1447. bottom: 23.7 / 1057
  1448. }
  1449. },
  1450. maw: {
  1451. height: math.unit(183 / 5, "cm"),
  1452. name: "Maw",
  1453. image: {
  1454. source: "./media/characters/sofia-fluttertail/maw.svg"
  1455. }
  1456. },
  1457. mawcloseup: {
  1458. height: math.unit(183 / 5 * 0.41, "cm"),
  1459. name: "Maw (Closeup)",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1462. }
  1463. },
  1464. },
  1465. [
  1466. {
  1467. name: "Normal",
  1468. height: math.unit(1.83, "meter")
  1469. },
  1470. {
  1471. name: "Size Thief",
  1472. height: math.unit(18, "feet")
  1473. },
  1474. {
  1475. name: "50 Foot Collie",
  1476. height: math.unit(50, "feet")
  1477. },
  1478. {
  1479. name: "Macro",
  1480. height: math.unit(96, "feet"),
  1481. default: true
  1482. },
  1483. {
  1484. name: "Megamerger",
  1485. height: math.unit(650, "feet")
  1486. },
  1487. ]
  1488. ))
  1489. characterMakers.push(() => makeCharacter(
  1490. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1491. {
  1492. front: {
  1493. height: math.unit(7, "feet"),
  1494. weight: math.unit(100, "kg"),
  1495. name: "Front",
  1496. image: {
  1497. source: "./media/characters/march/front.svg",
  1498. extra: 1,
  1499. bottom: 0.015
  1500. }
  1501. },
  1502. foot: {
  1503. height: math.unit(0.9, "feet"),
  1504. name: "Foot",
  1505. image: {
  1506. source: "./media/characters/march/foot.svg"
  1507. }
  1508. },
  1509. },
  1510. [
  1511. {
  1512. name: "Normal",
  1513. height: math.unit(7.9, "feet")
  1514. },
  1515. {
  1516. name: "Macro",
  1517. height: math.unit(220, "meters")
  1518. },
  1519. {
  1520. name: "Megamacro",
  1521. height: math.unit(2.98, "km"),
  1522. default: true
  1523. },
  1524. {
  1525. name: "Gigamacro",
  1526. height: math.unit(15963, "km")
  1527. },
  1528. {
  1529. name: "Teramacro",
  1530. height: math.unit(2980000000, "km")
  1531. },
  1532. {
  1533. name: "Examacro",
  1534. height: math.unit(250, "parsecs")
  1535. },
  1536. ]
  1537. ))
  1538. characterMakers.push(() => makeCharacter(
  1539. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1540. {
  1541. front: {
  1542. height: math.unit(6, "feet"),
  1543. weight: math.unit(60, "kg"),
  1544. name: "Front",
  1545. image: {
  1546. source: "./media/characters/noir/front.svg",
  1547. extra: 1,
  1548. bottom: 0.032
  1549. }
  1550. },
  1551. },
  1552. [
  1553. {
  1554. name: "Normal",
  1555. height: math.unit(6.6, "feet")
  1556. },
  1557. {
  1558. name: "Macro",
  1559. height: math.unit(500, "feet")
  1560. },
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(2.5, "km"),
  1564. default: true
  1565. },
  1566. {
  1567. name: "Gigamacro",
  1568. height: math.unit(22500, "km")
  1569. },
  1570. {
  1571. name: "Teramacro",
  1572. height: math.unit(2500000000, "km")
  1573. },
  1574. {
  1575. name: "Examacro",
  1576. height: math.unit(200, "parsecs")
  1577. },
  1578. ]
  1579. ))
  1580. characterMakers.push(() => makeCharacter(
  1581. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1582. {
  1583. front: {
  1584. height: math.unit(7, "feet"),
  1585. weight: math.unit(100, "kg"),
  1586. name: "Front",
  1587. image: {
  1588. source: "./media/characters/okuri/front.svg",
  1589. extra: 1,
  1590. bottom: 0.037
  1591. }
  1592. },
  1593. back: {
  1594. height: math.unit(7, "feet"),
  1595. weight: math.unit(100, "kg"),
  1596. name: "Back",
  1597. image: {
  1598. source: "./media/characters/okuri/back.svg",
  1599. extra: 1,
  1600. bottom: 0.007
  1601. }
  1602. },
  1603. },
  1604. [
  1605. {
  1606. name: "Megamacro",
  1607. height: math.unit(100, "miles"),
  1608. default: true
  1609. },
  1610. ]
  1611. ))
  1612. characterMakers.push(() => makeCharacter(
  1613. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1614. {
  1615. front: {
  1616. height: math.unit(7, "feet"),
  1617. weight: math.unit(100, "kg"),
  1618. name: "Front",
  1619. image: {
  1620. source: "./media/characters/manny/front.svg",
  1621. extra: 1,
  1622. bottom: 0.06
  1623. }
  1624. },
  1625. back: {
  1626. height: math.unit(7, "feet"),
  1627. weight: math.unit(100, "kg"),
  1628. name: "Back",
  1629. image: {
  1630. source: "./media/characters/manny/back.svg",
  1631. extra: 1,
  1632. bottom: 0.014
  1633. }
  1634. },
  1635. },
  1636. [
  1637. {
  1638. name: "Normal",
  1639. height: math.unit(7, "feet"),
  1640. },
  1641. {
  1642. name: "Macro",
  1643. height: math.unit(78, "feet"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Macro+",
  1648. height: math.unit(300, "meters")
  1649. },
  1650. {
  1651. name: "Macro++",
  1652. height: math.unit(2400, "meters")
  1653. },
  1654. {
  1655. name: "Megamacro",
  1656. height: math.unit(5167, "meters")
  1657. },
  1658. {
  1659. name: "Gigamacro",
  1660. height: math.unit(41769, "miles")
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1666. {
  1667. front: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/adake/front-1.svg"
  1673. }
  1674. },
  1675. frontAlt: {
  1676. height: math.unit(7, "feet"),
  1677. weight: math.unit(100, "kg"),
  1678. name: "Front (Alt)",
  1679. image: {
  1680. source: "./media/characters/adake/front-2.svg",
  1681. extra: 1,
  1682. bottom: 0.01
  1683. }
  1684. },
  1685. back: {
  1686. height: math.unit(7, "feet"),
  1687. weight: math.unit(100, "kg"),
  1688. name: "Back",
  1689. image: {
  1690. source: "./media/characters/adake/back.svg",
  1691. }
  1692. },
  1693. kneel: {
  1694. height: math.unit(5.385, "feet"),
  1695. weight: math.unit(100, "kg"),
  1696. name: "Kneeling",
  1697. image: {
  1698. source: "./media/characters/adake/kneel.svg",
  1699. bottom: 0.052
  1700. }
  1701. },
  1702. },
  1703. [
  1704. {
  1705. name: "Normal",
  1706. height: math.unit(7, "feet"),
  1707. },
  1708. {
  1709. name: "Macro",
  1710. height: math.unit(78, "feet"),
  1711. default: true
  1712. },
  1713. {
  1714. name: "Macro+",
  1715. height: math.unit(300, "meters")
  1716. },
  1717. {
  1718. name: "Macro++",
  1719. height: math.unit(2400, "meters")
  1720. },
  1721. {
  1722. name: "Megamacro",
  1723. height: math.unit(5167, "meters")
  1724. },
  1725. {
  1726. name: "Gigamacro",
  1727. height: math.unit(41769, "miles")
  1728. },
  1729. ]
  1730. ))
  1731. characterMakers.push(() => makeCharacter(
  1732. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1733. {
  1734. front: {
  1735. height: math.unit(1.65, "meters"),
  1736. weight: math.unit(50, "kg"),
  1737. name: "Front",
  1738. image: {
  1739. source: "./media/characters/elijah/front.svg",
  1740. extra: 858 / 830,
  1741. bottom: 95.5 / 953.8559
  1742. }
  1743. },
  1744. back: {
  1745. height: math.unit(1.65, "meters"),
  1746. weight: math.unit(50, "kg"),
  1747. name: "Back",
  1748. image: {
  1749. source: "./media/characters/elijah/back.svg",
  1750. extra: 895 / 850,
  1751. bottom: 5.3 / 897.956
  1752. }
  1753. },
  1754. frontNsfw: {
  1755. height: math.unit(1.65, "meters"),
  1756. weight: math.unit(50, "kg"),
  1757. name: "Front (NSFW)",
  1758. image: {
  1759. source: "./media/characters/elijah/front-nsfw.svg",
  1760. extra: 858 / 830,
  1761. bottom: 95.5 / 953.8559
  1762. }
  1763. },
  1764. backNsfw: {
  1765. height: math.unit(1.65, "meters"),
  1766. weight: math.unit(50, "kg"),
  1767. name: "Back (NSFW)",
  1768. image: {
  1769. source: "./media/characters/elijah/back-nsfw.svg",
  1770. extra: 895 / 850,
  1771. bottom: 5.3 / 897.956
  1772. }
  1773. },
  1774. dick: {
  1775. height: math.unit(1, "feet"),
  1776. name: "Dick",
  1777. image: {
  1778. source: "./media/characters/elijah/dick.svg"
  1779. }
  1780. },
  1781. beakOpen: {
  1782. height: math.unit(1.25, "feet"),
  1783. name: "Beak (Open)",
  1784. image: {
  1785. source: "./media/characters/elijah/beak-open.svg"
  1786. }
  1787. },
  1788. beakShut: {
  1789. height: math.unit(1.25, "feet"),
  1790. name: "Beak (Shut)",
  1791. image: {
  1792. source: "./media/characters/elijah/beak-shut.svg"
  1793. }
  1794. },
  1795. footFlexing: {
  1796. height: math.unit(1.61, "feet"),
  1797. name: "Foot (Flexing)",
  1798. image: {
  1799. source: "./media/characters/elijah/foot-flexing.svg"
  1800. }
  1801. },
  1802. footStepping: {
  1803. height: math.unit(1.44, "feet"),
  1804. name: "Foot (Stepping)",
  1805. image: {
  1806. source: "./media/characters/elijah/foot-stepping.svg"
  1807. }
  1808. },
  1809. plantigradeLeg: {
  1810. height: math.unit(2.34, "feet"),
  1811. name: "Plantigrade Leg",
  1812. image: {
  1813. source: "./media/characters/elijah/plantigrade-leg.svg"
  1814. }
  1815. },
  1816. plantigradeFootLeft: {
  1817. height: math.unit(0.9, "feet"),
  1818. name: "Plantigrade Foot (Left)",
  1819. image: {
  1820. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1821. }
  1822. },
  1823. plantigradeFootRight: {
  1824. height: math.unit(0.9, "feet"),
  1825. name: "Plantigrade Foot (Right)",
  1826. image: {
  1827. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1828. }
  1829. },
  1830. },
  1831. [
  1832. {
  1833. name: "Normal",
  1834. height: math.unit(1.65, "meters")
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(55, "meters"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Macro+",
  1843. height: math.unit(105, "meters")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(11, "feet"),
  1852. weight: math.unit(80, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/rai/front.svg",
  1856. extra: 1,
  1857. bottom: 0.03
  1858. }
  1859. },
  1860. side: {
  1861. height: math.unit(11, "feet"),
  1862. weight: math.unit(80, "kg"),
  1863. name: "Side",
  1864. image: {
  1865. source: "./media/characters/rai/side.svg"
  1866. }
  1867. },
  1868. back: {
  1869. height: math.unit(11, "feet"),
  1870. weight: math.unit(80, "lb"),
  1871. name: "Back",
  1872. image: {
  1873. source: "./media/characters/rai/back.svg",
  1874. extra: 1,
  1875. bottom: 0.01
  1876. }
  1877. },
  1878. feral: {
  1879. height: math.unit(11, "feet"),
  1880. weight: math.unit(800, "lb"),
  1881. name: "Feral",
  1882. image: {
  1883. source: "./media/characters/rai/feral.svg",
  1884. extra: 1050 / 659,
  1885. bottom: 0.07
  1886. }
  1887. },
  1888. dragon: {
  1889. height: math.unit(23, "feet"),
  1890. weight: math.unit(50000, "lb"),
  1891. name: "Dragon",
  1892. image: {
  1893. source: "./media/characters/rai/dragon.svg",
  1894. extra: 2498 / 2030,
  1895. bottom: 85.2 / 2584
  1896. }
  1897. },
  1898. maw: {
  1899. height: math.unit(6 / 3.81416, "feet"),
  1900. name: "Maw",
  1901. image: {
  1902. source: "./media/characters/rai/maw.svg"
  1903. }
  1904. },
  1905. },
  1906. [
  1907. {
  1908. name: "Normal",
  1909. height: math.unit(11, "feet")
  1910. },
  1911. {
  1912. name: "Macro",
  1913. height: math.unit(302, "feet"),
  1914. default: true
  1915. },
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1920. {
  1921. frontDressed: {
  1922. height: math.unit(216, "feet"),
  1923. weight: math.unit(7000000, "lb"),
  1924. name: "Front (Dressed)",
  1925. image: {
  1926. source: "./media/characters/jazzy/front-dressed.svg",
  1927. extra: 2738 / 2651,
  1928. bottom: 41.8 / 2786
  1929. }
  1930. },
  1931. backDressed: {
  1932. height: math.unit(216, "feet"),
  1933. weight: math.unit(7000000, "lb"),
  1934. name: "Back (Dressed)",
  1935. image: {
  1936. source: "./media/characters/jazzy/back-dressed.svg",
  1937. extra: 2775 / 2673,
  1938. bottom: 36.8 / 2817
  1939. }
  1940. },
  1941. front: {
  1942. height: math.unit(216, "feet"),
  1943. weight: math.unit(7000000, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/jazzy/front.svg",
  1947. extra: 2738 / 2651,
  1948. bottom: 41.8 / 2786
  1949. }
  1950. },
  1951. back: {
  1952. height: math.unit(216, "feet"),
  1953. weight: math.unit(7000000, "lb"),
  1954. name: "Back",
  1955. image: {
  1956. source: "./media/characters/jazzy/back.svg",
  1957. extra: 2775 / 2673,
  1958. bottom: 36.8 / 2817
  1959. }
  1960. },
  1961. maw: {
  1962. height: math.unit(20, "feet"),
  1963. name: "Maw",
  1964. image: {
  1965. source: "./media/characters/jazzy/maw.svg"
  1966. }
  1967. },
  1968. paws: {
  1969. height: math.unit(27.5, "feet"),
  1970. name: "Paws",
  1971. image: {
  1972. source: "./media/characters/jazzy/paws.svg"
  1973. }
  1974. },
  1975. eye: {
  1976. height: math.unit(4.4, "feet"),
  1977. name: "Eye",
  1978. image: {
  1979. source: "./media/characters/jazzy/eye.svg"
  1980. }
  1981. },
  1982. droneOffense: {
  1983. height: math.unit(9.5, "inches"),
  1984. name: "Drone (Offense)",
  1985. image: {
  1986. source: "./media/characters/jazzy/drone-offense.svg"
  1987. }
  1988. },
  1989. droneRecon: {
  1990. height: math.unit(9.5, "inches"),
  1991. name: "Drone (Recon)",
  1992. image: {
  1993. source: "./media/characters/jazzy/drone-recon.svg"
  1994. }
  1995. },
  1996. droneDefense: {
  1997. height: math.unit(9.5, "inches"),
  1998. name: "Drone (Defense)",
  1999. image: {
  2000. source: "./media/characters/jazzy/drone-defense.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(216, "feet"),
  2008. default: true
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(7, "feet"),
  2017. weight: math.unit(80, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/flamm/front.svg",
  2021. extra: 1794 / 1677,
  2022. bottom: 31.7 / 1828.5
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(9.5, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(200, "feet"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(80, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/zephiro/front.svg",
  2047. extra: 2309 / 2162,
  2048. bottom: 0.069
  2049. }
  2050. },
  2051. side: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(80, "kg"),
  2054. name: "Side",
  2055. image: {
  2056. source: "./media/characters/zephiro/side.svg",
  2057. extra: 2403 / 2279,
  2058. bottom: 0.015
  2059. }
  2060. },
  2061. back: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(80, "kg"),
  2064. name: "Back",
  2065. image: {
  2066. source: "./media/characters/zephiro/back.svg",
  2067. extra: 2373 / 2244,
  2068. bottom: 0.013
  2069. }
  2070. },
  2071. },
  2072. [
  2073. {
  2074. name: "Micro",
  2075. height: math.unit(3, "inches")
  2076. },
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(5 + 3 / 12, "feet"),
  2080. default: true
  2081. },
  2082. {
  2083. name: "Macro",
  2084. height: math.unit(118, "feet")
  2085. },
  2086. ]
  2087. ))
  2088. characterMakers.push(() => makeCharacter(
  2089. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2090. {
  2091. front: {
  2092. height: math.unit(5, "feet"),
  2093. weight: math.unit(90, "kg"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/fory/front.svg",
  2097. extra: 2862 / 2674,
  2098. bottom: 180 / 3043.8
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(5, "feet"),
  2103. weight: math.unit(90, "kg"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/fory/back.svg",
  2107. extra: 2962 / 2791,
  2108. bottom: 106 / 3071.8
  2109. }
  2110. },
  2111. foot: {
  2112. height: math.unit(2.14, "feet"),
  2113. name: "Foot",
  2114. image: {
  2115. source: "./media/characters/fory/foot.svg"
  2116. }
  2117. },
  2118. },
  2119. [
  2120. {
  2121. name: "Normal",
  2122. height: math.unit(5, "feet")
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(50, "feet"),
  2127. default: true
  2128. },
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(10, "miles")
  2132. },
  2133. {
  2134. name: "Gigamacro",
  2135. height: math.unit(5, "earths")
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(7, "feet"),
  2144. weight: math.unit(90, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/kurrikage/front.svg",
  2148. extra: 1,
  2149. bottom: 0.035
  2150. }
  2151. },
  2152. back: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(90, "lb"),
  2155. name: "Back",
  2156. image: {
  2157. source: "./media/characters/kurrikage/back.svg"
  2158. }
  2159. },
  2160. paw: {
  2161. height: math.unit(1.5, "feet"),
  2162. name: "Paw",
  2163. image: {
  2164. source: "./media/characters/kurrikage/paw.svg"
  2165. }
  2166. },
  2167. staff: {
  2168. height: math.unit(6.7, "feet"),
  2169. name: "Staff",
  2170. image: {
  2171. source: "./media/characters/kurrikage/staff.svg"
  2172. }
  2173. },
  2174. peek: {
  2175. height: math.unit(1.05, "feet"),
  2176. name: "Peeking",
  2177. image: {
  2178. source: "./media/characters/kurrikage/peek.svg",
  2179. bottom: 0.08
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(12, "feet"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Big",
  2191. height: math.unit(20, "feet")
  2192. },
  2193. {
  2194. name: "Macro",
  2195. height: math.unit(500, "feet")
  2196. },
  2197. {
  2198. name: "Megamacro",
  2199. height: math.unit(20, "miles")
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(6, "feet"),
  2208. weight: math.unit(75, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/shingo/front.svg",
  2212. extra: 3511 / 3338,
  2213. bottom: 0.005
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Micro",
  2220. height: math.unit(4, "inches")
  2221. },
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(6, "feet"),
  2225. default: true
  2226. },
  2227. {
  2228. name: "Macro",
  2229. height: math.unit(108, "feet")
  2230. }
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2235. {
  2236. side: {
  2237. height: math.unit(6, "feet"),
  2238. weight: math.unit(75, "kg"),
  2239. name: "Side",
  2240. image: {
  2241. source: "./media/characters/aigey/side.svg"
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Macro",
  2248. height: math.unit(200, "feet"),
  2249. default: true
  2250. },
  2251. {
  2252. name: "Megamacro",
  2253. height: math.unit(100, "miles")
  2254. },
  2255. ]
  2256. )
  2257. )
  2258. characterMakers.push(() => makeCharacter(
  2259. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2260. {
  2261. front: {
  2262. height: math.unit(5 + 5 / 12, "feet"),
  2263. weight: math.unit(75, "kg"),
  2264. name: "Front",
  2265. image: {
  2266. source: "./media/characters/natasha/front.svg",
  2267. extra: 859 / 824,
  2268. bottom: 23 / 879.6
  2269. }
  2270. },
  2271. frontNsfw: {
  2272. height: math.unit(5 + 5 / 12, "feet"),
  2273. weight: math.unit(75, "kg"),
  2274. name: "Front (NSFW)",
  2275. image: {
  2276. source: "./media/characters/natasha/front-nsfw.svg",
  2277. extra: 859 / 824,
  2278. bottom: 23 / 879.6
  2279. }
  2280. },
  2281. frontErect: {
  2282. height: math.unit(5 + 5 / 12, "feet"),
  2283. weight: math.unit(75, "kg"),
  2284. name: "Front (Erect)",
  2285. image: {
  2286. source: "./media/characters/natasha/front-erect.svg",
  2287. extra: 859 / 824,
  2288. bottom: 23 / 879.6
  2289. }
  2290. },
  2291. back: {
  2292. height: math.unit(5 + 5 / 12, "feet"),
  2293. weight: math.unit(75, "kg"),
  2294. name: "Back",
  2295. image: {
  2296. source: "./media/characters/natasha/back.svg",
  2297. extra: 887.9 / 852.6,
  2298. bottom: 9.7 / 896.4
  2299. }
  2300. },
  2301. backAlt: {
  2302. height: math.unit(5 + 5 / 12, "feet"),
  2303. weight: math.unit(75, "kg"),
  2304. name: "Back (Alt)",
  2305. image: {
  2306. source: "./media/characters/natasha/back-alt.svg",
  2307. extra: 1236.7 / 1192,
  2308. bottom: 22.3 / 1258.2
  2309. }
  2310. },
  2311. dick: {
  2312. height: math.unit(1.772, "feet"),
  2313. name: "Dick",
  2314. image: {
  2315. source: "./media/characters/natasha/dick.svg"
  2316. }
  2317. },
  2318. },
  2319. [
  2320. {
  2321. name: "Normal",
  2322. height: math.unit(5 + 5 / 12, "feet")
  2323. },
  2324. {
  2325. name: "Large",
  2326. height: math.unit(12, "feet")
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(100, "feet"),
  2331. default: true
  2332. },
  2333. {
  2334. name: "Macro+",
  2335. height: math.unit(260, "feet")
  2336. },
  2337. {
  2338. name: "Macro++",
  2339. height: math.unit(1, "mile")
  2340. },
  2341. ]
  2342. ))
  2343. characterMakers.push(() => makeCharacter(
  2344. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2345. {
  2346. front: {
  2347. height: math.unit(6, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Front",
  2350. image: {
  2351. source: "./media/characters/malik/front.svg"
  2352. }
  2353. },
  2354. side: {
  2355. height: math.unit(6, "feet"),
  2356. weight: math.unit(75, "kg"),
  2357. name: "Side",
  2358. image: {
  2359. source: "./media/characters/malik/side.svg",
  2360. extra: 1.1539
  2361. }
  2362. },
  2363. back: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Back",
  2367. image: {
  2368. source: "./media/characters/malik/back.svg"
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(156, "feet"),
  2376. default: true
  2377. },
  2378. {
  2379. name: "Macro+",
  2380. height: math.unit(1188, "feet")
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(6, "feet"),
  2389. weight: math.unit(75, "kg"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/sefer/front.svg",
  2393. extra: 848 / 659,
  2394. bottom: 28.3 / 876.442
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(6, "feet"),
  2399. weight: math.unit(75, "kg"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/sefer/back.svg",
  2403. extra: 864 / 695,
  2404. bottom: 10 / 871
  2405. }
  2406. },
  2407. frontDressed: {
  2408. height: math.unit(6, "feet"),
  2409. weight: math.unit(75, "kg"),
  2410. name: "Front (Dressed)",
  2411. image: {
  2412. source: "./media/characters/sefer/front-dressed.svg",
  2413. extra: 839 / 653,
  2414. bottom: 37.6 / 878
  2415. }
  2416. },
  2417. },
  2418. [
  2419. {
  2420. name: "Normal",
  2421. height: math.unit(6, "feet"),
  2422. default: true
  2423. },
  2424. ]
  2425. ))
  2426. characterMakers.push(() => makeCharacter(
  2427. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2428. {
  2429. body: {
  2430. height: math.unit(2.2428, "meter"),
  2431. weight: math.unit(124.738, "kg"),
  2432. name: "Body",
  2433. image: {
  2434. extra: 1225 / 1050,
  2435. source: "./media/characters/north/front.svg"
  2436. }
  2437. }
  2438. },
  2439. [
  2440. {
  2441. name: "Micro",
  2442. height: math.unit(4, "inches")
  2443. },
  2444. {
  2445. name: "Macro",
  2446. height: math.unit(63, "meters")
  2447. },
  2448. {
  2449. name: "Megamacro",
  2450. height: math.unit(101, "miles"),
  2451. default: true
  2452. }
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2457. {
  2458. angled: {
  2459. height: math.unit(4, "meter"),
  2460. weight: math.unit(150, "kg"),
  2461. name: "Angled",
  2462. image: {
  2463. source: "./media/characters/talan/angled-sfw.svg",
  2464. bottom: 29 / 3734
  2465. }
  2466. },
  2467. angledNsfw: {
  2468. height: math.unit(4, "meter"),
  2469. weight: math.unit(150, "kg"),
  2470. name: "Angled (NSFW)",
  2471. image: {
  2472. source: "./media/characters/talan/angled-nsfw.svg",
  2473. bottom: 29 / 3734
  2474. }
  2475. },
  2476. frontNsfw: {
  2477. height: math.unit(4, "meter"),
  2478. weight: math.unit(150, "kg"),
  2479. name: "Front (NSFW)",
  2480. image: {
  2481. source: "./media/characters/talan/front-nsfw.svg",
  2482. bottom: 29 / 3734
  2483. }
  2484. },
  2485. sideNsfw: {
  2486. height: math.unit(4, "meter"),
  2487. weight: math.unit(150, "kg"),
  2488. name: "Side (NSFW)",
  2489. image: {
  2490. source: "./media/characters/talan/side-nsfw.svg",
  2491. bottom: 29 / 3734
  2492. }
  2493. },
  2494. back: {
  2495. height: math.unit(4, "meter"),
  2496. weight: math.unit(150, "kg"),
  2497. name: "Back",
  2498. image: {
  2499. source: "./media/characters/talan/back.svg"
  2500. }
  2501. },
  2502. dickBottom: {
  2503. height: math.unit(0.621, "meter"),
  2504. name: "Dick (Bottom)",
  2505. image: {
  2506. source: "./media/characters/talan/dick-bottom.svg"
  2507. }
  2508. },
  2509. dickTop: {
  2510. height: math.unit(0.621, "meter"),
  2511. name: "Dick (Top)",
  2512. image: {
  2513. source: "./media/characters/talan/dick-top.svg"
  2514. }
  2515. },
  2516. dickSide: {
  2517. height: math.unit(0.305, "meter"),
  2518. name: "Dick (Side)",
  2519. image: {
  2520. source: "./media/characters/talan/dick-side.svg"
  2521. }
  2522. },
  2523. dickFront: {
  2524. height: math.unit(0.305, "meter"),
  2525. name: "Dick (Front)",
  2526. image: {
  2527. source: "./media/characters/talan/dick-front.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(4, "meters")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(100, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2, "miles"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(5000, "miles")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(100, "parsecs")
  2552. }
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(2, "meter"),
  2560. weight: math.unit(90, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/gael'rathus/front.svg"
  2564. }
  2565. },
  2566. frontAlt: {
  2567. height: math.unit(2, "meter"),
  2568. weight: math.unit(90, "kg"),
  2569. name: "Front (alt)",
  2570. image: {
  2571. source: "./media/characters/gael'rathus/front-alt.svg"
  2572. }
  2573. },
  2574. frontAlt2: {
  2575. height: math.unit(2, "meter"),
  2576. weight: math.unit(90, "kg"),
  2577. name: "Front (alt 2)",
  2578. image: {
  2579. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2580. }
  2581. }
  2582. },
  2583. [
  2584. {
  2585. name: "Normal",
  2586. height: math.unit(9, "feet"),
  2587. default: true
  2588. },
  2589. {
  2590. name: "Large",
  2591. height: math.unit(25, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(0.25, "miles")
  2596. },
  2597. {
  2598. name: "Megamacro",
  2599. height: math.unit(10, "miles")
  2600. }
  2601. ]
  2602. ))
  2603. characterMakers.push(() => makeCharacter(
  2604. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2605. {
  2606. side: {
  2607. height: math.unit(2, "meter"),
  2608. weight: math.unit(140, "kg"),
  2609. name: "Side",
  2610. image: {
  2611. source: "./media/characters/sosha/side.svg",
  2612. bottom: 0.042
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(12, "feet"),
  2620. default: true
  2621. }
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2626. {
  2627. side: {
  2628. height: math.unit(5 + 5 / 12, "feet"),
  2629. weight: math.unit(170, "kg"),
  2630. name: "Side",
  2631. image: {
  2632. source: "./media/characters/runnola/side.svg",
  2633. extra: 741 / 448,
  2634. bottom: 0.05
  2635. }
  2636. },
  2637. },
  2638. [
  2639. {
  2640. name: "Small",
  2641. height: math.unit(3, "feet")
  2642. },
  2643. {
  2644. name: "Normal",
  2645. height: math.unit(5 + 5 / 12, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(10, "feet")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(2, "meter"),
  2659. weight: math.unit(50, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/kurribird/front.svg",
  2663. bottom: 0.015
  2664. }
  2665. },
  2666. frontAlt: {
  2667. height: math.unit(1.5, "meter"),
  2668. weight: math.unit(50, "kg"),
  2669. name: "Front (Alt)",
  2670. image: {
  2671. source: "./media/characters/kurribird/front-alt.svg",
  2672. extra: 1.45
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(7, "feet")
  2680. },
  2681. {
  2682. name: "Big",
  2683. height: math.unit(12, "feet"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(1500, "feet")
  2689. },
  2690. {
  2691. name: "Megamacro",
  2692. height: math.unit(2, "miles")
  2693. }
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(2, "meter"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/elbial/front.svg",
  2705. extra: 1643 / 1556,
  2706. bottom: 60.2 / 1696
  2707. }
  2708. },
  2709. side: {
  2710. height: math.unit(2, "meter"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Side",
  2713. image: {
  2714. source: "./media/characters/elbial/side.svg",
  2715. extra: 1630 / 1565,
  2716. bottom: 71.5 / 1697
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(2, "meter"),
  2721. weight: math.unit(80, "kg"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/elbial/back.svg",
  2725. extra: 1668 / 1595,
  2726. bottom: 5.6 / 1672
  2727. }
  2728. },
  2729. frontDressed: {
  2730. height: math.unit(2, "meter"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Front (Dressed)",
  2733. image: {
  2734. source: "./media/characters/elbial/front-dressed.svg",
  2735. extra: 1653 / 1584,
  2736. bottom: 57 / 1708
  2737. }
  2738. },
  2739. genitals: {
  2740. height: math.unit(2 / 3.367, "meter"),
  2741. name: "Genitals",
  2742. image: {
  2743. source: "./media/characters/elbial/genitals.svg"
  2744. }
  2745. },
  2746. },
  2747. [
  2748. {
  2749. name: "Large",
  2750. height: math.unit(100, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(500, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(10, "miles")
  2760. },
  2761. {
  2762. name: "Gigamacro",
  2763. height: math.unit(25000, "miles")
  2764. },
  2765. {
  2766. name: "Full-Size",
  2767. height: math.unit(8000000, "gigaparsecs")
  2768. }
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(2, "meter"),
  2776. weight: math.unit(60, "kg"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/noah/front.svg"
  2780. }
  2781. },
  2782. talons: {
  2783. height: math.unit(0.315, "meter"),
  2784. name: "Talons",
  2785. image: {
  2786. source: "./media/characters/noah/talons.svg"
  2787. }
  2788. }
  2789. },
  2790. [
  2791. {
  2792. name: "Large",
  2793. height: math.unit(50, "feet")
  2794. },
  2795. {
  2796. name: "Macro",
  2797. height: math.unit(750, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Megamacro",
  2802. height: math.unit(50, "miles")
  2803. },
  2804. {
  2805. name: "Gigamacro",
  2806. height: math.unit(100000, "miles")
  2807. },
  2808. {
  2809. name: "Full-Size",
  2810. height: math.unit(3000000000, "miles")
  2811. }
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/natalya/front.svg"
  2823. }
  2824. },
  2825. back: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(80, "kg"),
  2828. name: "Back",
  2829. image: {
  2830. source: "./media/characters/natalya/back.svg"
  2831. }
  2832. }
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(150, "feet"),
  2838. default: true
  2839. },
  2840. {
  2841. name: "Megamacro",
  2842. height: math.unit(5, "miles")
  2843. },
  2844. {
  2845. name: "Full-Size",
  2846. height: math.unit(600, "kiloparsecs")
  2847. }
  2848. ]
  2849. ))
  2850. characterMakers.push(() => makeCharacter(
  2851. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2852. {
  2853. front: {
  2854. height: math.unit(2, "meter"),
  2855. weight: math.unit(50, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/erestrebah/front.svg",
  2859. extra: 208 / 193,
  2860. bottom: 0.055
  2861. }
  2862. },
  2863. back: {
  2864. height: math.unit(2, "meter"),
  2865. weight: math.unit(50, "kg"),
  2866. name: "Back",
  2867. image: {
  2868. source: "./media/characters/erestrebah/back.svg",
  2869. extra: 1.3
  2870. }
  2871. }
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(10, "feet")
  2877. },
  2878. {
  2879. name: "Large",
  2880. height: math.unit(50, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(300, "feet")
  2886. },
  2887. {
  2888. name: "Macro+",
  2889. height: math.unit(750, "feet")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(3, "miles")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/jennifer/front.svg",
  2906. bottom: 0.11,
  2907. extra: 1.16
  2908. }
  2909. },
  2910. frontAlt: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(80, "kg"),
  2913. name: "Front (Alt)",
  2914. image: {
  2915. source: "./media/characters/jennifer/front-alt.svg"
  2916. }
  2917. }
  2918. },
  2919. [
  2920. {
  2921. name: "Canon Height",
  2922. height: math.unit(120, "feet"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Macro+",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Megamacro",
  2931. height: math.unit(20000, "feet")
  2932. }
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(2, "meter"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/kalista/front.svg",
  2944. extra: 1947 / 1700,
  2945. bottom: 76.6 / 1412.98
  2946. }
  2947. },
  2948. back: {
  2949. height: math.unit(2, "meter"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Back",
  2952. image: {
  2953. source: "./media/characters/kalista/back.svg",
  2954. extra: 1366 / 1156,
  2955. bottom: 33.9 / 1362.78
  2956. }
  2957. }
  2958. },
  2959. [
  2960. {
  2961. name: "Uncomfortably Small",
  2962. height: math.unit(10, "feet")
  2963. },
  2964. {
  2965. name: "Small",
  2966. height: math.unit(30, "feet")
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(100, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(2000, "feet")
  2976. },
  2977. {
  2978. name: "True Form",
  2979. height: math.unit(8924, "miles")
  2980. }
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(120, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/ggv/front.svg"
  2992. }
  2993. },
  2994. side: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(120, "kg"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/ggv/side.svg"
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Extremely Puny",
  3006. height: math.unit(9 + 5 / 12, "feet")
  3007. },
  3008. {
  3009. name: "Horribly Small",
  3010. height: math.unit(47.7, "miles"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Reasonably Sized",
  3015. height: math.unit(25000, "parsecs")
  3016. },
  3017. {
  3018. name: "Slightly Uncompressed",
  3019. height: math.unit(7.77e31, "parsecs")
  3020. },
  3021. {
  3022. name: "Omniversal",
  3023. height: math.unit(1e300, "meters")
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(75, "lb"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/napalm/front.svg"
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(2, "meter"),
  3040. weight: math.unit(75, "lb"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/napalm/back.svg"
  3044. }
  3045. }
  3046. },
  3047. [
  3048. {
  3049. name: "Standard",
  3050. height: math.unit(55, "feet"),
  3051. default: true
  3052. }
  3053. ]
  3054. ))
  3055. characterMakers.push(() => makeCharacter(
  3056. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3057. {
  3058. front: {
  3059. height: math.unit(7 + 5 / 6, "feet"),
  3060. weight: math.unit(325, "lb"),
  3061. name: "Front",
  3062. image: {
  3063. source: "./media/characters/asana/front.svg",
  3064. extra: 1128 / 1068
  3065. }
  3066. },
  3067. back: {
  3068. height: math.unit(7 + 5 / 6, "feet"),
  3069. weight: math.unit(325, "lb"),
  3070. name: "Back",
  3071. image: {
  3072. source: "./media/characters/asana/back.svg",
  3073. extra: 1128 / 1068
  3074. }
  3075. },
  3076. },
  3077. [
  3078. {
  3079. name: "Standard",
  3080. height: math.unit(7 + 5 / 6, "feet"),
  3081. default: true
  3082. },
  3083. {
  3084. name: "Large",
  3085. height: math.unit(10, "meters")
  3086. },
  3087. {
  3088. name: "Macro",
  3089. height: math.unit(2500, "meters")
  3090. },
  3091. {
  3092. name: "Megamacro",
  3093. height: math.unit(5e6, "meters")
  3094. },
  3095. {
  3096. name: "Examacro",
  3097. height: math.unit(5e12, "lightyears")
  3098. },
  3099. {
  3100. name: "Max Size",
  3101. height: math.unit(1e31, "lightyears")
  3102. }
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3107. {
  3108. front: {
  3109. height: math.unit(2, "meter"),
  3110. weight: math.unit(60, "kg"),
  3111. name: "Front",
  3112. image: {
  3113. source: "./media/characters/ebony/front.svg",
  3114. bottom: 0.03,
  3115. extra: 1045 / 810 + 0.03
  3116. }
  3117. },
  3118. side: {
  3119. height: math.unit(2, "meter"),
  3120. weight: math.unit(60, "kg"),
  3121. name: "Side",
  3122. image: {
  3123. source: "./media/characters/ebony/side.svg",
  3124. bottom: 0.03,
  3125. extra: 1045 / 810 + 0.03
  3126. }
  3127. },
  3128. back: {
  3129. height: math.unit(2, "meter"),
  3130. weight: math.unit(60, "kg"),
  3131. name: "Back",
  3132. image: {
  3133. source: "./media/characters/ebony/back.svg",
  3134. bottom: 0.01,
  3135. extra: 1045 / 810 + 0.01
  3136. }
  3137. },
  3138. },
  3139. [
  3140. // TODO check why I did this lol
  3141. {
  3142. name: "Standard",
  3143. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3144. default: true
  3145. },
  3146. {
  3147. name: "Macro",
  3148. height: math.unit(200, "feet")
  3149. },
  3150. {
  3151. name: "Gigamacro",
  3152. height: math.unit(13000, "km")
  3153. }
  3154. ]
  3155. ))
  3156. characterMakers.push(() => makeCharacter(
  3157. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3158. {
  3159. front: {
  3160. height: math.unit(6, "feet"),
  3161. weight: math.unit(175, "lb"),
  3162. name: "Front",
  3163. image: {
  3164. source: "./media/characters/mountain/front.svg"
  3165. }
  3166. },
  3167. back: {
  3168. height: math.unit(6, "feet"),
  3169. weight: math.unit(175, "lb"),
  3170. name: "Back",
  3171. image: {
  3172. source: "./media/characters/mountain/back.svg"
  3173. }
  3174. },
  3175. },
  3176. [
  3177. {
  3178. name: "Large",
  3179. height: math.unit(20, "meters")
  3180. },
  3181. {
  3182. name: "Macro",
  3183. height: math.unit(300, "meters")
  3184. },
  3185. {
  3186. name: "Gigamacro",
  3187. height: math.unit(10000, "km"),
  3188. default: true
  3189. },
  3190. {
  3191. name: "Examacro",
  3192. height: math.unit(10e9, "lightyears")
  3193. }
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(8, "feet"),
  3201. weight: math.unit(500, "lb"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/rick/front.svg"
  3205. }
  3206. }
  3207. },
  3208. [
  3209. {
  3210. name: "Normal",
  3211. height: math.unit(8, "feet"),
  3212. default: true
  3213. },
  3214. {
  3215. name: "Macro",
  3216. height: math.unit(5, "km")
  3217. }
  3218. ]
  3219. ))
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3222. {
  3223. front: {
  3224. height: math.unit(8, "feet"),
  3225. weight: math.unit(120, "lb"),
  3226. name: "Front",
  3227. image: {
  3228. source: "./media/characters/ona/front.svg"
  3229. }
  3230. },
  3231. frontAlt: {
  3232. height: math.unit(8, "feet"),
  3233. weight: math.unit(120, "lb"),
  3234. name: "Front (Alt)",
  3235. image: {
  3236. source: "./media/characters/ona/front-alt.svg"
  3237. }
  3238. },
  3239. back: {
  3240. height: math.unit(8, "feet"),
  3241. weight: math.unit(120, "lb"),
  3242. name: "Back",
  3243. image: {
  3244. source: "./media/characters/ona/back.svg"
  3245. }
  3246. },
  3247. foot: {
  3248. height: math.unit(1.1, "feet"),
  3249. name: "Foot",
  3250. image: {
  3251. source: "./media/characters/ona/foot.svg"
  3252. }
  3253. }
  3254. },
  3255. [
  3256. {
  3257. name: "Megamacro",
  3258. height: math.unit(70, "km"),
  3259. default: true
  3260. },
  3261. {
  3262. name: "Gigamacro",
  3263. height: math.unit(681818, "miles")
  3264. },
  3265. {
  3266. name: "Examacro",
  3267. height: math.unit(3800000, "lightyears")
  3268. },
  3269. ]
  3270. ))
  3271. characterMakers.push(() => makeCharacter(
  3272. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3273. {
  3274. front: {
  3275. height: math.unit(12, "feet"),
  3276. weight: math.unit(3000, "lb"),
  3277. name: "Front",
  3278. image: {
  3279. source: "./media/characters/mech/front.svg",
  3280. bottom: 0.025,
  3281. }
  3282. },
  3283. back: {
  3284. height: math.unit(12, "feet"),
  3285. weight: math.unit(3000, "lb"),
  3286. name: "Back",
  3287. image: {
  3288. source: "./media/characters/mech/back.svg",
  3289. bottom: 0.03,
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(12, "feet")
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(300, "feet"),
  3301. default: true
  3302. },
  3303. {
  3304. name: "Macro+",
  3305. height: math.unit(1500, "feet")
  3306. },
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(1.3, "meter"),
  3314. weight: math.unit(30, "kg"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/gregory/front.svg",
  3318. }
  3319. }
  3320. },
  3321. [
  3322. {
  3323. name: "Normal",
  3324. height: math.unit(1.3, "meter"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Macro",
  3329. height: math.unit(20, "meter")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(2.8, "meter"),
  3338. weight: math.unit(200, "kg"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/elory/front.svg",
  3342. }
  3343. }
  3344. },
  3345. [
  3346. {
  3347. name: "Normal",
  3348. height: math.unit(2.8, "meter"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(38, "meter")
  3354. }
  3355. ]
  3356. ))
  3357. characterMakers.push(() => makeCharacter(
  3358. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3359. {
  3360. front: {
  3361. height: math.unit(470, "feet"),
  3362. weight: math.unit(924, "tons"),
  3363. name: "Front",
  3364. image: {
  3365. source: "./media/characters/angelpatamon/front.svg",
  3366. }
  3367. }
  3368. },
  3369. [
  3370. {
  3371. name: "Normal",
  3372. height: math.unit(470, "feet"),
  3373. default: true
  3374. },
  3375. {
  3376. name: "Deity Size I",
  3377. height: math.unit(28651.2, "km")
  3378. },
  3379. {
  3380. name: "Deity Size II",
  3381. height: math.unit(171907.2, "km")
  3382. }
  3383. ]
  3384. ))
  3385. characterMakers.push(() => makeCharacter(
  3386. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3387. {
  3388. side: {
  3389. height: math.unit(7.2, "meter"),
  3390. weight: math.unit(8.2, "tons"),
  3391. name: "Side",
  3392. image: {
  3393. source: "./media/characters/cryae/side.svg",
  3394. extra: 3500 / 1500
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(7.2, "meter"),
  3402. default: true
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(6, "feet"),
  3411. weight: math.unit(175, "lb"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/xera/front.svg",
  3415. extra: 2300 / 2061
  3416. }
  3417. },
  3418. side: {
  3419. height: math.unit(6, "feet"),
  3420. weight: math.unit(175, "lb"),
  3421. name: "Side",
  3422. image: {
  3423. source: "./media/characters/xera/side.svg",
  3424. extra: 2300 / 2061
  3425. }
  3426. },
  3427. back: {
  3428. height: math.unit(6, "feet"),
  3429. weight: math.unit(175, "lb"),
  3430. name: "Back",
  3431. image: {
  3432. source: "./media/characters/xera/back.svg"
  3433. }
  3434. },
  3435. },
  3436. [
  3437. {
  3438. name: "Small",
  3439. height: math.unit(10, "feet")
  3440. },
  3441. {
  3442. name: "Macro",
  3443. height: math.unit(500, "meters"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Macro+",
  3448. height: math.unit(10, "km")
  3449. },
  3450. {
  3451. name: "Gigamacro",
  3452. height: math.unit(25000, "km")
  3453. },
  3454. {
  3455. name: "Teramacro",
  3456. height: math.unit(3e6, "km")
  3457. }
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3462. {
  3463. front: {
  3464. height: math.unit(6, "feet"),
  3465. weight: math.unit(175, "lb"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/nebula/front.svg",
  3469. extra: 2600 / 2450
  3470. }
  3471. }
  3472. },
  3473. [
  3474. {
  3475. name: "Small",
  3476. height: math.unit(4.5, "meters")
  3477. },
  3478. {
  3479. name: "Macro",
  3480. height: math.unit(1500, "meters"),
  3481. default: true
  3482. },
  3483. {
  3484. name: "Megamacro",
  3485. height: math.unit(150, "km")
  3486. },
  3487. {
  3488. name: "Gigamacro",
  3489. height: math.unit(27000, "km")
  3490. }
  3491. ]
  3492. ))
  3493. characterMakers.push(() => makeCharacter(
  3494. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3495. {
  3496. front: {
  3497. height: math.unit(6, "feet"),
  3498. weight: math.unit(225, "lb"),
  3499. name: "Front",
  3500. image: {
  3501. source: "./media/characters/abysgar/front.svg"
  3502. }
  3503. }
  3504. },
  3505. [
  3506. {
  3507. name: "Small",
  3508. height: math.unit(4.5, "meters")
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(1250, "meters"),
  3513. default: true
  3514. },
  3515. {
  3516. name: "Megamacro",
  3517. height: math.unit(125, "km")
  3518. },
  3519. {
  3520. name: "Gigamacro",
  3521. height: math.unit(26000, "km")
  3522. }
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3527. {
  3528. front: {
  3529. height: math.unit(6, "feet"),
  3530. weight: math.unit(180, "lb"),
  3531. name: "Front",
  3532. image: {
  3533. source: "./media/characters/yakuz/front.svg"
  3534. }
  3535. }
  3536. },
  3537. [
  3538. {
  3539. name: "Small",
  3540. height: math.unit(5, "meters")
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(1500, "meters"),
  3545. default: true
  3546. },
  3547. {
  3548. name: "Megamacro",
  3549. height: math.unit(200, "km")
  3550. },
  3551. {
  3552. name: "Gigamacro",
  3553. height: math.unit(100000, "km")
  3554. }
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3559. {
  3560. front: {
  3561. height: math.unit(6, "feet"),
  3562. weight: math.unit(175, "lb"),
  3563. name: "Front",
  3564. image: {
  3565. source: "./media/characters/mirova/front.svg"
  3566. }
  3567. }
  3568. },
  3569. [
  3570. {
  3571. name: "Small",
  3572. height: math.unit(5, "meters")
  3573. },
  3574. {
  3575. name: "Macro",
  3576. height: math.unit(900, "meters"),
  3577. default: true
  3578. },
  3579. {
  3580. name: "Megamacro",
  3581. height: math.unit(135, "km")
  3582. },
  3583. {
  3584. name: "Gigamacro",
  3585. height: math.unit(20000, "km")
  3586. }
  3587. ]
  3588. ))
  3589. characterMakers.push(() => makeCharacter(
  3590. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3591. {
  3592. side: {
  3593. height: math.unit(28.35, "feet"),
  3594. weight: math.unit(99.75, "tons"),
  3595. name: "Side",
  3596. image: {
  3597. source: "./media/characters/asana-mech/side.svg"
  3598. }
  3599. }
  3600. },
  3601. [
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(28.35, "feet"),
  3605. default: true
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(2500, "feet")
  3610. },
  3611. {
  3612. name: "Megamacro",
  3613. height: math.unit(25, "miles")
  3614. },
  3615. {
  3616. name: "Examacro",
  3617. height: math.unit(6e8, "lightyears")
  3618. },
  3619. ]
  3620. ))
  3621. characterMakers.push(() => makeCharacter(
  3622. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3623. {
  3624. front: {
  3625. height: math.unit(2, "meters"),
  3626. weight: math.unit(70, "kg"),
  3627. name: "Front",
  3628. image: {
  3629. source: "./media/characters/ashtrek/front.svg",
  3630. extra: 560 / 524,
  3631. bottom: 0.01
  3632. }
  3633. },
  3634. frontArmor: {
  3635. height: math.unit(2, "meters"),
  3636. weight: math.unit(76, "kg"),
  3637. name: "Front (Armor)",
  3638. image: {
  3639. source: "./media/characters/ashtrek/front-armor.svg",
  3640. extra: 561 / 527,
  3641. bottom: 0.01
  3642. }
  3643. },
  3644. side: {
  3645. height: math.unit(2, "meters"),
  3646. weight: math.unit(70, "kg"),
  3647. name: "Side",
  3648. image: {
  3649. source: "./media/characters/ashtrek/side.svg",
  3650. extra: 1717 / 1609,
  3651. bottom: 0.005
  3652. }
  3653. },
  3654. back: {
  3655. height: math.unit(2, "meters"),
  3656. weight: math.unit(70, "kg"),
  3657. name: "Back",
  3658. image: {
  3659. source: "./media/characters/ashtrek/back.svg",
  3660. extra: 1570 / 1501
  3661. }
  3662. },
  3663. },
  3664. [
  3665. {
  3666. name: "DEFCON 5",
  3667. height: math.unit(5, "meters")
  3668. },
  3669. {
  3670. name: "DEFCON 4",
  3671. height: math.unit(500, "meters"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "DEFCON 3",
  3676. height: math.unit(5, "km")
  3677. },
  3678. {
  3679. name: "DEFCON 2",
  3680. height: math.unit(500, "km")
  3681. },
  3682. {
  3683. name: "DEFCON 1",
  3684. height: math.unit(500000, "km")
  3685. },
  3686. {
  3687. name: "DEFCON 0",
  3688. height: math.unit(3, "gigaparsecs")
  3689. },
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3694. {
  3695. front: {
  3696. height: math.unit(2, "meters"),
  3697. weight: math.unit(76, "kg"),
  3698. name: "Front",
  3699. image: {
  3700. source: "./media/characters/gale/front.svg"
  3701. }
  3702. },
  3703. frontAlt1: {
  3704. height: math.unit(2, "meters"),
  3705. weight: math.unit(76, "kg"),
  3706. name: "Front (Alt 1)",
  3707. image: {
  3708. source: "./media/characters/gale/front-alt-1.svg"
  3709. }
  3710. },
  3711. frontAlt2: {
  3712. height: math.unit(2, "meters"),
  3713. weight: math.unit(76, "kg"),
  3714. name: "Front (Alt 2)",
  3715. image: {
  3716. source: "./media/characters/gale/front-alt-2.svg"
  3717. }
  3718. },
  3719. },
  3720. [
  3721. {
  3722. name: "Normal",
  3723. height: math.unit(7, "feet")
  3724. },
  3725. {
  3726. name: "Macro",
  3727. height: math.unit(150, "feet"),
  3728. default: true
  3729. },
  3730. {
  3731. name: "Macro+",
  3732. height: math.unit(300, "feet")
  3733. },
  3734. ]
  3735. ))
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3738. {
  3739. front: {
  3740. height: math.unit(2, "meters"),
  3741. weight: math.unit(76, "kg"),
  3742. name: "Front",
  3743. image: {
  3744. source: "./media/characters/draylen/front.svg"
  3745. }
  3746. }
  3747. },
  3748. [
  3749. {
  3750. name: "Macro",
  3751. height: math.unit(150, "feet"),
  3752. default: true
  3753. }
  3754. ]
  3755. ))
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3758. {
  3759. front: {
  3760. height: math.unit(7 + 9 / 12, "feet"),
  3761. weight: math.unit(379, "lbs"),
  3762. name: "Front",
  3763. image: {
  3764. source: "./media/characters/chez/front.svg"
  3765. }
  3766. },
  3767. side: {
  3768. height: math.unit(7 + 9 / 12, "feet"),
  3769. weight: math.unit(379, "lbs"),
  3770. name: "Side",
  3771. image: {
  3772. source: "./media/characters/chez/side.svg"
  3773. }
  3774. }
  3775. },
  3776. [
  3777. {
  3778. name: "Normal",
  3779. height: math.unit(7 + 9 / 12, "feet"),
  3780. default: true
  3781. },
  3782. {
  3783. name: "God King",
  3784. height: math.unit(9750000, "meters")
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3790. {
  3791. front: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(275, "lbs"),
  3794. name: "Front",
  3795. image: {
  3796. source: "./media/characters/kaylum/front.svg",
  3797. bottom: 0.01,
  3798. extra: 1166 / 1031
  3799. }
  3800. },
  3801. frontWingless: {
  3802. height: math.unit(6, "feet"),
  3803. weight: math.unit(275, "lbs"),
  3804. name: "Front (Wingless)",
  3805. image: {
  3806. source: "./media/characters/kaylum/front-wingless.svg",
  3807. bottom: 0.01,
  3808. extra: 1117 / 1031
  3809. }
  3810. }
  3811. },
  3812. [
  3813. {
  3814. name: "Normal",
  3815. height: math.unit(3.05, "meters")
  3816. },
  3817. {
  3818. name: "Master",
  3819. height: math.unit(5.5, "meters")
  3820. },
  3821. {
  3822. name: "Rampage",
  3823. height: math.unit(19, "meters")
  3824. },
  3825. {
  3826. name: "Macro Lite",
  3827. height: math.unit(37, "meters")
  3828. },
  3829. {
  3830. name: "Hyper Predator",
  3831. height: math.unit(61, "meters")
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(138, "meters"),
  3836. default: true
  3837. }
  3838. ]
  3839. ))
  3840. characterMakers.push(() => makeCharacter(
  3841. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3842. {
  3843. front: {
  3844. height: math.unit(6, "feet"),
  3845. weight: math.unit(150, "lbs"),
  3846. name: "Front",
  3847. image: {
  3848. source: "./media/characters/geta/front.svg"
  3849. }
  3850. }
  3851. },
  3852. [
  3853. {
  3854. name: "Micro",
  3855. height: math.unit(3, "inches"),
  3856. default: true
  3857. },
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(5 + 5 / 12, "feet")
  3861. }
  3862. ]
  3863. ))
  3864. characterMakers.push(() => makeCharacter(
  3865. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3866. {
  3867. front: {
  3868. height: math.unit(6, "feet"),
  3869. weight: math.unit(300, "lbs"),
  3870. name: "Front",
  3871. image: {
  3872. source: "./media/characters/tyrnn/front.svg"
  3873. }
  3874. }
  3875. },
  3876. [
  3877. {
  3878. name: "Main Height",
  3879. height: math.unit(355, "feet"),
  3880. default: true
  3881. },
  3882. {
  3883. name: "Fave. Height",
  3884. height: math.unit(2400, "feet")
  3885. }
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(300, "lbs"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/appledectomy/front.svg"
  3897. }
  3898. }
  3899. },
  3900. [
  3901. {
  3902. name: "Macro",
  3903. height: math.unit(2500, "feet")
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(50, "miles"),
  3908. default: true
  3909. },
  3910. {
  3911. name: "Gigamacro",
  3912. height: math.unit(5000, "miles")
  3913. },
  3914. {
  3915. name: "Teramacro",
  3916. height: math.unit(250000, "miles")
  3917. },
  3918. ]
  3919. ))
  3920. characterMakers.push(() => makeCharacter(
  3921. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3922. {
  3923. front: {
  3924. height: math.unit(6, "feet"),
  3925. weight: math.unit(200, "lbs"),
  3926. name: "Front",
  3927. image: {
  3928. source: "./media/characters/vulpes/front.svg",
  3929. extra: 573 / 543,
  3930. bottom: 0.033
  3931. }
  3932. },
  3933. side: {
  3934. height: math.unit(6, "feet"),
  3935. weight: math.unit(200, "lbs"),
  3936. name: "Side",
  3937. image: {
  3938. source: "./media/characters/vulpes/side.svg",
  3939. extra: 573 / 543,
  3940. bottom: 0.01
  3941. }
  3942. },
  3943. back: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(200, "lbs"),
  3946. name: "Back",
  3947. image: {
  3948. source: "./media/characters/vulpes/back.svg",
  3949. extra: 573 / 543,
  3950. }
  3951. },
  3952. feet: {
  3953. height: math.unit(1.276, "feet"),
  3954. name: "Feet",
  3955. image: {
  3956. source: "./media/characters/vulpes/feet.svg"
  3957. }
  3958. },
  3959. maw: {
  3960. height: math.unit(1.18, "feet"),
  3961. name: "Maw",
  3962. image: {
  3963. source: "./media/characters/vulpes/maw.svg"
  3964. }
  3965. },
  3966. },
  3967. [
  3968. {
  3969. name: "Micro",
  3970. height: math.unit(2, "inches")
  3971. },
  3972. {
  3973. name: "Normal",
  3974. height: math.unit(6.3, "feet")
  3975. },
  3976. {
  3977. name: "Macro",
  3978. height: math.unit(850, "feet")
  3979. },
  3980. {
  3981. name: "Megamacro",
  3982. height: math.unit(7500, "feet"),
  3983. default: true
  3984. },
  3985. {
  3986. name: "Gigamacro",
  3987. height: math.unit(570000, "miles")
  3988. }
  3989. ]
  3990. ))
  3991. characterMakers.push(() => makeCharacter(
  3992. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3993. {
  3994. front: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(210, "lbs"),
  3997. name: "Front",
  3998. image: {
  3999. source: "./media/characters/rain-fallen/front.svg"
  4000. }
  4001. },
  4002. side: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(210, "lbs"),
  4005. name: "Side",
  4006. image: {
  4007. source: "./media/characters/rain-fallen/side.svg"
  4008. }
  4009. },
  4010. back: {
  4011. height: math.unit(6, "feet"),
  4012. weight: math.unit(210, "lbs"),
  4013. name: "Back",
  4014. image: {
  4015. source: "./media/characters/rain-fallen/back.svg"
  4016. }
  4017. },
  4018. feral: {
  4019. height: math.unit(9, "feet"),
  4020. weight: math.unit(700, "lbs"),
  4021. name: "Feral",
  4022. image: {
  4023. source: "./media/characters/rain-fallen/feral.svg"
  4024. }
  4025. },
  4026. },
  4027. [
  4028. {
  4029. name: "Normal",
  4030. height: math.unit(5, "meter")
  4031. },
  4032. {
  4033. name: "Macro",
  4034. height: math.unit(150, "meter"),
  4035. default: true
  4036. },
  4037. {
  4038. name: "Megamacro",
  4039. height: math.unit(278e6, "meter")
  4040. },
  4041. {
  4042. name: "Gigamacro",
  4043. height: math.unit(2e9, "meter")
  4044. },
  4045. {
  4046. name: "Teramacro",
  4047. height: math.unit(8e12, "meter")
  4048. },
  4049. {
  4050. name: "Devourer",
  4051. height: math.unit(14, "zettameters")
  4052. },
  4053. {
  4054. name: "Scarlet King",
  4055. height: math.unit(18, "yottameters")
  4056. },
  4057. {
  4058. name: "Void",
  4059. height: math.unit(6.66e66, "yottameters")
  4060. }
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4065. {
  4066. standing: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(180, "lbs"),
  4069. name: "Standing",
  4070. image: {
  4071. source: "./media/characters/zaakira/standing.svg"
  4072. }
  4073. },
  4074. laying: {
  4075. height: math.unit(3, "feet"),
  4076. weight: math.unit(180, "lbs"),
  4077. name: "Laying",
  4078. image: {
  4079. source: "./media/characters/zaakira/laying.svg"
  4080. }
  4081. },
  4082. },
  4083. [
  4084. {
  4085. name: "Normal",
  4086. height: math.unit(12, "feet")
  4087. },
  4088. {
  4089. name: "Macro",
  4090. height: math.unit(279, "feet"),
  4091. default: true
  4092. }
  4093. ]
  4094. ))
  4095. characterMakers.push(() => makeCharacter(
  4096. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4097. {
  4098. front: {
  4099. height: math.unit(6, "feet"),
  4100. weight: math.unit(250, "lbs"),
  4101. name: "Front",
  4102. image: {
  4103. source: "./media/characters/sigvald/front.svg",
  4104. extra: 1000 / 850
  4105. }
  4106. },
  4107. back: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(250, "lbs"),
  4110. name: "Back",
  4111. image: {
  4112. source: "./media/characters/sigvald/back.svg"
  4113. }
  4114. },
  4115. },
  4116. [
  4117. {
  4118. name: "Normal",
  4119. height: math.unit(8, "feet")
  4120. },
  4121. {
  4122. name: "Large",
  4123. height: math.unit(12, "feet")
  4124. },
  4125. {
  4126. name: "Larger",
  4127. height: math.unit(20, "feet")
  4128. },
  4129. {
  4130. name: "Macro",
  4131. height: math.unit(150, "feet")
  4132. },
  4133. {
  4134. name: "Macro+",
  4135. height: math.unit(200, "feet"),
  4136. default: true
  4137. },
  4138. ]
  4139. ))
  4140. characterMakers.push(() => makeCharacter(
  4141. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4142. {
  4143. side: {
  4144. height: math.unit(12, "feet"),
  4145. weight: math.unit(2000, "kg"),
  4146. name: "Side",
  4147. image: {
  4148. source: "./media/characters/scott/side.svg",
  4149. extra: 754 / 724,
  4150. bottom: 0.069
  4151. }
  4152. },
  4153. upright: {
  4154. height: math.unit(12, "feet"),
  4155. weight: math.unit(2000, "kg"),
  4156. name: "Upright",
  4157. image: {
  4158. source: "./media/characters/scott/upright.svg",
  4159. extra: 3881 / 3722,
  4160. bottom: 0.05
  4161. }
  4162. },
  4163. },
  4164. [
  4165. {
  4166. name: "Normal",
  4167. height: math.unit(12, "feet"),
  4168. default: true
  4169. },
  4170. ]
  4171. ))
  4172. characterMakers.push(() => makeCharacter(
  4173. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4174. {
  4175. side: {
  4176. height: math.unit(8, "meters"),
  4177. weight: math.unit(84755, "lbs"),
  4178. name: "Side",
  4179. image: {
  4180. source: "./media/characters/tobias/side.svg",
  4181. extra: 1474 / 1096,
  4182. bottom: 38.9 / 1513.1235
  4183. }
  4184. },
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(8, "meters"),
  4190. default: true
  4191. },
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4196. {
  4197. front: {
  4198. height: math.unit(5.5, "feet"),
  4199. weight: math.unit(400, "lbs"),
  4200. name: "Front",
  4201. image: {
  4202. source: "./media/characters/kieran/front.svg",
  4203. extra: 2694 / 2364,
  4204. bottom: 217 / 2908
  4205. }
  4206. },
  4207. side: {
  4208. height: math.unit(5.5, "feet"),
  4209. weight: math.unit(400, "lbs"),
  4210. name: "Side",
  4211. image: {
  4212. source: "./media/characters/kieran/side.svg",
  4213. extra: 875 / 777,
  4214. bottom: 84.6 / 959
  4215. }
  4216. },
  4217. },
  4218. [
  4219. {
  4220. name: "Normal",
  4221. height: math.unit(5.5, "feet"),
  4222. default: true
  4223. },
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4228. {
  4229. side: {
  4230. height: math.unit(2, "meters"),
  4231. weight: math.unit(70, "kg"),
  4232. name: "Side",
  4233. image: {
  4234. source: "./media/characters/sanya/side.svg",
  4235. bottom: 0.02,
  4236. extra: 1.02
  4237. }
  4238. },
  4239. },
  4240. [
  4241. {
  4242. name: "Small",
  4243. height: math.unit(2, "meters")
  4244. },
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(3, "meters")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(16, "meters"),
  4252. default: true
  4253. },
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4258. {
  4259. front: {
  4260. height: math.unit(2, "meters"),
  4261. weight: math.unit(120, "kg"),
  4262. name: "Front",
  4263. image: {
  4264. source: "./media/characters/miranda/front.svg",
  4265. extra: 195/185,
  4266. bottom: 10.9/206.5
  4267. }
  4268. },
  4269. back: {
  4270. height: math.unit(2, "meters"),
  4271. weight: math.unit(120, "kg"),
  4272. name: "Back",
  4273. image: {
  4274. source: "./media/characters/miranda/back.svg",
  4275. extra: 201/193,
  4276. bottom: 2.3/203.7
  4277. }
  4278. },
  4279. },
  4280. [
  4281. {
  4282. name: "Normal",
  4283. height: math.unit(10, "feet"),
  4284. default: true
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "James", species: ["deer"], tags: ["anthro"] },
  4290. {
  4291. side: {
  4292. height: math.unit(2, "meters"),
  4293. weight: math.unit(100, "kg"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/james/front.svg",
  4297. extra: 10 / 8.5
  4298. }
  4299. },
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(8.5, "feet"),
  4305. default: true
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4311. {
  4312. side: {
  4313. height: math.unit(9.5, "feet"),
  4314. weight: math.unit(2500, "lbs"),
  4315. name: "Side",
  4316. image: {
  4317. source: "./media/characters/heather/side.svg"
  4318. }
  4319. },
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(9.5, "feet"),
  4325. default: true
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4331. {
  4332. side: {
  4333. height: math.unit(6.5, "feet"),
  4334. weight: math.unit(400, "lbs"),
  4335. name: "Side",
  4336. image: {
  4337. source: "./media/characters/lukas/side.svg",
  4338. extra: 7.25 / 6.5
  4339. }
  4340. },
  4341. },
  4342. [
  4343. {
  4344. name: "Normal",
  4345. height: math.unit(6.5, "feet"),
  4346. default: true
  4347. }
  4348. ]
  4349. ))
  4350. characterMakers.push(() => makeCharacter(
  4351. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4352. {
  4353. side: {
  4354. height: math.unit(5, "feet"),
  4355. weight: math.unit(3000, "lbs"),
  4356. name: "Side",
  4357. image: {
  4358. source: "./media/characters/louise/side.svg"
  4359. }
  4360. },
  4361. },
  4362. [
  4363. {
  4364. name: "Normal",
  4365. height: math.unit(5, "feet"),
  4366. default: true
  4367. }
  4368. ]
  4369. ))
  4370. characterMakers.push(() => makeCharacter(
  4371. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4372. {
  4373. side: {
  4374. height: math.unit(6, "feet"),
  4375. weight: math.unit(150, "lbs"),
  4376. name: "Side",
  4377. image: {
  4378. source: "./media/characters/ramona/side.svg"
  4379. }
  4380. },
  4381. },
  4382. [
  4383. {
  4384. name: "Normal",
  4385. height: math.unit(5.3, "meters"),
  4386. default: true
  4387. },
  4388. {
  4389. name: "Macro",
  4390. height: math.unit(20, "stories")
  4391. },
  4392. {
  4393. name: "Macro+",
  4394. height: math.unit(50, "stories")
  4395. },
  4396. ]
  4397. ))
  4398. characterMakers.push(() => makeCharacter(
  4399. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4400. {
  4401. standing: {
  4402. height: math.unit(5.75, "feet"),
  4403. weight: math.unit(160, "lbs"),
  4404. name: "Standing",
  4405. image: {
  4406. source: "./media/characters/deerpuff/standing.svg",
  4407. extra: 682 / 624
  4408. }
  4409. },
  4410. sitting: {
  4411. height: math.unit(5.75 / 1.79, "feet"),
  4412. weight: math.unit(160, "lbs"),
  4413. name: "Sitting",
  4414. image: {
  4415. source: "./media/characters/deerpuff/sitting.svg",
  4416. bottom: 44 / 400,
  4417. extra: 1
  4418. }
  4419. },
  4420. taurLaying: {
  4421. height: math.unit(6, "feet"),
  4422. weight: math.unit(400, "lbs"),
  4423. name: "Taur (Laying)",
  4424. image: {
  4425. source: "./media/characters/deerpuff/taur-laying.svg"
  4426. }
  4427. },
  4428. },
  4429. [
  4430. {
  4431. name: "Puffball",
  4432. height: math.unit(6, "inches")
  4433. },
  4434. {
  4435. name: "Normalpuff",
  4436. height: math.unit(5.75, "feet")
  4437. },
  4438. {
  4439. name: "Macropuff",
  4440. height: math.unit(1500, "feet"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Megapuff",
  4445. height: math.unit(500, "miles")
  4446. },
  4447. {
  4448. name: "Gigapuff",
  4449. height: math.unit(250000, "miles")
  4450. },
  4451. {
  4452. name: "Omegapuff",
  4453. height: math.unit(1000, "lightyears")
  4454. },
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4459. {
  4460. stomping: {
  4461. height: math.unit(6, "feet"),
  4462. weight: math.unit(170, "lbs"),
  4463. name: "Stomping",
  4464. image: {
  4465. source: "./media/characters/vivian/stomping.svg"
  4466. }
  4467. },
  4468. sitting: {
  4469. height: math.unit(6 / 1.75, "feet"),
  4470. weight: math.unit(170, "lbs"),
  4471. name: "Sitting",
  4472. image: {
  4473. source: "./media/characters/vivian/sitting.svg",
  4474. bottom: 1 / 6.4,
  4475. extra: 1,
  4476. }
  4477. },
  4478. },
  4479. [
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(7, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Macro",
  4487. height: math.unit(10, "stories")
  4488. },
  4489. {
  4490. name: "Macro+",
  4491. height: math.unit(30, "stories")
  4492. },
  4493. {
  4494. name: "Megamacro",
  4495. height: math.unit(10, "miles")
  4496. },
  4497. {
  4498. name: "Megamacro+",
  4499. height: math.unit(2750000, "meters")
  4500. },
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(160, "lbs"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/prince/front.svg",
  4512. extra: 3400 / 3000
  4513. }
  4514. },
  4515. jumping: {
  4516. height: math.unit(6, "feet"),
  4517. weight: math.unit(160, "lbs"),
  4518. name: "Jumping",
  4519. image: {
  4520. source: "./media/characters/prince/jump.svg",
  4521. extra: 2555 / 2134
  4522. }
  4523. },
  4524. },
  4525. [
  4526. {
  4527. name: "Normal",
  4528. height: math.unit(7.75, "feet"),
  4529. default: true
  4530. },
  4531. {
  4532. name: "Not cute",
  4533. height: math.unit(17, "feet")
  4534. },
  4535. {
  4536. name: "I said NOT",
  4537. height: math.unit(91, "feet")
  4538. },
  4539. {
  4540. name: "Please stop",
  4541. height: math.unit(560, "feet")
  4542. },
  4543. {
  4544. name: "What have you done",
  4545. height: math.unit(2200, "feet")
  4546. },
  4547. {
  4548. name: "Deer God",
  4549. height: math.unit(3.6, "miles")
  4550. },
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4555. {
  4556. standing: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(300, "lbs"),
  4559. name: "Standing",
  4560. image: {
  4561. source: "./media/characters/psymon/standing.svg",
  4562. extra: 1888 / 1810,
  4563. bottom: 0.05
  4564. }
  4565. },
  4566. slithering: {
  4567. height: math.unit(6, "feet"),
  4568. weight: math.unit(300, "lbs"),
  4569. name: "Slithering",
  4570. image: {
  4571. source: "./media/characters/psymon/slithering.svg",
  4572. extra: 1330 / 1224
  4573. }
  4574. },
  4575. slitheringAlt: {
  4576. height: math.unit(6, "feet"),
  4577. weight: math.unit(300, "lbs"),
  4578. name: "Slithering (Alt)",
  4579. image: {
  4580. source: "./media/characters/psymon/slithering-alt.svg",
  4581. extra: 1330 / 1224
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(11.25, "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Large",
  4593. height: math.unit(27, "feet")
  4594. },
  4595. {
  4596. name: "Giant",
  4597. height: math.unit(87, "feet")
  4598. },
  4599. {
  4600. name: "Macro",
  4601. height: math.unit(365, "feet")
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(3, "miles")
  4606. },
  4607. {
  4608. name: "World Serpent",
  4609. height: math.unit(8000, "miles")
  4610. },
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(6, "feet"),
  4618. weight: math.unit(180, "lbs"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/daimos/front.svg",
  4622. extra: 4160 / 3897,
  4623. bottom: 0.021
  4624. }
  4625. }
  4626. },
  4627. [
  4628. {
  4629. name: "Normal",
  4630. height: math.unit(8, "feet"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Big Dog",
  4635. height: math.unit(22, "feet")
  4636. },
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(127, "feet")
  4640. },
  4641. {
  4642. name: "Megamacro",
  4643. height: math.unit(3600, "feet")
  4644. },
  4645. ]
  4646. ))
  4647. characterMakers.push(() => makeCharacter(
  4648. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4649. {
  4650. side: {
  4651. height: math.unit(6, "feet"),
  4652. weight: math.unit(180, "lbs"),
  4653. name: "Side",
  4654. image: {
  4655. source: "./media/characters/blake/side.svg",
  4656. extra: 1212 / 1120,
  4657. bottom: 0.05
  4658. }
  4659. },
  4660. crouched: {
  4661. height: math.unit(6 * 0.57, "feet"),
  4662. weight: math.unit(180, "lbs"),
  4663. name: "Crouched",
  4664. image: {
  4665. source: "./media/characters/blake/crouched.svg",
  4666. extra: 840 / 587,
  4667. bottom: 0.04
  4668. }
  4669. },
  4670. bent: {
  4671. height: math.unit(6 * 0.75, "feet"),
  4672. weight: math.unit(180, "lbs"),
  4673. name: "Bent",
  4674. image: {
  4675. source: "./media/characters/blake/bent.svg",
  4676. extra: 592 / 544,
  4677. bottom: 0.035
  4678. }
  4679. },
  4680. },
  4681. [
  4682. {
  4683. name: "Normal",
  4684. height: math.unit(8 + 1 / 6, "feet"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Big Backside",
  4689. height: math.unit(37, "feet")
  4690. },
  4691. {
  4692. name: "Subway Shredder",
  4693. height: math.unit(72, "feet")
  4694. },
  4695. {
  4696. name: "City Carver",
  4697. height: math.unit(1675, "feet")
  4698. },
  4699. {
  4700. name: "Tectonic Tweaker",
  4701. height: math.unit(2300, "miles")
  4702. },
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4707. {
  4708. front: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(180, "lbs"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/guisetto/front.svg",
  4714. extra: 856 / 817,
  4715. bottom: 0.06
  4716. }
  4717. },
  4718. airborne: {
  4719. height: math.unit(6, "feet"),
  4720. weight: math.unit(180, "lbs"),
  4721. name: "Airborne",
  4722. image: {
  4723. source: "./media/characters/guisetto/airborne.svg",
  4724. extra: 584 / 525
  4725. }
  4726. },
  4727. },
  4728. [
  4729. {
  4730. name: "Normal",
  4731. height: math.unit(10 + 11 / 12, "feet"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Large",
  4736. height: math.unit(35, "feet")
  4737. },
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(475, "feet")
  4741. },
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(6, "feet"),
  4749. weight: math.unit(180, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/luxor/front.svg",
  4753. extra: 2940 / 2152
  4754. }
  4755. },
  4756. back: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(180, "lbs"),
  4759. name: "Back",
  4760. image: {
  4761. source: "./media/characters/luxor/back.svg",
  4762. extra: 1083 / 960
  4763. }
  4764. },
  4765. },
  4766. [
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(5 + 5 / 6, "feet"),
  4770. default: true
  4771. },
  4772. {
  4773. name: "Lamp",
  4774. height: math.unit(50, "feet")
  4775. },
  4776. {
  4777. name: "Lämp",
  4778. height: math.unit(300, "feet")
  4779. },
  4780. {
  4781. name: "The sun is a lamp",
  4782. height: math.unit(250000, "miles")
  4783. },
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4788. {
  4789. front: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(50, "lbs"),
  4792. name: "Front",
  4793. image: {
  4794. source: "./media/characters/huoyan/front.svg"
  4795. }
  4796. },
  4797. side: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(180, "lbs"),
  4800. name: "Side",
  4801. image: {
  4802. source: "./media/characters/huoyan/side.svg"
  4803. }
  4804. },
  4805. },
  4806. [
  4807. {
  4808. name: "Chef",
  4809. height: math.unit(9, "feet")
  4810. },
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(65, "feet"),
  4814. default: true
  4815. },
  4816. {
  4817. name: "Macro",
  4818. height: math.unit(780, "feet")
  4819. },
  4820. {
  4821. name: "Flaming Mountain",
  4822. height: math.unit(4.8, "miles")
  4823. },
  4824. {
  4825. name: "Celestial",
  4826. height: math.unit(765000, "miles")
  4827. },
  4828. ]
  4829. ))
  4830. characterMakers.push(() => makeCharacter(
  4831. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4832. {
  4833. front: {
  4834. height: math.unit(5 + 3 / 4, "feet"),
  4835. weight: math.unit(120, "lbs"),
  4836. name: "Front",
  4837. image: {
  4838. source: "./media/characters/tails/front.svg"
  4839. }
  4840. }
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(5 + 3 / 4, "feet"),
  4846. default: true
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4852. {
  4853. front: {
  4854. height: math.unit(4, "feet"),
  4855. weight: math.unit(50, "lbs"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/rainy/front.svg"
  4859. }
  4860. }
  4861. },
  4862. [
  4863. {
  4864. name: "Macro",
  4865. height: math.unit(800, "feet"),
  4866. default: true
  4867. }
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4872. {
  4873. front: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(150, "lbs"),
  4876. name: "Front",
  4877. image: {
  4878. source: "./media/characters/rainier/front.svg"
  4879. }
  4880. }
  4881. },
  4882. [
  4883. {
  4884. name: "Micro",
  4885. height: math.unit(2, "mm"),
  4886. default: true
  4887. }
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4892. {
  4893. front: {
  4894. height: math.unit(6, "feet"),
  4895. weight: math.unit(180, "lbs"),
  4896. name: "Front",
  4897. image: {
  4898. source: "./media/characters/andy/front.svg"
  4899. }
  4900. }
  4901. },
  4902. [
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(8, "feet"),
  4906. default: true
  4907. },
  4908. {
  4909. name: "Macro",
  4910. height: math.unit(1000, "feet")
  4911. },
  4912. {
  4913. name: "Megamacro",
  4914. height: math.unit(5, "miles")
  4915. },
  4916. {
  4917. name: "Gigamacro",
  4918. height: math.unit(5000, "miles")
  4919. },
  4920. ]
  4921. ))
  4922. characterMakers.push(() => makeCharacter(
  4923. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4924. {
  4925. front: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(210, "lbs"),
  4928. name: "Front",
  4929. image: {
  4930. source: "./media/characters/cimmaron/front-sfw.svg",
  4931. extra: 701 / 676,
  4932. bottom: 0.046
  4933. }
  4934. },
  4935. back: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(210, "lbs"),
  4938. name: "Back",
  4939. image: {
  4940. source: "./media/characters/cimmaron/back-sfw.svg",
  4941. extra: 701 / 676,
  4942. bottom: 0.046
  4943. }
  4944. },
  4945. frontNsfw: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(210, "lbs"),
  4948. name: "Front (NSFW)",
  4949. image: {
  4950. source: "./media/characters/cimmaron/front-nsfw.svg",
  4951. extra: 701 / 676,
  4952. bottom: 0.046
  4953. }
  4954. },
  4955. backNsfw: {
  4956. height: math.unit(6, "feet"),
  4957. weight: math.unit(210, "lbs"),
  4958. name: "Back (NSFW)",
  4959. image: {
  4960. source: "./media/characters/cimmaron/back-nsfw.svg",
  4961. extra: 701 / 676,
  4962. bottom: 0.046
  4963. }
  4964. },
  4965. dick: {
  4966. height: math.unit(1.714, "feet"),
  4967. name: "Dick",
  4968. image: {
  4969. source: "./media/characters/cimmaron/dick.svg"
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(6, "feet"),
  4977. default: true
  4978. },
  4979. {
  4980. name: "Macro Mayor",
  4981. height: math.unit(350, "meters")
  4982. },
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4987. {
  4988. front: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(200, "lbs"),
  4991. name: "Front",
  4992. image: {
  4993. source: "./media/characters/akari/front.svg",
  4994. extra: 962 / 901,
  4995. bottom: 0.04
  4996. }
  4997. }
  4998. },
  4999. [
  5000. {
  5001. name: "Micro",
  5002. height: math.unit(5, "inches"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Normal",
  5007. height: math.unit(7, "feet")
  5008. },
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(140, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/cynosura/front.svg",
  5020. extra: 896 / 847
  5021. }
  5022. },
  5023. back: {
  5024. height: math.unit(6, "feet"),
  5025. weight: math.unit(140, "lbs"),
  5026. name: "Back",
  5027. image: {
  5028. source: "./media/characters/cynosura/back.svg",
  5029. extra: 1365 / 1250
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Micro",
  5036. height: math.unit(4, "inches")
  5037. },
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5.75, "feet"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Tall",
  5045. height: math.unit(10, "feet")
  5046. },
  5047. {
  5048. name: "Big",
  5049. height: math.unit(20, "feet")
  5050. },
  5051. {
  5052. name: "Macro",
  5053. height: math.unit(50, "feet")
  5054. },
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5059. {
  5060. front: {
  5061. height: math.unit(6, "feet"),
  5062. weight: math.unit(170, "lbs"),
  5063. name: "Front",
  5064. image: {
  5065. source: "./media/characters/gin/front.svg",
  5066. extra: 1.053,
  5067. bottom: 0.025
  5068. }
  5069. },
  5070. foot: {
  5071. height: math.unit(6 / 4.25, "feet"),
  5072. name: "Foot",
  5073. image: {
  5074. source: "./media/characters/gin/foot.svg"
  5075. }
  5076. },
  5077. sole: {
  5078. height: math.unit(6 / 4.40, "feet"),
  5079. name: "Sole",
  5080. image: {
  5081. source: "./media/characters/gin/sole.svg"
  5082. }
  5083. },
  5084. },
  5085. [
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(13 + 2 / 12, "feet")
  5089. },
  5090. {
  5091. name: "Macro",
  5092. height: math.unit(1500, "feet")
  5093. },
  5094. {
  5095. name: "Megamacro",
  5096. height: math.unit(200, "miles"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "Gigamacro",
  5101. height: math.unit(500, "megameters")
  5102. },
  5103. {
  5104. name: "Teramacro",
  5105. height: math.unit(15, "lightyears")
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(6 + 1 / 6, "feet"),
  5114. weight: math.unit(178, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/guy/front.svg"
  5118. }
  5119. }
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(6 + 1 / 6, "feet"),
  5125. default: true
  5126. },
  5127. {
  5128. name: "Large",
  5129. height: math.unit(25 + 7 / 12, "feet")
  5130. },
  5131. {
  5132. name: "Macro",
  5133. height: math.unit(60 + 9 / 12, "feet")
  5134. },
  5135. {
  5136. name: "Macro+",
  5137. height: math.unit(246, "feet")
  5138. },
  5139. {
  5140. name: "Macro++",
  5141. height: math.unit(878, "feet")
  5142. }
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5147. {
  5148. front: {
  5149. height: math.unit(9, "feet"),
  5150. weight: math.unit(800, "lbs"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/tiberius/front.svg",
  5154. extra: 2295 / 2071
  5155. }
  5156. },
  5157. back: {
  5158. height: math.unit(9, "feet"),
  5159. weight: math.unit(800, "lbs"),
  5160. name: "Back",
  5161. image: {
  5162. source: "./media/characters/tiberius/back.svg",
  5163. extra: 2373 / 2160
  5164. }
  5165. },
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(9, "feet"),
  5171. default: true
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5177. {
  5178. front: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(600, "lbs"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/surgo/front.svg",
  5184. extra: 3591 / 2227
  5185. }
  5186. },
  5187. back: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(600, "lbs"),
  5190. name: "Back",
  5191. image: {
  5192. source: "./media/characters/surgo/back.svg",
  5193. extra: 3557 / 2228
  5194. }
  5195. },
  5196. laying: {
  5197. height: math.unit(6 * 0.85, "feet"),
  5198. weight: math.unit(600, "lbs"),
  5199. name: "Laying",
  5200. image: {
  5201. source: "./media/characters/surgo/laying.svg"
  5202. }
  5203. },
  5204. },
  5205. [
  5206. {
  5207. name: "Normal",
  5208. height: math.unit(6, "feet"),
  5209. default: true
  5210. }
  5211. ]
  5212. ))
  5213. characterMakers.push(() => makeCharacter(
  5214. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5215. {
  5216. side: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(150, "lbs"),
  5219. name: "Side",
  5220. image: {
  5221. source: "./media/characters/cibus/side.svg",
  5222. extra: 800 / 400
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(6, "feet"),
  5230. default: true
  5231. }
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(240, "lbs"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/nibbles/front.svg"
  5243. }
  5244. },
  5245. side: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(240, "lbs"),
  5248. name: "Side",
  5249. image: {
  5250. source: "./media/characters/nibbles/side.svg"
  5251. }
  5252. },
  5253. },
  5254. [
  5255. {
  5256. name: "Normal",
  5257. height: math.unit(9, "feet"),
  5258. default: true
  5259. }
  5260. ]
  5261. ))
  5262. characterMakers.push(() => makeCharacter(
  5263. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5264. {
  5265. side: {
  5266. height: math.unit(5 + 1 / 6, "feet"),
  5267. weight: math.unit(130, "lbs"),
  5268. name: "Side",
  5269. image: {
  5270. source: "./media/characters/rikky/side.svg"
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(5 + 1 / 6, "feet")
  5278. },
  5279. {
  5280. name: "Macro",
  5281. height: math.unit(152, "feet"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Megamacro",
  5286. height: math.unit(7, "miles")
  5287. }
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5292. {
  5293. side: {
  5294. height: math.unit(370, "cm"),
  5295. weight: math.unit(350, "lbs"),
  5296. name: "Side",
  5297. image: {
  5298. source: "./media/characters/malfressa/side.svg"
  5299. }
  5300. },
  5301. walking: {
  5302. height: math.unit(370, "cm"),
  5303. weight: math.unit(350, "lbs"),
  5304. name: "Walking",
  5305. image: {
  5306. source: "./media/characters/malfressa/walking.svg"
  5307. }
  5308. },
  5309. feral: {
  5310. height: math.unit(2500, "cm"),
  5311. weight: math.unit(100000, "lbs"),
  5312. name: "Feral",
  5313. image: {
  5314. source: "./media/characters/malfressa/feral.svg",
  5315. extra: 2108 / 837,
  5316. bottom: 0.02
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(370, "cm")
  5324. },
  5325. {
  5326. name: "Macro",
  5327. height: math.unit(300, "meters"),
  5328. default: true
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(60, "kg"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/jaro/front.svg"
  5341. }
  5342. },
  5343. back: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(60, "kg"),
  5346. name: "Back",
  5347. image: {
  5348. source: "./media/characters/jaro/back.svg"
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Micro",
  5355. height: math.unit(7, "inches")
  5356. },
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(5.5, "feet"),
  5360. default: true
  5361. },
  5362. {
  5363. name: "Minimacro",
  5364. height: math.unit(20, "feet")
  5365. },
  5366. {
  5367. name: "Macro",
  5368. height: math.unit(200, "meters")
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5374. {
  5375. front: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(195, "lb"),
  5378. name: "Front",
  5379. image: {
  5380. source: "./media/characters/rogue/front.svg"
  5381. }
  5382. },
  5383. },
  5384. [
  5385. {
  5386. name: "Macro",
  5387. height: math.unit(90, "feet"),
  5388. default: true
  5389. },
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5394. {
  5395. front: {
  5396. height: math.unit(5 + 8 / 12, "feet"),
  5397. weight: math.unit(140, "lb"),
  5398. name: "Front",
  5399. image: {
  5400. source: "./media/characters/piper/front.svg",
  5401. extra: 3928 / 3681
  5402. }
  5403. },
  5404. },
  5405. [
  5406. {
  5407. name: "Micro",
  5408. height: math.unit(2, "inches")
  5409. },
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(5 + 8 / 12, "feet")
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(250, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Megamacro",
  5421. height: math.unit(7, "miles")
  5422. },
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(220, "lb"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/gemini/front.svg"
  5434. }
  5435. },
  5436. back: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(220, "lb"),
  5439. name: "Back",
  5440. image: {
  5441. source: "./media/characters/gemini/back.svg"
  5442. }
  5443. },
  5444. kneeling: {
  5445. height: math.unit(6 / 1.5, "feet"),
  5446. weight: math.unit(220, "lb"),
  5447. name: "Kneeling",
  5448. image: {
  5449. source: "./media/characters/gemini/kneeling.svg",
  5450. bottom: 0.02
  5451. }
  5452. },
  5453. },
  5454. [
  5455. {
  5456. name: "Macro",
  5457. height: math.unit(300, "meters"),
  5458. default: true
  5459. },
  5460. {
  5461. name: "Megamacro",
  5462. height: math.unit(6900, "meters")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5468. {
  5469. anthro: {
  5470. height: math.unit(2.35, "meters"),
  5471. weight: math.unit(73, "kg"),
  5472. name: "Anthro",
  5473. image: {
  5474. source: "./media/characters/alicia/anthro.svg",
  5475. extra: 2571 / 2385,
  5476. bottom: 75 / 2648
  5477. }
  5478. },
  5479. paw: {
  5480. height: math.unit(1.32, "feet"),
  5481. name: "Paw",
  5482. image: {
  5483. source: "./media/characters/alicia/paw.svg"
  5484. }
  5485. },
  5486. feral: {
  5487. height: math.unit(1.69, "meters"),
  5488. weight: math.unit(73, "kg"),
  5489. name: "Feral",
  5490. image: {
  5491. source: "./media/characters/alicia/feral.svg",
  5492. extra: 2123 / 1715,
  5493. bottom: 222 / 2349
  5494. }
  5495. },
  5496. },
  5497. [
  5498. {
  5499. name: "Normal",
  5500. height: math.unit(2.35, "meters")
  5501. },
  5502. {
  5503. name: "Macro",
  5504. height: math.unit(60, "meters"),
  5505. default: true
  5506. },
  5507. {
  5508. name: "Megamacro",
  5509. height: math.unit(10000, "kilometers")
  5510. },
  5511. ]
  5512. ))
  5513. characterMakers.push(() => makeCharacter(
  5514. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5515. {
  5516. front: {
  5517. height: math.unit(7, "feet"),
  5518. weight: math.unit(250, "lbs"),
  5519. name: "Front",
  5520. image: {
  5521. source: "./media/characters/archy/front.svg"
  5522. }
  5523. }
  5524. },
  5525. [
  5526. {
  5527. name: "Micro",
  5528. height: math.unit(1, "inch")
  5529. },
  5530. {
  5531. name: "Shorty",
  5532. height: math.unit(5, "feet")
  5533. },
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(7, "feet")
  5537. },
  5538. {
  5539. name: "Macro",
  5540. height: math.unit(600, "meters"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Megamacro",
  5545. height: math.unit(1, "mile")
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(1.65, "meters"),
  5554. weight: math.unit(74, "kg"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/berri/front.svg",
  5558. extra: 857 / 837,
  5559. bottom: 18 / 877
  5560. }
  5561. },
  5562. bum: {
  5563. height: math.unit(1.46, "feet"),
  5564. name: "Bum",
  5565. image: {
  5566. source: "./media/characters/berri/bum.svg"
  5567. }
  5568. },
  5569. mouth: {
  5570. height: math.unit(0.44, "feet"),
  5571. name: "Mouth",
  5572. image: {
  5573. source: "./media/characters/berri/mouth.svg"
  5574. }
  5575. },
  5576. paw: {
  5577. height: math.unit(0.826, "feet"),
  5578. name: "Paw",
  5579. image: {
  5580. source: "./media/characters/berri/paw.svg"
  5581. }
  5582. },
  5583. },
  5584. [
  5585. {
  5586. name: "Normal",
  5587. height: math.unit(1.65, "meters")
  5588. },
  5589. {
  5590. name: "Macro",
  5591. height: math.unit(60, "m"),
  5592. default: true
  5593. },
  5594. {
  5595. name: "Megamacro",
  5596. height: math.unit(9.213, "km")
  5597. },
  5598. {
  5599. name: "Planet Eater",
  5600. height: math.unit(489, "megameters")
  5601. },
  5602. {
  5603. name: "Teramacro",
  5604. height: math.unit(2471635000000, "meters")
  5605. },
  5606. {
  5607. name: "Examacro",
  5608. height: math.unit(8.0624e+26, "meters")
  5609. }
  5610. ]
  5611. ))
  5612. characterMakers.push(() => makeCharacter(
  5613. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5614. {
  5615. front: {
  5616. height: math.unit(1.72, "meters"),
  5617. weight: math.unit(68, "kg"),
  5618. name: "Front",
  5619. image: {
  5620. source: "./media/characters/lexi/front.svg"
  5621. }
  5622. }
  5623. },
  5624. [
  5625. {
  5626. name: "Very Smol",
  5627. height: math.unit(10, "mm")
  5628. },
  5629. {
  5630. name: "Micro",
  5631. height: math.unit(6.8, "cm"),
  5632. default: true
  5633. },
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(1.72, "m")
  5637. }
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(1.69, "meters"),
  5645. weight: math.unit(68, "kg"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/martin/front.svg",
  5649. extra: 596 / 581
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Micro",
  5656. height: math.unit(6.85, "cm"),
  5657. default: true
  5658. },
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(1.69, "m")
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(1.69, "meters"),
  5670. weight: math.unit(68, "kg"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/juno/front.svg"
  5674. }
  5675. }
  5676. },
  5677. [
  5678. {
  5679. name: "Micro",
  5680. height: math.unit(7, "cm")
  5681. },
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(1.89, "m")
  5685. },
  5686. {
  5687. name: "Macro",
  5688. height: math.unit(353, "meters"),
  5689. default: true
  5690. }
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5695. {
  5696. front: {
  5697. height: math.unit(1.93, "meters"),
  5698. weight: math.unit(83, "kg"),
  5699. name: "Front",
  5700. image: {
  5701. source: "./media/characters/samantha/front.svg"
  5702. }
  5703. },
  5704. frontClothed: {
  5705. height: math.unit(1.93, "meters"),
  5706. weight: math.unit(83, "kg"),
  5707. name: "Front (Clothed)",
  5708. image: {
  5709. source: "./media/characters/samantha/front-clothed.svg"
  5710. }
  5711. },
  5712. back: {
  5713. height: math.unit(1.93, "meters"),
  5714. weight: math.unit(83, "kg"),
  5715. name: "Back",
  5716. image: {
  5717. source: "./media/characters/samantha/back.svg"
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(1.93, "m")
  5725. },
  5726. {
  5727. name: "Macro",
  5728. height: math.unit(74, "meters"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Macro+",
  5733. height: math.unit(223, "meters"),
  5734. },
  5735. {
  5736. name: "Megamacro",
  5737. height: math.unit(8381, "meters"),
  5738. },
  5739. {
  5740. name: "Megamacro+",
  5741. height: math.unit(12000, "kilometers")
  5742. },
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5747. {
  5748. front: {
  5749. height: math.unit(1.92, "meters"),
  5750. weight: math.unit(80, "kg"),
  5751. name: "Front",
  5752. image: {
  5753. source: "./media/characters/dr-clay/front.svg"
  5754. }
  5755. },
  5756. frontClothed: {
  5757. height: math.unit(1.92, "meters"),
  5758. weight: math.unit(80, "kg"),
  5759. name: "Front (Clothed)",
  5760. image: {
  5761. source: "./media/characters/dr-clay/front-clothed.svg"
  5762. }
  5763. }
  5764. },
  5765. [
  5766. {
  5767. name: "Normal",
  5768. height: math.unit(1.92, "m")
  5769. },
  5770. {
  5771. name: "Macro",
  5772. height: math.unit(214, "meters"),
  5773. default: true
  5774. },
  5775. {
  5776. name: "Macro+",
  5777. height: math.unit(12.237, "meters"),
  5778. },
  5779. {
  5780. name: "Megamacro",
  5781. height: math.unit(557, "megameters"),
  5782. },
  5783. {
  5784. name: "Unimaginable",
  5785. height: math.unit(120e9, "lightyears")
  5786. },
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5791. {
  5792. front: {
  5793. height: math.unit(2, "meters"),
  5794. weight: math.unit(80, "kg"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5798. }
  5799. }
  5800. },
  5801. [
  5802. {
  5803. name: "Teramacro",
  5804. height: math.unit(500000, "lightyears"),
  5805. default: true
  5806. },
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(2, "meters"),
  5814. weight: math.unit(150, "kg"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/vemus/front.svg",
  5818. extra: 2384 / 2084,
  5819. bottom: 0.0123
  5820. }
  5821. }
  5822. },
  5823. [
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(3.75, "meters"),
  5827. default: true
  5828. },
  5829. {
  5830. name: "Big",
  5831. height: math.unit(8, "meters")
  5832. },
  5833. {
  5834. name: "Macro",
  5835. height: math.unit(100, "meters")
  5836. },
  5837. {
  5838. name: "Macro+",
  5839. height: math.unit(1500, "meters")
  5840. },
  5841. {
  5842. name: "Stellar",
  5843. height: math.unit(14e8, "meters")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5849. {
  5850. front: {
  5851. height: math.unit(2, "meters"),
  5852. weight: math.unit(70, "kg"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/beherit/front.svg",
  5856. extra: 1408 / 1242
  5857. }
  5858. }
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(6, "feet")
  5864. },
  5865. {
  5866. name: "Lorg",
  5867. height: math.unit(25, "feet"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Lorger",
  5872. height: math.unit(75, "feet")
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(200, "meters")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5882. {
  5883. front: {
  5884. height: math.unit(2, "meters"),
  5885. weight: math.unit(150, "kg"),
  5886. name: "Front",
  5887. image: {
  5888. source: "./media/characters/everett/front.svg",
  5889. extra: 2038 / 1737,
  5890. bottom: 0.03
  5891. }
  5892. },
  5893. paw: {
  5894. height: math.unit(2 / 3.6, "meters"),
  5895. name: "Paw",
  5896. image: {
  5897. source: "./media/characters/everett/paw.svg"
  5898. }
  5899. },
  5900. },
  5901. [
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(15, "feet"),
  5905. default: true
  5906. },
  5907. {
  5908. name: "Lorg",
  5909. height: math.unit(70, "feet"),
  5910. default: true
  5911. },
  5912. {
  5913. name: "Lorger",
  5914. height: math.unit(250, "feet")
  5915. },
  5916. {
  5917. name: "Macro",
  5918. height: math.unit(500, "meters")
  5919. },
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5924. {
  5925. front: {
  5926. height: math.unit(2, "meters"),
  5927. weight: math.unit(86, "kg"),
  5928. name: "Front",
  5929. image: {
  5930. source: "./media/characters/rose-lion/front.svg"
  5931. }
  5932. },
  5933. bent: {
  5934. height: math.unit(2 / 1.4288, "meters"),
  5935. weight: math.unit(86, "kg"),
  5936. name: "Bent",
  5937. image: {
  5938. source: "./media/characters/rose-lion/bent.svg"
  5939. }
  5940. }
  5941. },
  5942. [
  5943. {
  5944. name: "Mini-Micro",
  5945. height: math.unit(1, "cm")
  5946. },
  5947. {
  5948. name: "Micro",
  5949. height: math.unit(3.5, "inches"),
  5950. default: true
  5951. },
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(6 + 1 / 6, "feet")
  5955. },
  5956. {
  5957. name: "Mini-Macro",
  5958. height: math.unit(9 + 10 / 12, "feet")
  5959. },
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5964. {
  5965. front: {
  5966. height: math.unit(2, "meters"),
  5967. weight: math.unit(350, "lbs"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/regal/front.svg"
  5971. }
  5972. },
  5973. back: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(350, "lbs"),
  5976. name: "Back",
  5977. image: {
  5978. source: "./media/characters/regal/back.svg"
  5979. }
  5980. },
  5981. },
  5982. [
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(350, "feet"),
  5986. default: true
  5987. }
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5992. {
  5993. front: {
  5994. height: math.unit(4 + 11 / 12, "feet"),
  5995. weight: math.unit(100, "lbs"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/opal/front.svg"
  5999. }
  6000. },
  6001. frontAlt: {
  6002. height: math.unit(4 + 11 / 12, "feet"),
  6003. weight: math.unit(100, "lbs"),
  6004. name: "Front (Alt)",
  6005. image: {
  6006. source: "./media/characters/opal/front-alt.svg"
  6007. }
  6008. },
  6009. },
  6010. [
  6011. {
  6012. name: "Small",
  6013. height: math.unit(4 + 11 / 12, "feet")
  6014. },
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(20, "feet"),
  6018. default: true
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(120, "feet")
  6023. },
  6024. {
  6025. name: "Megamacro",
  6026. height: math.unit(80, "miles")
  6027. },
  6028. {
  6029. name: "True Size",
  6030. height: math.unit(100000, "lightyears")
  6031. },
  6032. ]
  6033. ))
  6034. characterMakers.push(() => makeCharacter(
  6035. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6036. {
  6037. front: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(200, "lbs"),
  6040. name: "Front",
  6041. image: {
  6042. source: "./media/characters/vector-wuff/front.svg"
  6043. }
  6044. }
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(2.8, "meters")
  6050. },
  6051. {
  6052. name: "Macro",
  6053. height: math.unit(450, "meters"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Megamacro",
  6058. height: math.unit(15, "kilometers")
  6059. }
  6060. ]
  6061. ))
  6062. characterMakers.push(() => makeCharacter(
  6063. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6064. {
  6065. front: {
  6066. height: math.unit(6, "feet"),
  6067. weight: math.unit(256, "lbs"),
  6068. name: "Front",
  6069. image: {
  6070. source: "./media/characters/dannik/front.svg"
  6071. }
  6072. }
  6073. },
  6074. [
  6075. {
  6076. name: "Macro",
  6077. height: math.unit(69.57, "meters"),
  6078. default: true
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(120, "lbs"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/azura-saharah/front.svg"
  6091. }
  6092. },
  6093. back: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(120, "lbs"),
  6096. name: "Back",
  6097. image: {
  6098. source: "./media/characters/azura-saharah/back.svg"
  6099. }
  6100. },
  6101. },
  6102. [
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(100, "feet"),
  6106. default: true
  6107. },
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6112. {
  6113. side: {
  6114. height: math.unit(5 + 4 / 12, "feet"),
  6115. weight: math.unit(163, "lbs"),
  6116. name: "Side",
  6117. image: {
  6118. source: "./media/characters/kennedy/side.svg"
  6119. }
  6120. }
  6121. },
  6122. [
  6123. {
  6124. name: "Standard Doggo",
  6125. height: math.unit(5 + 4 / 12, "feet")
  6126. },
  6127. {
  6128. name: "Big Doggo",
  6129. height: math.unit(25 + 3 / 12, "feet"),
  6130. default: true
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6136. {
  6137. front: {
  6138. height: math.unit(6, "feet"),
  6139. weight: math.unit(90, "lbs"),
  6140. name: "Front",
  6141. image: {
  6142. source: "./media/characters/odi-lunar/front.svg"
  6143. }
  6144. }
  6145. },
  6146. [
  6147. {
  6148. name: "Micro",
  6149. height: math.unit(3, "inches"),
  6150. default: true
  6151. },
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(5.5, "feet")
  6155. }
  6156. ]
  6157. ))
  6158. characterMakers.push(() => makeCharacter(
  6159. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6160. {
  6161. back: {
  6162. height: math.unit(6, "feet"),
  6163. weight: math.unit(220, "lbs"),
  6164. name: "Back",
  6165. image: {
  6166. source: "./media/characters/mandake/back.svg"
  6167. }
  6168. }
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(7, "feet"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Macro",
  6178. height: math.unit(78, "feet")
  6179. },
  6180. {
  6181. name: "Macro+",
  6182. height: math.unit(300, "meters")
  6183. },
  6184. {
  6185. name: "Macro++",
  6186. height: math.unit(2400, "feet")
  6187. },
  6188. {
  6189. name: "Megamacro",
  6190. height: math.unit(5167, "meters")
  6191. },
  6192. {
  6193. name: "Gigamacro",
  6194. height: math.unit(41769, "miles")
  6195. },
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6200. {
  6201. front: {
  6202. height: math.unit(6, "feet"),
  6203. weight: math.unit(120, "lbs"),
  6204. name: "Front",
  6205. image: {
  6206. source: "./media/characters/yozey/front.svg"
  6207. }
  6208. },
  6209. frontAlt: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(120, "lbs"),
  6212. name: "Front (Alt)",
  6213. image: {
  6214. source: "./media/characters/yozey/front-alt.svg"
  6215. }
  6216. },
  6217. side: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(120, "lbs"),
  6220. name: "Side",
  6221. image: {
  6222. source: "./media/characters/yozey/side.svg"
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Micro",
  6229. height: math.unit(3, "inches"),
  6230. default: true
  6231. },
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(6, "feet")
  6235. }
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6240. {
  6241. front: {
  6242. height: math.unit(6, "feet"),
  6243. weight: math.unit(103, "lbs"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/valeska-voss/front.svg"
  6247. }
  6248. }
  6249. },
  6250. [
  6251. {
  6252. name: "Mini-Sized Sub",
  6253. height: math.unit(3.1, "inches")
  6254. },
  6255. {
  6256. name: "Mid-Sized Sub",
  6257. height: math.unit(6.2, "inches")
  6258. },
  6259. {
  6260. name: "Full-Sized Sub",
  6261. height: math.unit(9.3, "inches")
  6262. },
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(5 + 2 / 12, "foot"),
  6266. default: true
  6267. },
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6272. {
  6273. front: {
  6274. height: math.unit(6, "feet"),
  6275. weight: math.unit(160, "lbs"),
  6276. name: "Front",
  6277. image: {
  6278. source: "./media/characters/gene-zeta/front.svg",
  6279. bottom: 0.03,
  6280. extra: 1
  6281. }
  6282. }
  6283. },
  6284. [
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(6.25, "foot"),
  6288. default: true
  6289. },
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6294. {
  6295. front: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(350, "lbs"),
  6298. name: "Front",
  6299. image: {
  6300. source: "./media/characters/razinox/front.svg",
  6301. extra: 1686 / 1548,
  6302. bottom: 28.2 / 1868
  6303. }
  6304. },
  6305. back: {
  6306. height: math.unit(6, "feet"),
  6307. weight: math.unit(350, "lbs"),
  6308. name: "Back",
  6309. image: {
  6310. source: "./media/characters/razinox/back.svg",
  6311. extra: 1660 / 1590,
  6312. bottom: 15 / 1665
  6313. }
  6314. },
  6315. },
  6316. [
  6317. {
  6318. name: "Normal",
  6319. height: math.unit(10 + 8 / 12, "foot")
  6320. },
  6321. {
  6322. name: "Minimacro",
  6323. height: math.unit(15, "foot")
  6324. },
  6325. {
  6326. name: "Macro",
  6327. height: math.unit(60, "foot"),
  6328. default: true
  6329. },
  6330. {
  6331. name: "Megamacro",
  6332. height: math.unit(5, "miles")
  6333. },
  6334. {
  6335. name: "Gigamacro",
  6336. height: math.unit(6000, "miles")
  6337. },
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6342. {
  6343. front: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(150, "lbs"),
  6346. name: "Front",
  6347. image: {
  6348. source: "./media/characters/cobalt/front.svg"
  6349. }
  6350. }
  6351. },
  6352. [
  6353. {
  6354. name: "Normal",
  6355. height: math.unit(8 + 1 / 12, "foot")
  6356. },
  6357. {
  6358. name: "Macro",
  6359. height: math.unit(111, "foot"),
  6360. default: true
  6361. },
  6362. {
  6363. name: "Supracosmic",
  6364. height: math.unit(1e42, "feet")
  6365. },
  6366. ]
  6367. ))
  6368. characterMakers.push(() => makeCharacter(
  6369. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6370. {
  6371. front: {
  6372. height: math.unit(6, "feet"),
  6373. weight: math.unit(140, "lbs"),
  6374. name: "Front",
  6375. image: {
  6376. source: "./media/characters/amanda/front.svg"
  6377. }
  6378. }
  6379. },
  6380. [
  6381. {
  6382. name: "Micro",
  6383. height: math.unit(5, "inches"),
  6384. default: true
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(5.59, "feet"),
  6393. weight: math.unit(250, "lbs"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/teal/front.svg"
  6397. }
  6398. },
  6399. frontAlt: {
  6400. height: math.unit(6, "feet"),
  6401. weight: math.unit(250, "lbs"),
  6402. name: "Front (Alt)",
  6403. image: {
  6404. source: "./media/characters/teal/front-alt.svg",
  6405. bottom: 0.04,
  6406. extra: 1
  6407. }
  6408. },
  6409. },
  6410. [
  6411. {
  6412. name: "Normal",
  6413. height: math.unit(12, "feet"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(300, "feet")
  6419. },
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6424. {
  6425. frontCat: {
  6426. height: math.unit(6, "feet"),
  6427. weight: math.unit(180, "lbs"),
  6428. name: "Front (Cat)",
  6429. image: {
  6430. source: "./media/characters/ravin-amulet/front-cat.svg"
  6431. }
  6432. },
  6433. frontCatAlt: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(180, "lbs"),
  6436. name: "Front (Alt, Cat)",
  6437. image: {
  6438. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6439. }
  6440. },
  6441. frontWerewolf: {
  6442. height: math.unit(6 * 1.2, "feet"),
  6443. weight: math.unit(225, "lbs"),
  6444. name: "Front (Werewolf)",
  6445. image: {
  6446. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6447. }
  6448. },
  6449. backWerewolf: {
  6450. height: math.unit(6 * 1.2, "feet"),
  6451. weight: math.unit(225, "lbs"),
  6452. name: "Back (Werewolf)",
  6453. image: {
  6454. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Nano",
  6461. height: math.unit(1, "micrometer")
  6462. },
  6463. {
  6464. name: "Micro",
  6465. height: math.unit(1, "inch")
  6466. },
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(6, "feet"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(60, "feet")
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(165, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/fluoresce/front.svg"
  6487. }
  6488. }
  6489. },
  6490. [
  6491. {
  6492. name: "Micro",
  6493. height: math.unit(6, "cm")
  6494. },
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(5 + 7 / 12, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(56, "feet")
  6503. },
  6504. {
  6505. name: "Megamacro",
  6506. height: math.unit(1.9, "miles")
  6507. },
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(9 + 6 / 12, "feet"),
  6515. weight: math.unit(523, "lbs"),
  6516. name: "Side",
  6517. image: {
  6518. source: "./media/characters/aurora/side.svg"
  6519. }
  6520. }
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(9 + 6 / 12, "feet")
  6526. },
  6527. {
  6528. name: "Macro",
  6529. height: math.unit(96, "feet"),
  6530. default: true
  6531. },
  6532. {
  6533. name: "Macro+",
  6534. height: math.unit(243, "feet")
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(194, "cm"),
  6543. weight: math.unit(90, "kg"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/ranek/front.svg"
  6547. }
  6548. },
  6549. side: {
  6550. height: math.unit(194, "cm"),
  6551. weight: math.unit(90, "kg"),
  6552. name: "Side",
  6553. image: {
  6554. source: "./media/characters/ranek/side.svg"
  6555. }
  6556. },
  6557. back: {
  6558. height: math.unit(194, "cm"),
  6559. weight: math.unit(90, "kg"),
  6560. name: "Back",
  6561. image: {
  6562. source: "./media/characters/ranek/back.svg"
  6563. }
  6564. },
  6565. feral: {
  6566. height: math.unit(30, "cm"),
  6567. weight: math.unit(1.6, "lbs"),
  6568. name: "Feral",
  6569. image: {
  6570. source: "./media/characters/ranek/feral.svg"
  6571. }
  6572. },
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(194, "cm"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Macro",
  6582. height: math.unit(100, "meters")
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(5 + 6 / 12, "feet"),
  6591. weight: math.unit(153, "lbs"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/andrew-cooper/front.svg"
  6595. }
  6596. },
  6597. },
  6598. [
  6599. {
  6600. name: "Nano",
  6601. height: math.unit(1, "mm")
  6602. },
  6603. {
  6604. name: "Micro",
  6605. height: math.unit(2, "inches")
  6606. },
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(5 + 6 / 12, "feet"),
  6610. default: true
  6611. }
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(180, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/akane-sato/front.svg",
  6623. extra: 1219 / 1140
  6624. }
  6625. },
  6626. back: {
  6627. height: math.unit(6, "feet"),
  6628. weight: math.unit(180, "lbs"),
  6629. name: "Back",
  6630. image: {
  6631. source: "./media/characters/akane-sato/back.svg",
  6632. extra: 1219 / 1170
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(2.5, "meters")
  6640. },
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(250, "meters"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Megamacro",
  6648. height: math.unit(25, "km")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(65, "kg"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/rook/front.svg",
  6661. extra: 960 / 950
  6662. }
  6663. }
  6664. },
  6665. [
  6666. {
  6667. name: "Normal",
  6668. height: math.unit(8.8, "feet")
  6669. },
  6670. {
  6671. name: "Macro",
  6672. height: math.unit(88, "feet"),
  6673. default: true
  6674. },
  6675. {
  6676. name: "Megamacro",
  6677. height: math.unit(8, "miles")
  6678. },
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(12 + 2 / 12, "feet"),
  6686. weight: math.unit(808, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/prodigy/front.svg"
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Normal",
  6696. height: math.unit(12 + 2 / 12, "feet"),
  6697. default: true
  6698. },
  6699. {
  6700. name: "Macro",
  6701. height: math.unit(143, "feet")
  6702. },
  6703. {
  6704. name: "Macro+",
  6705. height: math.unit(400, "feet")
  6706. },
  6707. ]
  6708. ))
  6709. characterMakers.push(() => makeCharacter(
  6710. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6711. {
  6712. front: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(225, "lbs"),
  6715. name: "Front",
  6716. image: {
  6717. source: "./media/characters/daniel/front.svg"
  6718. }
  6719. },
  6720. leaning: {
  6721. height: math.unit(6, "feet"),
  6722. weight: math.unit(225, "lbs"),
  6723. name: "Leaning",
  6724. image: {
  6725. source: "./media/characters/daniel/leaning.svg"
  6726. }
  6727. },
  6728. },
  6729. [
  6730. {
  6731. name: "Macro",
  6732. height: math.unit(1000, "feet"),
  6733. default: true
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6739. {
  6740. front: {
  6741. height: math.unit(6, "feet"),
  6742. weight: math.unit(88, "lbs"),
  6743. name: "Front",
  6744. image: {
  6745. source: "./media/characters/chiros/front.svg",
  6746. extra: 306 / 226
  6747. }
  6748. },
  6749. side: {
  6750. height: math.unit(6, "feet"),
  6751. weight: math.unit(88, "lbs"),
  6752. name: "Side",
  6753. image: {
  6754. source: "./media/characters/chiros/side.svg",
  6755. extra: 306 / 226
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(6, "cm"),
  6763. default: true
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6769. {
  6770. front: {
  6771. height: math.unit(6, "feet"),
  6772. weight: math.unit(100, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/selka/front.svg",
  6776. extra: 947 / 887
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(5, "cm"),
  6784. default: true
  6785. },
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6790. {
  6791. front: {
  6792. height: math.unit(8 + 3 / 12, "feet"),
  6793. weight: math.unit(424, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/verin/front.svg",
  6797. extra: 1845 / 1550
  6798. }
  6799. },
  6800. frontArmored: {
  6801. height: math.unit(8 + 3 / 12, "feet"),
  6802. weight: math.unit(424, "lbs"),
  6803. name: "Front (Armored)",
  6804. image: {
  6805. source: "./media/characters/verin/front-armor.svg",
  6806. extra: 1845 / 1550,
  6807. bottom: 0.01
  6808. }
  6809. },
  6810. back: {
  6811. height: math.unit(8 + 3 / 12, "feet"),
  6812. weight: math.unit(424, "lbs"),
  6813. name: "Back",
  6814. image: {
  6815. source: "./media/characters/verin/back.svg",
  6816. bottom: 0.1,
  6817. extra: 1
  6818. }
  6819. },
  6820. foot: {
  6821. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6822. name: "Foot",
  6823. image: {
  6824. source: "./media/characters/verin/foot.svg"
  6825. }
  6826. },
  6827. },
  6828. [
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(8 + 3 / 12, "feet")
  6832. },
  6833. {
  6834. name: "Minimacro",
  6835. height: math.unit(21, "feet"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Macro",
  6840. height: math.unit(626, "feet")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(2.718, "meters"),
  6849. weight: math.unit(150, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/sovrim-terraquian/front.svg"
  6853. }
  6854. },
  6855. back: {
  6856. height: math.unit(2.718, "meters"),
  6857. weight: math.unit(150, "lbs"),
  6858. name: "Back",
  6859. image: {
  6860. source: "./media/characters/sovrim-terraquian/back.svg"
  6861. }
  6862. }
  6863. },
  6864. [
  6865. {
  6866. name: "Micro",
  6867. height: math.unit(2, "inches")
  6868. },
  6869. {
  6870. name: "Small",
  6871. height: math.unit(1, "meter")
  6872. },
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(Math.E, "meters"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Macro",
  6880. height: math.unit(20, "meters")
  6881. },
  6882. {
  6883. name: "Macro+",
  6884. height: math.unit(400, "meters")
  6885. },
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6890. {
  6891. front: {
  6892. height: math.unit(7, "feet"),
  6893. weight: math.unit(489, "lbs"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/reece-silvermane/front.svg",
  6897. bottom: 0.02,
  6898. extra: 1
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Macro",
  6905. height: math.unit(1.5, "miles"),
  6906. default: true
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(6, "feet"),
  6915. weight: math.unit(78, "kg"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/kane/front.svg",
  6919. extra: 978 / 899
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(2.1, "m"),
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(1, "km"),
  6931. default: true
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(200, "kg"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/tegon/front.svg",
  6944. bottom: 0.01,
  6945. extra: 1
  6946. }
  6947. },
  6948. },
  6949. [
  6950. {
  6951. name: "Micro",
  6952. height: math.unit(1, "inch")
  6953. },
  6954. {
  6955. name: "Normal",
  6956. height: math.unit(6 + 3 / 12, "feet"),
  6957. default: true
  6958. },
  6959. {
  6960. name: "Macro",
  6961. height: math.unit(300, "feet")
  6962. },
  6963. {
  6964. name: "Megamacro",
  6965. height: math.unit(69, "miles")
  6966. },
  6967. ]
  6968. ))
  6969. characterMakers.push(() => makeCharacter(
  6970. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6971. {
  6972. side: {
  6973. height: math.unit(6, "feet"),
  6974. weight: math.unit(2304, "lbs"),
  6975. name: "Side",
  6976. image: {
  6977. source: "./media/characters/arcturax/side.svg",
  6978. extra: 790 / 376,
  6979. bottom: 0.01
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Micro",
  6986. height: math.unit(2, "inch")
  6987. },
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(6, "feet")
  6991. },
  6992. {
  6993. name: "Macro",
  6994. height: math.unit(39, "feet"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Megamacro",
  6999. height: math.unit(7, "miles")
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(6, "feet"),
  7008. weight: math.unit(50, "lbs"),
  7009. name: "Front",
  7010. image: {
  7011. source: "./media/characters/sentri/front.svg",
  7012. extra: 1750 / 1570,
  7013. bottom: 0.025
  7014. }
  7015. },
  7016. frontAlt: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(50, "lbs"),
  7019. name: "Front (Alt)",
  7020. image: {
  7021. source: "./media/characters/sentri/front-alt.svg",
  7022. extra: 1750 / 1570,
  7023. bottom: 0.025
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(15, "feet"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(2500, "feet")
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(5 + 8 / 12, "feet"),
  7044. weight: math.unit(130, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/corvin/front.svg",
  7048. extra: 1803 / 1629
  7049. }
  7050. },
  7051. frontShirt: {
  7052. height: math.unit(5 + 8 / 12, "feet"),
  7053. weight: math.unit(130, "lbs"),
  7054. name: "Front (Shirt)",
  7055. image: {
  7056. source: "./media/characters/corvin/front-shirt.svg",
  7057. extra: 1803 / 1629
  7058. }
  7059. },
  7060. frontPoncho: {
  7061. height: math.unit(5 + 8 / 12, "feet"),
  7062. weight: math.unit(130, "lbs"),
  7063. name: "Front (Poncho)",
  7064. image: {
  7065. source: "./media/characters/corvin/front-poncho.svg",
  7066. extra: 1803 / 1629
  7067. }
  7068. },
  7069. side: {
  7070. height: math.unit(5 + 8 / 12, "feet"),
  7071. weight: math.unit(130, "lbs"),
  7072. name: "Side",
  7073. image: {
  7074. source: "./media/characters/corvin/side.svg",
  7075. extra: 1012 / 945
  7076. }
  7077. },
  7078. back: {
  7079. height: math.unit(5 + 8 / 12, "feet"),
  7080. weight: math.unit(130, "lbs"),
  7081. name: "Back",
  7082. image: {
  7083. source: "./media/characters/corvin/back.svg",
  7084. extra: 1803 / 1629
  7085. }
  7086. },
  7087. },
  7088. [
  7089. {
  7090. name: "Micro",
  7091. height: math.unit(3, "inches")
  7092. },
  7093. {
  7094. name: "Normal",
  7095. height: math.unit(5 + 8 / 12, "feet")
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(300, "feet"),
  7100. default: true
  7101. },
  7102. {
  7103. name: "Megamacro",
  7104. height: math.unit(500, "miles")
  7105. }
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7110. {
  7111. front: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(135, "lbs"),
  7114. name: "Front",
  7115. image: {
  7116. source: "./media/characters/q/front.svg",
  7117. extra: 854 / 752,
  7118. bottom: 0.005
  7119. }
  7120. },
  7121. back: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(130, "lbs"),
  7124. name: "Back",
  7125. image: {
  7126. source: "./media/characters/q/back.svg",
  7127. extra: 854 / 752
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Macro",
  7134. height: math.unit(90, "feet"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Extra Macro",
  7139. height: math.unit(300, "feet"),
  7140. },
  7141. {
  7142. name: "BIG WALF",
  7143. height: math.unit(750, "feet"),
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(150, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/carley/front.svg",
  7156. extra: 3927 / 3540,
  7157. bottom: 0.03
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Normal",
  7164. height: math.unit(6 + 3 / 12, "feet")
  7165. },
  7166. {
  7167. name: "Macro",
  7168. height: math.unit(185, "feet"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Megamacro",
  7173. height: math.unit(8, "miles"),
  7174. },
  7175. ]
  7176. ))
  7177. characterMakers.push(() => makeCharacter(
  7178. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7179. {
  7180. front: {
  7181. height: math.unit(3, "feet"),
  7182. weight: math.unit(28, "lbs"),
  7183. name: "Front",
  7184. image: {
  7185. source: "./media/characters/citrine/front.svg"
  7186. }
  7187. }
  7188. },
  7189. [
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(3, "feet"),
  7193. default: true
  7194. }
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7199. {
  7200. front: {
  7201. height: math.unit(14, "feet"),
  7202. weight: math.unit(1450, "kg"),
  7203. capacity: math.unit(15, "people"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/aura-starwind/front.svg",
  7207. extra: 1455 / 1335
  7208. }
  7209. },
  7210. side: {
  7211. height: math.unit(14, "feet"),
  7212. weight: math.unit(1450, "kg"),
  7213. capacity: math.unit(15, "people"),
  7214. name: "Side",
  7215. image: {
  7216. source: "./media/characters/aura-starwind/side.svg",
  7217. extra: 1654 / 1497
  7218. }
  7219. },
  7220. taur: {
  7221. height: math.unit(18, "feet"),
  7222. weight: math.unit(5500, "kg"),
  7223. capacity: math.unit(50, "people"),
  7224. name: "Taur",
  7225. image: {
  7226. source: "./media/characters/aura-starwind/taur.svg",
  7227. extra: 1760 / 1650
  7228. }
  7229. },
  7230. feral: {
  7231. height: math.unit(46, "feet"),
  7232. weight: math.unit(25000, "kg"),
  7233. capacity: math.unit(120, "people"),
  7234. name: "Feral",
  7235. image: {
  7236. source: "./media/characters/aura-starwind/feral.svg"
  7237. }
  7238. },
  7239. },
  7240. [
  7241. {
  7242. name: "Normal",
  7243. height: math.unit(14, "feet"),
  7244. default: true
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(50, "meters")
  7249. },
  7250. {
  7251. name: "Megamacro",
  7252. height: math.unit(5000, "meters")
  7253. },
  7254. {
  7255. name: "Gigamacro",
  7256. height: math.unit(100000, "kilometers")
  7257. },
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(2 + 7 / 12, "feet"),
  7265. weight: math.unit(32, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/rivet/front.svg",
  7269. extra: 1716 / 1658,
  7270. bottom: 0.03
  7271. }
  7272. },
  7273. foot: {
  7274. height: math.unit(0.551, "feet"),
  7275. name: "Rivet's Foot",
  7276. image: {
  7277. source: "./media/characters/rivet/foot.svg"
  7278. },
  7279. rename: true
  7280. }
  7281. },
  7282. [
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(1.5, "inches"),
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(2 + 7 / 12, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(85, "feet")
  7295. },
  7296. {
  7297. name: "Megamacro",
  7298. height: math.unit(2.2, "km")
  7299. }
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(5 + 9 / 12, "feet"),
  7307. weight: math.unit(150, "lbs"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/coffee/front.svg",
  7311. extra: 3666 / 3032,
  7312. bottom: 0.04
  7313. }
  7314. },
  7315. foot: {
  7316. height: math.unit(1.29, "feet"),
  7317. name: "Foot",
  7318. image: {
  7319. source: "./media/characters/coffee/foot.svg"
  7320. }
  7321. },
  7322. },
  7323. [
  7324. {
  7325. name: "Micro",
  7326. height: math.unit(2, "inches"),
  7327. },
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(5 + 9 / 12, "feet"),
  7331. default: true
  7332. },
  7333. {
  7334. name: "Macro",
  7335. height: math.unit(800, "feet")
  7336. },
  7337. {
  7338. name: "Megamacro",
  7339. height: math.unit(25, "miles")
  7340. }
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(6, "feet"),
  7348. weight: math.unit(200, "lbs"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/chari-gal/front.svg",
  7352. extra: 1568 / 1385,
  7353. bottom: 0.047
  7354. }
  7355. },
  7356. gigantamax: {
  7357. height: math.unit(6 * 16, "feet"),
  7358. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7359. name: "Gigantamax",
  7360. image: {
  7361. source: "./media/characters/chari-gal/gigantamax.svg",
  7362. extra: 1124 / 888,
  7363. bottom: 0.03
  7364. }
  7365. },
  7366. },
  7367. [
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(5 + 7 / 12, "feet")
  7371. },
  7372. {
  7373. name: "Macro",
  7374. height: math.unit(200, "feet"),
  7375. default: true
  7376. }
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(6, "feet"),
  7384. weight: math.unit(150, "lbs"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/nova/front.svg",
  7388. extra: 5000 / 4722,
  7389. bottom: 0.02
  7390. }
  7391. }
  7392. },
  7393. [
  7394. {
  7395. name: "Micro-",
  7396. height: math.unit(0.8, "inches")
  7397. },
  7398. {
  7399. name: "Micro",
  7400. height: math.unit(2, "inches"),
  7401. default: true
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(3 + 1 / 12, "feet"),
  7410. weight: math.unit(21.7, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/argent/front.svg",
  7414. extra: 1471 / 1331,
  7415. bottom: 100.8 / 1575.5
  7416. }
  7417. }
  7418. },
  7419. [
  7420. {
  7421. name: "Micro",
  7422. height: math.unit(2, "inches")
  7423. },
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(3 + 1 / 12, "feet"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Macro",
  7431. height: math.unit(120, "feet")
  7432. },
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7437. {
  7438. lamp: {
  7439. height: math.unit(7 * 1559 / 989, "feet"),
  7440. name: "Magic Lamp",
  7441. image: {
  7442. source: "./media/characters/mira-al-cul/lamp.svg",
  7443. extra: 1617 / 1559
  7444. }
  7445. },
  7446. front: {
  7447. height: math.unit(7, "feet"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/mira-al-cul/front.svg",
  7451. extra: 1044 / 990
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Heavily Restricted",
  7458. height: math.unit(7 * 1559 / 989, "feet")
  7459. },
  7460. {
  7461. name: "Freshly Freed",
  7462. height: math.unit(50 * 1559 / 989, "feet")
  7463. },
  7464. {
  7465. name: "World Encompassing",
  7466. height: math.unit(10000 * 1559 / 989, "miles")
  7467. },
  7468. {
  7469. name: "Galactic",
  7470. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7471. },
  7472. {
  7473. name: "Palmed Universe",
  7474. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7475. default: true
  7476. },
  7477. {
  7478. name: "Multiversal Matriarch",
  7479. height: math.unit(8.87e10, "yottameters")
  7480. },
  7481. {
  7482. name: "Void Mother",
  7483. height: math.unit(3.14e110, "yottaparsecs")
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7489. {
  7490. front: {
  7491. height: math.unit(17 + 1 / 12, "feet"),
  7492. weight: math.unit(476.2 * 5, "lbs"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/kuro-shi-uchū/front.svg",
  7496. extra: 2329 / 1835,
  7497. bottom: 0.02
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Micro",
  7504. height: math.unit(2, "inches")
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(12, "meters")
  7509. },
  7510. {
  7511. name: "Planetary",
  7512. height: math.unit(0.00929, "AU"),
  7513. default: true
  7514. },
  7515. {
  7516. name: "Universal",
  7517. height: math.unit(20, "gigaparsecs")
  7518. },
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7523. {
  7524. front: {
  7525. height: math.unit(5 + 2 / 12, "feet"),
  7526. weight: math.unit(120, "lbs"),
  7527. name: "Front",
  7528. image: {
  7529. source: "./media/characters/katherine/front.svg",
  7530. extra: 2075 / 1969
  7531. }
  7532. },
  7533. dress: {
  7534. height: math.unit(5 + 2 / 12, "feet"),
  7535. weight: math.unit(120, "lbs"),
  7536. name: "Dress",
  7537. image: {
  7538. source: "./media/characters/katherine/dress.svg",
  7539. extra: 2258 / 2064
  7540. }
  7541. },
  7542. },
  7543. [
  7544. {
  7545. name: "Micro",
  7546. height: math.unit(1, "inches"),
  7547. default: true
  7548. },
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(5 + 2 / 12, "feet")
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(100, "meters")
  7556. },
  7557. {
  7558. name: "Megamacro",
  7559. height: math.unit(80, "miles")
  7560. },
  7561. ]
  7562. ))
  7563. characterMakers.push(() => makeCharacter(
  7564. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7565. {
  7566. front: {
  7567. height: math.unit(7 + 8 / 12, "feet"),
  7568. weight: math.unit(250, "lbs"),
  7569. name: "Front",
  7570. image: {
  7571. source: "./media/characters/yevis/front.svg",
  7572. extra: 1938 / 1755
  7573. }
  7574. }
  7575. },
  7576. [
  7577. {
  7578. name: "Mortal",
  7579. height: math.unit(7 + 8 / 12, "feet")
  7580. },
  7581. {
  7582. name: "Battle",
  7583. height: math.unit(25 + 11 / 12, "feet")
  7584. },
  7585. {
  7586. name: "Wrath",
  7587. height: math.unit(1654 + 11 / 12, "feet")
  7588. },
  7589. {
  7590. name: "Planet Destroyer",
  7591. height: math.unit(12000, "miles")
  7592. },
  7593. {
  7594. name: "Galaxy Conqueror",
  7595. height: math.unit(1.45, "zettameters"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Universal War",
  7600. height: math.unit(184, "gigaparsecs")
  7601. },
  7602. {
  7603. name: "Eternity War",
  7604. height: math.unit(1.98e55, "yottaparsecs")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(5 + 8 / 12, "feet"),
  7613. weight: math.unit(63, "kg"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/xavier/front.svg",
  7617. extra: 944 / 883
  7618. }
  7619. },
  7620. frontStretch: {
  7621. height: math.unit(5 + 8 / 12, "feet"),
  7622. weight: math.unit(63, "kg"),
  7623. name: "Stretching",
  7624. image: {
  7625. source: "./media/characters/xavier/front-stretch.svg",
  7626. extra: 962 / 820
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(5 + 8 / 12, "feet")
  7634. },
  7635. {
  7636. name: "Macro",
  7637. height: math.unit(100, "meters"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "McLargeHuge",
  7642. height: math.unit(10, "miles")
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(5 + 5 / 12, "feet"),
  7651. weight: math.unit(150, "lb"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/joshii/front.svg"
  7655. }
  7656. },
  7657. foot: {
  7658. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7659. name: "Foot",
  7660. image: {
  7661. source: "./media/characters/joshii/foot.svg"
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Micro",
  7668. height: math.unit(2, "inches")
  7669. },
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(5 + 5 / 12, "feet"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(785, "feet")
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(24.5, "miles")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(150, "lb"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/goddess-elizabeth/front.svg",
  7694. extra: 1800 / 1525,
  7695. bottom: 0.005
  7696. }
  7697. },
  7698. foot: {
  7699. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7700. name: "Foot",
  7701. image: {
  7702. source: "./media/characters/goddess-elizabeth/foot.svg"
  7703. }
  7704. },
  7705. mouth: {
  7706. height: math.unit(6, "feet"),
  7707. name: "Mouth",
  7708. image: {
  7709. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Micro",
  7716. height: math.unit(12, "feet")
  7717. },
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(80, "miles"),
  7721. default: true
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(15000, "parsecs")
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(5 + 9 / 12, "feet"),
  7734. weight: math.unit(144, "lb"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/kara/front.svg"
  7738. }
  7739. },
  7740. feet: {
  7741. height: math.unit(6 / 6.765, "feet"),
  7742. name: "Kara's Feet",
  7743. rename: true,
  7744. image: {
  7745. source: "./media/characters/kara/feet.svg"
  7746. }
  7747. },
  7748. },
  7749. [
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(5 + 9 / 12, "feet")
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(174, "feet"),
  7757. default: true
  7758. },
  7759. ]
  7760. ))
  7761. characterMakers.push(() => makeCharacter(
  7762. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7763. {
  7764. front: {
  7765. height: math.unit(18, "feet"),
  7766. weight: math.unit(4050, "lb"),
  7767. name: "Front",
  7768. image: {
  7769. source: "./media/characters/tyrone/front.svg",
  7770. extra: 2520 / 2402,
  7771. bottom: 0.025
  7772. }
  7773. },
  7774. },
  7775. [
  7776. {
  7777. name: "Normal",
  7778. height: math.unit(18, "feet"),
  7779. default: true
  7780. },
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(300, "feet")
  7784. },
  7785. ]
  7786. ))
  7787. characterMakers.push(() => makeCharacter(
  7788. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7789. {
  7790. front: {
  7791. height: math.unit(7 + 8 / 12, "feet"),
  7792. weight: math.unit(120, "lb"),
  7793. name: "Front",
  7794. image: {
  7795. source: "./media/characters/danny/front.svg",
  7796. extra: 1490 / 1350
  7797. }
  7798. },
  7799. back: {
  7800. height: math.unit(7 + 8 / 12, "feet"),
  7801. weight: math.unit(120, "lb"),
  7802. name: "Back",
  7803. image: {
  7804. source: "./media/characters/danny/back.svg",
  7805. extra: 1490 / 1350
  7806. }
  7807. },
  7808. },
  7809. [
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(7 + 8 / 12, "feet"),
  7813. default: true
  7814. },
  7815. ]
  7816. ))
  7817. characterMakers.push(() => makeCharacter(
  7818. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7819. {
  7820. front: {
  7821. height: math.unit(3.5, "inches"),
  7822. weight: math.unit(19, "grams"),
  7823. name: "Front",
  7824. image: {
  7825. source: "./media/characters/mallow/front.svg",
  7826. extra: 471 / 431
  7827. }
  7828. },
  7829. back: {
  7830. height: math.unit(3.5, "inches"),
  7831. weight: math.unit(19, "grams"),
  7832. name: "Back",
  7833. image: {
  7834. source: "./media/characters/mallow/back.svg",
  7835. extra: 471 / 431
  7836. }
  7837. },
  7838. },
  7839. [
  7840. {
  7841. name: "Normal",
  7842. height: math.unit(3.5, "inches"),
  7843. default: true
  7844. },
  7845. ]
  7846. ))
  7847. characterMakers.push(() => makeCharacter(
  7848. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7849. {
  7850. front: {
  7851. height: math.unit(9, "feet"),
  7852. weight: math.unit(230, "kg"),
  7853. name: "Front",
  7854. image: {
  7855. source: "./media/characters/starry-aqua/front.svg"
  7856. }
  7857. },
  7858. back: {
  7859. height: math.unit(9, "feet"),
  7860. weight: math.unit(230, "kg"),
  7861. name: "Back",
  7862. image: {
  7863. source: "./media/characters/starry-aqua/back.svg"
  7864. }
  7865. },
  7866. hand: {
  7867. height: math.unit(9 * 0.1168, "feet"),
  7868. name: "Hand",
  7869. image: {
  7870. source: "./media/characters/starry-aqua/hand.svg"
  7871. }
  7872. },
  7873. foot: {
  7874. height: math.unit(9 * 0.18, "feet"),
  7875. name: "Foot",
  7876. image: {
  7877. source: "./media/characters/starry-aqua/foot.svg"
  7878. }
  7879. }
  7880. },
  7881. [
  7882. {
  7883. name: "Micro",
  7884. height: math.unit(3, "inches")
  7885. },
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(9, "feet")
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(300, "feet"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Megamacro",
  7897. height: math.unit(3200, "feet")
  7898. }
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(230, "lb"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/luka/front.svg",
  7910. extra: 1,
  7911. bottom: 0.025
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(12 + 8 / 12, "feet"),
  7919. default: true
  7920. },
  7921. {
  7922. name: "Minimacro",
  7923. height: math.unit(20, "feet")
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(250, "feet")
  7928. },
  7929. {
  7930. name: "Megamacro",
  7931. height: math.unit(5, "miles")
  7932. },
  7933. {
  7934. name: "Gigamacro",
  7935. height: math.unit(8000, "miles")
  7936. },
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7941. {
  7942. front: {
  7943. height: math.unit(6, "feet"),
  7944. weight: math.unit(150, "lb"),
  7945. name: "Front",
  7946. image: {
  7947. source: "./media/characters/natalie-nightring/front.svg",
  7948. extra: 1,
  7949. bottom: 0.06
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Uh Oh",
  7956. height: math.unit(0.1, "mm")
  7957. },
  7958. {
  7959. name: "Small",
  7960. height: math.unit(3, "inches")
  7961. },
  7962. {
  7963. name: "Human Scale",
  7964. height: math.unit(6, "feet")
  7965. },
  7966. {
  7967. name: "Librarian",
  7968. height: math.unit(50, "feet"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Immense",
  7973. height: math.unit(200, "miles")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(6, "feet"),
  7982. weight: math.unit(180, "lbs"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/danni-rosie/front.svg",
  7986. extra: 1260 / 1128,
  7987. bottom: 0.022
  7988. }
  7989. },
  7990. },
  7991. [
  7992. {
  7993. name: "Micro",
  7994. height: math.unit(2, "inches"),
  7995. default: true
  7996. },
  7997. ]
  7998. ))
  7999. characterMakers.push(() => makeCharacter(
  8000. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8001. {
  8002. front: {
  8003. height: math.unit(5 + 9 / 12, "feet"),
  8004. weight: math.unit(220, "lb"),
  8005. name: "Front",
  8006. image: {
  8007. source: "./media/characters/samantha-kruse/front.svg",
  8008. extra: (985 / 935),
  8009. bottom: 0.03
  8010. }
  8011. },
  8012. frontUndressed: {
  8013. height: math.unit(5 + 9 / 12, "feet"),
  8014. weight: math.unit(220, "lb"),
  8015. name: "Front (Undressed)",
  8016. image: {
  8017. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8018. extra: (973 / 923),
  8019. bottom: 0.025
  8020. }
  8021. },
  8022. fat: {
  8023. height: math.unit(5 + 9 / 12, "feet"),
  8024. weight: math.unit(900, "lb"),
  8025. name: "Front (Fat)",
  8026. image: {
  8027. source: "./media/characters/samantha-kruse/fat.svg",
  8028. extra: 2688 / 2561
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(5 + 9 / 12, "feet"),
  8036. default: true
  8037. }
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8042. {
  8043. back: {
  8044. height: math.unit(5 + 4 / 12, "feet"),
  8045. weight: math.unit(4963, "lb"),
  8046. name: "Back",
  8047. image: {
  8048. source: "./media/characters/amelia-rosie/back.svg",
  8049. extra: 1113 / 963,
  8050. bottom: 0.01
  8051. }
  8052. },
  8053. },
  8054. [
  8055. {
  8056. name: "Level 0",
  8057. height: math.unit(5 + 4 / 12, "feet")
  8058. },
  8059. {
  8060. name: "Level 1",
  8061. height: math.unit(164597, "feet"),
  8062. default: true
  8063. },
  8064. {
  8065. name: "Level 2",
  8066. height: math.unit(956243, "miles")
  8067. },
  8068. {
  8069. name: "Level 3",
  8070. height: math.unit(29421709423, "miles")
  8071. },
  8072. {
  8073. name: "Level 4",
  8074. height: math.unit(154, "lightyears")
  8075. },
  8076. {
  8077. name: "Level 5",
  8078. height: math.unit(4738272, "lightyears")
  8079. },
  8080. {
  8081. name: "Level 6",
  8082. height: math.unit(145787152896, "lightyears")
  8083. },
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(5 + 11 / 12, "feet"),
  8091. weight: math.unit(65, "kg"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/rook-kitara/front.svg",
  8095. extra: 1347 / 1274,
  8096. bottom: 0.005
  8097. }
  8098. },
  8099. },
  8100. [
  8101. {
  8102. name: "Totally Unfair",
  8103. height: math.unit(1.8, "mm")
  8104. },
  8105. {
  8106. name: "Lap Rookie",
  8107. height: math.unit(1.4, "feet")
  8108. },
  8109. {
  8110. name: "Normal",
  8111. height: math.unit(5 + 11 / 12, "feet"),
  8112. default: true
  8113. },
  8114. {
  8115. name: "How Did This Happen",
  8116. height: math.unit(80, "miles")
  8117. }
  8118. ]
  8119. ))
  8120. characterMakers.push(() => makeCharacter(
  8121. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8122. {
  8123. front: {
  8124. height: math.unit(7, "feet"),
  8125. weight: math.unit(300, "lb"),
  8126. name: "Front",
  8127. image: {
  8128. source: "./media/characters/pisces/front.svg",
  8129. extra: 2255 / 2115,
  8130. bottom: 0.03
  8131. }
  8132. },
  8133. back: {
  8134. height: math.unit(7, "feet"),
  8135. weight: math.unit(300, "lb"),
  8136. name: "Back",
  8137. image: {
  8138. source: "./media/characters/pisces/back.svg",
  8139. extra: 2146 / 2055,
  8140. bottom: 0.04
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Normal",
  8147. height: math.unit(7, "feet"),
  8148. default: true
  8149. },
  8150. {
  8151. name: "Swimming Pool",
  8152. height: math.unit(12.2, "meters")
  8153. },
  8154. {
  8155. name: "Olympic Swimming Pool",
  8156. height: math.unit(56.3, "meters")
  8157. },
  8158. {
  8159. name: "Lake Superior",
  8160. height: math.unit(93900, "meters")
  8161. },
  8162. {
  8163. name: "Mediterranean Sea",
  8164. height: math.unit(644457, "meters")
  8165. },
  8166. {
  8167. name: "World's Oceans",
  8168. height: math.unit(4567491, "meters")
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(2.3, "meters"),
  8177. weight: math.unit(120, "kg"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/zelas/front.svg"
  8181. }
  8182. },
  8183. side: {
  8184. height: math.unit(2.3, "meters"),
  8185. weight: math.unit(120, "kg"),
  8186. name: "Side",
  8187. image: {
  8188. source: "./media/characters/zelas/side.svg"
  8189. }
  8190. },
  8191. back: {
  8192. height: math.unit(2.3, "meters"),
  8193. weight: math.unit(120, "kg"),
  8194. name: "Back",
  8195. image: {
  8196. source: "./media/characters/zelas/back.svg"
  8197. }
  8198. },
  8199. foot: {
  8200. height: math.unit(1.116, "feet"),
  8201. name: "Foot",
  8202. image: {
  8203. source: "./media/characters/zelas/foot.svg"
  8204. }
  8205. },
  8206. },
  8207. [
  8208. {
  8209. name: "Normal",
  8210. height: math.unit(2.3, "meters")
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(30, "meters"),
  8215. default: true
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(1, "inch"),
  8224. weight: math.unit(0.21, "grams"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/talbot/front.svg",
  8228. extra: 594 / 544
  8229. }
  8230. },
  8231. },
  8232. [
  8233. {
  8234. name: "Micro",
  8235. height: math.unit(1, "inch"),
  8236. default: true
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8242. {
  8243. front: {
  8244. height: math.unit(3 + 3 / 12, "feet"),
  8245. weight: math.unit(51.8, "lb"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/fliss/front.svg",
  8249. extra: 840 / 640
  8250. }
  8251. },
  8252. },
  8253. [
  8254. {
  8255. name: "Teeny Tiny",
  8256. height: math.unit(1, "mm")
  8257. },
  8258. {
  8259. name: "Small",
  8260. height: math.unit(1, "inch"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Standard Sylveon",
  8265. height: math.unit(3 + 3 / 12, "feet")
  8266. },
  8267. {
  8268. name: "Large Nuisance",
  8269. height: math.unit(33, "feet")
  8270. },
  8271. {
  8272. name: "City Filler",
  8273. height: math.unit(3000, "feet")
  8274. },
  8275. {
  8276. name: "New Horizon",
  8277. height: math.unit(6000, "miles")
  8278. },
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8283. {
  8284. front: {
  8285. height: math.unit(5, "cm"),
  8286. weight: math.unit(1.94, "g"),
  8287. name: "Front",
  8288. image: {
  8289. source: "./media/characters/fleta/front.svg",
  8290. extra: 835 / 803
  8291. }
  8292. },
  8293. back: {
  8294. height: math.unit(5, "cm"),
  8295. weight: math.unit(1.94, "g"),
  8296. name: "Back",
  8297. image: {
  8298. source: "./media/characters/fleta/back.svg",
  8299. extra: 835 / 803
  8300. }
  8301. },
  8302. },
  8303. [
  8304. {
  8305. name: "Micro",
  8306. height: math.unit(5, "cm"),
  8307. default: true
  8308. },
  8309. ]
  8310. ))
  8311. characterMakers.push(() => makeCharacter(
  8312. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8313. {
  8314. front: {
  8315. height: math.unit(6, "feet"),
  8316. weight: math.unit(225, "lb"),
  8317. name: "Front",
  8318. image: {
  8319. source: "./media/characters/dominic/front.svg",
  8320. extra: 1770 / 1620,
  8321. bottom: 0.025
  8322. }
  8323. },
  8324. back: {
  8325. height: math.unit(6, "feet"),
  8326. weight: math.unit(225, "lb"),
  8327. name: "Back",
  8328. image: {
  8329. source: "./media/characters/dominic/back.svg",
  8330. extra: 1745 / 1620,
  8331. bottom: 0.065
  8332. }
  8333. },
  8334. },
  8335. [
  8336. {
  8337. name: "Nano",
  8338. height: math.unit(0.1, "mm")
  8339. },
  8340. {
  8341. name: "Micro-",
  8342. height: math.unit(1, "mm")
  8343. },
  8344. {
  8345. name: "Micro",
  8346. height: math.unit(4, "inches")
  8347. },
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(6 + 4 / 12, "feet"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(115, "feet")
  8356. },
  8357. {
  8358. name: "Macro+",
  8359. height: math.unit(955, "feet")
  8360. },
  8361. {
  8362. name: "Megamacro",
  8363. height: math.unit(8990, "feet")
  8364. },
  8365. {
  8366. name: "Gigmacro",
  8367. height: math.unit(9310, "miles")
  8368. },
  8369. {
  8370. name: "Teramacro",
  8371. height: math.unit(1567005010, "miles")
  8372. },
  8373. {
  8374. name: "Examacro",
  8375. height: math.unit(1425, "parsecs")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(400, "feet"),
  8384. weight: math.unit(44444444, "lb"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/major-colonel/front.svg"
  8388. }
  8389. },
  8390. back: {
  8391. height: math.unit(400, "feet"),
  8392. weight: math.unit(44444444, "lb"),
  8393. name: "Back",
  8394. image: {
  8395. source: "./media/characters/major-colonel/back.svg"
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(400, "feet"),
  8403. default: true
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8409. {
  8410. catFront: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(120, "lb"),
  8413. name: "Front (Cat Side)",
  8414. image: {
  8415. source: "./media/characters/axel-lycan/cat-front.svg",
  8416. extra: 430 / 402,
  8417. bottom: 43 / 472.35
  8418. }
  8419. },
  8420. catBack: {
  8421. height: math.unit(6, "feet"),
  8422. weight: math.unit(120, "lb"),
  8423. name: "Back (Cat Side)",
  8424. image: {
  8425. source: "./media/characters/axel-lycan/cat-back.svg",
  8426. extra: 447 / 419,
  8427. bottom: 23.3 / 469
  8428. }
  8429. },
  8430. wolfFront: {
  8431. height: math.unit(6, "feet"),
  8432. weight: math.unit(120, "lb"),
  8433. name: "Front (Wolf Side)",
  8434. image: {
  8435. source: "./media/characters/axel-lycan/wolf-front.svg",
  8436. extra: 485 / 456,
  8437. bottom: 19 / 504
  8438. }
  8439. },
  8440. wolfBack: {
  8441. height: math.unit(6, "feet"),
  8442. weight: math.unit(120, "lb"),
  8443. name: "Back (Wolf Side)",
  8444. image: {
  8445. source: "./media/characters/axel-lycan/wolf-back.svg",
  8446. extra: 475 / 438,
  8447. bottom: 39.2 / 514
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Macro",
  8454. height: math.unit(1, "km"),
  8455. default: true
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(5 + 9 / 12, "feet"),
  8464. weight: math.unit(175, "lb"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/vanrel-hyena/front.svg",
  8468. extra: 1086 / 1010,
  8469. bottom: 0.04
  8470. }
  8471. },
  8472. },
  8473. [
  8474. {
  8475. name: "Normal",
  8476. height: math.unit(5 + 9 / 12, "feet"),
  8477. default: true
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(103, "lb"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/abbott-absol/front.svg",
  8490. extra: 2010 / 1842
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Megamicro",
  8497. height: math.unit(0.1, "mm")
  8498. },
  8499. {
  8500. name: "Micro",
  8501. height: math.unit(1, "inch")
  8502. },
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(6, "feet"),
  8506. default: true
  8507. },
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8512. {
  8513. front: {
  8514. height: math.unit(6, "feet"),
  8515. weight: math.unit(264, "lb"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/hector/front.svg",
  8519. extra: 2280 / 2130,
  8520. bottom: 0.07
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Normal",
  8527. height: math.unit(12.25, "foot"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Macro",
  8532. height: math.unit(160, "feet")
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(150, "lb"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/sal/front.svg",
  8545. extra: 1846 / 1699,
  8546. bottom: 0.04
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Megamacro",
  8553. height: math.unit(10, "miles"),
  8554. default: true
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8560. {
  8561. front: {
  8562. height: math.unit(3, "meters"),
  8563. weight: math.unit(450, "kg"),
  8564. name: "front",
  8565. image: {
  8566. source: "./media/characters/ranger/front.svg",
  8567. extra: 2401 / 2243,
  8568. bottom: 0.05
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(3, "meters"),
  8576. default: true
  8577. },
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8582. {
  8583. front: {
  8584. height: math.unit(14, "feet"),
  8585. weight: math.unit(800, "kg"),
  8586. name: "Front",
  8587. image: {
  8588. source: "./media/characters/theresa/front.svg",
  8589. extra: 3575 / 3346,
  8590. bottom: 0.03
  8591. }
  8592. },
  8593. },
  8594. [
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(14, "feet"),
  8598. default: true
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8604. {
  8605. front: {
  8606. height: math.unit(6, "feet"),
  8607. weight: math.unit(3, "kg"),
  8608. name: "Front",
  8609. image: {
  8610. source: "./media/characters/ine/front.svg",
  8611. extra: 678 / 539,
  8612. bottom: 0.023
  8613. }
  8614. },
  8615. },
  8616. [
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(2.265, "feet"),
  8620. default: true
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(5, "feet"),
  8629. weight: math.unit(30, "kg"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/vial/front.svg",
  8633. extra: 1365 / 1277,
  8634. bottom: 0.04
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(5, "feet"),
  8642. default: true
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8648. {
  8649. side: {
  8650. height: math.unit(3.4, "meters"),
  8651. weight: math.unit(1000, "lb"),
  8652. name: "Side",
  8653. image: {
  8654. source: "./media/characters/rovoska/side.svg",
  8655. extra: 4403 / 1515
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(3.4, "meters"),
  8663. default: true
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(8, "feet"),
  8672. weight: math.unit(315, "lb"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/gunner-rotthbauer/front.svg"
  8676. }
  8677. },
  8678. back: {
  8679. height: math.unit(8, "feet"),
  8680. weight: math.unit(315, "lb"),
  8681. name: "Back",
  8682. image: {
  8683. source: "./media/characters/gunner-rotthbauer/back.svg"
  8684. }
  8685. },
  8686. },
  8687. [
  8688. {
  8689. name: "Micro",
  8690. height: math.unit(3.5, "inches")
  8691. },
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(8, "feet"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(250, "feet")
  8700. },
  8701. {
  8702. name: "Megamacro",
  8703. height: math.unit(1, "AU")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(5 + 5 / 12, "feet"),
  8712. weight: math.unit(140, "lb"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/allatia/front.svg",
  8716. extra: 1227 / 1180,
  8717. bottom: 0.027
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(5 + 5 / 12, "feet")
  8725. },
  8726. {
  8727. name: "Macro",
  8728. height: math.unit(250, "feet"),
  8729. default: true
  8730. },
  8731. {
  8732. name: "Megamacro",
  8733. height: math.unit(8, "miles")
  8734. }
  8735. ]
  8736. ))
  8737. characterMakers.push(() => makeCharacter(
  8738. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8739. {
  8740. front: {
  8741. height: math.unit(6, "feet"),
  8742. weight: math.unit(120, "lb"),
  8743. name: "Front",
  8744. image: {
  8745. source: "./media/characters/tene/front.svg",
  8746. extra: 1728 / 1578,
  8747. bottom: 0.022
  8748. }
  8749. },
  8750. stomping: {
  8751. height: math.unit(2.025, "meters"),
  8752. weight: math.unit(120, "lb"),
  8753. name: "Stomping",
  8754. image: {
  8755. source: "./media/characters/tene/stomping.svg",
  8756. extra: 938 / 873,
  8757. bottom: 0.01
  8758. }
  8759. },
  8760. sitting: {
  8761. height: math.unit(1, "meter"),
  8762. weight: math.unit(120, "lb"),
  8763. name: "Sitting",
  8764. image: {
  8765. source: "./media/characters/tene/sitting.svg",
  8766. extra: 437 / 415,
  8767. bottom: 0.1
  8768. }
  8769. },
  8770. feral: {
  8771. height: math.unit(3.9, "feet"),
  8772. weight: math.unit(250, "lb"),
  8773. name: "Feral",
  8774. image: {
  8775. source: "./media/characters/tene/feral.svg",
  8776. extra: 717 / 458,
  8777. bottom: 0.179
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(6, "feet")
  8785. },
  8786. {
  8787. name: "Macro",
  8788. height: math.unit(300, "feet"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Megamacro",
  8793. height: math.unit(5, "miles")
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8799. {
  8800. side: {
  8801. height: math.unit(6, "feet"),
  8802. name: "Side",
  8803. image: {
  8804. source: "./media/characters/evander/side.svg",
  8805. extra: 877 / 477
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Normal",
  8812. height: math.unit(0.83, "meters"),
  8813. default: true
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(12, "feet"),
  8822. weight: math.unit(1000, "lb"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8826. extra: 1762 / 1611
  8827. }
  8828. },
  8829. back: {
  8830. height: math.unit(12, "feet"),
  8831. weight: math.unit(1000, "lb"),
  8832. name: "Back",
  8833. image: {
  8834. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8835. extra: 1762 / 1611
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(12, "feet"),
  8843. default: true
  8844. },
  8845. {
  8846. name: "Kaiju",
  8847. height: math.unit(150, "feet")
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(6, "feet"),
  8856. weight: math.unit(150, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/zero-alurus/front.svg"
  8860. }
  8861. },
  8862. back: {
  8863. height: math.unit(6, "feet"),
  8864. weight: math.unit(150, "lb"),
  8865. name: "Back",
  8866. image: {
  8867. source: "./media/characters/zero-alurus/back.svg"
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(5 + 10 / 12, "feet")
  8875. },
  8876. {
  8877. name: "Macro",
  8878. height: math.unit(60, "feet"),
  8879. default: true
  8880. },
  8881. {
  8882. name: "Macro+",
  8883. height: math.unit(450, "feet")
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(6, "feet"),
  8892. weight: math.unit(200, "lb"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/mega-shi/front.svg",
  8896. extra: 1279 / 1250,
  8897. bottom: 0.02
  8898. }
  8899. },
  8900. back: {
  8901. height: math.unit(6, "feet"),
  8902. weight: math.unit(200, "lb"),
  8903. name: "Back",
  8904. image: {
  8905. source: "./media/characters/mega-shi/back.svg",
  8906. extra: 1279 / 1250,
  8907. bottom: 0.02
  8908. }
  8909. },
  8910. },
  8911. [
  8912. {
  8913. name: "Micro",
  8914. height: math.unit(16 + 6 / 12, "feet")
  8915. },
  8916. {
  8917. name: "Third Dimension",
  8918. height: math.unit(40, "meters")
  8919. },
  8920. {
  8921. name: "Normal",
  8922. height: math.unit(660, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Megamacro",
  8927. height: math.unit(10, "miles")
  8928. },
  8929. {
  8930. name: "Planetary Launch",
  8931. height: math.unit(500, "miles")
  8932. },
  8933. {
  8934. name: "Interstellar",
  8935. height: math.unit(1e9, "miles")
  8936. },
  8937. {
  8938. name: "Leaving the Universe",
  8939. height: math.unit(1, "gigaparsec")
  8940. },
  8941. {
  8942. name: "Travelling Universes",
  8943. height: math.unit(30e15, "parsecs")
  8944. },
  8945. ]
  8946. ))
  8947. characterMakers.push(() => makeCharacter(
  8948. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8949. {
  8950. front: {
  8951. height: math.unit(6, "feet"),
  8952. weight: math.unit(150, "lb"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/odyssey/front.svg",
  8956. extra: 1782 / 1582,
  8957. bottom: 0.01
  8958. }
  8959. },
  8960. side: {
  8961. height: math.unit(5.7, "feet"),
  8962. weight: math.unit(140, "lb"),
  8963. name: "Side",
  8964. image: {
  8965. source: "./media/characters/odyssey/side.svg",
  8966. extra: 6462 / 5700
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(5 + 4 / 12, "feet")
  8974. },
  8975. {
  8976. name: "Macro",
  8977. height: math.unit(1, "km")
  8978. },
  8979. {
  8980. name: "Megamacro",
  8981. height: math.unit(3000, "km")
  8982. },
  8983. {
  8984. name: "Gigamacro",
  8985. height: math.unit(1, "AU"),
  8986. default: true
  8987. },
  8988. {
  8989. name: "Omniversal",
  8990. height: math.unit(100e14, "lightyears")
  8991. },
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8996. {
  8997. front: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(300, "lb"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/mekuto/front.svg",
  9003. extra: 921 / 832,
  9004. bottom: 0.03
  9005. }
  9006. },
  9007. hand: {
  9008. height: math.unit(6 / 10.24, "feet"),
  9009. name: "Hand",
  9010. image: {
  9011. source: "./media/characters/mekuto/hand.svg"
  9012. }
  9013. },
  9014. foot: {
  9015. height: math.unit(6 / 5.05, "feet"),
  9016. name: "Foot",
  9017. image: {
  9018. source: "./media/characters/mekuto/foot.svg"
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Minimicro",
  9025. height: math.unit(0.2, "inches")
  9026. },
  9027. {
  9028. name: "Micro",
  9029. height: math.unit(1.5, "inches")
  9030. },
  9031. {
  9032. name: "Normal",
  9033. height: math.unit(5 + 11 / 12, "feet"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Minimacro",
  9038. height: math.unit(17 + 9 / 12, "feet")
  9039. },
  9040. {
  9041. name: "Macro",
  9042. height: math.unit(177.5, "feet")
  9043. },
  9044. {
  9045. name: "Megamacro",
  9046. height: math.unit(152, "miles")
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9052. {
  9053. front: {
  9054. height: math.unit(6.5, "inches"),
  9055. weight: math.unit(13, "oz"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/dafydd-tomos/front.svg",
  9059. extra: 2990 / 2603,
  9060. bottom: 0.03
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Micro",
  9067. height: math.unit(6.5, "inches"),
  9068. default: true
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(6, "feet"),
  9077. weight: math.unit(150, "lb"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/splinter/front.svg",
  9081. extra: 2990 / 2882,
  9082. bottom: 0.04
  9083. }
  9084. },
  9085. back: {
  9086. height: math.unit(6, "feet"),
  9087. weight: math.unit(150, "lb"),
  9088. name: "Back",
  9089. image: {
  9090. source: "./media/characters/splinter/back.svg",
  9091. extra: 2990 / 2882,
  9092. bottom: 0.04
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(6, "feet")
  9100. },
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(230, "meters"),
  9104. default: true
  9105. },
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9110. {
  9111. front: {
  9112. height: math.unit(4 + 10 / 12, "feet"),
  9113. weight: math.unit(480, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/snow-gabumon/front.svg",
  9117. extra: 1140 / 963,
  9118. bottom: 0.058
  9119. }
  9120. },
  9121. back: {
  9122. height: math.unit(4 + 10 / 12, "feet"),
  9123. weight: math.unit(480, "lb"),
  9124. name: "Back",
  9125. image: {
  9126. source: "./media/characters/snow-gabumon/back.svg",
  9127. extra: 1115 / 962,
  9128. bottom: 0.041
  9129. }
  9130. },
  9131. frontUndresed: {
  9132. height: math.unit(4 + 10 / 12, "feet"),
  9133. weight: math.unit(480, "lb"),
  9134. name: "Front (Undressed)",
  9135. image: {
  9136. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9137. extra: 1061 / 960,
  9138. bottom: 0.045
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Micro",
  9145. height: math.unit(1, "inch")
  9146. },
  9147. {
  9148. name: "Normal",
  9149. height: math.unit(4 + 10 / 12, "feet"),
  9150. default: true
  9151. },
  9152. {
  9153. name: "Macro",
  9154. height: math.unit(200, "feet")
  9155. },
  9156. {
  9157. name: "Megamacro",
  9158. height: math.unit(120, "miles")
  9159. },
  9160. {
  9161. name: "Gigamacro",
  9162. height: math.unit(9800, "miles")
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9168. {
  9169. front: {
  9170. height: math.unit(1.7, "meters"),
  9171. weight: math.unit(140, "lb"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/moody/front.svg",
  9175. extra: 3226 / 3007,
  9176. bottom: 0.087
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Micro",
  9183. height: math.unit(1, "mm")
  9184. },
  9185. {
  9186. name: "Normal",
  9187. height: math.unit(1.7, "meters"),
  9188. default: true
  9189. },
  9190. {
  9191. name: "Macro",
  9192. height: math.unit(80, "meters")
  9193. },
  9194. {
  9195. name: "Macro+",
  9196. height: math.unit(500, "meters")
  9197. },
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(150, "lb"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/zyas/front.svg",
  9209. extra: 1180 / 1120,
  9210. bottom: 0.045
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Normal",
  9217. height: math.unit(10, "feet"),
  9218. default: true
  9219. },
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(500, "feet")
  9223. },
  9224. {
  9225. name: "Megamacro",
  9226. height: math.unit(5, "miles")
  9227. },
  9228. {
  9229. name: "Teramacro",
  9230. height: math.unit(150000, "miles")
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(6, "feet"),
  9239. weight: math.unit(150, "lb"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/cuon/front.svg",
  9243. extra: 1390 / 1320,
  9244. bottom: 0.008
  9245. }
  9246. },
  9247. },
  9248. [
  9249. {
  9250. name: "Micro",
  9251. height: math.unit(3, "inches")
  9252. },
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(18 + 9 / 12, "feet"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Macro",
  9260. height: math.unit(360, "feet")
  9261. },
  9262. {
  9263. name: "Megamacro",
  9264. height: math.unit(360, "miles")
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(2.4, "meters"),
  9273. weight: math.unit(70, "kg"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/nyanuxk/front.svg",
  9277. extra: 1172 / 1084,
  9278. bottom: 0.065
  9279. }
  9280. },
  9281. side: {
  9282. height: math.unit(2.4, "meters"),
  9283. weight: math.unit(70, "kg"),
  9284. name: "Side",
  9285. image: {
  9286. source: "./media/characters/nyanuxk/side.svg",
  9287. extra: 1190 / 1132,
  9288. bottom: 0.007
  9289. }
  9290. },
  9291. back: {
  9292. height: math.unit(2.4, "meters"),
  9293. weight: math.unit(70, "kg"),
  9294. name: "Back",
  9295. image: {
  9296. source: "./media/characters/nyanuxk/back.svg",
  9297. extra: 1200 / 1141,
  9298. bottom: 0.015
  9299. }
  9300. },
  9301. foot: {
  9302. height: math.unit(0.52, "meters"),
  9303. name: "Foot",
  9304. image: {
  9305. source: "./media/characters/nyanuxk/foot.svg"
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Micro",
  9312. height: math.unit(2, "cm")
  9313. },
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(2.4, "meters"),
  9317. default: true
  9318. },
  9319. {
  9320. name: "Smaller Macro",
  9321. height: math.unit(120, "meters")
  9322. },
  9323. {
  9324. name: "Bigger Macro",
  9325. height: math.unit(1.2, "km")
  9326. },
  9327. {
  9328. name: "Megamacro",
  9329. height: math.unit(15, "kilometers")
  9330. },
  9331. {
  9332. name: "Gigamacro",
  9333. height: math.unit(2000, "km")
  9334. },
  9335. {
  9336. name: "Teramacro",
  9337. height: math.unit(500000, "km")
  9338. },
  9339. ]
  9340. ))
  9341. characterMakers.push(() => makeCharacter(
  9342. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9343. {
  9344. side: {
  9345. height: math.unit(6, "feet"),
  9346. name: "Side",
  9347. image: {
  9348. source: "./media/characters/ailbhe/side.svg",
  9349. extra: 757 / 464,
  9350. bottom: 0.041
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(1.07, "meters"),
  9358. default: true
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9364. {
  9365. front: {
  9366. height: math.unit(6, "feet"),
  9367. weight: math.unit(120, "kg"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/zevulfius/front.svg",
  9371. extra: 965 / 903
  9372. }
  9373. },
  9374. side: {
  9375. height: math.unit(6, "feet"),
  9376. weight: math.unit(120, "kg"),
  9377. name: "Side",
  9378. image: {
  9379. source: "./media/characters/zevulfius/side.svg",
  9380. extra: 939 / 900
  9381. }
  9382. },
  9383. back: {
  9384. height: math.unit(6, "feet"),
  9385. weight: math.unit(120, "kg"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/zevulfius/back.svg",
  9389. extra: 918 / 854,
  9390. bottom: 0.005
  9391. }
  9392. },
  9393. foot: {
  9394. height: math.unit(6 / 3.72, "feet"),
  9395. name: "Foot",
  9396. image: {
  9397. source: "./media/characters/zevulfius/foot.svg"
  9398. }
  9399. },
  9400. },
  9401. [
  9402. {
  9403. name: "Macro",
  9404. height: math.unit(750, "meters")
  9405. },
  9406. {
  9407. name: "Megamacro",
  9408. height: math.unit(20, "km"),
  9409. default: true
  9410. },
  9411. {
  9412. name: "Gigamacro",
  9413. height: math.unit(2000, "km")
  9414. },
  9415. {
  9416. name: "Teramacro",
  9417. height: math.unit(250000, "km")
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9423. {
  9424. front: {
  9425. height: math.unit(100, "feet"),
  9426. weight: math.unit(350, "kg"),
  9427. name: "Front",
  9428. image: {
  9429. source: "./media/characters/rikes/front.svg",
  9430. extra: 1565 / 1483,
  9431. bottom: 0.017
  9432. }
  9433. },
  9434. },
  9435. [
  9436. {
  9437. name: "Macro",
  9438. height: math.unit(100, "feet"),
  9439. default: true
  9440. },
  9441. ]
  9442. ))
  9443. characterMakers.push(() => makeCharacter(
  9444. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9445. {
  9446. anthro: {
  9447. height: math.unit(8, "feet"),
  9448. weight: math.unit(120, "kg"),
  9449. name: "Anthro",
  9450. image: {
  9451. source: "./media/characters/adam-silver-mane/anthro.svg",
  9452. extra: 5743 / 5339,
  9453. bottom: 0.07
  9454. }
  9455. },
  9456. taur: {
  9457. height: math.unit(16, "feet"),
  9458. weight: math.unit(1500, "kg"),
  9459. name: "Taur",
  9460. image: {
  9461. source: "./media/characters/adam-silver-mane/taur.svg",
  9462. extra: 1713 / 1571,
  9463. bottom: 0.01
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(8, "feet")
  9471. },
  9472. {
  9473. name: "Minimacro",
  9474. height: math.unit(80, "feet")
  9475. },
  9476. {
  9477. name: "Macro",
  9478. height: math.unit(800, "feet"),
  9479. default: true
  9480. },
  9481. {
  9482. name: "Megamacro",
  9483. height: math.unit(8000, "feet")
  9484. },
  9485. {
  9486. name: "Gigamacro",
  9487. height: math.unit(800, "miles")
  9488. },
  9489. {
  9490. name: "Teramacro",
  9491. height: math.unit(80000, "miles")
  9492. },
  9493. {
  9494. name: "Celestial",
  9495. height: math.unit(8e6, "miles")
  9496. },
  9497. {
  9498. name: "Star Dragon",
  9499. height: math.unit(800000, "parsecs")
  9500. },
  9501. {
  9502. name: "Godly",
  9503. height: math.unit(800, "teraparsecs")
  9504. },
  9505. ]
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9509. {
  9510. front: {
  9511. height: math.unit(6, "feet"),
  9512. weight: math.unit(150, "lb"),
  9513. name: "Front",
  9514. image: {
  9515. source: "./media/characters/ky'owin/front.svg",
  9516. extra: 3888 / 3068,
  9517. bottom: 0.015
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(6 + 8 / 12, "feet")
  9525. },
  9526. {
  9527. name: "Large",
  9528. height: math.unit(68, "feet")
  9529. },
  9530. {
  9531. name: "Macro",
  9532. height: math.unit(132, "feet")
  9533. },
  9534. {
  9535. name: "Macro+",
  9536. height: math.unit(340, "feet")
  9537. },
  9538. {
  9539. name: "Macro++",
  9540. height: math.unit(680, "feet"),
  9541. default: true
  9542. },
  9543. {
  9544. name: "Megamacro",
  9545. height: math.unit(1, "mile")
  9546. },
  9547. {
  9548. name: "Megamacro+",
  9549. height: math.unit(10, "miles")
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(4, "feet"),
  9558. weight: math.unit(50, "lb"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/mal/front.svg",
  9562. extra: 785 / 724,
  9563. bottom: 0.07
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Micro",
  9570. height: math.unit(4, "inches")
  9571. },
  9572. {
  9573. name: "Normal",
  9574. height: math.unit(4, "feet"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Macro",
  9579. height: math.unit(200, "feet")
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(150, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/jordan-deware/front.svg",
  9592. extra: 1191 / 1012
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Nano",
  9599. height: math.unit(0.01, "mm")
  9600. },
  9601. {
  9602. name: "Minimicro",
  9603. height: math.unit(1, "mm")
  9604. },
  9605. {
  9606. name: "Micro",
  9607. height: math.unit(0.5, "inches")
  9608. },
  9609. {
  9610. name: "Normal",
  9611. height: math.unit(4, "feet"),
  9612. default: true
  9613. },
  9614. {
  9615. name: "Minimacro",
  9616. height: math.unit(40, "meters")
  9617. },
  9618. {
  9619. name: "Small Macro",
  9620. height: math.unit(400, "meters")
  9621. },
  9622. {
  9623. name: "Macro",
  9624. height: math.unit(4, "miles")
  9625. },
  9626. {
  9627. name: "Megamacro",
  9628. height: math.unit(40, "miles")
  9629. },
  9630. {
  9631. name: "Megamacro+",
  9632. height: math.unit(400, "miles")
  9633. },
  9634. {
  9635. name: "Gigamacro",
  9636. height: math.unit(400000, "miles")
  9637. },
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9642. {
  9643. side: {
  9644. height: math.unit(6, "feet"),
  9645. weight: math.unit(150, "lb"),
  9646. name: "Side",
  9647. image: {
  9648. source: "./media/characters/kimiko/side.svg",
  9649. extra: 600 / 358
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(15, "feet"),
  9657. default: true
  9658. },
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(220, "feet")
  9662. },
  9663. {
  9664. name: "Macro+",
  9665. height: math.unit(1450, "feet")
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(11500, "feet")
  9670. },
  9671. {
  9672. name: "Gigamacro",
  9673. height: math.unit(9500, "miles")
  9674. },
  9675. {
  9676. name: "Teramacro",
  9677. height: math.unit(2208005005, "miles")
  9678. },
  9679. {
  9680. name: "Examacro",
  9681. height: math.unit(2750, "parsecs")
  9682. },
  9683. {
  9684. name: "Zettamacro",
  9685. height: math.unit(101500, "parsecs")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(70, "kg"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/andrew-sleepy/front.svg"
  9698. }
  9699. },
  9700. side: {
  9701. height: math.unit(6, "feet"),
  9702. weight: math.unit(70, "kg"),
  9703. name: "Side",
  9704. image: {
  9705. source: "./media/characters/andrew-sleepy/side.svg"
  9706. }
  9707. },
  9708. },
  9709. [
  9710. {
  9711. name: "Micro",
  9712. height: math.unit(1, "mm"),
  9713. default: true
  9714. },
  9715. ]
  9716. ))
  9717. characterMakers.push(() => makeCharacter(
  9718. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9719. {
  9720. front: {
  9721. height: math.unit(6, "feet"),
  9722. weight: math.unit(150, "lb"),
  9723. name: "Front",
  9724. image: {
  9725. source: "./media/characters/judio/front.svg",
  9726. extra: 1258 / 1110
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(5 + 6 / 12, "feet")
  9734. },
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(1000, "feet"),
  9738. default: true
  9739. },
  9740. {
  9741. name: "Megamacro",
  9742. height: math.unit(10, "miles")
  9743. },
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9748. {
  9749. front: {
  9750. height: math.unit(6, "feet"),
  9751. weight: math.unit(68, "kg"),
  9752. name: "Front",
  9753. image: {
  9754. source: "./media/characters/nomaxice/front.svg",
  9755. extra: 1498 / 1073,
  9756. bottom: 0.075
  9757. }
  9758. },
  9759. foot: {
  9760. height: math.unit(1.1, "feet"),
  9761. name: "Foot",
  9762. image: {
  9763. source: "./media/characters/nomaxice/foot.svg"
  9764. }
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Micro",
  9770. height: math.unit(8, "cm")
  9771. },
  9772. {
  9773. name: "Norm",
  9774. height: math.unit(1.82, "m")
  9775. },
  9776. {
  9777. name: "Norm+",
  9778. height: math.unit(8.8, "feet")
  9779. },
  9780. {
  9781. name: "Big",
  9782. height: math.unit(8, "meters"),
  9783. default: true
  9784. },
  9785. {
  9786. name: "Macro",
  9787. height: math.unit(18, "meters")
  9788. },
  9789. {
  9790. name: "Macro+",
  9791. height: math.unit(88, "meters")
  9792. },
  9793. ]
  9794. ))
  9795. characterMakers.push(() => makeCharacter(
  9796. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9797. {
  9798. front: {
  9799. height: math.unit(12, "feet"),
  9800. weight: math.unit(1.5, "tons"),
  9801. name: "Front",
  9802. image: {
  9803. source: "./media/characters/dydros/front.svg",
  9804. extra: 863 / 800,
  9805. bottom: 0.015
  9806. }
  9807. },
  9808. back: {
  9809. height: math.unit(12, "feet"),
  9810. weight: math.unit(1.5, "tons"),
  9811. name: "Back",
  9812. image: {
  9813. source: "./media/characters/dydros/back.svg",
  9814. extra: 900 / 843,
  9815. bottom: 0.005
  9816. }
  9817. },
  9818. },
  9819. [
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(12, "feet"),
  9823. default: true
  9824. },
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(100, "kg"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/riggi/front.svg",
  9836. extra: 5787 / 5303
  9837. }
  9838. },
  9839. hyper: {
  9840. height: math.unit(6 * 5 / 3, "feet"),
  9841. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9842. name: "Hyper",
  9843. image: {
  9844. source: "./media/characters/riggi/hyper.svg",
  9845. extra: 3595 / 3485
  9846. }
  9847. },
  9848. },
  9849. [
  9850. {
  9851. name: "Small Macro",
  9852. height: math.unit(50, "feet")
  9853. },
  9854. {
  9855. name: "Default",
  9856. height: math.unit(200, "feet"),
  9857. default: true
  9858. },
  9859. {
  9860. name: "Loom",
  9861. height: math.unit(10000, "feet")
  9862. },
  9863. {
  9864. name: "Cruising Altitude",
  9865. height: math.unit(30000, "feet")
  9866. },
  9867. {
  9868. name: "Megamacro",
  9869. height: math.unit(100, "miles")
  9870. },
  9871. {
  9872. name: "Continent Sized",
  9873. height: math.unit(2800, "miles")
  9874. },
  9875. {
  9876. name: "Earth Sized",
  9877. height: math.unit(8000, "miles")
  9878. },
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9883. {
  9884. front: {
  9885. height: math.unit(6, "feet"),
  9886. weight: math.unit(250, "lb"),
  9887. name: "Front",
  9888. image: {
  9889. source: "./media/characters/alexi/front.svg",
  9890. extra: 3483 / 3291,
  9891. bottom: 0.04
  9892. }
  9893. },
  9894. back: {
  9895. height: math.unit(6, "feet"),
  9896. weight: math.unit(250, "lb"),
  9897. name: "Back",
  9898. image: {
  9899. source: "./media/characters/alexi/back.svg",
  9900. extra: 3533 / 3356,
  9901. bottom: 0.021
  9902. }
  9903. },
  9904. frontTransforming: {
  9905. height: math.unit(8.58, "feet"),
  9906. weight: math.unit(1300, "lb"),
  9907. name: "Transforming",
  9908. image: {
  9909. source: "./media/characters/alexi/front-transforming.svg",
  9910. extra: 437 / 409,
  9911. bottom: 19 / 458.66
  9912. }
  9913. },
  9914. frontTransformed: {
  9915. height: math.unit(12.5, "feet"),
  9916. weight: math.unit(4000, "lb"),
  9917. name: "Transformed",
  9918. image: {
  9919. source: "./media/characters/alexi/front-transformed.svg",
  9920. extra: 639 / 614,
  9921. bottom: 30.55 / 671
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Normal",
  9928. height: math.unit(3, "meters"),
  9929. default: true
  9930. },
  9931. {
  9932. name: "Minimacro",
  9933. height: math.unit(30, "meters")
  9934. },
  9935. {
  9936. name: "Macro",
  9937. height: math.unit(500, "meters")
  9938. },
  9939. {
  9940. name: "Megamacro",
  9941. height: math.unit(9000, "km")
  9942. },
  9943. {
  9944. name: "Teramacro",
  9945. height: math.unit(384000, "km")
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9951. {
  9952. front: {
  9953. height: math.unit(6, "feet"),
  9954. weight: math.unit(150, "lb"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/kayroo/front.svg",
  9958. extra: 1153 / 1038,
  9959. bottom: 0.06
  9960. }
  9961. },
  9962. foot: {
  9963. height: math.unit(6, "feet"),
  9964. weight: math.unit(150, "lb"),
  9965. name: "Foot",
  9966. image: {
  9967. source: "./media/characters/kayroo/foot.svg"
  9968. }
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Normal",
  9974. height: math.unit(8, "feet"),
  9975. default: true
  9976. },
  9977. {
  9978. name: "Minimacro",
  9979. height: math.unit(250, "feet")
  9980. },
  9981. {
  9982. name: "Macro",
  9983. height: math.unit(2800, "feet")
  9984. },
  9985. {
  9986. name: "Megamacro",
  9987. height: math.unit(5200, "feet")
  9988. },
  9989. {
  9990. name: "Gigamacro",
  9991. height: math.unit(27000, "feet")
  9992. },
  9993. {
  9994. name: "Omega",
  9995. height: math.unit(45000, "feet")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(18, "feet"),
  10004. weight: math.unit(5800, "lb"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/rhys/front.svg",
  10008. extra: 3386 / 3090,
  10009. bottom: 0.07
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(18, "feet"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Working Size",
  10021. height: math.unit(200, "feet")
  10022. },
  10023. {
  10024. name: "Demolition Size",
  10025. height: math.unit(2000, "feet")
  10026. },
  10027. {
  10028. name: "Maximum Licensed Size",
  10029. height: math.unit(5, "miles")
  10030. },
  10031. {
  10032. name: "Maximum Observed Size",
  10033. height: math.unit(10, "yottameters")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(250, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/toto/front.svg",
  10046. extra: 527 / 479,
  10047. bottom: 0.05
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Micro",
  10054. height: math.unit(3, "feet")
  10055. },
  10056. {
  10057. name: "Normal",
  10058. height: math.unit(10, "feet")
  10059. },
  10060. {
  10061. name: "Macro",
  10062. height: math.unit(150, "feet"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Megamacro",
  10067. height: math.unit(1200, "feet")
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "King", species: ["lion"], tags: ["anthro"] },
  10073. {
  10074. back: {
  10075. height: math.unit(6, "feet"),
  10076. weight: math.unit(150, "lb"),
  10077. name: "Back",
  10078. image: {
  10079. source: "./media/characters/king/back.svg"
  10080. }
  10081. },
  10082. },
  10083. [
  10084. {
  10085. name: "Micro",
  10086. height: math.unit(2, "inches")
  10087. },
  10088. {
  10089. name: "Normal",
  10090. height: math.unit(8, "feet")
  10091. },
  10092. {
  10093. name: "Macro",
  10094. height: math.unit(200, "feet"),
  10095. default: true
  10096. },
  10097. {
  10098. name: "Megamacro",
  10099. height: math.unit(50, "miles")
  10100. },
  10101. ]
  10102. ))
  10103. characterMakers.push(() => makeCharacter(
  10104. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10105. {
  10106. anthro: {
  10107. height: math.unit(6 + 5 / 12, "feet"),
  10108. weight: math.unit(280, "lb"),
  10109. name: "Anthro",
  10110. image: {
  10111. source: "./media/characters/cordite/anthro.svg",
  10112. extra: 1986 / 1905,
  10113. bottom: 0.025
  10114. }
  10115. },
  10116. feral: {
  10117. height: math.unit(2, "feet"),
  10118. weight: math.unit(90, "lb"),
  10119. name: "Feral",
  10120. image: {
  10121. source: "./media/characters/cordite/feral.svg",
  10122. extra: 1260 / 755,
  10123. bottom: 0.05
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Normal",
  10130. height: math.unit(6 + 5 / 12, "feet"),
  10131. default: true
  10132. },
  10133. ]
  10134. ))
  10135. characterMakers.push(() => makeCharacter(
  10136. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10137. {
  10138. front: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(150, "lb"),
  10141. name: "Front",
  10142. image: {
  10143. source: "./media/characters/pianostrong/front.svg",
  10144. extra: 6577 / 6254,
  10145. bottom: 0.02
  10146. }
  10147. },
  10148. side: {
  10149. height: math.unit(6, "feet"),
  10150. weight: math.unit(150, "lb"),
  10151. name: "Side",
  10152. image: {
  10153. source: "./media/characters/pianostrong/side.svg",
  10154. extra: 6106 / 5730
  10155. }
  10156. },
  10157. back: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(150, "lb"),
  10160. name: "Back",
  10161. image: {
  10162. source: "./media/characters/pianostrong/back.svg",
  10163. extra: 6085 / 5733,
  10164. bottom: 0.01
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(100, "feet")
  10172. },
  10173. {
  10174. name: "Macro+",
  10175. height: math.unit(300, "feet"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Macro++",
  10180. height: math.unit(1000, "feet")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(150, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/kona/front.svg",
  10193. extra: 2960 / 2629,
  10194. bottom: 0.005
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(11 + 8 / 12, "feet")
  10202. },
  10203. {
  10204. name: "Macro",
  10205. height: math.unit(850, "feet"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Macro+",
  10210. height: math.unit(1.5, "km"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(80, "miles")
  10216. },
  10217. {
  10218. name: "Gigamacro",
  10219. height: math.unit(3500, "miles")
  10220. },
  10221. ]
  10222. ))
  10223. characterMakers.push(() => makeCharacter(
  10224. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10225. {
  10226. side: {
  10227. height: math.unit(1.9, "meters"),
  10228. weight: math.unit(326, "kg"),
  10229. name: "Side",
  10230. image: {
  10231. source: "./media/characters/levi/side.svg",
  10232. extra: 1704 / 1334,
  10233. bottom: 0.02
  10234. }
  10235. },
  10236. },
  10237. [
  10238. {
  10239. name: "Normal",
  10240. height: math.unit(1.9, "meters"),
  10241. default: true
  10242. },
  10243. {
  10244. name: "Macro",
  10245. height: math.unit(20, "meters")
  10246. },
  10247. {
  10248. name: "Macro+",
  10249. height: math.unit(200, "meters")
  10250. },
  10251. {
  10252. name: "Megamacro",
  10253. height: math.unit(2, "km")
  10254. },
  10255. {
  10256. name: "Megamacro+",
  10257. height: math.unit(20, "km")
  10258. },
  10259. {
  10260. name: "Gigamacro",
  10261. height: math.unit(2500, "km")
  10262. },
  10263. {
  10264. name: "Gigamacro+",
  10265. height: math.unit(120000, "km")
  10266. },
  10267. {
  10268. name: "Teramacro",
  10269. height: math.unit(7.77e6, "km")
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(6 + 4 / 12, "feet"),
  10278. weight: math.unit(188, "lb"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/bmc/front.svg",
  10282. extra: 1067 / 1022,
  10283. bottom: 0.047
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Human-sized",
  10290. height: math.unit(6 + 4 / 12, "feet")
  10291. },
  10292. {
  10293. name: "Small",
  10294. height: math.unit(250, "feet")
  10295. },
  10296. {
  10297. name: "Normal",
  10298. height: math.unit(1250, "feet"),
  10299. default: true
  10300. },
  10301. {
  10302. name: "Good Day",
  10303. height: math.unit(88, "miles")
  10304. },
  10305. {
  10306. name: "Largest Measured Size",
  10307. height: math.unit(11.2e6, "lightyears")
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10313. {
  10314. front: {
  10315. height: math.unit(20, "feet"),
  10316. weight: math.unit(2016, "kg"),
  10317. name: "Front",
  10318. image: {
  10319. source: "./media/characters/sven-the-kaiju/front.svg",
  10320. extra: 1479 / 1449,
  10321. bottom: 0.05
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Fairy",
  10328. height: math.unit(6, "inches")
  10329. },
  10330. {
  10331. name: "Normal",
  10332. height: math.unit(20, "feet"),
  10333. default: true
  10334. },
  10335. {
  10336. name: "Rampage",
  10337. height: math.unit(200, "feet")
  10338. },
  10339. {
  10340. name: "Archfey Forest Guardian",
  10341. height: math.unit(1, "mile")
  10342. },
  10343. ]
  10344. ))
  10345. characterMakers.push(() => makeCharacter(
  10346. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10347. {
  10348. front: {
  10349. height: math.unit(4, "meters"),
  10350. weight: math.unit(2, "tons"),
  10351. name: "Front",
  10352. image: {
  10353. source: "./media/characters/marik/front.svg",
  10354. extra: 1057 / 1003,
  10355. bottom: 0.08
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(4, "meters"),
  10363. default: true
  10364. },
  10365. {
  10366. name: "Macro",
  10367. height: math.unit(20, "meters")
  10368. },
  10369. {
  10370. name: "Megamacro",
  10371. height: math.unit(50, "km")
  10372. },
  10373. {
  10374. name: "Gigamacro",
  10375. height: math.unit(100, "km")
  10376. },
  10377. {
  10378. name: "Alpha Macro",
  10379. height: math.unit(7.88e7, "yottameters")
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(6, "feet"),
  10388. weight: math.unit(110, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/mel/front.svg",
  10392. extra: 736 / 617,
  10393. bottom: 0.017
  10394. }
  10395. },
  10396. },
  10397. [
  10398. {
  10399. name: "Pico",
  10400. height: math.unit(3, "pm")
  10401. },
  10402. {
  10403. name: "Nano",
  10404. height: math.unit(3, "nm")
  10405. },
  10406. {
  10407. name: "Micro",
  10408. height: math.unit(0.3, "mm"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Micro+",
  10413. height: math.unit(3, "mm")
  10414. },
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(5 + 10.5 / 12, "feet")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10423. {
  10424. kaiju: {
  10425. height: math.unit(1.75, "meters"),
  10426. weight: math.unit(55, "kg"),
  10427. name: "Kaiju",
  10428. image: {
  10429. source: "./media/characters/lykonous/kaiju.svg",
  10430. extra: 1055 / 946,
  10431. bottom: 0.135
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Normal",
  10438. height: math.unit(2.5, "meters"),
  10439. default: true
  10440. },
  10441. {
  10442. name: "Kaiju Dragon",
  10443. height: math.unit(60, "meters")
  10444. },
  10445. {
  10446. name: "Mega Kaiju",
  10447. height: math.unit(120, "km")
  10448. },
  10449. {
  10450. name: "Giga Kaiju",
  10451. height: math.unit(200, "megameters")
  10452. },
  10453. {
  10454. name: "Terra Kaiju",
  10455. height: math.unit(400, "gigameters")
  10456. },
  10457. {
  10458. name: "Kaiju Dragon God",
  10459. height: math.unit(13000, "exaparsecs")
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10465. {
  10466. front: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(150, "lb"),
  10469. name: "Front",
  10470. image: {
  10471. source: "./media/characters/blü/front.svg",
  10472. extra: 1883 / 1564,
  10473. bottom: 0.031
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Normal",
  10480. height: math.unit(13, "feet"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "Big Boi",
  10485. height: math.unit(150, "meters")
  10486. },
  10487. {
  10488. name: "Mini Stomper",
  10489. height: math.unit(300, "meters")
  10490. },
  10491. {
  10492. name: "Macro",
  10493. height: math.unit(1000, "meters")
  10494. },
  10495. {
  10496. name: "Megamacro",
  10497. height: math.unit(11000, "meters")
  10498. },
  10499. {
  10500. name: "Gigamacro",
  10501. height: math.unit(11000, "km")
  10502. },
  10503. {
  10504. name: "Teramacro",
  10505. height: math.unit(420000, "km")
  10506. },
  10507. {
  10508. name: "Examacro",
  10509. height: math.unit(120, "parsecs")
  10510. },
  10511. {
  10512. name: "God Tho",
  10513. height: math.unit(98000000000, "parsecs")
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10519. {
  10520. taurFront: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(200, "lb"),
  10523. name: "Taur (Front)",
  10524. image: {
  10525. source: "./media/characters/scales/taur-front.svg",
  10526. extra: 1,
  10527. bottom: 0.05
  10528. }
  10529. },
  10530. taurBack: {
  10531. height: math.unit(6, "feet"),
  10532. weight: math.unit(200, "lb"),
  10533. name: "Taur (Back)",
  10534. image: {
  10535. source: "./media/characters/scales/taur-back.svg",
  10536. extra: 1,
  10537. bottom: 0.08
  10538. }
  10539. },
  10540. anthro: {
  10541. height: math.unit(6 * 7 / 12, "feet"),
  10542. weight: math.unit(100, "lb"),
  10543. name: "Anthro",
  10544. image: {
  10545. source: "./media/characters/scales/anthro.svg",
  10546. extra: 1,
  10547. bottom: 0.06
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Normal",
  10554. height: math.unit(12, "feet"),
  10555. default: true
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(6, "feet"),
  10564. weight: math.unit(150, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/koragos/front.svg",
  10568. extra: 841 / 794,
  10569. bottom: 0.035
  10570. }
  10571. },
  10572. back: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(150, "lb"),
  10575. name: "Back",
  10576. image: {
  10577. source: "./media/characters/koragos/back.svg",
  10578. extra: 841 / 810,
  10579. bottom: 0.022
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Normal",
  10586. height: math.unit(6 + 11 / 12, "feet"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Macro",
  10591. height: math.unit(490, "feet")
  10592. },
  10593. {
  10594. name: "Megamacro",
  10595. height: math.unit(10, "miles")
  10596. },
  10597. {
  10598. name: "Gigamacro",
  10599. height: math.unit(50, "miles")
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(250, "lb"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/xylrem/front.svg",
  10612. extra: 3323 / 3050,
  10613. bottom: 0.065
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Micro",
  10620. height: math.unit(4, "feet")
  10621. },
  10622. {
  10623. name: "Normal",
  10624. height: math.unit(16, "feet"),
  10625. default: true
  10626. },
  10627. {
  10628. name: "Macro",
  10629. height: math.unit(2720, "feet")
  10630. },
  10631. {
  10632. name: "Megamacro",
  10633. height: math.unit(25000, "miles")
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10639. {
  10640. front: {
  10641. height: math.unit(8, "feet"),
  10642. weight: math.unit(250, "kg"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/ikideru/front.svg",
  10646. extra: 930 / 870,
  10647. bottom: 0.087
  10648. }
  10649. },
  10650. back: {
  10651. height: math.unit(8, "feet"),
  10652. weight: math.unit(250, "kg"),
  10653. name: "Back",
  10654. image: {
  10655. source: "./media/characters/ikideru/back.svg",
  10656. extra: 919 / 852,
  10657. bottom: 0.055
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Rare",
  10664. height: math.unit(8, "feet"),
  10665. default: true
  10666. },
  10667. {
  10668. name: "Playful Loom",
  10669. height: math.unit(80, "feet")
  10670. },
  10671. {
  10672. name: "City Leaner",
  10673. height: math.unit(230, "feet")
  10674. },
  10675. {
  10676. name: "Megamacro",
  10677. height: math.unit(2500, "feet")
  10678. },
  10679. {
  10680. name: "Gigamacro",
  10681. height: math.unit(26400, "feet")
  10682. },
  10683. {
  10684. name: "Tectonic Shifter",
  10685. height: math.unit(1.7, "megameters")
  10686. },
  10687. {
  10688. name: "Planet Carer",
  10689. height: math.unit(21, "megameters")
  10690. },
  10691. {
  10692. name: "God",
  10693. height: math.unit(11157.22, "parsecs")
  10694. },
  10695. ]
  10696. ))
  10697. characterMakers.push(() => makeCharacter(
  10698. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10699. {
  10700. front: {
  10701. height: math.unit(6, "feet"),
  10702. weight: math.unit(120, "lb"),
  10703. name: "Front",
  10704. image: {
  10705. source: "./media/characters/neo/front.svg"
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Micro",
  10712. height: math.unit(2, "inches"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Human Size",
  10717. height: math.unit(5 + 8 / 12, "feet")
  10718. },
  10719. ]
  10720. ))
  10721. characterMakers.push(() => makeCharacter(
  10722. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10723. {
  10724. front: {
  10725. height: math.unit(13 + 10 / 12, "feet"),
  10726. weight: math.unit(5320, "lb"),
  10727. name: "Front",
  10728. image: {
  10729. source: "./media/characters/chauncey-chantz/front.svg",
  10730. extra: 1587 / 1435,
  10731. bottom: 0.02
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Normal",
  10738. height: math.unit(13 + 10 / 12, "feet"),
  10739. default: true
  10740. },
  10741. {
  10742. name: "Macro",
  10743. height: math.unit(45, "feet")
  10744. },
  10745. {
  10746. name: "Megamacro",
  10747. height: math.unit(250, "miles")
  10748. },
  10749. {
  10750. name: "Planetary",
  10751. height: math.unit(10000, "miles")
  10752. },
  10753. {
  10754. name: "Galactic",
  10755. height: math.unit(40000, "parsecs")
  10756. },
  10757. {
  10758. name: "Universal",
  10759. height: math.unit(1, "yottameter")
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10765. {
  10766. front: {
  10767. height: math.unit(6, "feet"),
  10768. weight: math.unit(150, "lb"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/epifox/front.svg",
  10772. extra: 1,
  10773. bottom: 0.075
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Micro",
  10780. height: math.unit(6, "inches")
  10781. },
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(12, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Macro",
  10789. height: math.unit(3810, "feet")
  10790. },
  10791. {
  10792. name: "Megamacro",
  10793. height: math.unit(500, "miles")
  10794. },
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10799. {
  10800. front: {
  10801. height: math.unit(1.8796, "m"),
  10802. weight: math.unit(230, "lb"),
  10803. name: "Front",
  10804. image: {
  10805. source: "./media/characters/colin-t/front.svg",
  10806. extra: 1272 / 1193,
  10807. bottom: 0.07
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Micro",
  10814. height: math.unit(0.571, "meters")
  10815. },
  10816. {
  10817. name: "Normal",
  10818. height: math.unit(1.8796, "meters"),
  10819. default: true
  10820. },
  10821. {
  10822. name: "Tall",
  10823. height: math.unit(4, "meters")
  10824. },
  10825. {
  10826. name: "Macro",
  10827. height: math.unit(67.241, "meters")
  10828. },
  10829. {
  10830. name: "Megamacro",
  10831. height: math.unit(371.856, "meters")
  10832. },
  10833. {
  10834. name: "Planetary",
  10835. height: math.unit(12631.5689, "km")
  10836. },
  10837. ]
  10838. ))
  10839. characterMakers.push(() => makeCharacter(
  10840. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10841. {
  10842. front: {
  10843. height: math.unit(1.85, "meters"),
  10844. weight: math.unit(80, "kg"),
  10845. name: "Front",
  10846. image: {
  10847. source: "./media/characters/matvei/front.svg",
  10848. extra: 614 / 594,
  10849. bottom: 0.01
  10850. }
  10851. },
  10852. },
  10853. [
  10854. {
  10855. name: "Normal",
  10856. height: math.unit(1.85, "meters"),
  10857. default: true
  10858. },
  10859. ]
  10860. ))
  10861. characterMakers.push(() => makeCharacter(
  10862. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10863. {
  10864. front: {
  10865. height: math.unit(5 + 9 / 12, "feet"),
  10866. weight: math.unit(70, "lb"),
  10867. name: "Front",
  10868. image: {
  10869. source: "./media/characters/quincy/front.svg",
  10870. extra: 3041 / 2751
  10871. }
  10872. },
  10873. back: {
  10874. height: math.unit(5 + 9 / 12, "feet"),
  10875. weight: math.unit(70, "lb"),
  10876. name: "Back",
  10877. image: {
  10878. source: "./media/characters/quincy/back.svg",
  10879. extra: 3041 / 2751
  10880. }
  10881. },
  10882. flying: {
  10883. height: math.unit(5 + 4 / 12, "feet"),
  10884. weight: math.unit(70, "lb"),
  10885. name: "Flying",
  10886. image: {
  10887. source: "./media/characters/quincy/flying.svg",
  10888. extra: 1044 / 930
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Micro",
  10895. height: math.unit(3, "cm")
  10896. },
  10897. {
  10898. name: "Normal",
  10899. height: math.unit(5 + 9 / 12, "feet")
  10900. },
  10901. {
  10902. name: "Macro",
  10903. height: math.unit(200, "meters"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(1000, "meters")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(4 + 7 / 12, "feet"),
  10917. weight: math.unit(150, "lb"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/vanrel/front.svg",
  10921. extra: 1,
  10922. bottom: 0.02
  10923. }
  10924. },
  10925. elemental: {
  10926. height: math.unit(3, "feet"),
  10927. weight: math.unit(150, "lb"),
  10928. name: "Elemental",
  10929. image: {
  10930. source: "./media/characters/vanrel/elemental.svg",
  10931. extra: 192.3 / 162.8,
  10932. bottom: 1.79 / 194.17
  10933. }
  10934. },
  10935. side: {
  10936. height: math.unit(4 + 7 / 12, "feet"),
  10937. weight: math.unit(150, "lb"),
  10938. name: "Side",
  10939. image: {
  10940. source: "./media/characters/vanrel/side.svg",
  10941. extra: 1,
  10942. bottom: 0.025
  10943. }
  10944. },
  10945. tome: {
  10946. height: math.unit(1.35, "feet"),
  10947. weight: math.unit(10, "lb"),
  10948. name: "Vanrel's Tome",
  10949. rename: true,
  10950. image: {
  10951. source: "./media/characters/vanrel/tome.svg"
  10952. }
  10953. },
  10954. beans: {
  10955. height: math.unit(0.89, "feet"),
  10956. name: "Beans",
  10957. image: {
  10958. source: "./media/characters/vanrel/beans.svg"
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(4 + 7 / 12, "feet"),
  10966. default: true
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(7 + 5 / 12, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/kuiper-vanrel/front.svg",
  10979. extra: 1118 / 1068,
  10980. bottom: 0.09
  10981. }
  10982. },
  10983. foot: {
  10984. height: math.unit(0.55, "meters"),
  10985. name: "Foot",
  10986. image: {
  10987. source: "./media/characters/kuiper-vanrel/foot.svg",
  10988. }
  10989. },
  10990. battle: {
  10991. height: math.unit(6.824, "feet"),
  10992. weight: math.unit(150, "lb"),
  10993. name: "Battle",
  10994. image: {
  10995. source: "./media/characters/kuiper-vanrel/battle.svg",
  10996. extra: 1466 / 1327,
  10997. bottom: 29 / 1492.5
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(7 + 5 / 12, "feet"),
  11005. default: true
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(8 + 5 / 12, "feet"),
  11014. weight: math.unit(150, "lb"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/keset-vanrel/front.svg",
  11018. extra: 1150 / 1084,
  11019. bottom: 0.05
  11020. }
  11021. },
  11022. hand: {
  11023. height: math.unit(0.6, "meters"),
  11024. name: "Hand",
  11025. image: {
  11026. source: "./media/characters/keset-vanrel/hand.svg"
  11027. }
  11028. },
  11029. foot: {
  11030. height: math.unit(0.94978, "meters"),
  11031. name: "Foot",
  11032. image: {
  11033. source: "./media/characters/keset-vanrel/foot.svg"
  11034. }
  11035. },
  11036. battle: {
  11037. height: math.unit(7.408, "feet"),
  11038. weight: math.unit(150, "lb"),
  11039. name: "Battle",
  11040. image: {
  11041. source: "./media/characters/keset-vanrel/battle.svg",
  11042. extra: 1890 / 1386,
  11043. bottom: 73.28 / 1970
  11044. }
  11045. },
  11046. },
  11047. [
  11048. {
  11049. name: "Normal",
  11050. height: math.unit(8 + 5 / 12, "feet"),
  11051. default: true
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(6, "feet"),
  11060. weight: math.unit(150, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/neos/front.svg",
  11064. extra: 1696 / 992,
  11065. bottom: 0.14
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(54, "cm"),
  11073. default: true
  11074. },
  11075. {
  11076. name: "Macro",
  11077. height: math.unit(100, "m")
  11078. },
  11079. {
  11080. name: "Megamacro",
  11081. height: math.unit(10, "km")
  11082. },
  11083. {
  11084. name: "Megamacro+",
  11085. height: math.unit(100, "km")
  11086. },
  11087. {
  11088. name: "Gigamacro",
  11089. height: math.unit(100, "Mm")
  11090. },
  11091. {
  11092. name: "Teramacro",
  11093. height: math.unit(100, "Gm")
  11094. },
  11095. {
  11096. name: "Examacro",
  11097. height: math.unit(100, "Em")
  11098. },
  11099. {
  11100. name: "Godly",
  11101. height: math.unit(10000, "Ym")
  11102. },
  11103. {
  11104. name: "Beyond Godly",
  11105. height: math.unit(25, "multiverses")
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11111. {
  11112. feminine: {
  11113. height: math.unit(5, "feet"),
  11114. weight: math.unit(100, "lb"),
  11115. name: "Feminine",
  11116. image: {
  11117. source: "./media/characters/sammy-mouse/feminine.svg",
  11118. extra: 2526 / 2425,
  11119. bottom: 0.123
  11120. }
  11121. },
  11122. masculine: {
  11123. height: math.unit(5, "feet"),
  11124. weight: math.unit(100, "lb"),
  11125. name: "Masculine",
  11126. image: {
  11127. source: "./media/characters/sammy-mouse/masculine.svg",
  11128. extra: 2526 / 2425,
  11129. bottom: 0.123
  11130. }
  11131. },
  11132. },
  11133. [
  11134. {
  11135. name: "Micro",
  11136. height: math.unit(5, "inches")
  11137. },
  11138. {
  11139. name: "Normal",
  11140. height: math.unit(5, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Macro",
  11145. height: math.unit(60, "feet")
  11146. },
  11147. ]
  11148. ))
  11149. characterMakers.push(() => makeCharacter(
  11150. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11151. {
  11152. front: {
  11153. height: math.unit(4, "feet"),
  11154. weight: math.unit(50, "lb"),
  11155. name: "Front",
  11156. image: {
  11157. source: "./media/characters/kole/front.svg",
  11158. extra: 1423 / 1303,
  11159. bottom: 0.025
  11160. }
  11161. },
  11162. back: {
  11163. height: math.unit(4, "feet"),
  11164. weight: math.unit(50, "lb"),
  11165. name: "Back",
  11166. image: {
  11167. source: "./media/characters/kole/back.svg",
  11168. extra: 1426 / 1280,
  11169. bottom: 0.02
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Normal",
  11176. height: math.unit(4, "feet"),
  11177. default: true
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11183. {
  11184. front: {
  11185. height: math.unit(2 + 6 / 12, "feet"),
  11186. weight: math.unit(20, "lb"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/rufran/front.svg",
  11190. extra: 2041 / 1839,
  11191. bottom: 0.055
  11192. }
  11193. },
  11194. back: {
  11195. height: math.unit(2 + 6 / 12, "feet"),
  11196. weight: math.unit(20, "lb"),
  11197. name: "Back",
  11198. image: {
  11199. source: "./media/characters/rufran/back.svg",
  11200. extra: 2054 / 1839,
  11201. bottom: 0.01
  11202. }
  11203. },
  11204. hand: {
  11205. height: math.unit(0.2166, "meters"),
  11206. name: "Hand",
  11207. image: {
  11208. source: "./media/characters/rufran/hand.svg"
  11209. }
  11210. },
  11211. foot: {
  11212. height: math.unit(0.185, "meters"),
  11213. name: "Foot",
  11214. image: {
  11215. source: "./media/characters/rufran/foot.svg"
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Micro",
  11222. height: math.unit(1, "inch")
  11223. },
  11224. {
  11225. name: "Normal",
  11226. height: math.unit(2 + 6 / 12, "feet"),
  11227. default: true
  11228. },
  11229. {
  11230. name: "Big",
  11231. height: math.unit(60, "feet")
  11232. },
  11233. {
  11234. name: "Macro",
  11235. height: math.unit(325, "feet")
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(0.3, "meters"),
  11244. weight: math.unit(3.5, "kg"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/chip/front.svg",
  11248. extra: 748 / 674
  11249. }
  11250. },
  11251. },
  11252. [
  11253. {
  11254. name: "Micro",
  11255. height: math.unit(1, "inch"),
  11256. default: true
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11262. {
  11263. side: {
  11264. height: math.unit(2.3, "meters"),
  11265. weight: math.unit(3500, "lb"),
  11266. name: "Side",
  11267. image: {
  11268. source: "./media/characters/torvid/side.svg",
  11269. extra: 1972 / 722,
  11270. bottom: 0.035
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(2.3, "meters"),
  11278. default: true
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(2, "meters"),
  11287. weight: math.unit(150.5, "kg"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/susan/front.svg",
  11291. extra: 693 / 635,
  11292. bottom: 0.05
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Megamacro",
  11299. height: math.unit(505, "miles"),
  11300. default: true
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(150, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/raindrops/front.svg",
  11313. extra: 2655 / 2461,
  11314. bottom: 0.02
  11315. }
  11316. },
  11317. back: {
  11318. height: math.unit(6, "feet"),
  11319. weight: math.unit(150, "lb"),
  11320. name: "Back",
  11321. image: {
  11322. source: "./media/characters/raindrops/back.svg",
  11323. extra: 2574 / 2400,
  11324. bottom: 0.03
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Micro",
  11331. height: math.unit(6, "inches")
  11332. },
  11333. {
  11334. name: "Normal",
  11335. height: math.unit(6 + 2 / 12, "feet")
  11336. },
  11337. {
  11338. name: "Macro",
  11339. height: math.unit(131, "feet"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Megamacro",
  11344. height: math.unit(15, "miles")
  11345. },
  11346. {
  11347. name: "Gigamacro",
  11348. height: math.unit(4000, "miles")
  11349. },
  11350. {
  11351. name: "Teramacro",
  11352. height: math.unit(315000, "miles")
  11353. },
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11358. {
  11359. front: {
  11360. height: math.unit(2.794, "meters"),
  11361. weight: math.unit(325, "kg"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/tezwa/front.svg",
  11365. extra: 2083 / 1906,
  11366. bottom: 0.031
  11367. }
  11368. },
  11369. foot: {
  11370. height: math.unit(0.687, "meters"),
  11371. name: "Foot",
  11372. image: {
  11373. source: "./media/characters/tezwa/foot.svg"
  11374. }
  11375. },
  11376. },
  11377. [
  11378. {
  11379. name: "Normal",
  11380. height: math.unit(9 + 2 / 12, "feet"),
  11381. default: true
  11382. },
  11383. ]
  11384. ))
  11385. characterMakers.push(() => makeCharacter(
  11386. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11387. {
  11388. front: {
  11389. height: math.unit(58, "feet"),
  11390. weight: math.unit(89000, "lb"),
  11391. name: "Front",
  11392. image: {
  11393. source: "./media/characters/typhus/front.svg",
  11394. extra: 816 / 800,
  11395. bottom: 0.065
  11396. }
  11397. },
  11398. },
  11399. [
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(58, "feet"),
  11403. default: true
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11409. {
  11410. front: {
  11411. height: math.unit(12, "feet"),
  11412. weight: math.unit(6, "tonnes"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/lyra-von-wulf/front.svg",
  11416. extra: 1,
  11417. bottom: 0.10
  11418. }
  11419. },
  11420. frontMecha: {
  11421. height: math.unit(12, "feet"),
  11422. weight: math.unit(12, "tonnes"),
  11423. name: "Front (Mecha)",
  11424. image: {
  11425. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11426. extra: 1,
  11427. bottom: 0.042
  11428. }
  11429. },
  11430. maw: {
  11431. height: math.unit(2.2, "feet"),
  11432. name: "Maw",
  11433. image: {
  11434. source: "./media/characters/lyra-von-wulf/maw.svg"
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(12, "feet"),
  11442. default: true
  11443. },
  11444. {
  11445. name: "Classic",
  11446. height: math.unit(50, "feet")
  11447. },
  11448. {
  11449. name: "Macro",
  11450. height: math.unit(500, "feet")
  11451. },
  11452. {
  11453. name: "Megamacro",
  11454. height: math.unit(1, "mile")
  11455. },
  11456. {
  11457. name: "Gigamacro",
  11458. height: math.unit(400, "miles")
  11459. },
  11460. {
  11461. name: "Teramacro",
  11462. height: math.unit(22000, "miles")
  11463. },
  11464. {
  11465. name: "Solarmacro",
  11466. height: math.unit(8600000, "miles")
  11467. },
  11468. {
  11469. name: "Galactic",
  11470. height: math.unit(1057000, "lightyears")
  11471. },
  11472. ]
  11473. ))
  11474. characterMakers.push(() => makeCharacter(
  11475. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11476. {
  11477. front: {
  11478. height: math.unit(6 + 10 / 12, "feet"),
  11479. weight: math.unit(150, "lb"),
  11480. name: "Front",
  11481. image: {
  11482. source: "./media/characters/dixon/front.svg",
  11483. extra: 3361 / 3209,
  11484. bottom: 0.01
  11485. }
  11486. },
  11487. },
  11488. [
  11489. {
  11490. name: "Normal",
  11491. height: math.unit(6 + 10 / 12, "feet"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Big",
  11496. height: math.unit(12, "meters")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(500, "meters")
  11501. },
  11502. {
  11503. name: "Megamacro",
  11504. height: math.unit(2, "km")
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(185, "cm"),
  11513. weight: math.unit(68, "kg"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/kauko/front.svg",
  11517. extra: 1455 / 1421,
  11518. bottom: 0.03
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(185, "cm"),
  11523. weight: math.unit(68, "kg"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/kauko/back.svg",
  11527. extra: 1455 / 1421,
  11528. bottom: 0.004
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(185, "cm"),
  11536. default: true
  11537. },
  11538. ]
  11539. ))
  11540. characterMakers.push(() => makeCharacter(
  11541. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11542. {
  11543. front: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(150, "kg"),
  11546. name: "Front",
  11547. image: {
  11548. source: "./media/characters/varg/front.svg",
  11549. extra: 1108 / 1018,
  11550. bottom: 0.0375
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Normal",
  11557. height: math.unit(5, "meters")
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(200, "meters")
  11562. },
  11563. {
  11564. name: "Megamacro",
  11565. height: math.unit(20, "kilometers")
  11566. },
  11567. {
  11568. name: "True Size",
  11569. height: math.unit(211, "km"),
  11570. default: true
  11571. },
  11572. {
  11573. name: "Gigamacro",
  11574. height: math.unit(1000, "km")
  11575. },
  11576. {
  11577. name: "Gigamacro+",
  11578. height: math.unit(8000, "km")
  11579. },
  11580. {
  11581. name: "Teramacro",
  11582. height: math.unit(1000000, "km")
  11583. },
  11584. ]
  11585. ))
  11586. characterMakers.push(() => makeCharacter(
  11587. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11588. {
  11589. front: {
  11590. height: math.unit(7 + 7 / 12, "feet"),
  11591. weight: math.unit(267, "lb"),
  11592. name: "Front",
  11593. image: {
  11594. source: "./media/characters/dayza/front.svg",
  11595. extra: 1262 / 1200,
  11596. bottom: 0.035
  11597. }
  11598. },
  11599. side: {
  11600. height: math.unit(7 + 7 / 12, "feet"),
  11601. weight: math.unit(267, "lb"),
  11602. name: "Side",
  11603. image: {
  11604. source: "./media/characters/dayza/side.svg",
  11605. extra: 1295 / 1245,
  11606. bottom: 0.05
  11607. }
  11608. },
  11609. back: {
  11610. height: math.unit(7 + 7 / 12, "feet"),
  11611. weight: math.unit(267, "lb"),
  11612. name: "Back",
  11613. image: {
  11614. source: "./media/characters/dayza/back.svg",
  11615. extra: 1241 / 1170
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(7 + 7 / 12, "feet"),
  11623. default: true
  11624. },
  11625. {
  11626. name: "Macro",
  11627. height: math.unit(155, "feet")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(6 + 5 / 12, "feet"),
  11636. weight: math.unit(160, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/xanthos/front.svg",
  11640. extra: 1,
  11641. bottom: 0.04
  11642. }
  11643. },
  11644. back: {
  11645. height: math.unit(6 + 5 / 12, "feet"),
  11646. weight: math.unit(160, "lb"),
  11647. name: "Back",
  11648. image: {
  11649. source: "./media/characters/xanthos/back.svg",
  11650. extra: 1,
  11651. bottom: 0.03
  11652. }
  11653. },
  11654. hand: {
  11655. height: math.unit(0.928, "feet"),
  11656. name: "Hand",
  11657. image: {
  11658. source: "./media/characters/xanthos/hand.svg"
  11659. }
  11660. },
  11661. foot: {
  11662. height: math.unit(1.286, "feet"),
  11663. name: "Foot",
  11664. image: {
  11665. source: "./media/characters/xanthos/foot.svg"
  11666. }
  11667. },
  11668. },
  11669. [
  11670. {
  11671. name: "Normal",
  11672. height: math.unit(6 + 5 / 12, "feet"),
  11673. default: true
  11674. },
  11675. {
  11676. name: "Normal+",
  11677. height: math.unit(6, "meters")
  11678. },
  11679. {
  11680. name: "Macro",
  11681. height: math.unit(40, "feet")
  11682. },
  11683. {
  11684. name: "Macro+",
  11685. height: math.unit(200, "meters")
  11686. },
  11687. {
  11688. name: "Megamacro",
  11689. height: math.unit(20, "km")
  11690. },
  11691. {
  11692. name: "Megamacro+",
  11693. height: math.unit(100, "km")
  11694. },
  11695. ]
  11696. ))
  11697. characterMakers.push(() => makeCharacter(
  11698. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11699. {
  11700. front: {
  11701. height: math.unit(6 + 3 / 12, "feet"),
  11702. weight: math.unit(215, "lb"),
  11703. name: "Front",
  11704. image: {
  11705. source: "./media/characters/grynn/front.svg",
  11706. extra: 4627 / 4209,
  11707. bottom: 0.047
  11708. }
  11709. },
  11710. },
  11711. [
  11712. {
  11713. name: "Micro",
  11714. height: math.unit(6, "inches")
  11715. },
  11716. {
  11717. name: "Normal",
  11718. height: math.unit(6 + 3 / 12, "feet"),
  11719. default: true
  11720. },
  11721. {
  11722. name: "Big",
  11723. height: math.unit(104, "feet")
  11724. },
  11725. {
  11726. name: "Macro",
  11727. height: math.unit(944, "feet")
  11728. },
  11729. {
  11730. name: "Macro+",
  11731. height: math.unit(9480, "feet")
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(78752, "feet")
  11736. },
  11737. {
  11738. name: "Megamacro+",
  11739. height: math.unit(630128, "feet")
  11740. },
  11741. {
  11742. name: "Megamacro++",
  11743. height: math.unit(3150695, "feet")
  11744. },
  11745. ]
  11746. ))
  11747. characterMakers.push(() => makeCharacter(
  11748. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11749. {
  11750. front: {
  11751. height: math.unit(7 + 5 / 12, "feet"),
  11752. weight: math.unit(450, "lb"),
  11753. name: "Front",
  11754. image: {
  11755. source: "./media/characters/mocha-aura/front.svg",
  11756. extra: 1907 / 1817,
  11757. bottom: 0.04
  11758. }
  11759. },
  11760. back: {
  11761. height: math.unit(7 + 5 / 12, "feet"),
  11762. weight: math.unit(450, "lb"),
  11763. name: "Back",
  11764. image: {
  11765. source: "./media/characters/mocha-aura/back.svg",
  11766. extra: 1900 / 1825,
  11767. bottom: 0.045
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Nano",
  11774. height: math.unit(1, "nm")
  11775. },
  11776. {
  11777. name: "Megamicro",
  11778. height: math.unit(1, "mm")
  11779. },
  11780. {
  11781. name: "Micro",
  11782. height: math.unit(3, "inches")
  11783. },
  11784. {
  11785. name: "Normal",
  11786. height: math.unit(7 + 5 / 12, "feet"),
  11787. default: true
  11788. },
  11789. {
  11790. name: "Macro",
  11791. height: math.unit(30, "feet")
  11792. },
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(3500, "feet")
  11796. },
  11797. {
  11798. name: "Teramacro",
  11799. height: math.unit(500000, "miles")
  11800. },
  11801. {
  11802. name: "Petamacro",
  11803. height: math.unit(50000000000000000, "parsecs")
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(6, "feet"),
  11812. weight: math.unit(150, "lb"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/ilisha-devya/front.svg",
  11816. extra: 1,
  11817. bottom: 0.175
  11818. }
  11819. },
  11820. back: {
  11821. height: math.unit(6, "feet"),
  11822. weight: math.unit(150, "lb"),
  11823. name: "Back",
  11824. image: {
  11825. source: "./media/characters/ilisha-devya/back.svg",
  11826. extra: 1,
  11827. bottom: 0.015
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(500, "feet"),
  11835. default: true
  11836. },
  11837. {
  11838. name: "Megamacro",
  11839. height: math.unit(10, "miles")
  11840. },
  11841. {
  11842. name: "Gigamacro",
  11843. height: math.unit(100000, "miles")
  11844. },
  11845. {
  11846. name: "Examacro",
  11847. height: math.unit(1e9, "lightyears")
  11848. },
  11849. {
  11850. name: "Omniversal",
  11851. height: math.unit(1e33, "lightyears")
  11852. },
  11853. {
  11854. name: "Beyond Infinite",
  11855. height: math.unit(1e100, "lightyears")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11861. {
  11862. Side: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(150, "lb"),
  11865. name: "Side",
  11866. image: {
  11867. source: "./media/characters/mira/side.svg",
  11868. extra: 900 / 799,
  11869. bottom: 0.02
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Human Size",
  11876. height: math.unit(6, "feet")
  11877. },
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(100, "feet"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Megamacro",
  11885. height: math.unit(10, "miles")
  11886. },
  11887. {
  11888. name: "Gigamacro",
  11889. height: math.unit(25000, "miles")
  11890. },
  11891. {
  11892. name: "Teramacro",
  11893. height: math.unit(300, "AU")
  11894. },
  11895. {
  11896. name: "Full Size",
  11897. height: math.unit(4.5e10, "lightyears")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/holly/front.svg",
  11910. extra: 639 / 606
  11911. }
  11912. },
  11913. back: {
  11914. height: math.unit(6, "feet"),
  11915. weight: math.unit(150, "lb"),
  11916. name: "Back",
  11917. image: {
  11918. source: "./media/characters/holly/back.svg",
  11919. extra: 623 / 598
  11920. }
  11921. },
  11922. frontWorking: {
  11923. height: math.unit(6, "feet"),
  11924. weight: math.unit(150, "lb"),
  11925. name: "Front (Working)",
  11926. image: {
  11927. source: "./media/characters/holly/front-working.svg",
  11928. extra: 607 / 577,
  11929. bottom: 0.048
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Normal",
  11936. height: math.unit(12 + 3 / 12, "feet"),
  11937. default: true
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(6, "feet"),
  11946. weight: math.unit(150, "lb"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/porter/front.svg",
  11950. extra: 1,
  11951. bottom: 0.01
  11952. }
  11953. },
  11954. frontRobes: {
  11955. height: math.unit(6, "feet"),
  11956. weight: math.unit(150, "lb"),
  11957. name: "Front (Robes)",
  11958. image: {
  11959. source: "./media/characters/porter/front-robes.svg",
  11960. extra: 1.01,
  11961. bottom: 0.01
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(11 + 9 / 12, "feet"),
  11969. default: true
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11975. {
  11976. legendary: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Legendary",
  11980. image: {
  11981. source: "./media/characters/lucy/legendary.svg",
  11982. extra: 1355 / 1100,
  11983. bottom: 0.045
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Legendary",
  11990. height: math.unit(86882 * 2, "miles"),
  11991. default: true
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(150, "lb"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/drusilla/front.svg",
  12004. extra: 678 / 635,
  12005. bottom: 0.03
  12006. }
  12007. },
  12008. back: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Back",
  12012. image: {
  12013. source: "./media/characters/drusilla/back.svg",
  12014. extra: 678 / 635,
  12015. bottom: 0.005
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Macro",
  12022. height: math.unit(100, "feet")
  12023. },
  12024. {
  12025. name: "Canon Height",
  12026. height: math.unit(2000, "feet"),
  12027. default: true
  12028. },
  12029. ]
  12030. ))
  12031. characterMakers.push(() => makeCharacter(
  12032. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12033. {
  12034. front: {
  12035. height: math.unit(6, "feet"),
  12036. weight: math.unit(180, "lb"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/renard-thatch/front.svg",
  12040. extra: 2411 / 2275,
  12041. bottom: 0.01
  12042. }
  12043. },
  12044. frontPosing: {
  12045. height: math.unit(6, "feet"),
  12046. weight: math.unit(180, "lb"),
  12047. name: "Front (Posing)",
  12048. image: {
  12049. source: "./media/characters/renard-thatch/front-posing.svg",
  12050. extra: 2381 / 2261,
  12051. bottom: 0.01
  12052. }
  12053. },
  12054. back: {
  12055. height: math.unit(6, "feet"),
  12056. weight: math.unit(180, "lb"),
  12057. name: "Back",
  12058. image: {
  12059. source: "./media/characters/renard-thatch/back.svg",
  12060. extra: 2428 / 2288
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Micro",
  12067. height: math.unit(3, "inches")
  12068. },
  12069. {
  12070. name: "Default",
  12071. height: math.unit(6, "feet"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Macro",
  12076. height: math.unit(75, "feet")
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12082. {
  12083. front: {
  12084. height: math.unit(1450, "feet"),
  12085. weight: math.unit(1.21e6, "tons"),
  12086. name: "Front",
  12087. image: {
  12088. source: "./media/characters/sekvra/front.svg",
  12089. extra: 1,
  12090. bottom: 0.03
  12091. }
  12092. },
  12093. frontClothed: {
  12094. height: math.unit(1450, "feet"),
  12095. weight: math.unit(1.21e6, "tons"),
  12096. name: "Front (Clothed)",
  12097. image: {
  12098. source: "./media/characters/sekvra/front-clothed.svg",
  12099. extra: 1,
  12100. bottom: 0.03
  12101. }
  12102. },
  12103. side: {
  12104. height: math.unit(1450, "feet"),
  12105. weight: math.unit(1.21e6, "tons"),
  12106. name: "Side",
  12107. image: {
  12108. source: "./media/characters/sekvra/side.svg",
  12109. extra: 1,
  12110. bottom: 0.025
  12111. }
  12112. },
  12113. back: {
  12114. height: math.unit(1450, "feet"),
  12115. weight: math.unit(1.21e6, "tons"),
  12116. name: "Back",
  12117. image: {
  12118. source: "./media/characters/sekvra/back.svg",
  12119. extra: 1,
  12120. bottom: 0.005
  12121. }
  12122. },
  12123. },
  12124. [
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(1450, "feet"),
  12128. default: true
  12129. },
  12130. {
  12131. name: "Megamacro",
  12132. height: math.unit(15000, "feet")
  12133. },
  12134. ]
  12135. ))
  12136. characterMakers.push(() => makeCharacter(
  12137. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12138. {
  12139. front: {
  12140. height: math.unit(6, "feet"),
  12141. weight: math.unit(150, "lb"),
  12142. name: "Front",
  12143. image: {
  12144. source: "./media/characters/carmine/front.svg",
  12145. extra: 1,
  12146. bottom: 0.035
  12147. }
  12148. },
  12149. frontArmor: {
  12150. height: math.unit(6, "feet"),
  12151. weight: math.unit(150, "lb"),
  12152. name: "Front (Armor)",
  12153. image: {
  12154. source: "./media/characters/carmine/front-armor.svg",
  12155. extra: 1,
  12156. bottom: 0.035
  12157. }
  12158. },
  12159. },
  12160. [
  12161. {
  12162. name: "Large",
  12163. height: math.unit(1, "mile")
  12164. },
  12165. {
  12166. name: "Huge",
  12167. height: math.unit(40, "miles"),
  12168. default: true
  12169. },
  12170. {
  12171. name: "Colossal",
  12172. height: math.unit(2500, "miles")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(6, "feet"),
  12181. weight: math.unit(150, "lb"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/elyssia/front.svg",
  12185. extra: 2201 / 2035,
  12186. bottom: 0.05
  12187. }
  12188. },
  12189. frontClothed: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(150, "lb"),
  12192. name: "Front (Clothed)",
  12193. image: {
  12194. source: "./media/characters/elyssia/front-clothed.svg",
  12195. extra: 2201 / 2035,
  12196. bottom: 0.05
  12197. }
  12198. },
  12199. back: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(150, "lb"),
  12202. name: "Back",
  12203. image: {
  12204. source: "./media/characters/elyssia/back.svg",
  12205. extra: 2201 / 2035,
  12206. bottom: 0.013
  12207. }
  12208. },
  12209. },
  12210. [
  12211. {
  12212. name: "Smaller",
  12213. height: math.unit(150, "feet")
  12214. },
  12215. {
  12216. name: "Standard",
  12217. height: math.unit(1400, "feet"),
  12218. default: true
  12219. },
  12220. {
  12221. name: "Distracted",
  12222. height: math.unit(15000, "feet")
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(7 + 4 / 12, "feet"),
  12231. weight: math.unit(500, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/geno-maxwell/front.svg",
  12235. extra: 2207 / 2040,
  12236. bottom: 0.015
  12237. }
  12238. },
  12239. },
  12240. [
  12241. {
  12242. name: "Micro",
  12243. height: math.unit(3, "inches")
  12244. },
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(7 + 4 / 12, "feet"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Macro",
  12252. height: math.unit(220, "feet")
  12253. },
  12254. {
  12255. name: "Megamacro",
  12256. height: math.unit(11, "miles")
  12257. },
  12258. ]
  12259. ))
  12260. characterMakers.push(() => makeCharacter(
  12261. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12262. {
  12263. front: {
  12264. height: math.unit(7 + 4 / 12, "feet"),
  12265. weight: math.unit(500, "lb"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/regena-maxwell/front.svg",
  12269. extra: 3115 / 2770,
  12270. bottom: 0.02
  12271. }
  12272. },
  12273. },
  12274. [
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(7 + 4 / 12, "feet"),
  12278. default: true
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(220, "feet")
  12283. },
  12284. {
  12285. name: "Megamacro",
  12286. height: math.unit(11, "miles")
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12292. {
  12293. front: {
  12294. height: math.unit(6, "feet"),
  12295. weight: math.unit(150, "lb"),
  12296. name: "Front",
  12297. image: {
  12298. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12299. extra: 860 / 690,
  12300. bottom: 0.03
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(1.7, "meters"),
  12308. default: true
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12314. {
  12315. front: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Front",
  12319. image: {
  12320. source: "./media/characters/quilly/front.svg",
  12321. extra: 890 / 776
  12322. }
  12323. },
  12324. },
  12325. [
  12326. {
  12327. name: "Gigamacro",
  12328. height: math.unit(404090, "miles"),
  12329. default: true
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(7 + 8 / 12, "feet"),
  12338. weight: math.unit(350, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/tempest/front.svg",
  12342. extra: 1175 / 1086,
  12343. bottom: 0.02
  12344. }
  12345. },
  12346. },
  12347. [
  12348. {
  12349. name: "Normal",
  12350. height: math.unit(7 + 8 / 12, "feet"),
  12351. default: true
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12357. {
  12358. side: {
  12359. height: math.unit(4 + 5 / 12, "feet"),
  12360. weight: math.unit(80, "lb"),
  12361. name: "Side",
  12362. image: {
  12363. source: "./media/characters/rodger/side.svg",
  12364. extra: 1235 / 1118
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Micro",
  12371. height: math.unit(1, "inch")
  12372. },
  12373. {
  12374. name: "Normal",
  12375. height: math.unit(4 + 5 / 12, "feet"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(120, "feet")
  12381. },
  12382. ]
  12383. ))
  12384. characterMakers.push(() => makeCharacter(
  12385. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12386. {
  12387. front: {
  12388. height: math.unit(6, "feet"),
  12389. weight: math.unit(150, "lb"),
  12390. name: "Front",
  12391. image: {
  12392. source: "./media/characters/danyel/front.svg",
  12393. extra: 1185 / 1123,
  12394. bottom: 0.05
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Shrunken",
  12401. height: math.unit(0.5, "mm")
  12402. },
  12403. {
  12404. name: "Micro",
  12405. height: math.unit(1, "mm"),
  12406. default: true
  12407. },
  12408. {
  12409. name: "Upsized",
  12410. height: math.unit(5 + 5 / 12, "feet")
  12411. },
  12412. ]
  12413. ))
  12414. characterMakers.push(() => makeCharacter(
  12415. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12416. {
  12417. front: {
  12418. height: math.unit(5 + 6 / 12, "feet"),
  12419. weight: math.unit(200, "lb"),
  12420. name: "Front",
  12421. image: {
  12422. source: "./media/characters/vivian-bijoux/front.svg",
  12423. extra: 1,
  12424. bottom: 0.072
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Normal",
  12431. height: math.unit(5 + 6 / 12, "feet"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Bad Dream",
  12436. height: math.unit(500, "feet")
  12437. },
  12438. {
  12439. name: "Nightmare",
  12440. height: math.unit(500, "miles")
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(6 + 1 / 12, "feet"),
  12449. weight: math.unit(260, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/zeta/front.svg",
  12453. extra: 1968 / 1889,
  12454. bottom: 0.06
  12455. }
  12456. },
  12457. back: {
  12458. height: math.unit(6 + 1 / 12, "feet"),
  12459. weight: math.unit(260, "lb"),
  12460. name: "Back",
  12461. image: {
  12462. source: "./media/characters/zeta/back.svg",
  12463. extra: 1944 / 1858,
  12464. bottom: 0.03
  12465. }
  12466. },
  12467. hand: {
  12468. height: math.unit(1.112, "feet"),
  12469. name: "Hand",
  12470. image: {
  12471. source: "./media/characters/zeta/hand.svg"
  12472. }
  12473. },
  12474. foot: {
  12475. height: math.unit(1.48, "feet"),
  12476. name: "Foot",
  12477. image: {
  12478. source: "./media/characters/zeta/foot.svg"
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Micro",
  12485. height: math.unit(6, "inches")
  12486. },
  12487. {
  12488. name: "Normal",
  12489. height: math.unit(6 + 1 / 12, "feet"),
  12490. default: true
  12491. },
  12492. {
  12493. name: "Macro",
  12494. height: math.unit(20, "feet")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(150, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/jamie-larsen/front.svg",
  12507. extra: 962 / 933,
  12508. bottom: 0.02
  12509. }
  12510. },
  12511. back: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(150, "lb"),
  12514. name: "Back",
  12515. image: {
  12516. source: "./media/characters/jamie-larsen/back.svg",
  12517. extra: 997 / 946
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Macro",
  12524. height: math.unit(28 + 7 / 12, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Macro+",
  12529. height: math.unit(180, "feet")
  12530. },
  12531. {
  12532. name: "Megamacro",
  12533. height: math.unit(10, "miles")
  12534. },
  12535. {
  12536. name: "Gigamacro",
  12537. height: math.unit(200000, "miles")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(6, "feet"),
  12546. weight: math.unit(120, "lb"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/vance/front.svg",
  12550. extra: 1980 / 1890,
  12551. bottom: 0.09
  12552. }
  12553. },
  12554. back: {
  12555. height: math.unit(6, "feet"),
  12556. weight: math.unit(120, "lb"),
  12557. name: "Back",
  12558. image: {
  12559. source: "./media/characters/vance/back.svg",
  12560. extra: 2081 / 1994,
  12561. bottom: 0.014
  12562. }
  12563. },
  12564. hand: {
  12565. height: math.unit(0.88, "feet"),
  12566. name: "Hand",
  12567. image: {
  12568. source: "./media/characters/vance/hand.svg"
  12569. }
  12570. },
  12571. foot: {
  12572. height: math.unit(0.64, "feet"),
  12573. name: "Foot",
  12574. image: {
  12575. source: "./media/characters/vance/foot.svg"
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Small",
  12582. height: math.unit(90, "feet"),
  12583. default: true
  12584. },
  12585. {
  12586. name: "Macro",
  12587. height: math.unit(100, "meters")
  12588. },
  12589. {
  12590. name: "Megamacro",
  12591. height: math.unit(15, "miles")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(6, "feet"),
  12600. weight: math.unit(180, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/xochitl/front.svg",
  12604. extra: 2297 / 2261,
  12605. bottom: 0.065
  12606. }
  12607. },
  12608. back: {
  12609. height: math.unit(6, "feet"),
  12610. weight: math.unit(180, "lb"),
  12611. name: "Back",
  12612. image: {
  12613. source: "./media/characters/xochitl/back.svg",
  12614. extra: 2386 / 2354,
  12615. bottom: 0.01
  12616. }
  12617. },
  12618. foot: {
  12619. height: math.unit(6 / 5 * 1.15, "feet"),
  12620. weight: math.unit(150, "lb"),
  12621. name: "Foot",
  12622. image: {
  12623. source: "./media/characters/xochitl/foot.svg"
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(80, "feet")
  12631. },
  12632. {
  12633. name: "Macro+",
  12634. height: math.unit(400, "feet"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Gigamacro",
  12639. height: math.unit(80000, "miles")
  12640. },
  12641. {
  12642. name: "Gigamacro+",
  12643. height: math.unit(400000, "miles")
  12644. },
  12645. {
  12646. name: "Teramacro",
  12647. height: math.unit(300, "AU")
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(6, "feet"),
  12656. weight: math.unit(150, "lb"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/vincent/front.svg",
  12660. extra: 1130 / 1080,
  12661. bottom: 0.055
  12662. }
  12663. },
  12664. beak: {
  12665. height: math.unit(6 * 0.1, "feet"),
  12666. name: "Beak",
  12667. image: {
  12668. source: "./media/characters/vincent/beak.svg"
  12669. }
  12670. },
  12671. hand: {
  12672. height: math.unit(6 * 0.85, "feet"),
  12673. weight: math.unit(150, "lb"),
  12674. name: "Hand",
  12675. image: {
  12676. source: "./media/characters/vincent/hand.svg"
  12677. }
  12678. },
  12679. foot: {
  12680. height: math.unit(6 * 0.19, "feet"),
  12681. weight: math.unit(150, "lb"),
  12682. name: "Foot",
  12683. image: {
  12684. source: "./media/characters/vincent/foot.svg"
  12685. }
  12686. },
  12687. },
  12688. [
  12689. {
  12690. name: "Base",
  12691. height: math.unit(6 + 5 / 12, "feet"),
  12692. default: true
  12693. },
  12694. {
  12695. name: "Macro",
  12696. height: math.unit(300, "feet")
  12697. },
  12698. {
  12699. name: "Megamacro",
  12700. height: math.unit(2, "miles")
  12701. },
  12702. {
  12703. name: "Gigamacro",
  12704. height: math.unit(1000, "miles")
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(6 + 2 / 12, "feet"),
  12713. weight: math.unit(265, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/jay/front.svg",
  12717. extra: 1510 / 1430,
  12718. bottom: 0.042
  12719. }
  12720. },
  12721. back: {
  12722. height: math.unit(6 + 2 / 12, "feet"),
  12723. weight: math.unit(265, "lb"),
  12724. name: "Back",
  12725. image: {
  12726. source: "./media/characters/jay/back.svg",
  12727. extra: 1510 / 1430,
  12728. bottom: 0.025
  12729. }
  12730. },
  12731. clothed: {
  12732. height: math.unit(6 + 2 / 12, "feet"),
  12733. weight: math.unit(265, "lb"),
  12734. name: "Front (Clothed)",
  12735. image: {
  12736. source: "./media/characters/jay/clothed.svg",
  12737. extra: 744 / 699,
  12738. bottom: 0.043
  12739. }
  12740. },
  12741. head: {
  12742. height: math.unit(1.772, "feet"),
  12743. name: "Head",
  12744. image: {
  12745. source: "./media/characters/jay/head.svg"
  12746. }
  12747. },
  12748. sizeRay: {
  12749. height: math.unit(1.331, "feet"),
  12750. name: "Size Ray",
  12751. image: {
  12752. source: "./media/characters/jay/size-ray.svg"
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Micro",
  12759. height: math.unit(1, "inch")
  12760. },
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(6 + 2 / 12, "feet"),
  12764. default: true
  12765. },
  12766. {
  12767. name: "Macro",
  12768. height: math.unit(1, "mile")
  12769. },
  12770. {
  12771. name: "Megamacro",
  12772. height: math.unit(100, "miles")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(2, "meters"),
  12781. weight: math.unit(500, "kg"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/coatl/front.svg",
  12785. extra: 3948 / 3500,
  12786. bottom: 0.082
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Normal",
  12793. height: math.unit(4, "meters")
  12794. },
  12795. {
  12796. name: "Macro",
  12797. height: math.unit(100, "meters"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Macro+",
  12802. height: math.unit(300, "meters")
  12803. },
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(3, "gigameters")
  12807. },
  12808. {
  12809. name: "Megamacro+",
  12810. height: math.unit(300, "terameters")
  12811. },
  12812. {
  12813. name: "Megamacro++",
  12814. height: math.unit(3, "lightyears")
  12815. },
  12816. ]
  12817. ))
  12818. characterMakers.push(() => makeCharacter(
  12819. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12820. {
  12821. front: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(50, "kg"),
  12824. name: "front",
  12825. image: {
  12826. source: "./media/characters/shiroryu/front.svg",
  12827. extra: 1990 / 1935
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Mortal Mingling",
  12834. height: math.unit(3, "meters")
  12835. },
  12836. {
  12837. name: "Kaiju-ish",
  12838. height: math.unit(250, "meters")
  12839. },
  12840. {
  12841. name: "Somewhat Godly",
  12842. height: math.unit(400, "km"),
  12843. default: true
  12844. },
  12845. {
  12846. name: "Planetary",
  12847. height: math.unit(300, "megameters")
  12848. },
  12849. {
  12850. name: "Galaxy-dwarfing",
  12851. height: math.unit(450, "kiloparsecs")
  12852. },
  12853. {
  12854. name: "Universe Eater",
  12855. height: math.unit(150, "gigaparsecs")
  12856. },
  12857. {
  12858. name: "Almost Immeasurable",
  12859. height: math.unit(1.3e266, "yottaparsecs")
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(150, "lb"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/umeko/front.svg",
  12872. extra: 1,
  12873. bottom: 0.019
  12874. }
  12875. },
  12876. frontArmored: {
  12877. height: math.unit(6, "feet"),
  12878. weight: math.unit(150, "lb"),
  12879. name: "Front (Armored)",
  12880. image: {
  12881. source: "./media/characters/umeko/front-armored.svg",
  12882. extra: 1,
  12883. bottom: 0.021
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Macro",
  12890. height: math.unit(220, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Guardian Dragon",
  12895. height: math.unit(50, "miles")
  12896. },
  12897. {
  12898. name: "Cosmic",
  12899. height: math.unit(800000, "miles")
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(6, "feet"),
  12908. weight: math.unit(150, "lb"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/cassidy/front.svg",
  12912. extra: 1,
  12913. bottom: 0.043
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Canon Height",
  12920. height: math.unit(120, "feet"),
  12921. default: true
  12922. },
  12923. {
  12924. name: "Macro+",
  12925. height: math.unit(400, "feet")
  12926. },
  12927. {
  12928. name: "Macro++",
  12929. height: math.unit(4000, "feet")
  12930. },
  12931. {
  12932. name: "Megamacro",
  12933. height: math.unit(3, "miles")
  12934. },
  12935. ]
  12936. ))
  12937. characterMakers.push(() => makeCharacter(
  12938. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12939. {
  12940. front: {
  12941. height: math.unit(6, "feet"),
  12942. weight: math.unit(150, "lb"),
  12943. name: "Front",
  12944. image: {
  12945. source: "./media/characters/isaac/front.svg",
  12946. extra: 896 / 815,
  12947. bottom: 0.11
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Human Size",
  12954. height: math.unit(8, "feet"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Macro",
  12959. height: math.unit(400, "feet")
  12960. },
  12961. {
  12962. name: "Megamacro",
  12963. height: math.unit(50, "miles")
  12964. },
  12965. {
  12966. name: "Canon Height",
  12967. height: math.unit(200, "AU")
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(72, "kg"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/sleekit/front.svg",
  12980. extra: 4693 / 4487,
  12981. bottom: 0.012
  12982. }
  12983. },
  12984. },
  12985. [
  12986. {
  12987. name: "Minimum Height",
  12988. height: math.unit(10, "meters")
  12989. },
  12990. {
  12991. name: "Smaller",
  12992. height: math.unit(25, "meters")
  12993. },
  12994. {
  12995. name: "Larger",
  12996. height: math.unit(38, "meters"),
  12997. default: true
  12998. },
  12999. {
  13000. name: "Maximum height",
  13001. height: math.unit(100, "meters")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(150, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/nillia/front.svg",
  13014. extra: 2195 / 2037,
  13015. bottom: 0.005
  13016. }
  13017. },
  13018. back: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(150, "lb"),
  13021. name: "Back",
  13022. image: {
  13023. source: "./media/characters/nillia/back.svg",
  13024. extra: 2195 / 2037,
  13025. bottom: 0.005
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Canon Height",
  13032. height: math.unit(489, "feet"),
  13033. default: true
  13034. }
  13035. ]
  13036. ))
  13037. characterMakers.push(() => makeCharacter(
  13038. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13039. {
  13040. front: {
  13041. height: math.unit(6, "feet"),
  13042. weight: math.unit(150, "lb"),
  13043. name: "Front",
  13044. image: {
  13045. source: "./media/characters/mesmyriza/front.svg",
  13046. extra: 2067 / 1784,
  13047. bottom: 0.035
  13048. }
  13049. },
  13050. foot: {
  13051. height: math.unit(6 / (250 / 35), "feet"),
  13052. name: "Foot",
  13053. image: {
  13054. source: "./media/characters/mesmyriza/foot.svg"
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Macro",
  13061. height: math.unit(457, "meters"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Megamacro",
  13066. height: math.unit(8, "megameters")
  13067. },
  13068. ]
  13069. ))
  13070. characterMakers.push(() => makeCharacter(
  13071. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13072. {
  13073. front: {
  13074. height: math.unit(6, "feet"),
  13075. weight: math.unit(250, "lb"),
  13076. name: "Front",
  13077. image: {
  13078. source: "./media/characters/saudade/front.svg",
  13079. extra: 1172 / 1139,
  13080. bottom: 0.035
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Micro",
  13087. height: math.unit(3, "inches")
  13088. },
  13089. {
  13090. name: "Normal",
  13091. height: math.unit(6, "feet"),
  13092. default: true
  13093. },
  13094. {
  13095. name: "Macro",
  13096. height: math.unit(50, "feet")
  13097. },
  13098. {
  13099. name: "Megamacro",
  13100. height: math.unit(2800, "feet")
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(5 + 4 / 12, "feet"),
  13109. weight: math.unit(100, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/keireer/front.svg",
  13113. extra: 716 / 666,
  13114. bottom: 0.05
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Normal",
  13121. height: math.unit(5 + 4 / 12, "feet"),
  13122. default: true
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13128. {
  13129. front: {
  13130. height: math.unit(6, "feet"),
  13131. weight: math.unit(90, "kg"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/mirja/front.svg",
  13135. extra: 1789 / 1683,
  13136. bottom: 0.05
  13137. }
  13138. },
  13139. frontDressed: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(90, "lb"),
  13142. name: "Front (Dressed)",
  13143. image: {
  13144. source: "./media/characters/mirja/front-dressed.svg",
  13145. extra: 1789 / 1683,
  13146. bottom: 0.05
  13147. }
  13148. },
  13149. back: {
  13150. height: math.unit(6, "feet"),
  13151. weight: math.unit(90, "lb"),
  13152. name: "Back",
  13153. image: {
  13154. source: "./media/characters/mirja/back.svg",
  13155. extra: 953 / 917,
  13156. bottom: 0.017
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "\"Incognito\"",
  13163. height: math.unit(3, "meters")
  13164. },
  13165. {
  13166. name: "Strolling Size",
  13167. height: math.unit(15, "km")
  13168. },
  13169. {
  13170. name: "Larger Strolling Size",
  13171. height: math.unit(400, "km")
  13172. },
  13173. {
  13174. name: "Preferred Size",
  13175. height: math.unit(5000, "km")
  13176. },
  13177. {
  13178. name: "True Size",
  13179. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13180. default: true
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(15, "feet"),
  13189. weight: math.unit(880, "kg"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/nightraver/front.svg",
  13193. extra: 2444 / 2160,
  13194. bottom: 0.027
  13195. }
  13196. },
  13197. back: {
  13198. height: math.unit(15, "feet"),
  13199. weight: math.unit(880, "kg"),
  13200. name: "Back",
  13201. image: {
  13202. source: "./media/characters/nightraver/back.svg",
  13203. extra: 2309 / 2180,
  13204. bottom: 0.005
  13205. }
  13206. },
  13207. sole: {
  13208. height: math.unit(2.878, "feet"),
  13209. name: "Sole",
  13210. image: {
  13211. source: "./media/characters/nightraver/sole.svg"
  13212. }
  13213. },
  13214. foot: {
  13215. height: math.unit(2.285, "feet"),
  13216. name: "Foot",
  13217. image: {
  13218. source: "./media/characters/nightraver/foot.svg"
  13219. }
  13220. },
  13221. maw: {
  13222. height: math.unit(2.67, "feet"),
  13223. name: "Maw",
  13224. image: {
  13225. source: "./media/characters/nightraver/maw.svg"
  13226. }
  13227. },
  13228. },
  13229. [
  13230. {
  13231. name: "Micro",
  13232. height: math.unit(1, "cm")
  13233. },
  13234. {
  13235. name: "Normal",
  13236. height: math.unit(15, "feet"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Macro",
  13241. height: math.unit(300, "feet")
  13242. },
  13243. {
  13244. name: "Megamacro",
  13245. height: math.unit(300, "miles")
  13246. },
  13247. {
  13248. name: "Gigamacro",
  13249. height: math.unit(10000, "miles")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13255. {
  13256. side: {
  13257. height: math.unit(2, "inches"),
  13258. weight: math.unit(5, "grams"),
  13259. name: "Side",
  13260. image: {
  13261. source: "./media/characters/arc/side.svg"
  13262. }
  13263. },
  13264. },
  13265. [
  13266. {
  13267. name: "Micro",
  13268. height: math.unit(2, "inches"),
  13269. default: true
  13270. },
  13271. ]
  13272. ))
  13273. characterMakers.push(() => makeCharacter(
  13274. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13275. {
  13276. front: {
  13277. height: math.unit(1.1938, "meters"),
  13278. weight: math.unit(54, "kg"),
  13279. name: "Front",
  13280. image: {
  13281. source: "./media/characters/nebula-shahar/front.svg",
  13282. extra: 1642 / 1436,
  13283. bottom: 0.06
  13284. }
  13285. },
  13286. },
  13287. [
  13288. {
  13289. name: "Megamicro",
  13290. height: math.unit(0.3, "mm")
  13291. },
  13292. {
  13293. name: "Micro",
  13294. height: math.unit(3, "cm")
  13295. },
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(138, "cm"),
  13299. default: true
  13300. },
  13301. {
  13302. name: "Macro",
  13303. height: math.unit(30, "m")
  13304. },
  13305. ]
  13306. ))
  13307. characterMakers.push(() => makeCharacter(
  13308. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13309. {
  13310. front: {
  13311. height: math.unit(5.24, "feet"),
  13312. weight: math.unit(150, "lb"),
  13313. name: "Front",
  13314. image: {
  13315. source: "./media/characters/shayla/front.svg",
  13316. extra: 1512 / 1414,
  13317. bottom: 0.01
  13318. }
  13319. },
  13320. back: {
  13321. height: math.unit(5.24, "feet"),
  13322. weight: math.unit(150, "lb"),
  13323. name: "Back",
  13324. image: {
  13325. source: "./media/characters/shayla/back.svg",
  13326. extra: 1512 / 1414
  13327. }
  13328. },
  13329. hand: {
  13330. height: math.unit(0.7781496062992126, "feet"),
  13331. name: "Hand",
  13332. image: {
  13333. source: "./media/characters/shayla/hand.svg"
  13334. }
  13335. },
  13336. foot: {
  13337. height: math.unit(1.4206036745406823, "feet"),
  13338. name: "Foot",
  13339. image: {
  13340. source: "./media/characters/shayla/foot.svg"
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Micro",
  13347. height: math.unit(0.32, "feet")
  13348. },
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(5.24, "feet"),
  13352. default: true
  13353. },
  13354. {
  13355. name: "Macro",
  13356. height: math.unit(492.12, "feet")
  13357. },
  13358. {
  13359. name: "Megamacro",
  13360. height: math.unit(186.41, "miles")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(2.2, "m"),
  13369. weight: math.unit(120, "kg"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/pia-jr/front.svg",
  13373. extra: 1000 / 970,
  13374. bottom: 0.035
  13375. }
  13376. },
  13377. hand: {
  13378. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13379. name: "Hand",
  13380. image: {
  13381. source: "./media/characters/pia-jr/hand.svg"
  13382. }
  13383. },
  13384. paw: {
  13385. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13386. name: "Paw",
  13387. image: {
  13388. source: "./media/characters/pia-jr/paw.svg"
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Micro",
  13395. height: math.unit(1.2, "cm")
  13396. },
  13397. {
  13398. name: "Normal",
  13399. height: math.unit(2.2, "m"),
  13400. default: true
  13401. },
  13402. {
  13403. name: "Macro",
  13404. height: math.unit(180, "m")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(420, "km")
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13414. {
  13415. front: {
  13416. height: math.unit(2, "m"),
  13417. weight: math.unit(115, "kg"),
  13418. name: "Front",
  13419. image: {
  13420. source: "./media/characters/pia-sr/front.svg",
  13421. extra: 760 / 730,
  13422. bottom: 0.015
  13423. }
  13424. },
  13425. back: {
  13426. height: math.unit(2, "m"),
  13427. weight: math.unit(115, "kg"),
  13428. name: "Back",
  13429. image: {
  13430. source: "./media/characters/pia-sr/back.svg",
  13431. extra: 760 / 730,
  13432. bottom: 0.01
  13433. }
  13434. },
  13435. hand: {
  13436. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13437. name: "Hand",
  13438. image: {
  13439. source: "./media/characters/pia-sr/hand.svg"
  13440. }
  13441. },
  13442. foot: {
  13443. height: math.unit(1.83, "feet"),
  13444. name: "Foot",
  13445. image: {
  13446. source: "./media/characters/pia-sr/foot.svg"
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Micro",
  13453. height: math.unit(88, "mm")
  13454. },
  13455. {
  13456. name: "Normal",
  13457. height: math.unit(2, "m"),
  13458. default: true
  13459. },
  13460. {
  13461. name: "Macro",
  13462. height: math.unit(200, "m")
  13463. },
  13464. {
  13465. name: "Megamacro",
  13466. height: math.unit(420, "km")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13472. {
  13473. front: {
  13474. height: math.unit(8 + 2 / 12, "feet"),
  13475. weight: math.unit(300, "lb"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/kibibyte/front.svg",
  13479. extra: 2221 / 2098,
  13480. bottom: 0.04
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(8 + 2 / 12, "feet"),
  13488. default: true
  13489. },
  13490. {
  13491. name: "Socialable Macro",
  13492. height: math.unit(50, "feet")
  13493. },
  13494. {
  13495. name: "Macro",
  13496. height: math.unit(300, "feet")
  13497. },
  13498. {
  13499. name: "Megamacro",
  13500. height: math.unit(500, "miles")
  13501. },
  13502. ]
  13503. ))
  13504. characterMakers.push(() => makeCharacter(
  13505. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13506. {
  13507. front: {
  13508. height: math.unit(6, "feet"),
  13509. weight: math.unit(150, "lb"),
  13510. name: "Front",
  13511. image: {
  13512. source: "./media/characters/felix/front.svg",
  13513. extra: 762 / 722,
  13514. bottom: 0.02
  13515. }
  13516. },
  13517. frontClothed: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Front (Clothed)",
  13521. image: {
  13522. source: "./media/characters/felix/front-clothed.svg",
  13523. extra: 762 / 722,
  13524. bottom: 0.02
  13525. }
  13526. },
  13527. },
  13528. [
  13529. {
  13530. name: "Normal",
  13531. height: math.unit(6 + 8 / 12, "feet"),
  13532. default: true
  13533. },
  13534. {
  13535. name: "Macro",
  13536. height: math.unit(2600, "feet")
  13537. },
  13538. {
  13539. name: "Megamacro",
  13540. height: math.unit(450, "miles")
  13541. },
  13542. ]
  13543. ))
  13544. characterMakers.push(() => makeCharacter(
  13545. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13546. {
  13547. front: {
  13548. height: math.unit(6 + 1 / 12, "feet"),
  13549. weight: math.unit(250, "lb"),
  13550. name: "Front",
  13551. image: {
  13552. source: "./media/characters/tobo/front.svg",
  13553. extra: 608 / 586,
  13554. bottom: 0.023
  13555. }
  13556. },
  13557. back: {
  13558. height: math.unit(6 + 1 / 12, "feet"),
  13559. weight: math.unit(250, "lb"),
  13560. name: "Back",
  13561. image: {
  13562. source: "./media/characters/tobo/back.svg",
  13563. extra: 608 / 586
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Nano",
  13570. height: math.unit(2, "nm")
  13571. },
  13572. {
  13573. name: "Megamicro",
  13574. height: math.unit(0.1, "mm")
  13575. },
  13576. {
  13577. name: "Micro",
  13578. height: math.unit(1, "inch"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Human-sized",
  13583. height: math.unit(6 + 1 / 12, "feet")
  13584. },
  13585. {
  13586. name: "Macro",
  13587. height: math.unit(250, "feet")
  13588. },
  13589. {
  13590. name: "Megamacro",
  13591. height: math.unit(75, "miles")
  13592. },
  13593. {
  13594. name: "Texas-sized",
  13595. height: math.unit(750, "miles")
  13596. },
  13597. {
  13598. name: "Teramacro",
  13599. height: math.unit(50000, "miles")
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13605. {
  13606. front: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(269, "lb"),
  13609. name: "Front",
  13610. image: {
  13611. source: "./media/characters/danny-kapowsky/front.svg",
  13612. extra: 766 / 736,
  13613. bottom: 0.044
  13614. }
  13615. },
  13616. back: {
  13617. height: math.unit(6, "feet"),
  13618. weight: math.unit(269, "lb"),
  13619. name: "Back",
  13620. image: {
  13621. source: "./media/characters/danny-kapowsky/back.svg",
  13622. extra: 797 / 760,
  13623. bottom: 0.025
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "Macro",
  13630. height: math.unit(150, "feet"),
  13631. default: true
  13632. },
  13633. {
  13634. name: "Macro+",
  13635. height: math.unit(200, "feet")
  13636. },
  13637. {
  13638. name: "Macro++",
  13639. height: math.unit(300, "feet")
  13640. },
  13641. {
  13642. name: "Macro+++",
  13643. height: math.unit(400, "feet")
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13649. {
  13650. side: {
  13651. height: math.unit(6, "feet"),
  13652. weight: math.unit(170, "lb"),
  13653. name: "Side",
  13654. image: {
  13655. source: "./media/characters/finn/side.svg",
  13656. extra: 1953 / 1807,
  13657. bottom: 0.057
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Megamacro",
  13664. height: math.unit(14445, "feet"),
  13665. default: true
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13671. {
  13672. front: {
  13673. height: math.unit(5 + 6 / 12, "feet"),
  13674. weight: math.unit(125, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/roy/front.svg",
  13678. extra: 1,
  13679. bottom: 0.11
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Micro",
  13686. height: math.unit(3, "inches"),
  13687. default: true
  13688. },
  13689. {
  13690. name: "Normal",
  13691. height: math.unit(5 + 6 / 12, "feet")
  13692. },
  13693. {
  13694. name: "Lesser Macro",
  13695. height: math.unit(60, "feet")
  13696. },
  13697. {
  13698. name: "Greater Macro",
  13699. height: math.unit(120, "feet")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(100, "lb"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/aevsivs/front.svg",
  13712. extra: 1,
  13713. bottom: 0.03
  13714. }
  13715. },
  13716. back: {
  13717. height: math.unit(6, "feet"),
  13718. weight: math.unit(100, "lb"),
  13719. name: "Back",
  13720. image: {
  13721. source: "./media/characters/aevsivs/back.svg"
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Micro",
  13728. height: math.unit(2, "inches"),
  13729. default: true
  13730. },
  13731. {
  13732. name: "Normal",
  13733. height: math.unit(5, "feet")
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13739. {
  13740. front: {
  13741. height: math.unit(5 + 7 / 12, "feet"),
  13742. weight: math.unit(159, "lb"),
  13743. name: "Front",
  13744. image: {
  13745. source: "./media/characters/hildegard/front.svg",
  13746. extra: 312 / 286,
  13747. bottom: 0.005
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Normal",
  13754. height: math.unit(5 + 7 / 12, "feet"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13761. {
  13762. bernard: {
  13763. height: math.unit(2 + 7 / 12, "feet"),
  13764. weight: math.unit(66, "lb"),
  13765. name: "Bernard",
  13766. rename: true,
  13767. image: {
  13768. source: "./media/characters/bernard-wilder/bernard.svg",
  13769. extra: 192 / 128,
  13770. bottom: 0.05
  13771. }
  13772. },
  13773. wilder: {
  13774. height: math.unit(5 + 8 / 12, "feet"),
  13775. weight: math.unit(143, "lb"),
  13776. name: "Wilder",
  13777. rename: true,
  13778. image: {
  13779. source: "./media/characters/bernard-wilder/wilder.svg",
  13780. extra: 361 / 312,
  13781. bottom: 0.02
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Normal",
  13788. height: math.unit(2 + 7 / 12, "feet"),
  13789. default: true
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13795. {
  13796. anthro: {
  13797. height: math.unit(6 + 1 / 12, "feet"),
  13798. weight: math.unit(155, "lb"),
  13799. name: "Anthro",
  13800. image: {
  13801. source: "./media/characters/hearth/anthro.svg",
  13802. extra: 260 / 250,
  13803. bottom: 0.02
  13804. }
  13805. },
  13806. feral: {
  13807. height: math.unit(3.78, "feet"),
  13808. weight: math.unit(35, "kg"),
  13809. name: "Feral",
  13810. image: {
  13811. source: "./media/characters/hearth/feral.svg",
  13812. extra: 153 / 135,
  13813. bottom: 0.03
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Normal",
  13820. height: math.unit(6 + 1 / 12, "feet"),
  13821. default: true
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(6, "feet"),
  13830. weight: math.unit(182, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/ingrid/front.svg",
  13834. extra: 294 / 268,
  13835. bottom: 0.027
  13836. }
  13837. },
  13838. },
  13839. [
  13840. {
  13841. name: "Normal",
  13842. height: math.unit(6, "feet"),
  13843. default: true
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13849. {
  13850. eevee: {
  13851. height: math.unit(2 + 10 / 12, "feet"),
  13852. weight: math.unit(86, "lb"),
  13853. name: "Malgam",
  13854. image: {
  13855. source: "./media/characters/malgam/eevee.svg",
  13856. extra: 218 / 180,
  13857. bottom: 0.2
  13858. }
  13859. },
  13860. sylveon: {
  13861. height: math.unit(4, "feet"),
  13862. weight: math.unit(101, "lb"),
  13863. name: "Future Malgam",
  13864. rename: true,
  13865. image: {
  13866. source: "./media/characters/malgam/sylveon.svg",
  13867. extra: 371 / 325,
  13868. bottom: 0.015
  13869. }
  13870. },
  13871. gigantamax: {
  13872. height: math.unit(50, "feet"),
  13873. name: "Gigantamax Malgam",
  13874. rename: true,
  13875. image: {
  13876. source: "./media/characters/malgam/gigantamax.svg"
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Normal",
  13883. height: math.unit(2 + 10 / 12, "feet"),
  13884. default: true
  13885. },
  13886. ]
  13887. ))
  13888. characterMakers.push(() => makeCharacter(
  13889. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13890. {
  13891. front: {
  13892. height: math.unit(5 + 11 / 12, "feet"),
  13893. weight: math.unit(188, "lb"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/fleur/front.svg",
  13897. extra: 309 / 283,
  13898. bottom: 0.007
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Normal",
  13905. height: math.unit(5 + 11 / 12, "feet"),
  13906. default: true
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13912. {
  13913. front: {
  13914. height: math.unit(5 + 4 / 12, "feet"),
  13915. weight: math.unit(122, "lb"),
  13916. name: "Front",
  13917. image: {
  13918. source: "./media/characters/jude/front.svg",
  13919. extra: 288 / 273,
  13920. bottom: 0.03
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Normal",
  13927. height: math.unit(5 + 4 / 12, "feet"),
  13928. default: true
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13934. {
  13935. front: {
  13936. height: math.unit(5 + 11 / 12, "feet"),
  13937. weight: math.unit(190, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/seara/front.svg",
  13941. extra: 1,
  13942. bottom: 0.05
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(5 + 11 / 12, "feet"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(16 + 5 / 12, "feet"),
  13959. weight: math.unit(524, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/caspian/front.svg",
  13963. extra: 1,
  13964. bottom: 0.04
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(16 + 5 / 12, "feet"),
  13972. default: true
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(5 + 7 / 12, "feet"),
  13981. weight: math.unit(170, "lb"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/mika/front.svg",
  13985. extra: 1,
  13986. bottom: 0.016
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Normal",
  13993. height: math.unit(5 + 7 / 12, "feet"),
  13994. default: true
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(6 + 2 / 12, "feet"),
  14003. weight: math.unit(268, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/sol/front.svg",
  14007. extra: 247 / 231,
  14008. bottom: 0.05
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Normal",
  14015. height: math.unit(6 + 2 / 12, "feet"),
  14016. default: true
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14022. {
  14023. buizel: {
  14024. height: math.unit(2 + 5 / 12, "feet"),
  14025. weight: math.unit(87, "lb"),
  14026. name: "Buizel",
  14027. image: {
  14028. source: "./media/characters/umiko/buizel.svg",
  14029. extra: 172 / 157,
  14030. bottom: 0.01
  14031. }
  14032. },
  14033. floatzel: {
  14034. height: math.unit(5 + 9 / 12, "feet"),
  14035. weight: math.unit(250, "lb"),
  14036. name: "Floatzel",
  14037. image: {
  14038. source: "./media/characters/umiko/floatzel.svg",
  14039. extra: 262 / 248
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(2 + 5 / 12, "feet"),
  14047. default: true
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(6 + 2 / 12, "feet"),
  14056. weight: math.unit(146, "lb"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/iliac/front.svg",
  14060. extra: 389 / 365,
  14061. bottom: 0.035
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Normal",
  14068. height: math.unit(6 + 2 / 12, "feet"),
  14069. default: true
  14070. },
  14071. ]
  14072. ))
  14073. characterMakers.push(() => makeCharacter(
  14074. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14075. {
  14076. front: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(170, "lb"),
  14079. name: "Front",
  14080. image: {
  14081. source: "./media/characters/topaz/front.svg",
  14082. extra: 317 / 303,
  14083. bottom: 0.055
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Normal",
  14090. height: math.unit(6, "feet"),
  14091. default: true
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(5 + 11 / 12, "feet"),
  14100. weight: math.unit(144, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/gabriel/front.svg",
  14104. extra: 285 / 262,
  14105. bottom: 0.004
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(5 + 11 / 12, "feet"),
  14113. default: true
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14119. {
  14120. side: {
  14121. height: math.unit(6 + 5 / 12, "feet"),
  14122. weight: math.unit(300, "lb"),
  14123. name: "Side",
  14124. image: {
  14125. source: "./media/characters/tempest-suicune/side.svg",
  14126. extra: 195 / 154,
  14127. bottom: 0.04
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(6 + 5 / 12, "feet"),
  14135. default: true
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(7 + 2 / 12, "feet"),
  14144. weight: math.unit(322, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/vulcan/front.svg",
  14148. extra: 154 / 147,
  14149. bottom: 0.04
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(7 + 2 / 12, "feet"),
  14157. default: true
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14163. {
  14164. front: {
  14165. height: math.unit(5 + 10 / 12, "feet"),
  14166. weight: math.unit(264, "lb"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/gault/front.svg",
  14170. extra: 161 / 140,
  14171. bottom: 0.028
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(5 + 10 / 12, "feet"),
  14179. default: true
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(6, "feet"),
  14188. weight: math.unit(150, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/shard/front.svg",
  14192. extra: 273 / 238,
  14193. bottom: 0.02
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(3 + 6 / 12, "feet"),
  14201. default: true
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14207. {
  14208. front: {
  14209. height: math.unit(5 + 11 / 12, "feet"),
  14210. weight: math.unit(146, "lb"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/ashe/front.svg",
  14214. extra: 400 / 373,
  14215. bottom: 0.01
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Normal",
  14222. height: math.unit(5 + 11 / 12, "feet"),
  14223. default: true
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14229. {
  14230. front: {
  14231. height: math.unit(5 + 5 / 12, "feet"),
  14232. weight: math.unit(135, "lb"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/beatrix/front.svg",
  14236. extra: 392 / 379,
  14237. bottom: 0.01
  14238. }
  14239. },
  14240. },
  14241. [
  14242. {
  14243. name: "Normal",
  14244. height: math.unit(6, "feet"),
  14245. default: true
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(150, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/ignatius/front.svg",
  14258. extra: 245 / 222,
  14259. bottom: 0.01
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(5 + 5 / 12, "feet"),
  14267. default: true
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(6 + 2 / 12, "feet"),
  14276. weight: math.unit(138, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/mei-li/front.svg",
  14280. extra: 237 / 229,
  14281. bottom: 0.03
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(6 + 2 / 12, "feet"),
  14289. default: true
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(2 + 4 / 12, "feet"),
  14298. weight: math.unit(62, "lb"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/puru/front.svg",
  14302. extra: 206 / 149,
  14303. bottom: 0.06
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(2 + 4 / 12, "feet"),
  14311. default: true
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14317. {
  14318. taur: {
  14319. height: math.unit(11, "feet"),
  14320. weight: math.unit(500, "lb"),
  14321. name: "Taur",
  14322. image: {
  14323. source: "./media/characters/kee/taur.svg",
  14324. extra: 1,
  14325. bottom: 0.04
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(11, "feet"),
  14333. default: true
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14339. {
  14340. anthro: {
  14341. height: math.unit(7, "feet"),
  14342. weight: math.unit(190, "lb"),
  14343. name: "Anthro",
  14344. image: {
  14345. source: "./media/characters/cobalt-dracha/anthro.svg",
  14346. extra: 231 / 225,
  14347. bottom: 0.04
  14348. }
  14349. },
  14350. feral: {
  14351. height: math.unit(9 + 7 / 12, "feet"),
  14352. weight: math.unit(294, "lb"),
  14353. name: "Feral",
  14354. image: {
  14355. source: "./media/characters/cobalt-dracha/feral.svg",
  14356. extra: 692 / 633,
  14357. bottom: 0.05
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(7, "feet"),
  14365. default: true
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14371. {
  14372. fallen: {
  14373. height: math.unit(11 + 8 / 12, "feet"),
  14374. weight: math.unit(485, "lb"),
  14375. name: "Java (Fallen)",
  14376. rename: true,
  14377. image: {
  14378. source: "./media/characters/java/fallen.svg",
  14379. extra: 226 / 208,
  14380. bottom: 0.005
  14381. }
  14382. },
  14383. godkin: {
  14384. height: math.unit(10 + 6 / 12, "feet"),
  14385. weight: math.unit(328, "lb"),
  14386. name: "Java (Godkin)",
  14387. rename: true,
  14388. image: {
  14389. source: "./media/characters/java/godkin.svg",
  14390. extra: 270 / 262,
  14391. bottom: 0.02
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(11 + 8 / 12, "feet"),
  14399. default: true
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(7 + 8 / 12, "feet"),
  14408. weight: math.unit(320, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/skoll/front.svg",
  14412. extra: 232 / 220,
  14413. bottom: 0.02
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(7 + 8 / 12, "feet"),
  14421. default: true
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14427. {
  14428. front: {
  14429. height: math.unit(5 + 9 / 12, "feet"),
  14430. weight: math.unit(170, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/purna/front.svg",
  14434. extra: 239 / 229,
  14435. bottom: 0.01
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(5 + 9 / 12, "feet"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14449. {
  14450. front: {
  14451. height: math.unit(5 + 9 / 12, "feet"),
  14452. weight: math.unit(142, "lb"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/kuva/front.svg",
  14456. extra: 281 / 271,
  14457. bottom: 0.006
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(5 + 9 / 12, "feet"),
  14465. default: true
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14471. {
  14472. anthro: {
  14473. height: math.unit(9 + 2 / 12, "feet"),
  14474. weight: math.unit(270, "lb"),
  14475. name: "Anthro",
  14476. image: {
  14477. source: "./media/characters/embra/anthro.svg",
  14478. extra: 200 / 187,
  14479. bottom: 0.02
  14480. }
  14481. },
  14482. feral: {
  14483. height: math.unit(18 + 8 / 12, "feet"),
  14484. weight: math.unit(576, "lb"),
  14485. name: "Feral",
  14486. image: {
  14487. source: "./media/characters/embra/feral.svg",
  14488. extra: 152 / 137,
  14489. bottom: 0.037
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(9 + 2 / 12, "feet"),
  14497. default: true
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14503. {
  14504. anthro: {
  14505. height: math.unit(10 + 9 / 12, "feet"),
  14506. weight: math.unit(224, "lb"),
  14507. name: "Anthro",
  14508. image: {
  14509. source: "./media/characters/grottos/anthro.svg",
  14510. extra: 350 / 332,
  14511. bottom: 0.045
  14512. }
  14513. },
  14514. feral: {
  14515. height: math.unit(20 + 7 / 12, "feet"),
  14516. weight: math.unit(629, "lb"),
  14517. name: "Feral",
  14518. image: {
  14519. source: "./media/characters/grottos/feral.svg",
  14520. extra: 207 / 190,
  14521. bottom: 0.05
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(10 + 9 / 12, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14535. {
  14536. anthro: {
  14537. height: math.unit(9 + 6 / 12, "feet"),
  14538. weight: math.unit(298, "lb"),
  14539. name: "Anthro",
  14540. image: {
  14541. source: "./media/characters/frifna/anthro.svg",
  14542. extra: 282 / 269,
  14543. bottom: 0.015
  14544. }
  14545. },
  14546. feral: {
  14547. height: math.unit(16 + 2 / 12, "feet"),
  14548. weight: math.unit(624, "lb"),
  14549. name: "Feral",
  14550. image: {
  14551. source: "./media/characters/frifna/feral.svg"
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(9 + 6 / 12, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14565. {
  14566. front: {
  14567. height: math.unit(6 + 2 / 12, "feet"),
  14568. weight: math.unit(168, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/elise/front.svg",
  14572. extra: 276 / 271
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Normal",
  14579. height: math.unit(6 + 2 / 12, "feet"),
  14580. default: true
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(5 + 10 / 12, "feet"),
  14589. weight: math.unit(210, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/glade/front.svg",
  14593. extra: 258 / 247,
  14594. bottom: 0.008
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Normal",
  14601. height: math.unit(5 + 10 / 12, "feet"),
  14602. default: true
  14603. },
  14604. ]
  14605. ))
  14606. characterMakers.push(() => makeCharacter(
  14607. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14608. {
  14609. front: {
  14610. height: math.unit(5 + 10 / 12, "feet"),
  14611. weight: math.unit(129, "lb"),
  14612. name: "Front",
  14613. image: {
  14614. source: "./media/characters/rina/front.svg",
  14615. extra: 266 / 255,
  14616. bottom: 0.005
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(5 + 10 / 12, "feet"),
  14624. default: true
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6 + 1 / 12, "feet"),
  14633. weight: math.unit(192, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/veronica/front.svg",
  14637. extra: 319 / 309,
  14638. bottom: 0.005
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Normal",
  14645. height: math.unit(6 + 1 / 12, "feet"),
  14646. default: true
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14652. {
  14653. front: {
  14654. height: math.unit(9 + 3 / 12, "feet"),
  14655. weight: math.unit(1100, "lb"),
  14656. name: "Front",
  14657. image: {
  14658. source: "./media/characters/braxton/front.svg",
  14659. extra: 1057 / 984,
  14660. bottom: 0.05
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Normal",
  14667. height: math.unit(9 + 3 / 12, "feet")
  14668. },
  14669. {
  14670. name: "Giant",
  14671. height: math.unit(300, "feet"),
  14672. default: true
  14673. },
  14674. {
  14675. name: "Macro",
  14676. height: math.unit(700, "feet")
  14677. },
  14678. {
  14679. name: "Megamacro",
  14680. height: math.unit(6000, "feet")
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(6 + 7 / 12, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/blue-feyonics/front.svg",
  14693. extra: 1403 / 1306,
  14694. bottom: 0.047
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(6 + 7 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(1.8, "meters"),
  14711. weight: math.unit(60, "kg"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/maxwell/front.svg",
  14715. extra: 2060 / 1873
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Micro",
  14722. height: math.unit(1, "mm")
  14723. },
  14724. {
  14725. name: "Normal",
  14726. height: math.unit(1.8, "meter"),
  14727. default: true
  14728. },
  14729. {
  14730. name: "Macro",
  14731. height: math.unit(30, "meters")
  14732. },
  14733. {
  14734. name: "Megamacro",
  14735. height: math.unit(10, "km")
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(6, "feet"),
  14744. weight: math.unit(150, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/jack/front.svg",
  14748. extra: 1754 / 1640,
  14749. bottom: 0.01
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Normal",
  14756. height: math.unit(80000, "feet"),
  14757. default: true
  14758. },
  14759. {
  14760. name: "Max size",
  14761. height: math.unit(10, "lightyears")
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14767. {
  14768. upright: {
  14769. height: math.unit(7, "feet"),
  14770. weight: math.unit(170, "lb"),
  14771. name: "Upright",
  14772. image: {
  14773. source: "./media/characters/cafat/upright.svg",
  14774. bottom: 0.01
  14775. }
  14776. },
  14777. uprightFull: {
  14778. height: math.unit(7, "feet"),
  14779. weight: math.unit(170, "lb"),
  14780. name: "Upright (Full)",
  14781. image: {
  14782. source: "./media/characters/cafat/upright-full.svg",
  14783. bottom: 0.01
  14784. }
  14785. },
  14786. side: {
  14787. height: math.unit(5, "feet"),
  14788. weight: math.unit(150, "lb"),
  14789. name: "Side",
  14790. image: {
  14791. source: "./media/characters/cafat/side.svg"
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Small",
  14798. height: math.unit(7, "feet"),
  14799. default: true
  14800. },
  14801. {
  14802. name: "Large",
  14803. height: math.unit(15.5, "feet")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(6, "feet"),
  14812. weight: math.unit(150, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/verin-raharra/front.svg",
  14816. extra: 5019 / 4835,
  14817. bottom: 0.023
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(7 + 5 / 12, "feet"),
  14825. default: true
  14826. },
  14827. {
  14828. name: "Upsized",
  14829. height: math.unit(20, "feet")
  14830. },
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14835. {
  14836. front: {
  14837. height: math.unit(7, "feet"),
  14838. weight: math.unit(230, "lb"),
  14839. name: "Front",
  14840. image: {
  14841. source: "./media/characters/nakata/front.svg",
  14842. extra: 1.005,
  14843. bottom: 0.01
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Normal",
  14850. height: math.unit(7, "feet"),
  14851. default: true
  14852. },
  14853. {
  14854. name: "Big",
  14855. height: math.unit(14, "feet")
  14856. },
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(400, "feet")
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14865. {
  14866. front: {
  14867. height: math.unit(4.91, "feet"),
  14868. weight: math.unit(100, "lb"),
  14869. name: "Front",
  14870. image: {
  14871. source: "./media/characters/lily/front.svg",
  14872. extra: 1585 / 1415,
  14873. bottom: 0.02
  14874. }
  14875. },
  14876. },
  14877. [
  14878. {
  14879. name: "Normal",
  14880. height: math.unit(4.91, "feet"),
  14881. default: true
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14887. {
  14888. laying: {
  14889. height: math.unit(4 + 4 / 12, "feet"),
  14890. weight: math.unit(600, "lb"),
  14891. name: "Laying",
  14892. image: {
  14893. source: "./media/characters/sheila/laying.svg",
  14894. extra: 1333 / 1265,
  14895. bottom: 0.16
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(4 + 4 / 12, "feet"),
  14903. default: true
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(190, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/sax/front.svg",
  14916. extra: 1187 / 973,
  14917. bottom: 0.042
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Micro",
  14924. height: math.unit(4, "inches"),
  14925. default: true
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14931. {
  14932. front: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front",
  14936. image: {
  14937. source: "./media/characters/pandora/front.svg",
  14938. extra: 2720 / 2556,
  14939. bottom: 0.015
  14940. }
  14941. },
  14942. back: {
  14943. height: math.unit(6, "feet"),
  14944. weight: math.unit(150, "lb"),
  14945. name: "Back",
  14946. image: {
  14947. source: "./media/characters/pandora/back.svg",
  14948. extra: 2720 / 2556,
  14949. bottom: 0.01
  14950. }
  14951. },
  14952. beans: {
  14953. height: math.unit(6 / 8, "feet"),
  14954. name: "Beans",
  14955. image: {
  14956. source: "./media/characters/pandora/beans.svg"
  14957. }
  14958. },
  14959. skirt: {
  14960. height: math.unit(6, "feet"),
  14961. weight: math.unit(150, "lb"),
  14962. name: "Skirt",
  14963. image: {
  14964. source: "./media/characters/pandora/skirt.svg",
  14965. extra: 1622 / 1525,
  14966. bottom: 0.015
  14967. }
  14968. },
  14969. hoodie: {
  14970. height: math.unit(6, "feet"),
  14971. weight: math.unit(150, "lb"),
  14972. name: "Hoodie",
  14973. image: {
  14974. source: "./media/characters/pandora/hoodie.svg",
  14975. extra: 1622 / 1525,
  14976. bottom: 0.015
  14977. }
  14978. },
  14979. casual: {
  14980. height: math.unit(6, "feet"),
  14981. weight: math.unit(150, "lb"),
  14982. name: "Casual",
  14983. image: {
  14984. source: "./media/characters/pandora/casual.svg",
  14985. extra: 1622 / 1525,
  14986. bottom: 0.015
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(6, "feet")
  14994. },
  14995. {
  14996. name: "Big Steppy",
  14997. height: math.unit(1, "km"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15004. {
  15005. side: {
  15006. height: math.unit(10, "feet"),
  15007. weight: math.unit(800, "kg"),
  15008. name: "Side",
  15009. image: {
  15010. source: "./media/characters/venio-darcony/side.svg",
  15011. extra: 1373 / 1003,
  15012. bottom: 0.037
  15013. }
  15014. },
  15015. front: {
  15016. height: math.unit(19, "feet"),
  15017. weight: math.unit(800, "kg"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/venio-darcony/front.svg"
  15021. }
  15022. },
  15023. back: {
  15024. height: math.unit(19, "feet"),
  15025. weight: math.unit(800, "kg"),
  15026. name: "Back",
  15027. image: {
  15028. source: "./media/characters/venio-darcony/back.svg"
  15029. }
  15030. },
  15031. sideNsfw: {
  15032. height: math.unit(10, "feet"),
  15033. weight: math.unit(800, "kg"),
  15034. name: "Side (NSFW)",
  15035. image: {
  15036. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15037. extra: 1373 / 1003,
  15038. bottom: 0.037
  15039. }
  15040. },
  15041. frontNsfw: {
  15042. height: math.unit(19, "feet"),
  15043. weight: math.unit(800, "kg"),
  15044. name: "Front (NSFW)",
  15045. image: {
  15046. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15047. }
  15048. },
  15049. backNsfw: {
  15050. height: math.unit(19, "feet"),
  15051. weight: math.unit(800, "kg"),
  15052. name: "Back (NSFW)",
  15053. image: {
  15054. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15055. }
  15056. },
  15057. sideArmored: {
  15058. height: math.unit(10, "feet"),
  15059. weight: math.unit(800, "kg"),
  15060. name: "Side (Armored)",
  15061. image: {
  15062. source: "./media/characters/venio-darcony/side-armored.svg",
  15063. extra: 1373 / 1003,
  15064. bottom: 0.037
  15065. }
  15066. },
  15067. frontArmored: {
  15068. height: math.unit(19, "feet"),
  15069. weight: math.unit(900, "kg"),
  15070. name: "Front (Armored)",
  15071. image: {
  15072. source: "./media/characters/venio-darcony/front-armored.svg"
  15073. }
  15074. },
  15075. backArmored: {
  15076. height: math.unit(19, "feet"),
  15077. weight: math.unit(900, "kg"),
  15078. name: "Back (Armored)",
  15079. image: {
  15080. source: "./media/characters/venio-darcony/back-armored.svg"
  15081. }
  15082. },
  15083. sword: {
  15084. height: math.unit(10, "feet"),
  15085. weight: math.unit(50, "lb"),
  15086. name: "Sword",
  15087. image: {
  15088. source: "./media/characters/venio-darcony/sword.svg"
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(10, "feet")
  15096. },
  15097. {
  15098. name: "Macro",
  15099. height: math.unit(130, "feet"),
  15100. default: true
  15101. },
  15102. {
  15103. name: "Macro+",
  15104. height: math.unit(240, "feet")
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(6, "feet"),
  15113. weight: math.unit(150, "lb"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/veski/front.svg",
  15117. extra: 1299 / 1225,
  15118. bottom: 0.04
  15119. }
  15120. },
  15121. back: {
  15122. height: math.unit(6, "feet"),
  15123. weight: math.unit(150, "lb"),
  15124. name: "Back",
  15125. image: {
  15126. source: "./media/characters/veski/back.svg",
  15127. extra: 1299 / 1225,
  15128. bottom: 0.008
  15129. }
  15130. },
  15131. maw: {
  15132. height: math.unit(1.5 * 1.21, "feet"),
  15133. name: "Maw",
  15134. image: {
  15135. source: "./media/characters/veski/maw.svg"
  15136. }
  15137. },
  15138. },
  15139. [
  15140. {
  15141. name: "Macro",
  15142. height: math.unit(2, "km"),
  15143. default: true
  15144. },
  15145. ]
  15146. ))
  15147. characterMakers.push(() => makeCharacter(
  15148. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15149. {
  15150. front: {
  15151. height: math.unit(5 + 7 / 12, "feet"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/isabelle/front.svg",
  15155. extra: 2130 / 1976,
  15156. bottom: 0.05
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Supermicro",
  15163. height: math.unit(10, "micrometers")
  15164. },
  15165. {
  15166. name: "Micro",
  15167. height: math.unit(1, "inch")
  15168. },
  15169. {
  15170. name: "Tiny",
  15171. height: math.unit(5, "inches")
  15172. },
  15173. {
  15174. name: "Standard",
  15175. height: math.unit(5 + 7 / 12, "inches")
  15176. },
  15177. {
  15178. name: "Macro",
  15179. height: math.unit(80, "meters"),
  15180. default: true
  15181. },
  15182. {
  15183. name: "Megamacro",
  15184. height: math.unit(250, "meters")
  15185. },
  15186. {
  15187. name: "Gigamacro",
  15188. height: math.unit(5, "km")
  15189. },
  15190. {
  15191. name: "Cosmic",
  15192. height: math.unit(2.5e6, "miles")
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15198. {
  15199. front: {
  15200. height: math.unit(6, "feet"),
  15201. weight: math.unit(150, "lb"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/hanzo/front.svg",
  15205. extra: 374 / 344,
  15206. bottom: 0.02
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(8, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15220. {
  15221. front: {
  15222. height: math.unit(7, "feet"),
  15223. weight: math.unit(130, "lb"),
  15224. name: "Front",
  15225. image: {
  15226. source: "./media/characters/anna/front.svg",
  15227. extra: 169 / 145,
  15228. bottom: 0.06
  15229. }
  15230. },
  15231. full: {
  15232. height: math.unit(4.96, "feet"),
  15233. weight: math.unit(220, "lb"),
  15234. name: "Full",
  15235. image: {
  15236. source: "./media/characters/anna/full.svg",
  15237. extra: 138 / 114,
  15238. bottom: 0.15
  15239. }
  15240. },
  15241. tongue: {
  15242. height: math.unit(2.53, "feet"),
  15243. name: "Tongue",
  15244. image: {
  15245. source: "./media/characters/anna/tongue.svg"
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(7, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(7, "feet"),
  15262. weight: math.unit(150, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/ian-corvid/front.svg",
  15266. extra: 150 / 142,
  15267. bottom: 0.02
  15268. }
  15269. },
  15270. back: {
  15271. height: math.unit(7, "feet"),
  15272. weight: math.unit(150, "lb"),
  15273. name: "Back",
  15274. image: {
  15275. source: "./media/characters/ian-corvid/back.svg",
  15276. extra: 150 / 143,
  15277. bottom: 0.01
  15278. }
  15279. },
  15280. stomping: {
  15281. height: math.unit(7, "feet"),
  15282. weight: math.unit(150, "lb"),
  15283. name: "Stomping",
  15284. image: {
  15285. source: "./media/characters/ian-corvid/stomping.svg",
  15286. extra: 76 / 72
  15287. }
  15288. },
  15289. sitting: {
  15290. height: math.unit(7 / 1.8, "feet"),
  15291. weight: math.unit(150, "lb"),
  15292. name: "Sitting",
  15293. image: {
  15294. source: "./media/characters/ian-corvid/sitting.svg",
  15295. extra: 1400 / 1269,
  15296. bottom: 0.15
  15297. }
  15298. },
  15299. },
  15300. [
  15301. {
  15302. name: "Tiny Microw",
  15303. height: math.unit(1, "inch")
  15304. },
  15305. {
  15306. name: "Microw",
  15307. height: math.unit(6, "inches")
  15308. },
  15309. {
  15310. name: "Crow",
  15311. height: math.unit(7 + 1 / 12, "feet"),
  15312. default: true
  15313. },
  15314. {
  15315. name: "Macrow",
  15316. height: math.unit(176, "feet")
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15322. {
  15323. front: {
  15324. height: math.unit(5 + 7 / 12, "feet"),
  15325. weight: math.unit(147, "lb"),
  15326. name: "Front",
  15327. image: {
  15328. source: "./media/characters/natalie-kellon/front.svg",
  15329. extra: 1214 / 1141,
  15330. bottom: 0.02
  15331. }
  15332. },
  15333. },
  15334. [
  15335. {
  15336. name: "Micro",
  15337. height: math.unit(1 / 16, "inch")
  15338. },
  15339. {
  15340. name: "Tiny",
  15341. height: math.unit(4, "inches")
  15342. },
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(5 + 7 / 12, "feet"),
  15346. default: true
  15347. },
  15348. {
  15349. name: "Amazon",
  15350. height: math.unit(12, "feet")
  15351. },
  15352. {
  15353. name: "Giantess",
  15354. height: math.unit(160, "meters")
  15355. },
  15356. {
  15357. name: "Titaness",
  15358. height: math.unit(800, "meters")
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15364. {
  15365. front: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(150, "lb"),
  15368. name: "Front",
  15369. image: {
  15370. source: "./media/characters/alluria/front.svg",
  15371. extra: 806 / 738,
  15372. bottom: 0.01
  15373. }
  15374. },
  15375. side: {
  15376. height: math.unit(6, "feet"),
  15377. weight: math.unit(150, "lb"),
  15378. name: "Side",
  15379. image: {
  15380. source: "./media/characters/alluria/side.svg",
  15381. extra: 800 / 750,
  15382. }
  15383. },
  15384. back: {
  15385. height: math.unit(6, "feet"),
  15386. weight: math.unit(150, "lb"),
  15387. name: "Back",
  15388. image: {
  15389. source: "./media/characters/alluria/back.svg",
  15390. extra: 806 / 738,
  15391. }
  15392. },
  15393. frontMaid: {
  15394. height: math.unit(6, "feet"),
  15395. weight: math.unit(150, "lb"),
  15396. name: "Front (Maid)",
  15397. image: {
  15398. source: "./media/characters/alluria/front-maid.svg",
  15399. extra: 806 / 738,
  15400. bottom: 0.01
  15401. }
  15402. },
  15403. sideMaid: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Side (Maid)",
  15407. image: {
  15408. source: "./media/characters/alluria/side-maid.svg",
  15409. extra: 800 / 750,
  15410. bottom: 0.005
  15411. }
  15412. },
  15413. backMaid: {
  15414. height: math.unit(6, "feet"),
  15415. weight: math.unit(150, "lb"),
  15416. name: "Back (Maid)",
  15417. image: {
  15418. source: "./media/characters/alluria/back-maid.svg",
  15419. extra: 806 / 738,
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Micro",
  15426. height: math.unit(6, "inches"),
  15427. default: true
  15428. },
  15429. ]
  15430. ))
  15431. characterMakers.push(() => makeCharacter(
  15432. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15433. {
  15434. front: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Front",
  15438. image: {
  15439. source: "./media/characters/kyle/front.svg",
  15440. extra: 1069 / 962,
  15441. bottom: 77.228 / 1727.45
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Macro",
  15448. height: math.unit(150, "feet"),
  15449. default: true
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15455. {
  15456. front: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(300, "lb"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/duncan/front.svg",
  15462. extra: 1650 / 1482,
  15463. bottom: 0.05
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Macro",
  15470. height: math.unit(100, "feet"),
  15471. default: true
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(5 + 4 / 12, "feet"),
  15480. weight: math.unit(220, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/memory/front.svg",
  15484. extra: 3641 / 3545,
  15485. bottom: 0.03
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(5 + 4 / 12, "feet"),
  15490. weight: math.unit(220, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/memory/back.svg",
  15494. extra: 3641 / 3545,
  15495. bottom: 0.025
  15496. }
  15497. },
  15498. frontSkirt: {
  15499. height: math.unit(5 + 4 / 12, "feet"),
  15500. weight: math.unit(220, "lb"),
  15501. name: "Front (Skirt)",
  15502. image: {
  15503. source: "./media/characters/memory/front-skirt.svg",
  15504. extra: 3641 / 3545,
  15505. bottom: 0.03
  15506. }
  15507. },
  15508. frontDress: {
  15509. height: math.unit(5 + 4 / 12, "feet"),
  15510. weight: math.unit(220, "lb"),
  15511. name: "Front (Dress)",
  15512. image: {
  15513. source: "./media/characters/memory/front-dress.svg",
  15514. extra: 3641 / 3545,
  15515. bottom: 0.03
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Micro",
  15522. height: math.unit(6, "inches"),
  15523. default: true
  15524. },
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(5 + 4 / 12, "feet")
  15528. },
  15529. ]
  15530. ))
  15531. characterMakers.push(() => makeCharacter(
  15532. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15533. {
  15534. front: {
  15535. height: math.unit(4 + 11 / 12, "feet"),
  15536. weight: math.unit(100, "lb"),
  15537. name: "Front",
  15538. image: {
  15539. source: "./media/characters/luno/front.svg",
  15540. extra: 1535 / 1487,
  15541. bottom: 0.03
  15542. }
  15543. },
  15544. },
  15545. [
  15546. {
  15547. name: "Micro",
  15548. height: math.unit(3, "inches")
  15549. },
  15550. {
  15551. name: "Normal",
  15552. height: math.unit(4 + 11 / 12, "feet"),
  15553. default: true
  15554. },
  15555. {
  15556. name: "Macro",
  15557. height: math.unit(300, "feet")
  15558. },
  15559. {
  15560. name: "Megamacro",
  15561. height: math.unit(700, "miles")
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(6 + 2 / 12, "feet"),
  15570. weight: math.unit(170, "lb"),
  15571. name: "Front",
  15572. image: {
  15573. source: "./media/characters/jamesy/front.svg",
  15574. extra: 440 / 382,
  15575. bottom: 0.005
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Micro",
  15582. height: math.unit(3, "inches")
  15583. },
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(6 + 2 / 12, "feet"),
  15587. default: true
  15588. },
  15589. {
  15590. name: "Macro",
  15591. height: math.unit(300, "feet")
  15592. },
  15593. {
  15594. name: "Megamacro",
  15595. height: math.unit(700, "miles")
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(160, "lb"),
  15605. name: "Front",
  15606. image: {
  15607. source: "./media/characters/mark/front.svg",
  15608. extra: 3300 / 3100,
  15609. bottom: 136.42 / 3440.47
  15610. }
  15611. },
  15612. },
  15613. [
  15614. {
  15615. name: "Macro",
  15616. height: math.unit(120, "meters")
  15617. },
  15618. {
  15619. name: "Bigger Macro",
  15620. height: math.unit(350, "meters")
  15621. },
  15622. {
  15623. name: "Megamacro",
  15624. height: math.unit(8, "km"),
  15625. default: true
  15626. },
  15627. {
  15628. name: "Continental",
  15629. height: math.unit(4550, "km")
  15630. },
  15631. {
  15632. name: "Planetary",
  15633. height: math.unit(65000, "km")
  15634. },
  15635. ]
  15636. ))
  15637. characterMakers.push(() => makeCharacter(
  15638. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15639. {
  15640. front: {
  15641. height: math.unit(6, "feet"),
  15642. weight: math.unit(400, "lb"),
  15643. name: "Front",
  15644. image: {
  15645. source: "./media/characters/mac/front.svg",
  15646. extra: 1048 / 987.7,
  15647. bottom: 60 / 1107.6,
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Macro",
  15654. height: math.unit(500, "feet"),
  15655. default: true
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15661. {
  15662. front: {
  15663. height: math.unit(5 + 2 / 12, "feet"),
  15664. weight: math.unit(190, "lb"),
  15665. name: "Front",
  15666. image: {
  15667. source: "./media/characters/bari/front.svg",
  15668. extra: 3156 / 2880,
  15669. bottom: 0.03
  15670. }
  15671. },
  15672. back: {
  15673. height: math.unit(5 + 2 / 12, "feet"),
  15674. weight: math.unit(190, "lb"),
  15675. name: "Back",
  15676. image: {
  15677. source: "./media/characters/bari/back.svg",
  15678. extra: 3260 / 2834,
  15679. bottom: 0.025
  15680. }
  15681. },
  15682. frontPlush: {
  15683. height: math.unit(5 + 2 / 12, "feet"),
  15684. weight: math.unit(190, "lb"),
  15685. name: "Front (Plush)",
  15686. image: {
  15687. source: "./media/characters/bari/front-plush.svg",
  15688. extra: 1112 / 1061,
  15689. bottom: 0.002
  15690. }
  15691. },
  15692. },
  15693. [
  15694. {
  15695. name: "Micro",
  15696. height: math.unit(3, "inches")
  15697. },
  15698. {
  15699. name: "Normal",
  15700. height: math.unit(5 + 2 / 12, "feet"),
  15701. default: true
  15702. },
  15703. {
  15704. name: "Macro",
  15705. height: math.unit(20, "feet")
  15706. },
  15707. ]
  15708. ))
  15709. characterMakers.push(() => makeCharacter(
  15710. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15711. {
  15712. front: {
  15713. height: math.unit(6 + 1 / 12, "feet"),
  15714. weight: math.unit(275, "lb"),
  15715. name: "Front",
  15716. image: {
  15717. source: "./media/characters/hunter-misha-raven/front.svg"
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Mortal",
  15724. height: math.unit(6 + 1 / 12, "feet")
  15725. },
  15726. {
  15727. name: "Divine",
  15728. height: math.unit(1.12134e34, "parsecs"),
  15729. default: true
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15735. {
  15736. front: {
  15737. height: math.unit(6 + 3 / 12, "feet"),
  15738. weight: math.unit(220, "lb"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/max-calore/front.svg",
  15742. extra: 1700 / 1648,
  15743. bottom: 0.01
  15744. }
  15745. },
  15746. back: {
  15747. height: math.unit(6 + 3 / 12, "feet"),
  15748. weight: math.unit(220, "lb"),
  15749. name: "Back",
  15750. image: {
  15751. source: "./media/characters/max-calore/back.svg",
  15752. extra: 1700 / 1648,
  15753. bottom: 0.01
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(6 + 3 / 12, "feet"),
  15761. default: true
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15767. {
  15768. side: {
  15769. height: math.unit(2 + 8 / 12, "feet"),
  15770. weight: math.unit(99, "lb"),
  15771. name: "Side",
  15772. image: {
  15773. source: "./media/characters/aspen/side.svg",
  15774. extra: 152 / 138,
  15775. bottom: 0.032
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(2 + 8 / 12, "feet"),
  15783. default: true
  15784. },
  15785. ]
  15786. ))
  15787. characterMakers.push(() => makeCharacter(
  15788. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15789. {
  15790. side: {
  15791. height: math.unit(3 + 2 / 12, "feet"),
  15792. weight: math.unit(224, "lb"),
  15793. name: "Side",
  15794. image: {
  15795. source: "./media/characters/sheila-feral-wolf/side.svg",
  15796. extra: 179 / 166,
  15797. bottom: 0.03
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(3 + 2 / 12, "feet"),
  15805. default: true
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15811. {
  15812. side: {
  15813. height: math.unit(1 + 9 / 12, "feet"),
  15814. weight: math.unit(38, "lb"),
  15815. name: "Side",
  15816. image: {
  15817. source: "./media/characters/michelle/side.svg",
  15818. extra: 147 / 136.7,
  15819. bottom: 0.03
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(1 + 9 / 12, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(1 + 1 / 12, "feet"),
  15836. weight: math.unit(18, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/nino/front.svg"
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(1 + 1 / 12, "feet"),
  15847. default: true
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(1, "feet"),
  15856. weight: math.unit(16, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/viola/front.svg"
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(1, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(6 + 5 / 12, "feet"),
  15876. weight: math.unit(580, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/atlas/front.svg",
  15880. extra: 298.5 / 290,
  15881. bottom: 0.015
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(6 + 5 / 12, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15895. {
  15896. side: {
  15897. height: math.unit(1 + 10 / 12, "feet"),
  15898. weight: math.unit(25, "lb"),
  15899. name: "Side",
  15900. image: {
  15901. source: "./media/characters/davy/side.svg",
  15902. extra: 200 / 170,
  15903. bottom: 0.01
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(1 + 10 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15917. {
  15918. side: {
  15919. height: math.unit(4 + 8 / 12, "feet"),
  15920. weight: math.unit(166, "lb"),
  15921. name: "Side",
  15922. image: {
  15923. source: "./media/characters/fiona/side.svg",
  15924. extra: 232 / 220,
  15925. bottom: 0.03
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(4 + 8 / 12, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15939. {
  15940. front: {
  15941. height: math.unit(2, "feet"),
  15942. weight: math.unit(62, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/lyla/front.svg",
  15946. bottom: 0.1
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(2, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15960. {
  15961. side: {
  15962. height: math.unit(1.8, "feet"),
  15963. weight: math.unit(44, "lb"),
  15964. name: "Side",
  15965. image: {
  15966. source: "./media/characters/perseus/side.svg",
  15967. bottom: 0.21
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(1.8, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15981. {
  15982. side: {
  15983. height: math.unit(4 + 2 / 12, "feet"),
  15984. weight: math.unit(20, "lb"),
  15985. name: "Side",
  15986. image: {
  15987. source: "./media/characters/remus/side.svg"
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(4 + 2 / 12, "feet"),
  15995. default: true
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(4 + 11 / 12, "feet"),
  16004. weight: math.unit(114, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/raf/front.svg",
  16008. bottom: 0.01
  16009. }
  16010. },
  16011. side: {
  16012. height: math.unit(4 + 11 / 12, "feet"),
  16013. weight: math.unit(114, "lb"),
  16014. name: "Side",
  16015. image: {
  16016. source: "./media/characters/raf/side.svg",
  16017. bottom: 0.005
  16018. }
  16019. },
  16020. },
  16021. [
  16022. {
  16023. name: "Micro",
  16024. height: math.unit(2, "inches")
  16025. },
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(4 + 11 / 12, "feet"),
  16029. default: true
  16030. },
  16031. {
  16032. name: "Macro",
  16033. height: math.unit(70, "feet")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(1.5, "meters"),
  16042. weight: math.unit(68, "kg"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/liam-einarr/front.svg",
  16046. extra: 2822 / 2666
  16047. }
  16048. },
  16049. back: {
  16050. height: math.unit(1.5, "meters"),
  16051. weight: math.unit(68, "kg"),
  16052. name: "Back",
  16053. image: {
  16054. source: "./media/characters/liam-einarr/back.svg",
  16055. extra: 2822 / 2666,
  16056. bottom: 0.015
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(1.5, "meters"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Macro",
  16068. height: math.unit(150, "meters")
  16069. },
  16070. {
  16071. name: "Megamacro",
  16072. height: math.unit(35, "km")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(75, "kg"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/linda/front.svg",
  16085. extra: 930 / 874,
  16086. bottom: 0.004
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(6, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(6 + 8 / 12, "feet"),
  16103. weight: math.unit(220, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/caylex/front.svg",
  16107. extra: 821 / 772,
  16108. bottom: 0.07
  16109. }
  16110. },
  16111. back: {
  16112. height: math.unit(6 + 8 / 12, "feet"),
  16113. weight: math.unit(220, "lb"),
  16114. name: "Back",
  16115. image: {
  16116. source: "./media/characters/caylex/back.svg",
  16117. extra: 821 / 772,
  16118. bottom: 0.022
  16119. }
  16120. },
  16121. hand: {
  16122. height: math.unit(1.25, "feet"),
  16123. name: "Hand",
  16124. image: {
  16125. source: "./media/characters/caylex/hand.svg"
  16126. }
  16127. },
  16128. foot: {
  16129. height: math.unit(1.6, "feet"),
  16130. name: "Foot",
  16131. image: {
  16132. source: "./media/characters/caylex/foot.svg"
  16133. }
  16134. },
  16135. armored: {
  16136. height: math.unit(6 + 8 / 12, "feet"),
  16137. weight: math.unit(250, "lb"),
  16138. name: "Armored",
  16139. image: {
  16140. source: "./media/characters/caylex/armored.svg",
  16141. extra: 1420 / 1310,
  16142. bottom: 0.045
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(6 + 8 / 12, "feet"),
  16150. default: true
  16151. },
  16152. {
  16153. name: "Normal+",
  16154. height: math.unit(12, "feet")
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(7 + 6 / 12, "feet"),
  16163. weight: math.unit(288, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/alana/front.svg",
  16167. extra: 679 / 653,
  16168. bottom: 22.5 / 701
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(7 + 6 / 12, "feet")
  16176. },
  16177. {
  16178. name: "Large",
  16179. height: math.unit(50, "feet")
  16180. },
  16181. {
  16182. name: "Macro",
  16183. height: math.unit(100, "feet"),
  16184. default: true
  16185. },
  16186. {
  16187. name: "Macro+",
  16188. height: math.unit(200, "feet")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6 + 1 / 12, "feet"),
  16197. weight: math.unit(210, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/hasani/front.svg",
  16201. extra: 244 / 232,
  16202. bottom: 0.01
  16203. }
  16204. },
  16205. back: {
  16206. height: math.unit(6 + 1 / 12, "feet"),
  16207. weight: math.unit(210, "lb"),
  16208. name: "Back",
  16209. image: {
  16210. source: "./media/characters/hasani/back.svg",
  16211. extra: 244 / 232,
  16212. bottom: 0.01
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(6 + 1 / 12, "feet")
  16220. },
  16221. {
  16222. name: "Macro",
  16223. height: math.unit(175, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(1.82, "meters"),
  16233. weight: math.unit(140, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/nita/front.svg",
  16237. extra: 2473 / 2363,
  16238. bottom: 0.01
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(1.82, "m")
  16246. },
  16247. {
  16248. name: "Macro",
  16249. height: math.unit(300, "m")
  16250. },
  16251. {
  16252. name: "Mistake Canon",
  16253. height: math.unit(0.5, "miles"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Big Mistake",
  16258. height: math.unit(13, "miles")
  16259. },
  16260. {
  16261. name: "Playing God",
  16262. height: math.unit(2450, "miles")
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(4, "feet"),
  16271. weight: math.unit(120, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/shiriko/front.svg",
  16275. extra: 195 / 188
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(4, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(6, "feet"),
  16292. name: "front",
  16293. image: {
  16294. source: "./media/characters/deja/front.svg",
  16295. extra: 926 / 840,
  16296. bottom: 0.07
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Planck Length",
  16303. height: math.unit(1.6e-35, "meters")
  16304. },
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(30.48, "meters"),
  16308. default: true
  16309. },
  16310. {
  16311. name: "Universal",
  16312. height: math.unit(8.8e26, "meters")
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16318. {
  16319. side: {
  16320. height: math.unit(8, "feet"),
  16321. weight: math.unit(6300, "lb"),
  16322. name: "Side",
  16323. image: {
  16324. source: "./media/characters/anima/side.svg",
  16325. bottom: 0.035
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Normal",
  16332. height: math.unit(8, "feet"),
  16333. default: true
  16334. },
  16335. ]
  16336. ))
  16337. characterMakers.push(() => makeCharacter(
  16338. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16339. {
  16340. front: {
  16341. height: math.unit(8, "feet"),
  16342. weight: math.unit(350, "lb"),
  16343. name: "Front",
  16344. image: {
  16345. source: "./media/characters/bianca/front.svg",
  16346. extra: 234 / 225,
  16347. bottom: 0.03
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(8, "feet"),
  16355. default: true
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16361. {
  16362. front: {
  16363. height: math.unit(6, "feet"),
  16364. weight: math.unit(150, "lb"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/adinia/front.svg",
  16368. extra: 1845 / 1672,
  16369. bottom: 0.02
  16370. }
  16371. },
  16372. back: {
  16373. height: math.unit(6, "feet"),
  16374. weight: math.unit(150, "lb"),
  16375. name: "Back",
  16376. image: {
  16377. source: "./media/characters/adinia/back.svg",
  16378. extra: 1845 / 1672,
  16379. bottom: 0.002
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(11 + 5 / 12, "feet"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(3, "meters"),
  16396. weight: math.unit(200, "kg"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/lykasa/front.svg",
  16400. extra: 1076 / 976,
  16401. bottom: 0.06
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(3, "meters")
  16409. },
  16410. {
  16411. name: "Kaiju",
  16412. height: math.unit(120, "meters"),
  16413. default: true
  16414. },
  16415. {
  16416. name: "Mega Kaiju",
  16417. height: math.unit(240, "km")
  16418. },
  16419. {
  16420. name: "Giga Kaiju",
  16421. height: math.unit(400, "megameters")
  16422. },
  16423. {
  16424. name: "Tera Kaiju",
  16425. height: math.unit(800, "gigameters")
  16426. },
  16427. {
  16428. name: "Kaiju Dragon Goddess",
  16429. height: math.unit(26, "zettaparsecs")
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16435. {
  16436. side: {
  16437. height: math.unit(283 / 124 * 6, "feet"),
  16438. weight: math.unit(35000, "lb"),
  16439. name: "Side",
  16440. image: {
  16441. source: "./media/characters/malfaren/side.svg",
  16442. extra: 2500 / 1010,
  16443. bottom: 0.01
  16444. }
  16445. },
  16446. front: {
  16447. height: math.unit(22.36, "feet"),
  16448. weight: math.unit(35000, "lb"),
  16449. name: "Front",
  16450. image: {
  16451. source: "./media/characters/malfaren/front.svg",
  16452. extra: 1631 / 1476,
  16453. bottom: 0.01
  16454. }
  16455. },
  16456. maw: {
  16457. height: math.unit(6.9, "feet"),
  16458. name: "Maw",
  16459. image: {
  16460. source: "./media/characters/malfaren/maw.svg"
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Big",
  16467. height: math.unit(283 / 162 * 6, "feet"),
  16468. },
  16469. {
  16470. name: "Bigger",
  16471. height: math.unit(283 / 124 * 6, "feet")
  16472. },
  16473. {
  16474. name: "Massive",
  16475. height: math.unit(283 / 92 * 6, "feet"),
  16476. default: true
  16477. },
  16478. {
  16479. name: "👀💦",
  16480. height: math.unit(283 / 73 * 6, "feet"),
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(1.7, "m"),
  16489. weight: math.unit(70, "kg"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/kernel/front.svg",
  16493. extra: 222 / 210,
  16494. bottom: 0.007
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Nano",
  16501. height: math.unit(17, "micrometers")
  16502. },
  16503. {
  16504. name: "Micro",
  16505. height: math.unit(1.7, "mm")
  16506. },
  16507. {
  16508. name: "Small",
  16509. height: math.unit(1.7, "cm")
  16510. },
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(1.7, "m"),
  16514. default: true
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(1.75, "meters"),
  16523. weight: math.unit(65, "kg"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/jayne-folest/front.svg",
  16527. extra: 2115 / 2007,
  16528. bottom: 0.02
  16529. }
  16530. },
  16531. back: {
  16532. height: math.unit(1.75, "meters"),
  16533. weight: math.unit(65, "kg"),
  16534. name: "Back",
  16535. image: {
  16536. source: "./media/characters/jayne-folest/back.svg",
  16537. extra: 2115 / 2007,
  16538. bottom: 0.005
  16539. }
  16540. },
  16541. frontClothed: {
  16542. height: math.unit(1.75, "meters"),
  16543. weight: math.unit(65, "kg"),
  16544. name: "Front (Clothed)",
  16545. image: {
  16546. source: "./media/characters/jayne-folest/front-clothed.svg",
  16547. extra: 2115 / 2007,
  16548. bottom: 0.035
  16549. }
  16550. },
  16551. hand: {
  16552. height: math.unit(1 / 1.260, "feet"),
  16553. name: "Hand",
  16554. image: {
  16555. source: "./media/characters/jayne-folest/hand.svg"
  16556. }
  16557. },
  16558. foot: {
  16559. height: math.unit(1 / 0.918, "feet"),
  16560. name: "Foot",
  16561. image: {
  16562. source: "./media/characters/jayne-folest/foot.svg"
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(4, "cm")
  16570. },
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(1.75, "meters")
  16574. },
  16575. {
  16576. name: "Macro",
  16577. height: math.unit(47.5, "meters"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(180, "cm"),
  16587. weight: math.unit(70, "kg"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/algier/front.svg",
  16591. extra: 596 / 572,
  16592. bottom: 0.04
  16593. }
  16594. },
  16595. back: {
  16596. height: math.unit(180, "cm"),
  16597. weight: math.unit(70, "kg"),
  16598. name: "Back",
  16599. image: {
  16600. source: "./media/characters/algier/back.svg",
  16601. extra: 596 / 572,
  16602. bottom: 0.025
  16603. }
  16604. },
  16605. frontdressed: {
  16606. height: math.unit(180, "cm"),
  16607. weight: math.unit(150, "kg"),
  16608. name: "Front-dressed",
  16609. image: {
  16610. source: "./media/characters/algier/front-dressed.svg",
  16611. extra: 596 / 572,
  16612. bottom: 0.038
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Micro",
  16619. height: math.unit(5, "cm")
  16620. },
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(180, "cm"),
  16624. default: true
  16625. },
  16626. {
  16627. name: "Macro",
  16628. height: math.unit(64, "m")
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16634. {
  16635. upright: {
  16636. height: math.unit(7, "feet"),
  16637. weight: math.unit(300, "lb"),
  16638. name: "Upright",
  16639. image: {
  16640. source: "./media/characters/pretzel/upright.svg",
  16641. extra: 534 / 522,
  16642. bottom: 0.065
  16643. }
  16644. },
  16645. sprawling: {
  16646. height: math.unit(3.75, "feet"),
  16647. weight: math.unit(300, "lb"),
  16648. name: "Sprawling",
  16649. image: {
  16650. source: "./media/characters/pretzel/sprawling.svg",
  16651. extra: 314 / 281,
  16652. bottom: 0.1
  16653. }
  16654. },
  16655. tongue: {
  16656. height: math.unit(2, "feet"),
  16657. name: "Tongue",
  16658. image: {
  16659. source: "./media/characters/pretzel/tongue.svg"
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(7, "feet"),
  16667. default: true
  16668. },
  16669. {
  16670. name: "Oversized",
  16671. height: math.unit(15, "feet")
  16672. },
  16673. {
  16674. name: "Huge",
  16675. height: math.unit(30, "feet")
  16676. },
  16677. {
  16678. name: "Macro",
  16679. height: math.unit(250, "feet")
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16685. {
  16686. sideFront: {
  16687. height: math.unit(5 + 2 / 12, "feet"),
  16688. weight: math.unit(120, "lb"),
  16689. name: "Front Side",
  16690. image: {
  16691. source: "./media/characters/roxi/side-front.svg",
  16692. extra: 2924 / 2717,
  16693. bottom: 0.08
  16694. }
  16695. },
  16696. sideBack: {
  16697. height: math.unit(5 + 2 / 12, "feet"),
  16698. weight: math.unit(120, "lb"),
  16699. name: "Back Side",
  16700. image: {
  16701. source: "./media/characters/roxi/side-back.svg",
  16702. extra: 2904 / 2693,
  16703. bottom: 0.06
  16704. }
  16705. },
  16706. front: {
  16707. height: math.unit(5 + 2 / 12, "feet"),
  16708. weight: math.unit(120, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/roxi/front.svg",
  16712. extra: 2028 / 1907,
  16713. bottom: 0.01
  16714. }
  16715. },
  16716. frontAlt: {
  16717. height: math.unit(5 + 2 / 12, "feet"),
  16718. weight: math.unit(120, "lb"),
  16719. name: "Front (Alt)",
  16720. image: {
  16721. source: "./media/characters/roxi/front-alt.svg",
  16722. extra: 1828 / 1798,
  16723. bottom: 0.01
  16724. }
  16725. },
  16726. sitting: {
  16727. height: math.unit(2.8, "feet"),
  16728. weight: math.unit(120, "lb"),
  16729. name: "Sitting",
  16730. image: {
  16731. source: "./media/characters/roxi/sitting.svg",
  16732. extra: 2660 / 2462,
  16733. bottom: 0.1
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(5 + 2 / 12, "feet"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16747. {
  16748. side: {
  16749. height: math.unit(55, "feet"),
  16750. weight: math.unit(153, "tons"),
  16751. name: "Side",
  16752. image: {
  16753. source: "./media/characters/shadow/side.svg",
  16754. extra: 701 / 628,
  16755. bottom: 0.02
  16756. }
  16757. },
  16758. flying: {
  16759. height: math.unit(145, "feet"),
  16760. weight: math.unit(153, "tons"),
  16761. name: "Flying",
  16762. image: {
  16763. source: "./media/characters/shadow/flying.svg"
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(55, "feet"),
  16771. default: true
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6, "feet"),
  16780. weight: math.unit(200, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/marcie/front.svg",
  16784. extra: 960 / 876,
  16785. bottom: 58 / 1017.87
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Macro",
  16792. height: math.unit(1, "mile"),
  16793. default: true
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(7, "feet"),
  16802. weight: math.unit(200, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/kachina/front.svg",
  16806. extra: 1290.68 / 1119,
  16807. bottom: 36.5 / 1327.18
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(7, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16821. {
  16822. looking: {
  16823. height: math.unit(2, "meters"),
  16824. weight: math.unit(300, "kg"),
  16825. name: "Looking",
  16826. image: {
  16827. source: "./media/characters/kash/looking.svg",
  16828. extra: 474 / 344,
  16829. bottom: 0.03
  16830. }
  16831. },
  16832. side: {
  16833. height: math.unit(2, "meters"),
  16834. weight: math.unit(300, "kg"),
  16835. name: "Side",
  16836. image: {
  16837. source: "./media/characters/kash/side.svg",
  16838. extra: 302 / 251,
  16839. bottom: 0.03
  16840. }
  16841. },
  16842. front: {
  16843. height: math.unit(2, "meters"),
  16844. weight: math.unit(300, "kg"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/kash/front.svg",
  16848. extra: 495 / 360,
  16849. bottom: 0.015
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(2, "meters"),
  16857. default: true
  16858. },
  16859. {
  16860. name: "Big",
  16861. height: math.unit(3, "meters")
  16862. },
  16863. {
  16864. name: "Large",
  16865. height: math.unit(5, "meters")
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16871. {
  16872. feeding: {
  16873. height: math.unit(6.7, "feet"),
  16874. weight: math.unit(350, "lb"),
  16875. name: "Feeding",
  16876. image: {
  16877. source: "./media/characters/lalim/feeding.svg",
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Normal",
  16884. height: math.unit(6.7, "feet"),
  16885. default: true
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16891. {
  16892. front: {
  16893. height: math.unit(9.5, "feet"),
  16894. weight: math.unit(600, "lb"),
  16895. name: "Front",
  16896. image: {
  16897. source: "./media/characters/de'vout/front.svg",
  16898. extra: 1443 / 1328,
  16899. bottom: 0.025
  16900. }
  16901. },
  16902. back: {
  16903. height: math.unit(9.5, "feet"),
  16904. weight: math.unit(600, "lb"),
  16905. name: "Back",
  16906. image: {
  16907. source: "./media/characters/de'vout/back.svg",
  16908. extra: 1443 / 1328
  16909. }
  16910. },
  16911. frontDressed: {
  16912. height: math.unit(9.5, "feet"),
  16913. weight: math.unit(600, "lb"),
  16914. name: "Front (Dressed",
  16915. image: {
  16916. source: "./media/characters/de'vout/front-dressed.svg",
  16917. extra: 1443 / 1328,
  16918. bottom: 0.025
  16919. }
  16920. },
  16921. backDressed: {
  16922. height: math.unit(9.5, "feet"),
  16923. weight: math.unit(600, "lb"),
  16924. name: "Back (Dressed",
  16925. image: {
  16926. source: "./media/characters/de'vout/back-dressed.svg",
  16927. extra: 1443 / 1328
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(9.5, "feet"),
  16935. default: true
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(8, "feet"),
  16944. weight: math.unit(225, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/talana/front.svg",
  16948. extra: 1410 / 1300,
  16949. bottom: 0.015
  16950. }
  16951. },
  16952. frontDressed: {
  16953. height: math.unit(8, "feet"),
  16954. weight: math.unit(225, "lb"),
  16955. name: "Front (Dressed",
  16956. image: {
  16957. source: "./media/characters/talana/front-dressed.svg",
  16958. extra: 1410 / 1300,
  16959. bottom: 0.015
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(8, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16973. {
  16974. side: {
  16975. height: math.unit(7.2, "feet"),
  16976. weight: math.unit(150, "lb"),
  16977. name: "Side",
  16978. image: {
  16979. source: "./media/characters/xeauvok/side.svg",
  16980. extra: 1975 / 1523,
  16981. bottom: 0.07
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(7.2, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16995. {
  16996. side: {
  16997. height: math.unit(10, "feet"),
  16998. weight: math.unit(900, "kg"),
  16999. name: "Side",
  17000. image: {
  17001. source: "./media/characters/zara/side.svg",
  17002. extra: 504 / 498
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Normal",
  17009. height: math.unit(10, "feet"),
  17010. default: true
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17016. {
  17017. side: {
  17018. height: math.unit(6, "feet"),
  17019. weight: math.unit(150, "lb"),
  17020. name: "Side",
  17021. image: {
  17022. source: "./media/characters/richard-dragon/side.svg",
  17023. extra: 845 / 340,
  17024. bottom: 0.017
  17025. }
  17026. },
  17027. maw: {
  17028. height: math.unit(2.97, "feet"),
  17029. name: "Maw",
  17030. image: {
  17031. source: "./media/characters/richard-dragon/maw.svg"
  17032. }
  17033. },
  17034. },
  17035. [
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17040. {
  17041. front: {
  17042. height: math.unit(4, "feet"),
  17043. weight: math.unit(100, "lb"),
  17044. name: "Front",
  17045. image: {
  17046. source: "./media/characters/richard-smeargle/front.svg",
  17047. extra: 2952 / 2820,
  17048. bottom: 0.028
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(4, "feet"),
  17056. default: true
  17057. },
  17058. {
  17059. name: "Dynamax",
  17060. height: math.unit(20, "meters")
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(6, "feet"),
  17069. weight: math.unit(110, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/klay/front.svg",
  17073. extra: 962 / 883,
  17074. bottom: 0.04
  17075. }
  17076. },
  17077. back: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(110, "lb"),
  17080. name: "Back",
  17081. image: {
  17082. source: "./media/characters/klay/back.svg",
  17083. extra: 962 / 883
  17084. }
  17085. },
  17086. beans: {
  17087. height: math.unit(1.15, "feet"),
  17088. name: "Beans",
  17089. image: {
  17090. source: "./media/characters/klay/beans.svg"
  17091. }
  17092. },
  17093. },
  17094. [
  17095. {
  17096. name: "Micro",
  17097. height: math.unit(6, "inches")
  17098. },
  17099. {
  17100. name: "Mini",
  17101. height: math.unit(3, "feet")
  17102. },
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(6, "feet"),
  17106. default: true
  17107. },
  17108. {
  17109. name: "Big",
  17110. height: math.unit(25, "feet")
  17111. },
  17112. {
  17113. name: "Macro",
  17114. height: math.unit(100, "feet")
  17115. },
  17116. {
  17117. name: "Megamacro",
  17118. height: math.unit(400, "feet")
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(6, "feet"),
  17127. weight: math.unit(160, "lb"),
  17128. name: "Front",
  17129. image: {
  17130. source: "./media/characters/marcus/front.svg",
  17131. extra: 734 / 676,
  17132. bottom: 0.03
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Little",
  17139. height: math.unit(6, "feet")
  17140. },
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(110, "feet"),
  17144. default: true
  17145. },
  17146. {
  17147. name: "Macro",
  17148. height: math.unit(250, "feet")
  17149. },
  17150. {
  17151. name: "Megamacro",
  17152. height: math.unit(1000, "feet")
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(7, "feet"),
  17161. weight: math.unit(275, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/claude-delroute/front.svg",
  17165. extra: 230 / 214,
  17166. bottom: 0.007
  17167. }
  17168. },
  17169. side: {
  17170. height: math.unit(7, "feet"),
  17171. weight: math.unit(275, "lb"),
  17172. name: "Side",
  17173. image: {
  17174. source: "./media/characters/claude-delroute/side.svg",
  17175. extra: 222 / 214,
  17176. bottom: 0.01
  17177. }
  17178. },
  17179. back: {
  17180. height: math.unit(7, "feet"),
  17181. weight: math.unit(275, "lb"),
  17182. name: "Back",
  17183. image: {
  17184. source: "./media/characters/claude-delroute/back.svg",
  17185. extra: 230 / 214,
  17186. bottom: 0.015
  17187. }
  17188. },
  17189. maw: {
  17190. height: math.unit(0.6407, "meters"),
  17191. name: "Maw",
  17192. image: {
  17193. source: "./media/characters/claude-delroute/maw.svg"
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(7, "feet"),
  17201. default: true
  17202. },
  17203. {
  17204. name: "Lorge",
  17205. height: math.unit(20, "feet")
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17211. {
  17212. front: {
  17213. height: math.unit(8 + 4 / 12, "feet"),
  17214. weight: math.unit(600, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/dragonien/front.svg",
  17218. extra: 100 / 94,
  17219. bottom: 3.3 / 103.3445
  17220. }
  17221. },
  17222. back: {
  17223. height: math.unit(8 + 4 / 12, "feet"),
  17224. weight: math.unit(600, "lb"),
  17225. name: "Back",
  17226. image: {
  17227. source: "./media/characters/dragonien/back.svg",
  17228. extra: 776 / 746,
  17229. bottom: 6.4 / 782.0616
  17230. }
  17231. },
  17232. foot: {
  17233. height: math.unit(1.54, "feet"),
  17234. name: "Foot",
  17235. image: {
  17236. source: "./media/characters/dragonien/foot.svg",
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(8 + 4 / 12, "feet"),
  17244. default: true
  17245. },
  17246. {
  17247. name: "Macro",
  17248. height: math.unit(200, "feet")
  17249. },
  17250. {
  17251. name: "Megamacro",
  17252. height: math.unit(1, "mile")
  17253. },
  17254. {
  17255. name: "Gigamacro",
  17256. height: math.unit(1000, "miles")
  17257. },
  17258. ]
  17259. ))
  17260. characterMakers.push(() => makeCharacter(
  17261. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17262. {
  17263. front: {
  17264. height: math.unit(5 + 2 / 12, "feet"),
  17265. weight: math.unit(110, "lb"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/desta/front.svg",
  17269. extra: 767/726,
  17270. bottom: 11.7/779
  17271. }
  17272. },
  17273. back: {
  17274. height: math.unit(5 + 2 / 12, "feet"),
  17275. weight: math.unit(110, "lb"),
  17276. name: "Back",
  17277. image: {
  17278. source: "./media/characters/desta/back.svg",
  17279. extra: 777/728,
  17280. bottom: 6/784
  17281. }
  17282. },
  17283. frontAlt: {
  17284. height: math.unit(5 + 2 / 12, "feet"),
  17285. weight: math.unit(110, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/desta/front-alt.svg",
  17289. extra: 1482 / 1417
  17290. }
  17291. },
  17292. side: {
  17293. height: math.unit(5 + 2 / 12, "feet"),
  17294. weight: math.unit(110, "lb"),
  17295. name: "Side",
  17296. image: {
  17297. source: "./media/characters/desta/side.svg",
  17298. extra: 2579 / 2491,
  17299. bottom: 0.053
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Micro",
  17306. height: math.unit(6, "inches")
  17307. },
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(5 + 2 / 12, "feet"),
  17311. default: true
  17312. },
  17313. {
  17314. name: "Macro",
  17315. height: math.unit(62, "feet")
  17316. },
  17317. {
  17318. name: "Megamacro",
  17319. height: math.unit(1800, "feet")
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(10, "feet"),
  17328. weight: math.unit(700, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/storm-alystar/front.svg",
  17332. extra: 2112 / 1898,
  17333. bottom: 0.034
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Micro",
  17340. height: math.unit(3.5, "inches")
  17341. },
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(10, "feet"),
  17345. default: true
  17346. },
  17347. {
  17348. name: "Macro",
  17349. height: math.unit(400, "feet")
  17350. },
  17351. {
  17352. name: "Deific",
  17353. height: math.unit(60, "miles")
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(2.35, "meters"),
  17362. weight: math.unit(119, "kg"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/ilia/front.svg",
  17366. extra: 1285 / 1255,
  17367. bottom: 0.06
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(2.35, "meters")
  17375. },
  17376. {
  17377. name: "Macro",
  17378. height: math.unit(140, "meters"),
  17379. default: true
  17380. },
  17381. {
  17382. name: "Megamacro",
  17383. height: math.unit(100, "miles")
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(6 + 5 / 12, "feet"),
  17392. weight: math.unit(190, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/kingdead/front.svg",
  17396. extra: 1228 / 1177
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Micro",
  17403. height: math.unit(7, "inches")
  17404. },
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(6 + 5 / 12, "feet")
  17408. },
  17409. {
  17410. name: "Macro",
  17411. height: math.unit(150, "feet"),
  17412. default: true
  17413. },
  17414. {
  17415. name: "Megamacro",
  17416. height: math.unit(200, "miles")
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17422. {
  17423. front: {
  17424. height: math.unit(8, "feet"),
  17425. weight: math.unit(600, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/kyrehx/front.svg",
  17429. extra: 1195 / 1095,
  17430. bottom: 0.034
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Micro",
  17437. height: math.unit(2, "inches")
  17438. },
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(8, "feet"),
  17442. default: true
  17443. },
  17444. {
  17445. name: "Macro",
  17446. height: math.unit(255, "feet")
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17455. weight: math.unit(184, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/xang/front.svg",
  17459. extra: 845 / 755
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Normal",
  17466. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17467. default: true
  17468. },
  17469. {
  17470. name: "Macro",
  17471. height: math.unit(0.935 * 146, "feet")
  17472. },
  17473. {
  17474. name: "Megamacro",
  17475. height: math.unit(0.935 * 3, "miles")
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17481. {
  17482. frontDressed: {
  17483. height: math.unit(5 + 7 / 12, "feet"),
  17484. weight: math.unit(140, "lb"),
  17485. name: "Front (Dressed)",
  17486. image: {
  17487. source: "./media/characters/doc-weardno/front-dressed.svg",
  17488. extra: 263 / 234
  17489. }
  17490. },
  17491. backDressed: {
  17492. height: math.unit(5 + 7 / 12, "feet"),
  17493. weight: math.unit(140, "lb"),
  17494. name: "Back (Dressed)",
  17495. image: {
  17496. source: "./media/characters/doc-weardno/back-dressed.svg",
  17497. extra: 266 / 238
  17498. }
  17499. },
  17500. front: {
  17501. height: math.unit(5 + 7 / 12, "feet"),
  17502. weight: math.unit(140, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/doc-weardno/front.svg",
  17506. extra: 254 / 233
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Micro",
  17513. height: math.unit(3, "inches")
  17514. },
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(5 + 7 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Macro",
  17522. height: math.unit(25, "feet")
  17523. },
  17524. {
  17525. name: "Megamacro",
  17526. height: math.unit(2, "miles")
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(6 + 2 / 12, "feet"),
  17535. weight: math.unit(153, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/seth-whilst/front.svg",
  17539. bottom: 0.07
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Micro",
  17546. height: math.unit(5, "inches")
  17547. },
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(6 + 2 / 12, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(3, "inches"),
  17560. weight: math.unit(8, "grams"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/pocket-jabari/front.svg",
  17564. extra: 1024 / 974,
  17565. bottom: 0.039
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Minimicro",
  17572. height: math.unit(8, "mm")
  17573. },
  17574. {
  17575. name: "Micro",
  17576. height: math.unit(3, "inches"),
  17577. default: true
  17578. },
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(3, "feet")
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17587. {
  17588. front: {
  17589. height: math.unit(15, "feet"),
  17590. weight: math.unit(3280, "lb"),
  17591. name: "Front",
  17592. image: {
  17593. source: "./media/characters/sapphy/front.svg",
  17594. extra: 671 / 577,
  17595. bottom: 0.085
  17596. }
  17597. },
  17598. back: {
  17599. height: math.unit(15, "feet"),
  17600. weight: math.unit(3280, "lb"),
  17601. name: "Back",
  17602. image: {
  17603. source: "./media/characters/sapphy/back.svg",
  17604. extra: 631 / 607,
  17605. bottom: 0.045
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(15, "feet")
  17613. },
  17614. {
  17615. name: "Casual Macro",
  17616. height: math.unit(120, "feet")
  17617. },
  17618. {
  17619. name: "Macro",
  17620. height: math.unit(2150, "feet"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Megamacro",
  17625. height: math.unit(8, "miles")
  17626. },
  17627. {
  17628. name: "Galaxy Mom",
  17629. height: math.unit(6, "megalightyears")
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17635. {
  17636. front: {
  17637. height: math.unit(6, "feet"),
  17638. weight: math.unit(170, "lb"),
  17639. name: "Front",
  17640. image: {
  17641. source: "./media/characters/kiro/front.svg",
  17642. extra: 1064 / 1012,
  17643. bottom: 0.052
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Micro",
  17650. height: math.unit(6, "inches")
  17651. },
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(6, "feet"),
  17655. default: true
  17656. },
  17657. {
  17658. name: "Macro",
  17659. height: math.unit(72, "feet")
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17665. {
  17666. front: {
  17667. height: math.unit(5 + 9 / 12, "feet"),
  17668. weight: math.unit(175, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/irishfox/front.svg",
  17672. extra: 1912 / 1680,
  17673. bottom: 0.02
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Nano",
  17680. height: math.unit(1, "mm")
  17681. },
  17682. {
  17683. name: "Micro",
  17684. height: math.unit(2, "inches")
  17685. },
  17686. {
  17687. name: "Normal",
  17688. height: math.unit(5 + 9 / 12, "feet"),
  17689. default: true
  17690. },
  17691. {
  17692. name: "Macro",
  17693. height: math.unit(45, "feet")
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(6 + 1 / 12, "feet"),
  17702. weight: math.unit(150, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/aronai-sieyes/front.svg",
  17706. extra: 1556 / 1480,
  17707. bottom: 0.015
  17708. }
  17709. },
  17710. side: {
  17711. height: math.unit(6 + 1 / 12, "feet"),
  17712. weight: math.unit(150, "lb"),
  17713. name: "Side",
  17714. image: {
  17715. source: "./media/characters/aronai-sieyes/side.svg",
  17716. extra: 1433 / 1390,
  17717. bottom: 0.0393
  17718. }
  17719. },
  17720. back: {
  17721. height: math.unit(6 + 1 / 12, "feet"),
  17722. weight: math.unit(150, "lb"),
  17723. name: "Back",
  17724. image: {
  17725. source: "./media/characters/aronai-sieyes/back.svg",
  17726. extra: 1544 / 1494,
  17727. bottom: 0.02
  17728. }
  17729. },
  17730. frontClothed: {
  17731. height: math.unit(6 + 1 / 12, "feet"),
  17732. weight: math.unit(150, "lb"),
  17733. name: "Front (Clothed)",
  17734. image: {
  17735. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17736. extra: 1582 / 1527
  17737. }
  17738. },
  17739. feral: {
  17740. height: math.unit(18, "feet"),
  17741. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17742. name: "Feral",
  17743. image: {
  17744. source: "./media/characters/aronai-sieyes/feral.svg",
  17745. extra: 1530 / 1240,
  17746. bottom: 0.035
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Micro",
  17753. height: math.unit(2, "inches")
  17754. },
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(6 + 1 / 12, "feet"),
  17758. default: true
  17759. }
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17764. {
  17765. front: {
  17766. height: math.unit(12, "feet"),
  17767. weight: math.unit(410, "kg"),
  17768. name: "Front",
  17769. image: {
  17770. source: "./media/characters/xuna/front.svg",
  17771. extra: 2184 / 1980
  17772. }
  17773. },
  17774. side: {
  17775. height: math.unit(12, "feet"),
  17776. weight: math.unit(410, "kg"),
  17777. name: "Side",
  17778. image: {
  17779. source: "./media/characters/xuna/side.svg",
  17780. extra: 2184 / 1980
  17781. }
  17782. },
  17783. back: {
  17784. height: math.unit(12, "feet"),
  17785. weight: math.unit(410, "kg"),
  17786. name: "Back",
  17787. image: {
  17788. source: "./media/characters/xuna/back.svg",
  17789. extra: 2184 / 1980
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Nano glow",
  17796. height: math.unit(10, "nm")
  17797. },
  17798. {
  17799. name: "Micro floof",
  17800. height: math.unit(0.3, "m")
  17801. },
  17802. {
  17803. name: "Huggable softy boi",
  17804. height: math.unit(3.6576, "m"),
  17805. default: true
  17806. },
  17807. {
  17808. name: "Admirable floof",
  17809. height: math.unit(80, "meters")
  17810. },
  17811. {
  17812. name: "Gentle macro",
  17813. height: math.unit(300, "meters")
  17814. },
  17815. {
  17816. name: "Very careful floof",
  17817. height: math.unit(3200, "meters")
  17818. },
  17819. {
  17820. name: "The mega floof",
  17821. height: math.unit(36000, "meters")
  17822. },
  17823. {
  17824. name: "Giga-fur-Wicker",
  17825. height: math.unit(4800000, "meters")
  17826. },
  17827. {
  17828. name: "Licky world",
  17829. height: math.unit(20000000, "meters")
  17830. },
  17831. {
  17832. name: "Floofy cyan sun",
  17833. height: math.unit(1500000000, "meters")
  17834. },
  17835. {
  17836. name: "Milky Wicker",
  17837. height: math.unit(1000000000000000000000, "meters")
  17838. },
  17839. {
  17840. name: "The observing Wicker",
  17841. height: math.unit(999999999999999999999999999, "meters")
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(5 + 9 / 12, "feet"),
  17850. weight: math.unit(150, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/arokha-sieyes/front.svg",
  17854. extra: 1425 / 1284,
  17855. bottom: 0.05
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(5 + 9 / 12, "feet")
  17863. },
  17864. {
  17865. name: "Macro",
  17866. height: math.unit(30, "meters"),
  17867. default: true
  17868. },
  17869. ]
  17870. ))
  17871. characterMakers.push(() => makeCharacter(
  17872. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17873. {
  17874. front: {
  17875. height: math.unit(6, "feet"),
  17876. weight: math.unit(180, "lb"),
  17877. name: "Front",
  17878. image: {
  17879. source: "./media/characters/arokh-sieyes/front.svg",
  17880. extra: 1830 / 1769,
  17881. bottom: 0.01
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(6, "feet")
  17889. },
  17890. {
  17891. name: "Macro",
  17892. height: math.unit(30, "meters"),
  17893. default: true
  17894. },
  17895. ]
  17896. ))
  17897. characterMakers.push(() => makeCharacter(
  17898. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17899. {
  17900. side: {
  17901. height: math.unit(13 + 1 / 12, "feet"),
  17902. weight: math.unit(8.5, "tonnes"),
  17903. name: "Side",
  17904. image: {
  17905. source: "./media/characters/goldeneye/side.svg",
  17906. extra: 1182 / 778,
  17907. bottom: 0.067
  17908. }
  17909. },
  17910. paw: {
  17911. height: math.unit(3.4, "feet"),
  17912. name: "Paw",
  17913. image: {
  17914. source: "./media/characters/goldeneye/paw.svg"
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(13 + 1 / 12, "feet"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17928. {
  17929. front: {
  17930. height: math.unit(6 + 1 / 12, "feet"),
  17931. weight: math.unit(210, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/leonardo-lycheborne/front.svg",
  17935. extra: 390 / 365,
  17936. bottom: 0.032
  17937. }
  17938. },
  17939. side: {
  17940. height: math.unit(6 + 1 / 12, "feet"),
  17941. weight: math.unit(210, "lb"),
  17942. name: "Side",
  17943. image: {
  17944. source: "./media/characters/leonardo-lycheborne/side.svg",
  17945. extra: 390 / 365,
  17946. bottom: 0.005
  17947. }
  17948. },
  17949. back: {
  17950. height: math.unit(6 + 1 / 12, "feet"),
  17951. weight: math.unit(210, "lb"),
  17952. name: "Back",
  17953. image: {
  17954. source: "./media/characters/leonardo-lycheborne/back.svg",
  17955. extra: 392 / 366,
  17956. bottom: 0.01
  17957. }
  17958. },
  17959. hand: {
  17960. height: math.unit(1.08, "feet"),
  17961. name: "Hand",
  17962. image: {
  17963. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17964. }
  17965. },
  17966. foot: {
  17967. height: math.unit(1.32, "feet"),
  17968. name: "Foot",
  17969. image: {
  17970. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17971. }
  17972. },
  17973. were: {
  17974. height: math.unit(20, "feet"),
  17975. weight: math.unit(7800, "lb"),
  17976. name: "Were",
  17977. image: {
  17978. source: "./media/characters/leonardo-lycheborne/were.svg",
  17979. extra: 308 / 294,
  17980. bottom: 0.048
  17981. }
  17982. },
  17983. feral: {
  17984. height: math.unit(7.5, "feet"),
  17985. weight: math.unit(600, "lb"),
  17986. name: "Feral",
  17987. image: {
  17988. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17989. extra: 210 / 186,
  17990. bottom: 0.108
  17991. }
  17992. },
  17993. taur: {
  17994. height: math.unit(11, "feet"),
  17995. weight: math.unit(3300, "lb"),
  17996. name: "Taur",
  17997. image: {
  17998. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17999. extra: 320 / 303,
  18000. bottom: 0.025
  18001. }
  18002. },
  18003. barghest: {
  18004. height: math.unit(11, "feet"),
  18005. weight: math.unit(1300, "lb"),
  18006. name: "Barghest",
  18007. image: {
  18008. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18009. extra: 323 / 302,
  18010. bottom: 0.027
  18011. }
  18012. },
  18013. dick: {
  18014. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18015. name: "Dick",
  18016. image: {
  18017. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18018. }
  18019. },
  18020. dickWere: {
  18021. height: math.unit((20) / 3.8, "feet"),
  18022. name: "Dick (Were)",
  18023. image: {
  18024. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(6 + 1 / 12, "feet"),
  18032. default: true
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(10, "feet"),
  18041. weight: math.unit(350, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/jet/front.svg",
  18045. extra: 2050 / 1980,
  18046. bottom: 0.013
  18047. }
  18048. },
  18049. back: {
  18050. height: math.unit(10, "feet"),
  18051. weight: math.unit(350, "lb"),
  18052. name: "Back",
  18053. image: {
  18054. source: "./media/characters/jet/back.svg",
  18055. extra: 2050 / 1980,
  18056. bottom: 0.013
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Micro",
  18063. height: math.unit(6, "inches")
  18064. },
  18065. {
  18066. name: "Normal",
  18067. height: math.unit(10, "feet"),
  18068. default: true
  18069. },
  18070. {
  18071. name: "Macro",
  18072. height: math.unit(100, "feet")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(15, "feet"),
  18081. weight: math.unit(2800, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/tanarath/front.svg",
  18085. extra: 2392 / 2220,
  18086. bottom: 0.03
  18087. }
  18088. },
  18089. back: {
  18090. height: math.unit(15, "feet"),
  18091. weight: math.unit(2800, "lb"),
  18092. name: "Back",
  18093. image: {
  18094. source: "./media/characters/tanarath/back.svg",
  18095. extra: 2392 / 2220,
  18096. bottom: 0.03
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(15, "feet"),
  18104. default: true
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18110. {
  18111. front: {
  18112. height: math.unit(7 + 1 / 12, "feet"),
  18113. weight: math.unit(175, "lb"),
  18114. name: "Front",
  18115. image: {
  18116. source: "./media/characters/patty-cattybatty/front.svg",
  18117. extra: 908 / 874,
  18118. bottom: 0.025
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Micro",
  18125. height: math.unit(1, "inch")
  18126. },
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(7 + 1 / 12, "feet")
  18130. },
  18131. {
  18132. name: "Mini Macro",
  18133. height: math.unit(155, "feet")
  18134. },
  18135. {
  18136. name: "Macro",
  18137. height: math.unit(1077, "feet")
  18138. },
  18139. {
  18140. name: "Mega Macro",
  18141. height: math.unit(47650, "feet"),
  18142. default: true
  18143. },
  18144. {
  18145. name: "Giga Macro",
  18146. height: math.unit(440, "miles")
  18147. },
  18148. {
  18149. name: "Tera Macro",
  18150. height: math.unit(8700, "miles")
  18151. },
  18152. {
  18153. name: "Planetary Macro",
  18154. height: math.unit(32700, "miles")
  18155. },
  18156. {
  18157. name: "Solar Macro",
  18158. height: math.unit(550000, "miles")
  18159. },
  18160. {
  18161. name: "Celestial Macro",
  18162. height: math.unit(2.5, "AU")
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(4 + 5 / 12, "feet"),
  18171. weight: math.unit(90, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/cappu/front.svg",
  18175. extra: 1247 / 1152,
  18176. bottom: 0.012
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(4 + 5 / 12, "feet"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18190. {
  18191. frontDressed: {
  18192. height: math.unit(70, "cm"),
  18193. weight: math.unit(6, "kg"),
  18194. name: "Front (Dressed)",
  18195. image: {
  18196. source: "./media/characters/sebi/front-dressed.svg",
  18197. extra: 713.5 / 686.5,
  18198. bottom: 0.003
  18199. }
  18200. },
  18201. front: {
  18202. height: math.unit(70, "cm"),
  18203. weight: math.unit(5, "kg"),
  18204. name: "Front",
  18205. image: {
  18206. source: "./media/characters/sebi/front.svg",
  18207. extra: 713.5 / 686.5,
  18208. bottom: 0.003
  18209. }
  18210. }
  18211. },
  18212. [
  18213. {
  18214. name: "Normal",
  18215. height: math.unit(70, "cm"),
  18216. default: true
  18217. },
  18218. {
  18219. name: "Macro",
  18220. height: math.unit(8, "meters")
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(6, "feet"),
  18229. weight: math.unit(150, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/typhek/front.svg",
  18233. extra: 1948 / 1929,
  18234. bottom: 0.025
  18235. }
  18236. },
  18237. side: {
  18238. height: math.unit(6, "feet"),
  18239. weight: math.unit(150, "lb"),
  18240. name: "Side",
  18241. image: {
  18242. source: "./media/characters/typhek/side.svg",
  18243. extra: 2034 / 2010,
  18244. bottom: 0.003
  18245. }
  18246. },
  18247. back: {
  18248. height: math.unit(6, "feet"),
  18249. weight: math.unit(150, "lb"),
  18250. name: "Back",
  18251. image: {
  18252. source: "./media/characters/typhek/back.svg",
  18253. extra: 2005 / 1978,
  18254. bottom: 0.004
  18255. }
  18256. },
  18257. palm: {
  18258. height: math.unit(1.2, "feet"),
  18259. name: "Palm",
  18260. image: {
  18261. source: "./media/characters/typhek/palm.svg"
  18262. }
  18263. },
  18264. fist: {
  18265. height: math.unit(1.1, "feet"),
  18266. name: "Fist",
  18267. image: {
  18268. source: "./media/characters/typhek/fist.svg"
  18269. }
  18270. },
  18271. foot: {
  18272. height: math.unit(1.57, "feet"),
  18273. name: "Foot",
  18274. image: {
  18275. source: "./media/characters/typhek/foot.svg"
  18276. }
  18277. },
  18278. sole: {
  18279. height: math.unit(2.05, "feet"),
  18280. name: "Sole",
  18281. image: {
  18282. source: "./media/characters/typhek/sole.svg"
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Macro",
  18289. height: math.unit(40, "stories"),
  18290. default: true
  18291. },
  18292. {
  18293. name: "Megamacro",
  18294. height: math.unit(1, "mile")
  18295. },
  18296. {
  18297. name: "Gigamacro",
  18298. height: math.unit(4000, "solarradii")
  18299. },
  18300. {
  18301. name: "Universal",
  18302. height: math.unit(1.1, "universes")
  18303. }
  18304. ]
  18305. ))
  18306. characterMakers.push(() => makeCharacter(
  18307. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18308. {
  18309. side: {
  18310. height: math.unit(5 + 7 / 12, "feet"),
  18311. weight: math.unit(150, "lb"),
  18312. name: "Side",
  18313. image: {
  18314. source: "./media/characters/kassy/side.svg",
  18315. extra: 1280 / 1225,
  18316. bottom: 0.002
  18317. }
  18318. },
  18319. front: {
  18320. height: math.unit(5 + 7 / 12, "feet"),
  18321. weight: math.unit(150, "lb"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/kassy/front.svg",
  18325. extra: 1280 / 1225,
  18326. bottom: 0.025
  18327. }
  18328. },
  18329. back: {
  18330. height: math.unit(5 + 7 / 12, "feet"),
  18331. weight: math.unit(150, "lb"),
  18332. name: "Back",
  18333. image: {
  18334. source: "./media/characters/kassy/back.svg",
  18335. extra: 1280 / 1225,
  18336. bottom: 0.002
  18337. }
  18338. },
  18339. foot: {
  18340. height: math.unit(1.266, "feet"),
  18341. name: "Foot",
  18342. image: {
  18343. source: "./media/characters/kassy/foot.svg"
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(5 + 7 / 12, "feet")
  18351. },
  18352. {
  18353. name: "Macro",
  18354. height: math.unit(137, "feet"),
  18355. default: true
  18356. },
  18357. {
  18358. name: "Megamacro",
  18359. height: math.unit(1, "mile")
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(6 + 1 / 12, "feet"),
  18368. weight: math.unit(200, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/neil/front.svg",
  18372. extra: 1326 / 1250,
  18373. bottom: 0.023
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Normal",
  18380. height: math.unit(6 + 1 / 12, "feet"),
  18381. default: true
  18382. },
  18383. {
  18384. name: "Macro",
  18385. height: math.unit(200, "feet")
  18386. },
  18387. ]
  18388. ))
  18389. characterMakers.push(() => makeCharacter(
  18390. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18391. {
  18392. front: {
  18393. height: math.unit(5 + 9 / 12, "feet"),
  18394. weight: math.unit(190, "lb"),
  18395. name: "Front",
  18396. image: {
  18397. source: "./media/characters/atticus/front.svg",
  18398. extra: 2934 / 2785,
  18399. bottom: 0.025
  18400. }
  18401. },
  18402. },
  18403. [
  18404. {
  18405. name: "Normal",
  18406. height: math.unit(5 + 9 / 12, "feet"),
  18407. default: true
  18408. },
  18409. {
  18410. name: "Macro",
  18411. height: math.unit(180, "feet")
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18417. {
  18418. side: {
  18419. height: math.unit(9, "feet"),
  18420. weight: math.unit(650, "lb"),
  18421. name: "Side",
  18422. image: {
  18423. source: "./media/characters/milo/side.svg",
  18424. extra: 2644 / 2310,
  18425. bottom: 0.032
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(9, "feet"),
  18433. default: true
  18434. },
  18435. {
  18436. name: "Macro",
  18437. height: math.unit(300, "feet")
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18443. {
  18444. side: {
  18445. height: math.unit(8, "meters"),
  18446. weight: math.unit(90000, "kg"),
  18447. name: "Side",
  18448. image: {
  18449. source: "./media/characters/ijzer/side.svg",
  18450. extra: 2756 / 1600,
  18451. bottom: 0.01
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Small",
  18458. height: math.unit(3, "meters")
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(8, "meters"),
  18463. default: true
  18464. },
  18465. {
  18466. name: "Normal+",
  18467. height: math.unit(10, "meters")
  18468. },
  18469. {
  18470. name: "Bigger",
  18471. height: math.unit(24, "meters")
  18472. },
  18473. {
  18474. name: "Huge",
  18475. height: math.unit(80, "meters")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(6 + 2 / 12, "feet"),
  18484. weight: math.unit(153, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/luca-cervicum/front.svg",
  18488. extra: 370 / 327,
  18489. bottom: 0.015
  18490. }
  18491. },
  18492. back: {
  18493. height: math.unit(6 + 2 / 12, "feet"),
  18494. weight: math.unit(153, "lb"),
  18495. name: "Back",
  18496. image: {
  18497. source: "./media/characters/luca-cervicum/back.svg",
  18498. extra: 367 / 333,
  18499. bottom: 0.005
  18500. }
  18501. },
  18502. frontGear: {
  18503. height: math.unit(6 + 2 / 12, "feet"),
  18504. weight: math.unit(173, "lb"),
  18505. name: "Front (Gear)",
  18506. image: {
  18507. source: "./media/characters/luca-cervicum/front-gear.svg",
  18508. extra: 377 / 333,
  18509. bottom: 0.006
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Normal",
  18516. height: math.unit(6 + 2 / 12, "feet"),
  18517. default: true
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18523. {
  18524. front: {
  18525. height: math.unit(6 + 1 / 12, "feet"),
  18526. weight: math.unit(304, "lb"),
  18527. name: "Front",
  18528. image: {
  18529. source: "./media/characters/oliver/front.svg",
  18530. extra: 157 / 143,
  18531. bottom: 0.08
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(6 + 1 / 12, "feet"),
  18539. default: true
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(5 + 7 / 12, "feet"),
  18548. weight: math.unit(140, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/shane/front.svg",
  18552. extra: 304 / 289,
  18553. bottom: 0.005
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(5 + 7 / 12, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(5 + 9 / 12, "feet"),
  18570. weight: math.unit(178, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/shin/front.svg",
  18574. extra: 159 / 151,
  18575. bottom: 0.015
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(5 + 9 / 12, "feet"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(5 + 10 / 12, "feet"),
  18592. weight: math.unit(168, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/xerxes/front.svg",
  18596. extra: 282 / 260,
  18597. bottom: 0.045
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(5 + 10 / 12, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18611. {
  18612. front: {
  18613. height: math.unit(6 + 7 / 12, "feet"),
  18614. weight: math.unit(208, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/chaska/front.svg",
  18618. extra: 332 / 319,
  18619. bottom: 0.015
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(6 + 7 / 12, "feet"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(5 + 8 / 12, "feet"),
  18636. weight: math.unit(208, "lb"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/enuk/front.svg",
  18640. extra: 437 / 406,
  18641. bottom: 0.02
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(5 + 8 / 12, "feet"),
  18649. default: true
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(5 + 10 / 12, "feet"),
  18658. weight: math.unit(252, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/bruun/front.svg",
  18662. extra: 197 / 187,
  18663. bottom: 0.012
  18664. }
  18665. },
  18666. },
  18667. [
  18668. {
  18669. name: "Normal",
  18670. height: math.unit(5 + 10 / 12, "feet"),
  18671. default: true
  18672. },
  18673. ]
  18674. ))
  18675. characterMakers.push(() => makeCharacter(
  18676. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18677. {
  18678. front: {
  18679. height: math.unit(6 + 10 / 12, "feet"),
  18680. weight: math.unit(255, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/alexeev/front.svg",
  18684. extra: 213 / 200,
  18685. bottom: 0.05
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(6 + 10 / 12, "feet"),
  18693. default: true
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(2 + 8 / 12, "feet"),
  18702. weight: math.unit(22, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/evelyn/front.svg",
  18706. extra: 208 / 180
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(2 + 8 / 12, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(5 + 9 / 12, "feet"),
  18723. weight: math.unit(139, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/inca/front.svg",
  18727. extra: 294 / 291,
  18728. bottom: 0.03
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(5 + 9 / 12, "feet"),
  18736. default: true
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(5 + 1 / 12, "feet"),
  18745. weight: math.unit(84, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/magdalene/front.svg",
  18749. extra: 293 / 273
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(5 + 1 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(6 + 3 / 12, "feet"),
  18766. weight: math.unit(185, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/mera/front.svg",
  18770. extra: 291 / 277,
  18771. bottom: 0.03
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(6 + 3 / 12, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(6 + 7 / 12, "feet"),
  18788. weight: math.unit(160, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/ceres/front.svg",
  18792. extra: 1023 / 950,
  18793. bottom: 0.027
  18794. }
  18795. },
  18796. back: {
  18797. height: math.unit(6 + 7 / 12, "feet"),
  18798. weight: math.unit(160, "lb"),
  18799. name: "Back",
  18800. image: {
  18801. source: "./media/characters/ceres/back.svg",
  18802. extra: 1023 / 950
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(6 + 7 / 12, "feet"),
  18810. default: true
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18816. {
  18817. front: {
  18818. height: math.unit(5 + 10 / 12, "feet"),
  18819. weight: math.unit(150, "lb"),
  18820. name: "Front",
  18821. image: {
  18822. source: "./media/characters/kris/front.svg",
  18823. extra: 885 / 803,
  18824. bottom: 0.03
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(5 + 10 / 12, "feet"),
  18832. default: true
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(7, "feet"),
  18841. weight: math.unit(120, "kg"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/taluthus/front.svg",
  18845. extra: 903 / 833,
  18846. bottom: 0.015
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(7, "feet"),
  18854. default: true
  18855. },
  18856. {
  18857. name: "Macro",
  18858. height: math.unit(300, "feet")
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(5 + 9 / 12, "feet"),
  18867. weight: math.unit(145, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/dawn/front.svg",
  18871. extra: 2094 / 2016,
  18872. bottom: 0.025
  18873. }
  18874. },
  18875. back: {
  18876. height: math.unit(5 + 9 / 12, "feet"),
  18877. weight: math.unit(160, "lb"),
  18878. name: "Back",
  18879. image: {
  18880. source: "./media/characters/dawn/back.svg",
  18881. extra: 2112 / 2080,
  18882. bottom: 0.005
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(6 + 7 / 12, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18896. {
  18897. anthro: {
  18898. height: math.unit(8 + 3 / 12, "feet"),
  18899. weight: math.unit(450, "lb"),
  18900. name: "Anthro",
  18901. image: {
  18902. source: "./media/characters/arador/anthro.svg",
  18903. extra: 1835 / 1718,
  18904. bottom: 0.025
  18905. }
  18906. },
  18907. feral: {
  18908. height: math.unit(4, "feet"),
  18909. weight: math.unit(200, "lb"),
  18910. name: "Feral",
  18911. image: {
  18912. source: "./media/characters/arador/feral.svg",
  18913. extra: 1683 / 1514,
  18914. bottom: 0.07
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(8 + 3 / 12, "feet")
  18922. },
  18923. {
  18924. name: "Macro",
  18925. height: math.unit(82.5, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(5 + 10 / 12, "feet"),
  18935. weight: math.unit(125, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/dharsi/front.svg",
  18939. extra: 716 / 630,
  18940. bottom: 0.035
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Nano",
  18947. height: math.unit(100, "nm")
  18948. },
  18949. {
  18950. name: "Micro",
  18951. height: math.unit(2, "inches")
  18952. },
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(5 + 10 / 12, "feet"),
  18956. default: true
  18957. },
  18958. {
  18959. name: "Macro",
  18960. height: math.unit(1000, "feet")
  18961. },
  18962. {
  18963. name: "Megamacro",
  18964. height: math.unit(10, "miles")
  18965. },
  18966. {
  18967. name: "Gigamacro",
  18968. height: math.unit(3000, "miles")
  18969. },
  18970. {
  18971. name: "Teramacro",
  18972. height: math.unit(500000, "miles")
  18973. },
  18974. {
  18975. name: "Teramacro+",
  18976. height: math.unit(30, "galaxies")
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(6, "feet"),
  18985. weight: math.unit(150, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/deathy/front.svg",
  18989. extra: 1552 / 1463,
  18990. bottom: 0.025
  18991. }
  18992. },
  18993. side: {
  18994. height: math.unit(6, "feet"),
  18995. weight: math.unit(150, "lb"),
  18996. name: "Side",
  18997. image: {
  18998. source: "./media/characters/deathy/side.svg",
  18999. extra: 1604 / 1455,
  19000. bottom: 0.025
  19001. }
  19002. },
  19003. back: {
  19004. height: math.unit(6, "feet"),
  19005. weight: math.unit(150, "lb"),
  19006. name: "Back",
  19007. image: {
  19008. source: "./media/characters/deathy/back.svg",
  19009. extra: 1580 / 1463,
  19010. bottom: 0.005
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Micro",
  19017. height: math.unit(5, "millimeters")
  19018. },
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(6 + 5 / 12, "feet"),
  19022. default: true
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19028. {
  19029. front: {
  19030. height: math.unit(16, "feet"),
  19031. weight: math.unit(4000, "lb"),
  19032. name: "Front",
  19033. image: {
  19034. source: "./media/characters/juniper/front.svg",
  19035. bottom: 0.04
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(16, "feet"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(6, "feet"),
  19052. weight: math.unit(150, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/hipster/front.svg",
  19056. extra: 1312 / 1209,
  19057. bottom: 0.025
  19058. }
  19059. },
  19060. back: {
  19061. height: math.unit(6, "feet"),
  19062. weight: math.unit(150, "lb"),
  19063. name: "Back",
  19064. image: {
  19065. source: "./media/characters/hipster/back.svg",
  19066. extra: 1281 / 1196,
  19067. bottom: 0.01
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Micro",
  19074. height: math.unit(1, "mm")
  19075. },
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(4, "inches"),
  19079. default: true
  19080. },
  19081. {
  19082. name: "Macro",
  19083. height: math.unit(500, "feet")
  19084. },
  19085. {
  19086. name: "Megamacro",
  19087. height: math.unit(1000, "miles")
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(6, "feet"),
  19096. weight: math.unit(150, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/tendirmuldr/front.svg",
  19100. extra: 1878 / 1772,
  19101. bottom: 0.015
  19102. }
  19103. },
  19104. },
  19105. [
  19106. {
  19107. name: "Megamacro",
  19108. height: math.unit(1500, "miles"),
  19109. default: true
  19110. },
  19111. ]
  19112. ))
  19113. characterMakers.push(() => makeCharacter(
  19114. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19115. {
  19116. front: {
  19117. height: math.unit(14, "feet"),
  19118. weight: math.unit(12000, "lb"),
  19119. name: "Front",
  19120. image: {
  19121. source: "./media/characters/mort/front.svg",
  19122. extra: 365 / 318,
  19123. bottom: 0.01
  19124. }
  19125. },
  19126. side: {
  19127. height: math.unit(14, "feet"),
  19128. weight: math.unit(12000, "lb"),
  19129. name: "Side",
  19130. image: {
  19131. source: "./media/characters/mort/side.svg",
  19132. extra: 365 / 318,
  19133. bottom: 0.052
  19134. },
  19135. default: true
  19136. },
  19137. back: {
  19138. height: math.unit(14, "feet"),
  19139. weight: math.unit(12000, "lb"),
  19140. name: "Back",
  19141. image: {
  19142. source: "./media/characters/mort/back.svg",
  19143. extra: 371 / 332,
  19144. bottom: 0.18
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(14, "feet"),
  19152. default: true
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19158. {
  19159. front: {
  19160. height: math.unit(8, "feet"),
  19161. weight: math.unit(1, "ton"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/lycoa/front.svg",
  19165. extra: 1875 / 1789,
  19166. bottom: 0.022
  19167. }
  19168. },
  19169. back: {
  19170. height: math.unit(8, "feet"),
  19171. weight: math.unit(1, "ton"),
  19172. name: "Back",
  19173. image: {
  19174. source: "./media/characters/lycoa/back.svg",
  19175. extra: 1835 / 1781,
  19176. bottom: 0.03
  19177. }
  19178. },
  19179. head: {
  19180. height: math.unit(2.1, "feet"),
  19181. name: "Head",
  19182. image: {
  19183. source: "./media/characters/lycoa/head.svg"
  19184. }
  19185. },
  19186. tailmaw: {
  19187. height: math.unit(1.9, "feet"),
  19188. name: "Tailmaw",
  19189. image: {
  19190. source: "./media/characters/lycoa/tailmaw.svg"
  19191. }
  19192. },
  19193. tentacles: {
  19194. height: math.unit(2.1, "feet"),
  19195. name: "Tentacles",
  19196. image: {
  19197. source: "./media/characters/lycoa/tentacles.svg"
  19198. }
  19199. },
  19200. dick: {
  19201. height: math.unit(1.73, "feet"),
  19202. name: "Dick",
  19203. image: {
  19204. source: "./media/characters/lycoa/dick.svg"
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(8, "feet"),
  19212. default: true
  19213. },
  19214. {
  19215. name: "Macro",
  19216. height: math.unit(30, "feet")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19222. {
  19223. front: {
  19224. height: math.unit(4 + 2 / 12, "feet"),
  19225. weight: math.unit(70, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/naldara/front.svg",
  19229. extra: 841 / 720,
  19230. bottom: 0.04
  19231. }
  19232. },
  19233. naga: {
  19234. height: math.unit(23, "feet"),
  19235. weight: math.unit(15000, "kg"),
  19236. name: "Naga",
  19237. image: {
  19238. source: "./media/characters/naldara/naga.svg",
  19239. extra: 3290/2959,
  19240. bottom: 124/3432
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(4 + 2 / 12, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(13 + 7 / 12, "feet"),
  19257. weight: math.unit(1500, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/briar/front.svg",
  19261. extra: 626 / 596,
  19262. bottom: 0.08
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(13 + 7 / 12, "feet"),
  19270. default: true
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19276. {
  19277. side: {
  19278. height: math.unit(10, "feet"),
  19279. weight: math.unit(500, "lb"),
  19280. name: "Side",
  19281. image: {
  19282. source: "./media/characters/vanguard/side.svg",
  19283. extra: 502 / 425,
  19284. bottom: 0.087
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(10, "feet"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(7.5, "feet"),
  19301. weight: math.unit(2, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/artemis/front.svg",
  19305. extra: 1192 / 1075,
  19306. bottom: 0.07
  19307. }
  19308. },
  19309. frontNsfw: {
  19310. height: math.unit(7.5, "feet"),
  19311. weight: math.unit(2, "lb"),
  19312. name: "Front (NSFW)",
  19313. image: {
  19314. source: "./media/characters/artemis/front-nsfw.svg",
  19315. extra: 1192 / 1075,
  19316. bottom: 0.07
  19317. }
  19318. },
  19319. frontNsfwer: {
  19320. height: math.unit(7.5, "feet"),
  19321. weight: math.unit(2, "lb"),
  19322. name: "Front (NSFW-er)",
  19323. image: {
  19324. source: "./media/characters/artemis/front-nsfwer.svg",
  19325. extra: 1192 / 1075,
  19326. bottom: 0.07
  19327. }
  19328. },
  19329. side: {
  19330. height: math.unit(7.5, "feet"),
  19331. weight: math.unit(2, "lb"),
  19332. name: "Side",
  19333. image: {
  19334. source: "./media/characters/artemis/side.svg",
  19335. extra: 1192 / 1075,
  19336. bottom: 0.07
  19337. }
  19338. },
  19339. sideNsfw: {
  19340. height: math.unit(7.5, "feet"),
  19341. weight: math.unit(2, "lb"),
  19342. name: "Side (NSFW)",
  19343. image: {
  19344. source: "./media/characters/artemis/side-nsfw.svg",
  19345. extra: 1192 / 1075,
  19346. bottom: 0.07
  19347. }
  19348. },
  19349. sideNsfwer: {
  19350. height: math.unit(7.5, "feet"),
  19351. weight: math.unit(2, "lb"),
  19352. name: "Side (NSFW-er)",
  19353. image: {
  19354. source: "./media/characters/artemis/side-nsfwer.svg",
  19355. extra: 1192 / 1075,
  19356. bottom: 0.07
  19357. }
  19358. },
  19359. maw: {
  19360. height: math.unit(1.1, "feet"),
  19361. name: "Maw",
  19362. image: {
  19363. source: "./media/characters/artemis/maw.svg"
  19364. }
  19365. },
  19366. stomach: {
  19367. height: math.unit(0.95, "feet"),
  19368. name: "Stomach",
  19369. image: {
  19370. source: "./media/characters/artemis/stomach.svg"
  19371. }
  19372. },
  19373. dickCanine: {
  19374. height: math.unit(1, "feet"),
  19375. name: "Dick (Canine)",
  19376. image: {
  19377. source: "./media/characters/artemis/dick-canine.svg"
  19378. }
  19379. },
  19380. dickEquine: {
  19381. height: math.unit(0.85, "feet"),
  19382. name: "Dick (Equine)",
  19383. image: {
  19384. source: "./media/characters/artemis/dick-equine.svg"
  19385. }
  19386. },
  19387. dickExotic: {
  19388. height: math.unit(0.85, "feet"),
  19389. name: "Dick (Exotic)",
  19390. image: {
  19391. source: "./media/characters/artemis/dick-exotic.svg"
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(7.5, "feet"),
  19399. default: true
  19400. },
  19401. {
  19402. name: "Enlarged",
  19403. height: math.unit(12, "feet")
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(5 + 3 / 12, "feet"),
  19412. weight: math.unit(160, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/kira/front.svg",
  19416. extra: 906 / 786,
  19417. bottom: 0.01
  19418. }
  19419. },
  19420. back: {
  19421. height: math.unit(5 + 3 / 12, "feet"),
  19422. weight: math.unit(160, "lb"),
  19423. name: "Back",
  19424. image: {
  19425. source: "./media/characters/kira/back.svg",
  19426. extra: 882 / 757,
  19427. bottom: 0.005
  19428. }
  19429. },
  19430. frontDressed: {
  19431. height: math.unit(5 + 3 / 12, "feet"),
  19432. weight: math.unit(160, "lb"),
  19433. name: "Front (Dressed)",
  19434. image: {
  19435. source: "./media/characters/kira/front-dressed.svg",
  19436. extra: 906 / 786,
  19437. bottom: 0.01
  19438. }
  19439. },
  19440. beans: {
  19441. height: math.unit(0.92, "feet"),
  19442. name: "Beans",
  19443. image: {
  19444. source: "./media/characters/kira/beans.svg"
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(5 + 3 / 12, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(5 + 4 / 12, "feet"),
  19461. weight: math.unit(145, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/scramble/front.svg",
  19465. extra: 763 / 727,
  19466. bottom: 0.05
  19467. }
  19468. },
  19469. back: {
  19470. height: math.unit(5 + 4 / 12, "feet"),
  19471. weight: math.unit(145, "lb"),
  19472. name: "Back",
  19473. image: {
  19474. source: "./media/characters/scramble/back.svg",
  19475. extra: 826 / 737,
  19476. bottom: 0.002
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(5 + 4 / 12, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19490. {
  19491. side: {
  19492. height: math.unit(6 + 2 / 12, "feet"),
  19493. weight: math.unit(190, "lb"),
  19494. name: "Side",
  19495. image: {
  19496. source: "./media/characters/biscuit/side.svg",
  19497. extra: 858 / 791,
  19498. bottom: 0.044
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(6 + 2 / 12, "feet"),
  19506. default: true
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(5 + 2 / 12, "feet"),
  19515. weight: math.unit(120, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/poffin/front.svg",
  19519. extra: 786 / 680,
  19520. bottom: 0.005
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(5 + 2 / 12, "feet"),
  19528. default: true
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19534. {
  19535. front: {
  19536. height: math.unit(6 + 3 / 12, "feet"),
  19537. weight: math.unit(519, "lb"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/dhari/front.svg",
  19541. extra: 1048 / 946,
  19542. bottom: 0.015
  19543. }
  19544. },
  19545. back: {
  19546. height: math.unit(6 + 3 / 12, "feet"),
  19547. weight: math.unit(519, "lb"),
  19548. name: "Back",
  19549. image: {
  19550. source: "./media/characters/dhari/back.svg",
  19551. extra: 1048 / 931,
  19552. bottom: 0.005
  19553. }
  19554. },
  19555. frontDressed: {
  19556. height: math.unit(6 + 3 / 12, "feet"),
  19557. weight: math.unit(519, "lb"),
  19558. name: "Front (Dressed)",
  19559. image: {
  19560. source: "./media/characters/dhari/front-dressed.svg",
  19561. extra: 1713 / 1546,
  19562. bottom: 0.02
  19563. }
  19564. },
  19565. backDressed: {
  19566. height: math.unit(6 + 3 / 12, "feet"),
  19567. weight: math.unit(519, "lb"),
  19568. name: "Back (Dressed)",
  19569. image: {
  19570. source: "./media/characters/dhari/back-dressed.svg",
  19571. extra: 1699 / 1537,
  19572. bottom: 0.01
  19573. }
  19574. },
  19575. maw: {
  19576. height: math.unit(0.95, "feet"),
  19577. name: "Maw",
  19578. image: {
  19579. source: "./media/characters/dhari/maw.svg"
  19580. }
  19581. },
  19582. wereFront: {
  19583. height: math.unit(12 + 8 / 12, "feet"),
  19584. weight: math.unit(4000, "lb"),
  19585. name: "Front (Were)",
  19586. image: {
  19587. source: "./media/characters/dhari/were-front.svg",
  19588. extra: 1065 / 969,
  19589. bottom: 0.015
  19590. }
  19591. },
  19592. wereBack: {
  19593. height: math.unit(12 + 8 / 12, "feet"),
  19594. weight: math.unit(4000, "lb"),
  19595. name: "Back (Were)",
  19596. image: {
  19597. source: "./media/characters/dhari/were-back.svg",
  19598. extra: 1065 / 969,
  19599. bottom: 0.012
  19600. }
  19601. },
  19602. wereMaw: {
  19603. height: math.unit(0.625, "meters"),
  19604. name: "Maw (Were)",
  19605. image: {
  19606. source: "./media/characters/dhari/were-maw.svg"
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(6 + 3 / 12, "feet"),
  19614. default: true
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19620. {
  19621. anthro: {
  19622. height: math.unit(5 + 7 / 12, "feet"),
  19623. weight: math.unit(175, "lb"),
  19624. name: "Anthro",
  19625. image: {
  19626. source: "./media/characters/rena-dyne/anthro.svg",
  19627. extra: 1849 / 1785,
  19628. bottom: 0.005
  19629. }
  19630. },
  19631. taur: {
  19632. height: math.unit(15 + 6 / 12, "feet"),
  19633. weight: math.unit(8000, "lb"),
  19634. name: "Taur",
  19635. image: {
  19636. source: "./media/characters/rena-dyne/taur.svg",
  19637. extra: 2315 / 2234,
  19638. bottom: 0.033
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(5 + 7 / 12, "feet"),
  19646. default: true
  19647. },
  19648. ]
  19649. ))
  19650. characterMakers.push(() => makeCharacter(
  19651. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19652. {
  19653. front: {
  19654. height: math.unit(8, "feet"),
  19655. weight: math.unit(600, "lb"),
  19656. name: "Front",
  19657. image: {
  19658. source: "./media/characters/weremeep/front.svg",
  19659. extra: 967 / 862,
  19660. bottom: 0.01
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(8, "feet"),
  19668. default: true
  19669. },
  19670. {
  19671. name: "Lorg",
  19672. height: math.unit(12, "feet")
  19673. },
  19674. {
  19675. name: "Oh Lawd She Comin'",
  19676. height: math.unit(20, "feet")
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19682. {
  19683. front: {
  19684. height: math.unit(4, "feet"),
  19685. weight: math.unit(90, "lb"),
  19686. name: "Front",
  19687. image: {
  19688. source: "./media/characters/reza/front.svg",
  19689. extra: 1183 / 1111,
  19690. bottom: 0.017
  19691. }
  19692. },
  19693. back: {
  19694. height: math.unit(4, "feet"),
  19695. weight: math.unit(90, "lb"),
  19696. name: "Back",
  19697. image: {
  19698. source: "./media/characters/reza/back.svg",
  19699. extra: 1183 / 1111,
  19700. bottom: 0.01
  19701. }
  19702. },
  19703. drake: {
  19704. height: math.unit(30, "feet"),
  19705. weight: math.unit(246960, "lb"),
  19706. name: "Drake",
  19707. image: {
  19708. source: "./media/characters/reza/drake.svg",
  19709. extra: 2350 / 2024,
  19710. bottom: 60.7 / 2403
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(4, "feet"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19724. {
  19725. side: {
  19726. height: math.unit(15, "feet"),
  19727. weight: math.unit(14, "tons"),
  19728. name: "Side",
  19729. image: {
  19730. source: "./media/characters/athea/side.svg",
  19731. extra: 960 / 540,
  19732. bottom: 0.003
  19733. }
  19734. },
  19735. sitting: {
  19736. height: math.unit(6 * 2.85, "feet"),
  19737. weight: math.unit(14, "tons"),
  19738. name: "Sitting",
  19739. image: {
  19740. source: "./media/characters/athea/sitting.svg",
  19741. extra: 621 / 581,
  19742. bottom: 0.075
  19743. }
  19744. },
  19745. maw: {
  19746. height: math.unit(7.59498031496063, "feet"),
  19747. name: "Maw",
  19748. image: {
  19749. source: "./media/characters/athea/maw.svg"
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Lap Cat",
  19756. height: math.unit(2.5, "feet")
  19757. },
  19758. {
  19759. name: "Minimacro",
  19760. height: math.unit(15, "feet"),
  19761. default: true
  19762. },
  19763. {
  19764. name: "Macro",
  19765. height: math.unit(120, "feet")
  19766. },
  19767. {
  19768. name: "Macro+",
  19769. height: math.unit(640, "feet")
  19770. },
  19771. {
  19772. name: "Colossus",
  19773. height: math.unit(2.2, "miles")
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(8 + 8 / 12, "feet"),
  19782. weight: math.unit(130, "kg"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/seroko/front.svg",
  19786. extra: 1385 / 1280,
  19787. bottom: 0.025
  19788. }
  19789. },
  19790. back: {
  19791. height: math.unit(8 + 8 / 12, "feet"),
  19792. weight: math.unit(130, "kg"),
  19793. name: "Back",
  19794. image: {
  19795. source: "./media/characters/seroko/back.svg",
  19796. extra: 1369 / 1238,
  19797. bottom: 0.018
  19798. }
  19799. },
  19800. frontDressed: {
  19801. height: math.unit(8 + 8 / 12, "feet"),
  19802. weight: math.unit(130, "kg"),
  19803. name: "Front (Dressed)",
  19804. image: {
  19805. source: "./media/characters/seroko/front-dressed.svg",
  19806. extra: 1366 / 1275,
  19807. bottom: 0.03
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(8 + 8 / 12, "feet"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(5.5, "feet"),
  19824. weight: math.unit(160, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/quatzi/front.svg",
  19828. extra: 2346 / 2242,
  19829. bottom: 0.015
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(5.5, "feet"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "Big",
  19841. height: math.unit(7.7, "feet")
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(5 + 11 / 12, "feet"),
  19850. weight: math.unit(180, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/sen/front.svg",
  19854. extra: 1321 / 1254,
  19855. bottom: 0.015
  19856. }
  19857. },
  19858. side: {
  19859. height: math.unit(5 + 11 / 12, "feet"),
  19860. weight: math.unit(180, "lb"),
  19861. name: "Side",
  19862. image: {
  19863. source: "./media/characters/sen/side.svg",
  19864. extra: 1321 / 1254,
  19865. bottom: 0.007
  19866. }
  19867. },
  19868. back: {
  19869. height: math.unit(5 + 11 / 12, "feet"),
  19870. weight: math.unit(180, "lb"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/sen/back.svg",
  19874. extra: 1321 / 1254
  19875. }
  19876. },
  19877. },
  19878. [
  19879. {
  19880. name: "Normal",
  19881. height: math.unit(5 + 11 / 12, "feet"),
  19882. default: true
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19888. {
  19889. front: {
  19890. height: math.unit(166.6, "cm"),
  19891. weight: math.unit(66.6, "kg"),
  19892. name: "Front",
  19893. image: {
  19894. source: "./media/characters/fruity/front.svg",
  19895. extra: 1510 / 1386,
  19896. bottom: 0.04
  19897. }
  19898. },
  19899. back: {
  19900. height: math.unit(166.6, "cm"),
  19901. weight: math.unit(66.6, "lb"),
  19902. name: "Back",
  19903. image: {
  19904. source: "./media/characters/fruity/back.svg",
  19905. extra: 1563 / 1435,
  19906. bottom: 0.005
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(166.6, "cm"),
  19914. default: true
  19915. },
  19916. {
  19917. name: "Demonic",
  19918. height: math.unit(166.6, "feet")
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19924. {
  19925. side: {
  19926. height: math.unit(10, "feet"),
  19927. weight: math.unit(500, "lb"),
  19928. name: "Side",
  19929. image: {
  19930. source: "./media/characters/zost/side.svg",
  19931. extra: 966 / 880,
  19932. bottom: 0.075
  19933. }
  19934. },
  19935. mawFront: {
  19936. height: math.unit(1.08, "meters"),
  19937. name: "Maw (Front)",
  19938. image: {
  19939. source: "./media/characters/zost/maw-front.svg"
  19940. }
  19941. },
  19942. mawSide: {
  19943. height: math.unit(2.66, "feet"),
  19944. name: "Maw (Side)",
  19945. image: {
  19946. source: "./media/characters/zost/maw-side.svg"
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(10, "feet"),
  19954. default: true
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(5 + 4 / 12, "feet"),
  19963. weight: math.unit(120, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/luci/front.svg",
  19967. extra: 1985 / 1884,
  19968. bottom: 0.04
  19969. }
  19970. },
  19971. back: {
  19972. height: math.unit(5 + 4 / 12, "feet"),
  19973. weight: math.unit(120, "lb"),
  19974. name: "Back",
  19975. image: {
  19976. source: "./media/characters/luci/back.svg",
  19977. extra: 1892 / 1791,
  19978. bottom: 0.002
  19979. }
  19980. },
  19981. },
  19982. [
  19983. {
  19984. name: "Normal",
  19985. height: math.unit(5 + 4 / 12, "feet"),
  19986. default: true
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(1500, "feet"),
  19995. weight: math.unit(3.8e6, "tons"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/2th/front.svg",
  19999. extra: 3489 / 3350,
  20000. bottom: 0.1
  20001. }
  20002. },
  20003. foot: {
  20004. height: math.unit(461, "feet"),
  20005. name: "Foot",
  20006. image: {
  20007. source: "./media/characters/2th/foot.svg"
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "\"Micro\"",
  20014. height: math.unit(15 + 7 / 12, "feet")
  20015. },
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(1500, "feet"),
  20019. default: true
  20020. },
  20021. {
  20022. name: "Macro",
  20023. height: math.unit(5000, "feet")
  20024. },
  20025. {
  20026. name: "Megamacro",
  20027. height: math.unit(15, "miles")
  20028. },
  20029. {
  20030. name: "Gigamacro",
  20031. height: math.unit(4000, "miles")
  20032. },
  20033. {
  20034. name: "Galactic",
  20035. height: math.unit(50, "AU")
  20036. },
  20037. ]
  20038. ))
  20039. characterMakers.push(() => makeCharacter(
  20040. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20041. {
  20042. front: {
  20043. height: math.unit(5 + 6 / 12, "feet"),
  20044. weight: math.unit(220, "lb"),
  20045. name: "Front",
  20046. image: {
  20047. source: "./media/characters/amethyst/front.svg",
  20048. extra: 2078 / 2040,
  20049. bottom: 0.045
  20050. }
  20051. },
  20052. back: {
  20053. height: math.unit(5 + 6 / 12, "feet"),
  20054. weight: math.unit(220, "lb"),
  20055. name: "Back",
  20056. image: {
  20057. source: "./media/characters/amethyst/back.svg",
  20058. extra: 2021 / 1989,
  20059. bottom: 0.02
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(5 + 6 / 12, "feet"),
  20067. default: true
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(4 + 11 / 12, "feet"),
  20076. weight: math.unit(120, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/yumi-akiyama/front.svg",
  20080. extra: 1327 / 1235,
  20081. bottom: 0.02
  20082. }
  20083. },
  20084. back: {
  20085. height: math.unit(4 + 11 / 12, "feet"),
  20086. weight: math.unit(120, "lb"),
  20087. name: "Back",
  20088. image: {
  20089. source: "./media/characters/yumi-akiyama/back.svg",
  20090. extra: 1287 / 1245,
  20091. bottom: 0.002
  20092. }
  20093. },
  20094. },
  20095. [
  20096. {
  20097. name: "Galactic",
  20098. height: math.unit(50, "galaxies"),
  20099. default: true
  20100. },
  20101. {
  20102. name: "Universal",
  20103. height: math.unit(100, "universes")
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20109. {
  20110. front: {
  20111. height: math.unit(8, "feet"),
  20112. weight: math.unit(500, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/rifter-yrmori/front.svg",
  20116. extra: 1180 / 1125,
  20117. bottom: 0.02
  20118. }
  20119. },
  20120. back: {
  20121. height: math.unit(8, "feet"),
  20122. weight: math.unit(500, "lb"),
  20123. name: "Back",
  20124. image: {
  20125. source: "./media/characters/rifter-yrmori/back.svg",
  20126. extra: 1190 / 1145,
  20127. bottom: 0.001
  20128. }
  20129. },
  20130. wings: {
  20131. height: math.unit(7.75, "feet"),
  20132. weight: math.unit(500, "lb"),
  20133. name: "Wings",
  20134. image: {
  20135. source: "./media/characters/rifter-yrmori/wings.svg",
  20136. extra: 1357 / 1285
  20137. }
  20138. },
  20139. maw: {
  20140. height: math.unit(0.8, "feet"),
  20141. name: "Maw",
  20142. image: {
  20143. source: "./media/characters/rifter-yrmori/maw.svg"
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(8, "feet"),
  20151. default: true
  20152. },
  20153. {
  20154. name: "Macro",
  20155. height: math.unit(42, "meters")
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20161. {
  20162. were: {
  20163. height: math.unit(25 + 6 / 12, "feet"),
  20164. weight: math.unit(10000, "lb"),
  20165. name: "Were",
  20166. image: {
  20167. source: "./media/characters/tahajin/were.svg",
  20168. extra: 801 / 770,
  20169. bottom: 0.042
  20170. }
  20171. },
  20172. aquatic: {
  20173. height: math.unit(6 + 4 / 12, "feet"),
  20174. weight: math.unit(160, "lb"),
  20175. name: "Aquatic",
  20176. image: {
  20177. source: "./media/characters/tahajin/aquatic.svg",
  20178. extra: 572 / 542,
  20179. bottom: 0.04
  20180. }
  20181. },
  20182. chow: {
  20183. height: math.unit(8 + 11 / 12, "feet"),
  20184. weight: math.unit(450, "lb"),
  20185. name: "Chow",
  20186. image: {
  20187. source: "./media/characters/tahajin/chow.svg",
  20188. extra: 660 / 640,
  20189. bottom: 0.015
  20190. }
  20191. },
  20192. demiNaga: {
  20193. height: math.unit(6 + 8 / 12, "feet"),
  20194. weight: math.unit(300, "lb"),
  20195. name: "Demi Naga",
  20196. image: {
  20197. source: "./media/characters/tahajin/demi-naga.svg",
  20198. extra: 643 / 615,
  20199. bottom: 0.1
  20200. }
  20201. },
  20202. data: {
  20203. height: math.unit(5, "inches"),
  20204. weight: math.unit(0.1, "lb"),
  20205. name: "Data",
  20206. image: {
  20207. source: "./media/characters/tahajin/data.svg"
  20208. }
  20209. },
  20210. fluu: {
  20211. height: math.unit(5 + 7 / 12, "feet"),
  20212. weight: math.unit(140, "lb"),
  20213. name: "Fluu",
  20214. image: {
  20215. source: "./media/characters/tahajin/fluu.svg",
  20216. extra: 628 / 592,
  20217. bottom: 0.02
  20218. }
  20219. },
  20220. starWarrior: {
  20221. height: math.unit(4 + 5 / 12, "feet"),
  20222. weight: math.unit(50, "lb"),
  20223. name: "Star Warrior",
  20224. image: {
  20225. source: "./media/characters/tahajin/star-warrior.svg"
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(25 + 6 / 12, "feet"),
  20233. default: true
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(8, "feet"),
  20242. weight: math.unit(350, "lb"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/gabira/front.svg",
  20246. extra: 608 / 580,
  20247. bottom: 0.03
  20248. }
  20249. },
  20250. back: {
  20251. height: math.unit(8, "feet"),
  20252. weight: math.unit(350, "lb"),
  20253. name: "Back",
  20254. image: {
  20255. source: "./media/characters/gabira/back.svg",
  20256. extra: 608 / 580,
  20257. bottom: 0.03
  20258. }
  20259. },
  20260. },
  20261. [
  20262. {
  20263. name: "Normal",
  20264. height: math.unit(8, "feet"),
  20265. default: true
  20266. },
  20267. ]
  20268. ))
  20269. characterMakers.push(() => makeCharacter(
  20270. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20271. {
  20272. front: {
  20273. height: math.unit(5 + 3 / 12, "feet"),
  20274. weight: math.unit(137, "lb"),
  20275. name: "Front",
  20276. image: {
  20277. source: "./media/characters/sasha-katraine/front.svg",
  20278. bottom: 0.045
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Micro",
  20285. height: math.unit(5, "inches")
  20286. },
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(5 + 3 / 12, "feet"),
  20290. default: true
  20291. },
  20292. ]
  20293. ))
  20294. characterMakers.push(() => makeCharacter(
  20295. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20296. {
  20297. side: {
  20298. height: math.unit(4, "inches"),
  20299. weight: math.unit(200, "grams"),
  20300. name: "Side",
  20301. image: {
  20302. source: "./media/characters/der/side.svg",
  20303. extra: 719 / 400,
  20304. bottom: 30.6 / 749.9187
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Micro",
  20311. height: math.unit(4, "inches"),
  20312. default: true
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20318. {
  20319. side: {
  20320. height: math.unit(30, "meters"),
  20321. weight: math.unit(700, "tonnes"),
  20322. name: "Side",
  20323. image: {
  20324. source: "./media/characters/fixerdragon/side.svg",
  20325. extra: (1293.0514 - 116.03) / 1106.86,
  20326. bottom: 116.03 / 1293.0514
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Planck",
  20333. height: math.unit(1.6e-35, "meters")
  20334. },
  20335. {
  20336. name: "Micro",
  20337. height: math.unit(0.4, "meters")
  20338. },
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(30, "meters"),
  20342. default: true
  20343. },
  20344. {
  20345. name: "Megamacro",
  20346. height: math.unit(1.2, "megameters")
  20347. },
  20348. {
  20349. name: "Teramacro",
  20350. height: math.unit(130, "terameters")
  20351. },
  20352. {
  20353. name: "Yottamacro",
  20354. height: math.unit(6200, "yottameters")
  20355. },
  20356. ]
  20357. ));
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20360. {
  20361. front: {
  20362. height: math.unit(8, "feet"),
  20363. weight: math.unit(250, "lb"),
  20364. name: "Front",
  20365. image: {
  20366. source: "./media/characters/kite/front.svg",
  20367. extra: 2796 / 2659,
  20368. bottom: 0.002
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(8, "feet"),
  20376. default: true
  20377. },
  20378. {
  20379. name: "Macro",
  20380. height: math.unit(360, "feet")
  20381. },
  20382. {
  20383. name: "Megamacro",
  20384. height: math.unit(1500, "feet")
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(5 + 10 / 12, "feet"),
  20393. weight: math.unit(150, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/poojawa-vynar/front.svg",
  20397. extra: (1506.1547 - 55) / 1356.6,
  20398. bottom: 55 / 1506.1547
  20399. }
  20400. },
  20401. frontTailless: {
  20402. height: math.unit(5 + 10 / 12, "feet"),
  20403. weight: math.unit(150, "lb"),
  20404. name: "Front (Tailless)",
  20405. image: {
  20406. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20407. extra: (1506.1547 - 55) / 1356.6,
  20408. bottom: 55 / 1506.1547
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(5 + 10 / 12, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(293, "meters"),
  20425. weight: math.unit(70400, "tons"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/violette/front.svg",
  20429. extra: 1227 / 1180,
  20430. bottom: 0.005
  20431. }
  20432. },
  20433. back: {
  20434. height: math.unit(293, "meters"),
  20435. weight: math.unit(70400, "tons"),
  20436. name: "Back",
  20437. image: {
  20438. source: "./media/characters/violette/back.svg",
  20439. extra: 1227 / 1180,
  20440. bottom: 0.005
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Macro",
  20447. height: math.unit(293, "meters"),
  20448. default: true
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(1050, "feet"),
  20457. weight: math.unit(200000, "tons"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/alessandra/front.svg",
  20461. extra: 960 / 912,
  20462. bottom: 0.06
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Macro",
  20469. height: math.unit(1050, "feet")
  20470. },
  20471. {
  20472. name: "Macro+",
  20473. height: math.unit(900, "meters"),
  20474. default: true
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20480. {
  20481. front: {
  20482. height: math.unit(5, "feet"),
  20483. weight: math.unit(187, "lb"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/person/front.svg",
  20487. extra: 3087 / 2945,
  20488. bottom: 91 / 3181
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Micro",
  20495. height: math.unit(3, "inches")
  20496. },
  20497. {
  20498. name: "Normal",
  20499. height: math.unit(5, "feet"),
  20500. default: true
  20501. },
  20502. {
  20503. name: "Macro",
  20504. height: math.unit(90, "feet")
  20505. },
  20506. {
  20507. name: "Max Size",
  20508. height: math.unit(280, "feet")
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20514. {
  20515. front: {
  20516. height: math.unit(4.5, "meters"),
  20517. weight: math.unit(3200, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/ty/front.svg",
  20521. extra: 1038 / 960,
  20522. bottom: 31.156 / 1068
  20523. }
  20524. },
  20525. back: {
  20526. height: math.unit(4.5, "meters"),
  20527. weight: math.unit(3200, "lb"),
  20528. name: "Back",
  20529. image: {
  20530. source: "./media/characters/ty/back.svg",
  20531. extra: 1044 / 966,
  20532. bottom: 7.48 / 1049
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(4.5, "meters"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20546. {
  20547. front: {
  20548. height: math.unit(5 + 4 / 12, "feet"),
  20549. weight: math.unit(115, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/rocky/front.svg",
  20553. extra: 1012 / 975,
  20554. bottom: 54 / 1066
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(5 + 4 / 12, "feet"),
  20562. default: true
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20568. {
  20569. upright: {
  20570. height: math.unit(6, "meters"),
  20571. weight: math.unit(4000, "kg"),
  20572. name: "Upright",
  20573. image: {
  20574. source: "./media/characters/ruin/upright.svg",
  20575. extra: 668 / 661,
  20576. bottom: 42 / 799.8396
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(6, "meters"),
  20584. default: true
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20590. {
  20591. front: {
  20592. height: math.unit(5, "feet"),
  20593. weight: math.unit(106, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/robin/front.svg",
  20597. extra: 862 / 799,
  20598. bottom: 42.4 / 914.8856
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(5, "feet"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20612. {
  20613. side: {
  20614. height: math.unit(3, "feet"),
  20615. weight: math.unit(225, "lb"),
  20616. name: "Side",
  20617. image: {
  20618. source: "./media/characters/saian/side.svg",
  20619. extra: 566 / 356,
  20620. bottom: 79.7 / 643
  20621. }
  20622. },
  20623. maw: {
  20624. height: math.unit(2.85, "feet"),
  20625. name: "Maw",
  20626. image: {
  20627. source: "./media/characters/saian/maw.svg"
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(3, "feet"),
  20635. default: true
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20641. {
  20642. side: {
  20643. height: math.unit(8, "feet"),
  20644. weight: math.unit(300, "lb"),
  20645. name: "Side",
  20646. image: {
  20647. source: "./media/characters/equus-silvermane/side.svg",
  20648. extra: 2176 / 2050,
  20649. bottom: 65.7 / 2245
  20650. }
  20651. },
  20652. front: {
  20653. height: math.unit(8, "feet"),
  20654. weight: math.unit(300, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/equus-silvermane/front.svg",
  20658. extra: 4633 / 4400,
  20659. bottom: 71.3 / 4706.915
  20660. }
  20661. },
  20662. sideStepping: {
  20663. height: math.unit(8, "feet"),
  20664. weight: math.unit(300, "lb"),
  20665. name: "Side (Stepping)",
  20666. image: {
  20667. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20668. extra: 1968 / 1860,
  20669. bottom: 16.4 / 1989
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(8, "feet")
  20677. },
  20678. {
  20679. name: "Minimacro",
  20680. height: math.unit(75, "feet"),
  20681. default: true
  20682. },
  20683. {
  20684. name: "Macro",
  20685. height: math.unit(150, "feet")
  20686. },
  20687. {
  20688. name: "Macro+",
  20689. height: math.unit(1000, "feet")
  20690. },
  20691. {
  20692. name: "Megamacro",
  20693. height: math.unit(1, "mile")
  20694. },
  20695. ]
  20696. ))
  20697. characterMakers.push(() => makeCharacter(
  20698. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20699. {
  20700. side: {
  20701. height: math.unit(20, "feet"),
  20702. weight: math.unit(30000, "kg"),
  20703. name: "Side",
  20704. image: {
  20705. source: "./media/characters/windar/side.svg",
  20706. extra: 1491 / 1248,
  20707. bottom: 82.56 / 1568
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(20, "feet"),
  20715. default: true
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20721. {
  20722. side: {
  20723. height: math.unit(15.66, "feet"),
  20724. weight: math.unit(150, "lb"),
  20725. name: "Side",
  20726. image: {
  20727. source: "./media/characters/melody/side.svg",
  20728. extra: 1097 / 944,
  20729. bottom: 11.8 / 1109
  20730. }
  20731. },
  20732. sideOutfit: {
  20733. height: math.unit(15.66, "feet"),
  20734. weight: math.unit(150, "lb"),
  20735. name: "Side (Outfit)",
  20736. image: {
  20737. source: "./media/characters/melody/side-outfit.svg",
  20738. extra: 1097 / 944,
  20739. bottom: 11.8 / 1109
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(15.66, "feet"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(8, "feet"),
  20756. weight: math.unit(325, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/windera/front.svg",
  20760. extra: 3180 / 2845,
  20761. bottom: 178 / 3365
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(8, "feet"),
  20769. default: true
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20775. {
  20776. front: {
  20777. height: math.unit(28.75, "feet"),
  20778. weight: math.unit(2000, "kg"),
  20779. name: "Front",
  20780. image: {
  20781. source: "./media/characters/sonear/front.svg",
  20782. extra: 1041.1 / 964.9,
  20783. bottom: 53.7 / 1096.6
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(28.75, "feet"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20797. {
  20798. side: {
  20799. height: math.unit(25.5, "feet"),
  20800. weight: math.unit(23000, "kg"),
  20801. name: "Side",
  20802. image: {
  20803. source: "./media/characters/kanara/side.svg"
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(25.5, "feet"),
  20811. default: true
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20817. {
  20818. side: {
  20819. height: math.unit(10, "feet"),
  20820. weight: math.unit(1000, "kg"),
  20821. name: "Side",
  20822. image: {
  20823. source: "./media/characters/ereus/side.svg",
  20824. extra: 1157 / 959,
  20825. bottom: 153 / 1312.5
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(10, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20839. {
  20840. side: {
  20841. height: math.unit(4.5, "feet"),
  20842. weight: math.unit(500, "lb"),
  20843. name: "Side",
  20844. image: {
  20845. source: "./media/characters/e-ter/side.svg",
  20846. extra: 1550 / 1248,
  20847. bottom: 146 / 1694
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(4.5, "feet"),
  20855. default: true
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20861. {
  20862. side: {
  20863. height: math.unit(9.7, "feet"),
  20864. weight: math.unit(4000, "kg"),
  20865. name: "Side",
  20866. image: {
  20867. source: "./media/characters/yamie/side.svg"
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(9.7, "feet"),
  20875. default: true
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20881. {
  20882. front: {
  20883. height: math.unit(50, "feet"),
  20884. weight: math.unit(50000, "kg"),
  20885. name: "Front",
  20886. image: {
  20887. source: "./media/characters/anders/front.svg",
  20888. extra: 570 / 539,
  20889. bottom: 14.7 / 586.7
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Large",
  20896. height: math.unit(50, "feet")
  20897. },
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(2000, "feet"),
  20901. default: true
  20902. },
  20903. {
  20904. name: "Megamacro",
  20905. height: math.unit(12, "miles")
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20911. {
  20912. front: {
  20913. height: math.unit(7 + 2 / 12, "feet"),
  20914. weight: math.unit(300, "lb"),
  20915. name: "Front",
  20916. image: {
  20917. source: "./media/characters/reban/front.svg",
  20918. extra: 516 / 487,
  20919. bottom: 42.82 / 558.356
  20920. }
  20921. },
  20922. dick: {
  20923. height: math.unit(7 / 5, "feet"),
  20924. name: "Dick",
  20925. image: {
  20926. source: "./media/characters/reban/dick.svg"
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Natural Height",
  20933. height: math.unit(7 + 2 / 12, "feet")
  20934. },
  20935. {
  20936. name: "Macro",
  20937. height: math.unit(500, "feet"),
  20938. default: true
  20939. },
  20940. {
  20941. name: "Canon Height",
  20942. height: math.unit(50, "AU")
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(6, "feet"),
  20951. weight: math.unit(150, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/terrance-keayes/front.svg",
  20955. extra: 1.005,
  20956. bottom: 151 / 1615
  20957. }
  20958. },
  20959. side: {
  20960. height: math.unit(6, "feet"),
  20961. weight: math.unit(150, "lb"),
  20962. name: "Side",
  20963. image: {
  20964. source: "./media/characters/terrance-keayes/side.svg",
  20965. extra: 1.005,
  20966. bottom: 129.4 / 1544
  20967. }
  20968. },
  20969. back: {
  20970. height: math.unit(6, "feet"),
  20971. weight: math.unit(150, "lb"),
  20972. name: "Back",
  20973. image: {
  20974. source: "./media/characters/terrance-keayes/back.svg",
  20975. extra: 1.005,
  20976. bottom: 58.4 / 1557.3
  20977. }
  20978. },
  20979. dick: {
  20980. height: math.unit(6 * 0.208, "feet"),
  20981. name: "Dick",
  20982. image: {
  20983. source: "./media/characters/terrance-keayes/dick.svg"
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Canon Height",
  20990. height: math.unit(35, "miles"),
  20991. default: true
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(6, "feet"),
  21000. weight: math.unit(150, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/ofelia/front.svg",
  21004. extra: 546 / 541,
  21005. bottom: 39 / 583
  21006. }
  21007. },
  21008. back: {
  21009. height: math.unit(6, "feet"),
  21010. weight: math.unit(150, "lb"),
  21011. name: "Back",
  21012. image: {
  21013. source: "./media/characters/ofelia/back.svg",
  21014. extra: 564 / 559.5,
  21015. bottom: 8.69 / 573.02
  21016. }
  21017. },
  21018. maw: {
  21019. height: math.unit(1, "feet"),
  21020. name: "Maw",
  21021. image: {
  21022. source: "./media/characters/ofelia/maw.svg"
  21023. }
  21024. },
  21025. foot: {
  21026. height: math.unit(1.949, "feet"),
  21027. name: "Foot",
  21028. image: {
  21029. source: "./media/characters/ofelia/foot.svg"
  21030. }
  21031. },
  21032. },
  21033. [
  21034. {
  21035. name: "Canon Height",
  21036. height: math.unit(2000, "miles"),
  21037. default: true
  21038. },
  21039. ]
  21040. ))
  21041. characterMakers.push(() => makeCharacter(
  21042. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21043. {
  21044. front: {
  21045. height: math.unit(6, "feet"),
  21046. weight: math.unit(150, "lb"),
  21047. name: "Front",
  21048. image: {
  21049. source: "./media/characters/samuel/front.svg",
  21050. extra: 265 / 258,
  21051. bottom: 2 / 266.1566
  21052. }
  21053. },
  21054. },
  21055. [
  21056. {
  21057. name: "Macro",
  21058. height: math.unit(100, "feet"),
  21059. default: true
  21060. },
  21061. {
  21062. name: "Full Size",
  21063. height: math.unit(1000, "miles")
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21069. {
  21070. front: {
  21071. height: math.unit(6, "feet"),
  21072. weight: math.unit(300, "lb"),
  21073. name: "Front",
  21074. image: {
  21075. source: "./media/characters/beishir-kiel/front.svg",
  21076. extra: 569 / 547,
  21077. bottom: 41.9 / 609
  21078. }
  21079. },
  21080. maw: {
  21081. height: math.unit(6 * 0.202, "feet"),
  21082. name: "Maw",
  21083. image: {
  21084. source: "./media/characters/beishir-kiel/maw.svg"
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Macro",
  21091. height: math.unit(300, "feet"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(5 + 8 / 12, "feet"),
  21101. weight: math.unit(120, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/logan-grey/front.svg",
  21105. extra: 2539 / 2393,
  21106. bottom: 97.6 / 2636.37
  21107. }
  21108. },
  21109. frontAlt: {
  21110. height: math.unit(5 + 8 / 12, "feet"),
  21111. weight: math.unit(120, "lb"),
  21112. name: "Front (Alt)",
  21113. image: {
  21114. source: "./media/characters/logan-grey/front-alt.svg",
  21115. extra: 958 / 893,
  21116. bottom: 15 / 970.768
  21117. }
  21118. },
  21119. back: {
  21120. height: math.unit(5 + 8 / 12, "feet"),
  21121. weight: math.unit(120, "lb"),
  21122. name: "Back",
  21123. image: {
  21124. source: "./media/characters/logan-grey/back.svg",
  21125. extra: 958 / 893,
  21126. bottom: 2.1881 / 970.9788
  21127. }
  21128. },
  21129. dick: {
  21130. height: math.unit(1.437, "feet"),
  21131. name: "Dick",
  21132. image: {
  21133. source: "./media/characters/logan-grey/dick.svg"
  21134. }
  21135. },
  21136. },
  21137. [
  21138. {
  21139. name: "Normal",
  21140. height: math.unit(5 + 8 / 12, "feet")
  21141. },
  21142. {
  21143. name: "The 500 Foot Femboy",
  21144. height: math.unit(500, "feet"),
  21145. default: true
  21146. },
  21147. {
  21148. name: "Megmacro",
  21149. height: math.unit(20, "miles")
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(8 + 2 / 12, "feet"),
  21158. weight: math.unit(275, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/draganta/front.svg",
  21162. extra: 1177 / 1135,
  21163. bottom: 33.46 / 1212.1
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(8 + 6 / 12, "feet"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Macro",
  21175. height: math.unit(150, "feet")
  21176. },
  21177. {
  21178. name: "Megamacro",
  21179. height: math.unit(1000, "miles")
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(1.72, "m"),
  21188. weight: math.unit(80, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/voski/front.svg",
  21192. extra: 2076.22 / 2022.4,
  21193. bottom: 102.7 / 2177.3866
  21194. }
  21195. },
  21196. frontNsfw: {
  21197. height: math.unit(1.72, "m"),
  21198. weight: math.unit(80, "lb"),
  21199. name: "Front (NSFW)",
  21200. image: {
  21201. source: "./media/characters/voski/front-nsfw.svg",
  21202. extra: 2076.22 / 2022.4,
  21203. bottom: 102.7 / 2177.3866
  21204. }
  21205. },
  21206. back: {
  21207. height: math.unit(1.72, "m"),
  21208. weight: math.unit(80, "lb"),
  21209. name: "Back",
  21210. image: {
  21211. source: "./media/characters/voski/back.svg",
  21212. extra: 2104 / 2051,
  21213. bottom: 10.45 / 2113.63
  21214. }
  21215. },
  21216. },
  21217. [
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(1.72, "m")
  21221. },
  21222. {
  21223. name: "Macro",
  21224. height: math.unit(55, "m"),
  21225. default: true
  21226. },
  21227. {
  21228. name: "Macro+",
  21229. height: math.unit(300, "m")
  21230. },
  21231. {
  21232. name: "Macro++",
  21233. height: math.unit(700, "m")
  21234. },
  21235. {
  21236. name: "Macro+++",
  21237. height: math.unit(4500, "m")
  21238. },
  21239. {
  21240. name: "Macro++++",
  21241. height: math.unit(45, "km")
  21242. },
  21243. {
  21244. name: "Macro+++++",
  21245. height: math.unit(1220, "km")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(2.3, "m"),
  21254. weight: math.unit(304, "kg"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/icowom-lee/front.svg",
  21258. extra: 985 / 955,
  21259. bottom: 25.4 / 1012
  21260. }
  21261. },
  21262. fronttentacles: {
  21263. height: math.unit(2.3, "m"),
  21264. weight: math.unit(304, "kg"),
  21265. name: "Front-tentacles",
  21266. image: {
  21267. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21268. extra: 985 / 955,
  21269. bottom: 25.4 / 1012
  21270. }
  21271. },
  21272. back: {
  21273. height: math.unit(2.3, "m"),
  21274. weight: math.unit(304, "kg"),
  21275. name: "Back",
  21276. image: {
  21277. source: "./media/characters/icowom-lee/back.svg",
  21278. extra: 975 / 954,
  21279. bottom: 9.5 / 985
  21280. }
  21281. },
  21282. backtentacles: {
  21283. height: math.unit(2.3, "m"),
  21284. weight: math.unit(304, "kg"),
  21285. name: "Back-tentacles",
  21286. image: {
  21287. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21288. extra: 975 / 954,
  21289. bottom: 9.5 / 985
  21290. }
  21291. },
  21292. frontDressed: {
  21293. height: math.unit(2.3, "m"),
  21294. weight: math.unit(304, "kg"),
  21295. name: "Front (Dressed)",
  21296. image: {
  21297. source: "./media/characters/icowom-lee/front-dressed.svg",
  21298. extra: 3076 / 2933,
  21299. bottom: 51.4 / 3125.1889
  21300. }
  21301. },
  21302. rump: {
  21303. height: math.unit(0.776, "meters"),
  21304. name: "Rump",
  21305. image: {
  21306. source: "./media/characters/icowom-lee/rump.svg"
  21307. }
  21308. },
  21309. genitals: {
  21310. height: math.unit(0.78, "meters"),
  21311. name: "Genitals",
  21312. image: {
  21313. source: "./media/characters/icowom-lee/genitals.svg"
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(2.3, "meters"),
  21321. default: true
  21322. },
  21323. {
  21324. name: "Macro",
  21325. height: math.unit(94, "meters"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(22, "meters"),
  21335. weight: math.unit(21000, "kg"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/shock-diamond/front.svg",
  21339. extra: 2204 / 2053,
  21340. bottom: 65 / 2239.47
  21341. }
  21342. },
  21343. frontNude: {
  21344. height: math.unit(22, "meters"),
  21345. weight: math.unit(21000, "kg"),
  21346. name: "Front (Nude)",
  21347. image: {
  21348. source: "./media/characters/shock-diamond/front-nude.svg",
  21349. extra: 2514 / 2285,
  21350. bottom: 13 / 2527.56
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Normal",
  21357. height: math.unit(3, "meters")
  21358. },
  21359. {
  21360. name: "Macro",
  21361. height: math.unit(22, "meters"),
  21362. default: true
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21368. {
  21369. front: {
  21370. height: math.unit(5 + 4 / 12, "feet"),
  21371. weight: math.unit(120, "lb"),
  21372. name: "Front",
  21373. image: {
  21374. source: "./media/characters/rory/front.svg",
  21375. extra: 589 / 556,
  21376. bottom: 45.7 / 635.76
  21377. }
  21378. },
  21379. frontNude: {
  21380. height: math.unit(5 + 4 / 12, "feet"),
  21381. weight: math.unit(120, "lb"),
  21382. name: "Front (Nude)",
  21383. image: {
  21384. source: "./media/characters/rory/front-nude.svg",
  21385. extra: 589 / 556,
  21386. bottom: 45.7 / 635.76
  21387. }
  21388. },
  21389. side: {
  21390. height: math.unit(5 + 4 / 12, "feet"),
  21391. weight: math.unit(120, "lb"),
  21392. name: "Side",
  21393. image: {
  21394. source: "./media/characters/rory/side.svg",
  21395. extra: 597 / 564,
  21396. bottom: 55 / 653
  21397. }
  21398. },
  21399. back: {
  21400. height: math.unit(5 + 4 / 12, "feet"),
  21401. weight: math.unit(120, "lb"),
  21402. name: "Back",
  21403. image: {
  21404. source: "./media/characters/rory/back.svg",
  21405. extra: 620 / 585,
  21406. bottom: 8.86 / 630.43
  21407. }
  21408. },
  21409. dick: {
  21410. height: math.unit(0.86, "feet"),
  21411. name: "Dick",
  21412. image: {
  21413. source: "./media/characters/rory/dick.svg"
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(5 + 4 / 12, "feet"),
  21421. default: true
  21422. },
  21423. {
  21424. name: "Macro",
  21425. height: math.unit(100, "feet")
  21426. },
  21427. {
  21428. name: "Macro+",
  21429. height: math.unit(140, "feet")
  21430. },
  21431. {
  21432. name: "Macro++",
  21433. height: math.unit(300, "feet")
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21439. {
  21440. front: {
  21441. height: math.unit(5 + 9 / 12, "feet"),
  21442. weight: math.unit(190, "lb"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/sprisk/front.svg",
  21446. extra: 1225 / 1180,
  21447. bottom: 42.7 / 1266.4
  21448. }
  21449. },
  21450. frontNsfw: {
  21451. height: math.unit(5 + 9 / 12, "feet"),
  21452. weight: math.unit(190, "lb"),
  21453. name: "Front (NSFW)",
  21454. image: {
  21455. source: "./media/characters/sprisk/front-nsfw.svg",
  21456. extra: 1225 / 1180,
  21457. bottom: 42.7 / 1266.4
  21458. }
  21459. },
  21460. back: {
  21461. height: math.unit(5 + 9 / 12, "feet"),
  21462. weight: math.unit(190, "lb"),
  21463. name: "Back",
  21464. image: {
  21465. source: "./media/characters/sprisk/back.svg",
  21466. extra: 1247 / 1200,
  21467. bottom: 5.6 / 1253.04
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Tiny",
  21474. height: math.unit(2, "inches")
  21475. },
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(5 + 9 / 12, "feet"),
  21479. default: true
  21480. },
  21481. {
  21482. name: "Mini Macro",
  21483. height: math.unit(18, "feet")
  21484. },
  21485. {
  21486. name: "Macro",
  21487. height: math.unit(100, "feet")
  21488. },
  21489. {
  21490. name: "MACRO",
  21491. height: math.unit(50, "miles")
  21492. },
  21493. {
  21494. name: "M A C R O",
  21495. height: math.unit(300, "miles")
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21501. {
  21502. side: {
  21503. height: math.unit(15.6, "meters"),
  21504. weight: math.unit(700000, "kg"),
  21505. name: "Side",
  21506. image: {
  21507. source: "./media/characters/bunsen/side.svg",
  21508. extra: 1644 / 358
  21509. }
  21510. },
  21511. foot: {
  21512. height: math.unit(1.611 * 1644 / 358, "meter"),
  21513. name: "Foot",
  21514. image: {
  21515. source: "./media/characters/bunsen/foot.svg"
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Small",
  21522. height: math.unit(10, "feet")
  21523. },
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(15.6, "meters"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(4 + 11 / 12, "feet"),
  21536. weight: math.unit(140, "lb"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/sesh/front.svg",
  21540. extra: 3420 / 3231,
  21541. bottom: 72 / 3949.5
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Normal",
  21548. height: math.unit(4 + 11 / 12, "feet")
  21549. },
  21550. {
  21551. name: "Grown",
  21552. height: math.unit(15, "feet"),
  21553. default: true
  21554. },
  21555. {
  21556. name: "Macro",
  21557. height: math.unit(1500, "feet")
  21558. },
  21559. {
  21560. name: "Megamacro",
  21561. height: math.unit(30, "miles")
  21562. },
  21563. {
  21564. name: "Continental",
  21565. height: math.unit(3000, "miles")
  21566. },
  21567. {
  21568. name: "Gravity Mass",
  21569. height: math.unit(300000, "miles")
  21570. },
  21571. {
  21572. name: "Planet Buster",
  21573. height: math.unit(30000000, "miles")
  21574. },
  21575. {
  21576. name: "Big",
  21577. height: math.unit(3000000000, "miles")
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21583. {
  21584. front: {
  21585. height: math.unit(9, "feet"),
  21586. weight: math.unit(350, "lb"),
  21587. name: "Front",
  21588. image: {
  21589. source: "./media/characters/pepper/front.svg",
  21590. extra: 1448 / 1312,
  21591. bottom: 9.4 / 1457.88
  21592. }
  21593. },
  21594. back: {
  21595. height: math.unit(9, "feet"),
  21596. weight: math.unit(350, "lb"),
  21597. name: "Back",
  21598. image: {
  21599. source: "./media/characters/pepper/back.svg",
  21600. extra: 1423 / 1300,
  21601. bottom: 4.6 / 1429
  21602. }
  21603. },
  21604. maw: {
  21605. height: math.unit(0.932, "feet"),
  21606. name: "Maw",
  21607. image: {
  21608. source: "./media/characters/pepper/maw.svg"
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(9, "feet"),
  21616. default: true
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21622. {
  21623. front: {
  21624. height: math.unit(6, "feet"),
  21625. weight: math.unit(150, "lb"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/maelstrom/front.svg",
  21629. extra: 2100 / 1883,
  21630. bottom: 94 / 2196.7
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Less Kaiju",
  21637. height: math.unit(200, "feet")
  21638. },
  21639. {
  21640. name: "Kaiju",
  21641. height: math.unit(400, "feet"),
  21642. default: true
  21643. },
  21644. {
  21645. name: "Kaiju-er",
  21646. height: math.unit(600, "feet")
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21652. {
  21653. front: {
  21654. height: math.unit(6 + 5 / 12, "feet"),
  21655. weight: math.unit(180, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/lexir/front.svg",
  21659. extra: 180 / 172,
  21660. bottom: 12 / 192
  21661. }
  21662. },
  21663. back: {
  21664. height: math.unit(6 + 5 / 12, "feet"),
  21665. weight: math.unit(180, "lb"),
  21666. name: "Back",
  21667. image: {
  21668. source: "./media/characters/lexir/back.svg",
  21669. extra: 183.84 / 175.5,
  21670. bottom: 3.1 / 187
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Very Smal",
  21677. height: math.unit(1, "nm")
  21678. },
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(6 + 5 / 12, "feet"),
  21682. default: true
  21683. },
  21684. {
  21685. name: "Macro",
  21686. height: math.unit(1, "mile")
  21687. },
  21688. {
  21689. name: "Megamacro",
  21690. height: math.unit(50, "miles")
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(1.5, "meters"),
  21699. weight: math.unit(100, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/maksio/front.svg",
  21703. extra: 1549 / 1531,
  21704. bottom: 123.7 / 1674.5429
  21705. }
  21706. },
  21707. back: {
  21708. height: math.unit(1.5, "meters"),
  21709. weight: math.unit(100, "lb"),
  21710. name: "Back",
  21711. image: {
  21712. source: "./media/characters/maksio/back.svg",
  21713. extra: 1541 / 1509,
  21714. bottom: 97 / 1639
  21715. }
  21716. },
  21717. hand: {
  21718. height: math.unit(0.621, "feet"),
  21719. name: "Hand",
  21720. image: {
  21721. source: "./media/characters/maksio/hand.svg"
  21722. }
  21723. },
  21724. foot: {
  21725. height: math.unit(1.611, "feet"),
  21726. name: "Foot",
  21727. image: {
  21728. source: "./media/characters/maksio/foot.svg"
  21729. }
  21730. },
  21731. },
  21732. [
  21733. {
  21734. name: "Shrunken",
  21735. height: math.unit(10, "cm")
  21736. },
  21737. {
  21738. name: "Normal",
  21739. height: math.unit(150, "cm"),
  21740. default: true
  21741. },
  21742. ]
  21743. ))
  21744. characterMakers.push(() => makeCharacter(
  21745. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21746. {
  21747. front: {
  21748. height: math.unit(100, "feet"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/erza-bear/front.svg",
  21752. extra: 2449 / 2390,
  21753. bottom: 46 / 2494
  21754. }
  21755. },
  21756. back: {
  21757. height: math.unit(100, "feet"),
  21758. name: "Back",
  21759. image: {
  21760. source: "./media/characters/erza-bear/back.svg",
  21761. extra: 2489 / 2430,
  21762. bottom: 85.4 / 2480
  21763. }
  21764. },
  21765. tail: {
  21766. height: math.unit(42, "feet"),
  21767. name: "Tail",
  21768. image: {
  21769. source: "./media/characters/erza-bear/tail.svg"
  21770. }
  21771. },
  21772. tongue: {
  21773. height: math.unit(8, "feet"),
  21774. name: "Tongue",
  21775. image: {
  21776. source: "./media/characters/erza-bear/tongue.svg"
  21777. }
  21778. },
  21779. dick: {
  21780. height: math.unit(10.5, "feet"),
  21781. name: "Dick",
  21782. image: {
  21783. source: "./media/characters/erza-bear/dick.svg"
  21784. }
  21785. },
  21786. dickVertical: {
  21787. height: math.unit(16.9, "feet"),
  21788. name: "Dick (Vertical)",
  21789. image: {
  21790. source: "./media/characters/erza-bear/dick-vertical.svg"
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Macro",
  21797. height: math.unit(100, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(172, "cm"),
  21807. weight: math.unit(73, "kg"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/violet-flor/front.svg",
  21811. extra: 1530 / 1442,
  21812. bottom: 61.9 / 1588.8
  21813. }
  21814. },
  21815. back: {
  21816. height: math.unit(180, "cm"),
  21817. weight: math.unit(73, "kg"),
  21818. name: "Back",
  21819. image: {
  21820. source: "./media/characters/violet-flor/back.svg",
  21821. extra: 1692 / 1630,
  21822. bottom: 20 / 1712
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(172, "cm"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(6, "feet"),
  21839. weight: math.unit(220, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/lynn-rhea/front.svg",
  21843. extra: 310 / 273
  21844. }
  21845. },
  21846. back: {
  21847. height: math.unit(6, "feet"),
  21848. weight: math.unit(220, "lb"),
  21849. name: "Back",
  21850. image: {
  21851. source: "./media/characters/lynn-rhea/back.svg",
  21852. extra: 310 / 273
  21853. }
  21854. },
  21855. dicks: {
  21856. height: math.unit(0.9, "feet"),
  21857. name: "Dicks",
  21858. image: {
  21859. source: "./media/characters/lynn-rhea/dicks.svg"
  21860. }
  21861. },
  21862. slit: {
  21863. height: math.unit(0.4, "feet"),
  21864. name: "Slit",
  21865. image: {
  21866. source: "./media/characters/lynn-rhea/slit.svg"
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Micro",
  21873. height: math.unit(1, "inch")
  21874. },
  21875. {
  21876. name: "Macro",
  21877. height: math.unit(60, "feet"),
  21878. default: true
  21879. },
  21880. {
  21881. name: "Megamacro",
  21882. height: math.unit(2, "miles")
  21883. },
  21884. {
  21885. name: "Gigamacro",
  21886. height: math.unit(3, "earths")
  21887. },
  21888. {
  21889. name: "Galactic",
  21890. height: math.unit(0.8, "galaxies")
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21896. {
  21897. front: {
  21898. height: math.unit(1600, "feet"),
  21899. weight: math.unit(85758785169, "kg"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/valathos/front.svg",
  21903. extra: 1451 / 1339
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Macro",
  21910. height: math.unit(1600, "feet"),
  21911. default: true
  21912. },
  21913. ]
  21914. ))
  21915. characterMakers.push(() => makeCharacter(
  21916. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21917. {
  21918. front: {
  21919. height: math.unit(7 + 5 / 12, "feet"),
  21920. weight: math.unit(300, "lb"),
  21921. name: "Front",
  21922. image: {
  21923. source: "./media/characters/azula/front.svg",
  21924. extra: 3208 / 2880,
  21925. bottom: 80.2 / 3277
  21926. }
  21927. },
  21928. back: {
  21929. height: math.unit(7 + 5 / 12, "feet"),
  21930. weight: math.unit(300, "lb"),
  21931. name: "Back",
  21932. image: {
  21933. source: "./media/characters/azula/back.svg",
  21934. extra: 3169 / 2822,
  21935. bottom: 150.6 / 3321
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(7 + 5 / 12, "feet"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Big",
  21947. height: math.unit(20, "feet")
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(5 + 1 / 12, "feet"),
  21956. weight: math.unit(110, "lb"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/rupert/front.svg",
  21960. extra: 1549 / 1495,
  21961. bottom: 54.2 / 1604.4
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(5 + 1 / 12, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(8 + 4 / 12, "feet"),
  21978. weight: math.unit(350, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/sheera-castellar/front.svg",
  21982. extra: 1957 / 1894,
  21983. bottom: 26.97 / 1975.017
  21984. }
  21985. },
  21986. side: {
  21987. height: math.unit(8 + 4 / 12, "feet"),
  21988. weight: math.unit(350, "lb"),
  21989. name: "Side",
  21990. image: {
  21991. source: "./media/characters/sheera-castellar/side.svg",
  21992. extra: 1957 / 1894
  21993. }
  21994. },
  21995. back: {
  21996. height: math.unit(8 + 4 / 12, "feet"),
  21997. weight: math.unit(350, "lb"),
  21998. name: "Back",
  21999. image: {
  22000. source: "./media/characters/sheera-castellar/back.svg",
  22001. extra: 1957 / 1894
  22002. }
  22003. },
  22004. angled: {
  22005. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22006. weight: math.unit(350, "lb"),
  22007. name: "Angled",
  22008. image: {
  22009. source: "./media/characters/sheera-castellar/angled.svg",
  22010. extra: 1807 / 1707,
  22011. bottom: 68 / 1875
  22012. }
  22013. },
  22014. genitals: {
  22015. height: math.unit(2.2, "feet"),
  22016. name: "Genitals",
  22017. image: {
  22018. source: "./media/characters/sheera-castellar/genitals.svg"
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(8 + 4 / 12, "feet")
  22026. },
  22027. {
  22028. name: "Macro",
  22029. height: math.unit(150, "feet"),
  22030. default: true
  22031. },
  22032. {
  22033. name: "Macro+",
  22034. height: math.unit(800, "feet")
  22035. },
  22036. ]
  22037. ))
  22038. characterMakers.push(() => makeCharacter(
  22039. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22040. {
  22041. front: {
  22042. height: math.unit(6, "feet"),
  22043. weight: math.unit(150, "lb"),
  22044. name: "Front",
  22045. image: {
  22046. source: "./media/characters/jaipur/front.svg",
  22047. extra: 3860 / 3731,
  22048. bottom: 287 / 4140
  22049. }
  22050. },
  22051. back: {
  22052. height: math.unit(6, "feet"),
  22053. weight: math.unit(150, "lb"),
  22054. name: "Back",
  22055. image: {
  22056. source: "./media/characters/jaipur/back.svg",
  22057. extra: 4060 / 3930,
  22058. bottom: 151 / 4200
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(1.85, "meters"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Macro",
  22070. height: math.unit(150, "meters")
  22071. },
  22072. {
  22073. name: "Macro+",
  22074. height: math.unit(0.5, "miles")
  22075. },
  22076. {
  22077. name: "Macro++",
  22078. height: math.unit(2.5, "miles")
  22079. },
  22080. {
  22081. name: "Macro+++",
  22082. height: math.unit(12, "miles")
  22083. },
  22084. {
  22085. name: "Macro++++",
  22086. height: math.unit(120, "miles")
  22087. },
  22088. {
  22089. name: "Macro+++++",
  22090. height: math.unit(1200, "miles")
  22091. },
  22092. ]
  22093. ))
  22094. characterMakers.push(() => makeCharacter(
  22095. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22096. {
  22097. front: {
  22098. height: math.unit(6, "feet"),
  22099. weight: math.unit(150, "lb"),
  22100. name: "Front",
  22101. image: {
  22102. source: "./media/characters/sheila-wolf/front.svg",
  22103. extra: 1931 / 1808,
  22104. bottom: 29.5 / 1960
  22105. }
  22106. },
  22107. dick: {
  22108. height: math.unit(1.464, "feet"),
  22109. name: "Dick",
  22110. image: {
  22111. source: "./media/characters/sheila-wolf/dick.svg"
  22112. }
  22113. },
  22114. muzzle: {
  22115. height: math.unit(0.513, "feet"),
  22116. name: "Muzzle",
  22117. image: {
  22118. source: "./media/characters/sheila-wolf/muzzle.svg"
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(70, "feet"),
  22126. default: true
  22127. },
  22128. ]
  22129. ))
  22130. characterMakers.push(() => makeCharacter(
  22131. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22132. {
  22133. front: {
  22134. height: math.unit(32, "meters"),
  22135. weight: math.unit(300000, "kg"),
  22136. name: "Front",
  22137. image: {
  22138. source: "./media/characters/almor/front.svg",
  22139. extra: 1408 / 1322,
  22140. bottom: 94.6 / 1506.5
  22141. }
  22142. },
  22143. },
  22144. [
  22145. {
  22146. name: "Macro",
  22147. height: math.unit(32, "meters"),
  22148. default: true
  22149. },
  22150. ]
  22151. ))
  22152. characterMakers.push(() => makeCharacter(
  22153. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22154. {
  22155. front: {
  22156. height: math.unit(7, "feet"),
  22157. weight: math.unit(200, "lb"),
  22158. name: "Front",
  22159. image: {
  22160. source: "./media/characters/silver/front.svg",
  22161. extra: 472.1 / 450.5,
  22162. bottom: 26.5 / 499.424
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(7, "feet"),
  22170. default: true
  22171. },
  22172. {
  22173. name: "Macro",
  22174. height: math.unit(800, "feet")
  22175. },
  22176. {
  22177. name: "Megamacro",
  22178. height: math.unit(250, "miles")
  22179. },
  22180. ]
  22181. ))
  22182. characterMakers.push(() => makeCharacter(
  22183. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22184. {
  22185. front: {
  22186. height: math.unit(6, "feet"),
  22187. weight: math.unit(150, "lb"),
  22188. name: "Front",
  22189. image: {
  22190. source: "./media/characters/pliskin/front.svg",
  22191. extra: 1469 / 1359,
  22192. bottom: 70 / 1540
  22193. }
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Micro",
  22199. height: math.unit(3, "inches")
  22200. },
  22201. {
  22202. name: "Normal",
  22203. height: math.unit(5 + 11 / 12, "feet"),
  22204. default: true
  22205. },
  22206. {
  22207. name: "Macro",
  22208. height: math.unit(120, "feet")
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(6, "feet"),
  22217. weight: math.unit(150, "lb"),
  22218. name: "Front",
  22219. image: {
  22220. source: "./media/characters/sammy/front.svg",
  22221. extra: 1193 / 1089,
  22222. bottom: 30.5 / 1226
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Macro",
  22229. height: math.unit(1700, "feet"),
  22230. default: true
  22231. },
  22232. {
  22233. name: "Examacro",
  22234. height: math.unit(2.5e9, "lightyears")
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(21, "meters"),
  22243. weight: math.unit(12, "tonnes"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/kuru/front.svg",
  22247. extra: 4301 / 3785,
  22248. bottom: 371.3 / 4691
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Macro",
  22255. height: math.unit(21, "meters"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(23, "meters"),
  22265. weight: math.unit(12.2, "tonnes"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/rakka/front.svg",
  22269. extra: 4670 / 4169,
  22270. bottom: 301 / 4968.7
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Macro",
  22277. height: math.unit(23, "meters"),
  22278. default: true
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(6, "feet"),
  22287. weight: math.unit(150, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/rhys-feline/front.svg",
  22291. extra: 2488 / 2308,
  22292. bottom: 35.67 / 2519.19
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Really Small",
  22299. height: math.unit(1, "nm")
  22300. },
  22301. {
  22302. name: "Micro",
  22303. height: math.unit(4, "inches")
  22304. },
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(4 + 10 / 12, "feet"),
  22308. default: true
  22309. },
  22310. {
  22311. name: "Macro",
  22312. height: math.unit(100, "feet")
  22313. },
  22314. {
  22315. name: "Megamacto",
  22316. height: math.unit(50, "miles")
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22322. {
  22323. side: {
  22324. height: math.unit(30, "feet"),
  22325. weight: math.unit(35000, "kg"),
  22326. name: "Side",
  22327. image: {
  22328. source: "./media/characters/alydar/side.svg",
  22329. extra: 234 / 222,
  22330. bottom: 6.5 / 241
  22331. }
  22332. },
  22333. front: {
  22334. height: math.unit(30, "feet"),
  22335. weight: math.unit(35000, "kg"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/alydar/front.svg",
  22339. extra: 223.37 / 210.2,
  22340. bottom: 22.3 / 246.76
  22341. }
  22342. },
  22343. top: {
  22344. height: math.unit(64.54, "feet"),
  22345. weight: math.unit(35000, "kg"),
  22346. name: "Top",
  22347. image: {
  22348. source: "./media/characters/alydar/top.svg"
  22349. }
  22350. },
  22351. anthro: {
  22352. height: math.unit(30, "feet"),
  22353. weight: math.unit(9000, "kg"),
  22354. name: "Anthro",
  22355. image: {
  22356. source: "./media/characters/alydar/anthro.svg",
  22357. extra: 432 / 421,
  22358. bottom: 7.18 / 440
  22359. }
  22360. },
  22361. maw: {
  22362. height: math.unit(11.693, "feet"),
  22363. name: "Maw",
  22364. image: {
  22365. source: "./media/characters/alydar/maw.svg"
  22366. }
  22367. },
  22368. head: {
  22369. height: math.unit(11.693, "feet"),
  22370. name: "Head",
  22371. image: {
  22372. source: "./media/characters/alydar/head.svg"
  22373. }
  22374. },
  22375. headAlt: {
  22376. height: math.unit(12.861, "feet"),
  22377. name: "Head (Alt)",
  22378. image: {
  22379. source: "./media/characters/alydar/head-alt.svg"
  22380. }
  22381. },
  22382. wing: {
  22383. height: math.unit(20.712, "feet"),
  22384. name: "Wing",
  22385. image: {
  22386. source: "./media/characters/alydar/wing.svg"
  22387. }
  22388. },
  22389. wingFeather: {
  22390. height: math.unit(9.662, "feet"),
  22391. name: "Wing Feather",
  22392. image: {
  22393. source: "./media/characters/alydar/wing-feather.svg"
  22394. }
  22395. },
  22396. countourFeather: {
  22397. height: math.unit(4.154, "feet"),
  22398. name: "Contour Feather",
  22399. image: {
  22400. source: "./media/characters/alydar/contour-feather.svg"
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Diplomatic",
  22407. height: math.unit(13, "feet"),
  22408. default: true
  22409. },
  22410. {
  22411. name: "Small",
  22412. height: math.unit(30, "feet")
  22413. },
  22414. {
  22415. name: "Normal",
  22416. height: math.unit(95, "feet"),
  22417. default: true
  22418. },
  22419. {
  22420. name: "Large",
  22421. height: math.unit(285, "feet")
  22422. },
  22423. {
  22424. name: "Incomprehensible",
  22425. height: math.unit(450, "megameters")
  22426. },
  22427. ]
  22428. ))
  22429. characterMakers.push(() => makeCharacter(
  22430. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22431. {
  22432. side: {
  22433. height: math.unit(11, "feet"),
  22434. weight: math.unit(1750, "kg"),
  22435. name: "Side",
  22436. image: {
  22437. source: "./media/characters/selicia/side.svg",
  22438. extra: 440 / 396,
  22439. bottom: 24.8 / 465.979
  22440. }
  22441. },
  22442. maw: {
  22443. height: math.unit(4.665, "feet"),
  22444. name: "Maw",
  22445. image: {
  22446. source: "./media/characters/selicia/maw.svg"
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(11, "feet"),
  22454. default: true
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22460. {
  22461. side: {
  22462. height: math.unit(2 + 6 / 12, "feet"),
  22463. weight: math.unit(30, "lb"),
  22464. name: "Side",
  22465. image: {
  22466. source: "./media/characters/layla/side.svg",
  22467. extra: 244 / 188,
  22468. bottom: 18.2 / 262.1
  22469. }
  22470. },
  22471. back: {
  22472. height: math.unit(2 + 6 / 12, "feet"),
  22473. weight: math.unit(30, "lb"),
  22474. name: "Back",
  22475. image: {
  22476. source: "./media/characters/layla/back.svg",
  22477. extra: 308 / 241.5,
  22478. bottom: 8.9 / 316.8
  22479. }
  22480. },
  22481. cumming: {
  22482. height: math.unit(2 + 6 / 12, "feet"),
  22483. weight: math.unit(30, "lb"),
  22484. name: "Cumming",
  22485. image: {
  22486. source: "./media/characters/layla/cumming.svg",
  22487. extra: 342 / 279,
  22488. bottom: 595 / 938
  22489. }
  22490. },
  22491. dickFlaccid: {
  22492. height: math.unit(2.595, "feet"),
  22493. name: "Flaccid Genitals",
  22494. image: {
  22495. source: "./media/characters/layla/dick-flaccid.svg"
  22496. }
  22497. },
  22498. dickErect: {
  22499. height: math.unit(2.359, "feet"),
  22500. name: "Erect Genitals",
  22501. image: {
  22502. source: "./media/characters/layla/dick-erect.svg"
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Micro",
  22509. height: math.unit(1, "inch")
  22510. },
  22511. {
  22512. name: "Small",
  22513. height: math.unit(1, "foot")
  22514. },
  22515. {
  22516. name: "Normal",
  22517. height: math.unit(2 + 6 / 12, "feet"),
  22518. default: true
  22519. },
  22520. {
  22521. name: "Macro",
  22522. height: math.unit(200, "feet")
  22523. },
  22524. {
  22525. name: "Megamacro",
  22526. height: math.unit(1000, "miles")
  22527. },
  22528. {
  22529. name: "Planetary",
  22530. height: math.unit(8000, "miles")
  22531. },
  22532. {
  22533. name: "True Layla",
  22534. height: math.unit(200000 * 7, "multiverses")
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22540. {
  22541. back: {
  22542. height: math.unit(10.5, "feet"),
  22543. weight: math.unit(800, "lb"),
  22544. name: "Back",
  22545. image: {
  22546. source: "./media/characters/knox/back.svg",
  22547. extra: 1486 / 1089,
  22548. bottom: 107 / 1601.4
  22549. }
  22550. },
  22551. side: {
  22552. height: math.unit(10.5, "feet"),
  22553. weight: math.unit(800, "lb"),
  22554. name: "Side",
  22555. image: {
  22556. source: "./media/characters/knox/side.svg",
  22557. extra: 244 / 218,
  22558. bottom: 14 / 260
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Compact",
  22565. height: math.unit(10.5, "feet"),
  22566. default: true
  22567. },
  22568. {
  22569. name: "Dynamax",
  22570. height: math.unit(210, "feet")
  22571. },
  22572. {
  22573. name: "Full Macro",
  22574. height: math.unit(850, "feet")
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(6, "feet"),
  22583. weight: math.unit(152, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/shin-pikachu/front.svg",
  22587. extra: 1574 / 1480,
  22588. bottom: 53.3 / 1626
  22589. }
  22590. },
  22591. hand: {
  22592. height: math.unit(1.055, "feet"),
  22593. name: "Hand",
  22594. image: {
  22595. source: "./media/characters/shin-pikachu/hand.svg"
  22596. }
  22597. },
  22598. foot: {
  22599. height: math.unit(1.1, "feet"),
  22600. name: "Foot",
  22601. image: {
  22602. source: "./media/characters/shin-pikachu/foot.svg"
  22603. }
  22604. },
  22605. collar: {
  22606. height: math.unit(0.386, "feet"),
  22607. name: "Collar",
  22608. image: {
  22609. source: "./media/characters/shin-pikachu/collar.svg"
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Smallest",
  22616. height: math.unit(0.5, "inches")
  22617. },
  22618. {
  22619. name: "Micro",
  22620. height: math.unit(6, "inches")
  22621. },
  22622. {
  22623. name: "Normal",
  22624. height: math.unit(6, "feet"),
  22625. default: true
  22626. },
  22627. {
  22628. name: "Macro",
  22629. height: math.unit(150, "feet")
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22635. {
  22636. front: {
  22637. height: math.unit(28, "feet"),
  22638. weight: math.unit(10500, "lb"),
  22639. name: "Front",
  22640. image: {
  22641. source: "./media/characters/kayda/front.svg",
  22642. extra: 1536 / 1428,
  22643. bottom: 68.7 / 1603
  22644. }
  22645. },
  22646. back: {
  22647. height: math.unit(28, "feet"),
  22648. weight: math.unit(10500, "lb"),
  22649. name: "Back",
  22650. image: {
  22651. source: "./media/characters/kayda/back.svg",
  22652. extra: 1557 / 1464,
  22653. bottom: 39.5 / 1597.49
  22654. }
  22655. },
  22656. dick: {
  22657. height: math.unit(3.858, "feet"),
  22658. name: "Dick",
  22659. image: {
  22660. source: "./media/characters/kayda/dick.svg"
  22661. }
  22662. },
  22663. },
  22664. [
  22665. {
  22666. name: "Macro",
  22667. height: math.unit(28, "feet"),
  22668. default: true
  22669. },
  22670. ]
  22671. ))
  22672. characterMakers.push(() => makeCharacter(
  22673. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22674. {
  22675. front: {
  22676. height: math.unit(10 + 11 / 12, "feet"),
  22677. weight: math.unit(1400, "lb"),
  22678. name: "Front",
  22679. image: {
  22680. source: "./media/characters/brian/front.svg",
  22681. extra: 737 / 692,
  22682. bottom: 55.4 / 785
  22683. }
  22684. },
  22685. },
  22686. [
  22687. {
  22688. name: "Normal",
  22689. height: math.unit(10 + 11 / 12, "feet"),
  22690. default: true
  22691. },
  22692. ]
  22693. ))
  22694. characterMakers.push(() => makeCharacter(
  22695. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22696. {
  22697. front: {
  22698. height: math.unit(5 + 8 / 12, "feet"),
  22699. weight: math.unit(140, "lb"),
  22700. name: "Front",
  22701. image: {
  22702. source: "./media/characters/khemri/front.svg",
  22703. extra: 4780 / 4059,
  22704. bottom: 80.1 / 4859.25
  22705. }
  22706. },
  22707. },
  22708. [
  22709. {
  22710. name: "Micro",
  22711. height: math.unit(6, "inches")
  22712. },
  22713. {
  22714. name: "Normal",
  22715. height: math.unit(5 + 8 / 12, "feet"),
  22716. default: true
  22717. },
  22718. ]
  22719. ))
  22720. characterMakers.push(() => makeCharacter(
  22721. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22722. {
  22723. front: {
  22724. height: math.unit(13, "feet"),
  22725. weight: math.unit(1700, "lb"),
  22726. name: "Front",
  22727. image: {
  22728. source: "./media/characters/felix-braveheart/front.svg",
  22729. extra: 1222 / 1157,
  22730. bottom: 53.2 / 1280
  22731. }
  22732. },
  22733. back: {
  22734. height: math.unit(13, "feet"),
  22735. weight: math.unit(1700, "lb"),
  22736. name: "Back",
  22737. image: {
  22738. source: "./media/characters/felix-braveheart/back.svg",
  22739. extra: 1277 / 1203,
  22740. bottom: 50.2 / 1327
  22741. }
  22742. },
  22743. feral: {
  22744. height: math.unit(6, "feet"),
  22745. weight: math.unit(400, "lb"),
  22746. name: "Feral",
  22747. image: {
  22748. source: "./media/characters/felix-braveheart/feral.svg",
  22749. extra: 682 / 625,
  22750. bottom: 6.9 / 688
  22751. }
  22752. },
  22753. },
  22754. [
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(13, "feet"),
  22758. default: true
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22764. {
  22765. side: {
  22766. height: math.unit(5 + 11 / 12, "feet"),
  22767. weight: math.unit(1400, "lb"),
  22768. name: "Side",
  22769. image: {
  22770. source: "./media/characters/shadow-blade/side.svg",
  22771. extra: 1726 / 1267,
  22772. bottom: 58.4 / 1785
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(5 + 11 / 12, "feet"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22786. {
  22787. front: {
  22788. height: math.unit(1 + 6 / 12, "feet"),
  22789. weight: math.unit(25, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/karla-halldor/front.svg",
  22793. extra: 1459 / 1383,
  22794. bottom: 12 / 1472
  22795. }
  22796. },
  22797. },
  22798. [
  22799. {
  22800. name: "Normal",
  22801. height: math.unit(1 + 6 / 12, "feet"),
  22802. default: true
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(6 + 2 / 12, "feet"),
  22811. weight: math.unit(160, "lb"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/ariam/front.svg",
  22815. extra: 714 / 617,
  22816. bottom: 23.4 / 737,
  22817. }
  22818. },
  22819. squatting: {
  22820. height: math.unit(4.1, "feet"),
  22821. weight: math.unit(160, "lb"),
  22822. name: "Squatting",
  22823. image: {
  22824. source: "./media/characters/ariam/squatting.svg",
  22825. extra: 2617 / 2112,
  22826. bottom: 61.2 / 2681,
  22827. }
  22828. },
  22829. },
  22830. [
  22831. {
  22832. name: "Normal",
  22833. height: math.unit(6 + 2 / 12, "feet"),
  22834. default: true
  22835. },
  22836. {
  22837. name: "Normal+",
  22838. height: math.unit(4, "meters")
  22839. },
  22840. {
  22841. name: "Macro",
  22842. height: math.unit(50, "meters")
  22843. },
  22844. {
  22845. name: "Macro+",
  22846. height: math.unit(100, "meters")
  22847. },
  22848. {
  22849. name: "Megamacro",
  22850. height: math.unit(20, "km")
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(1.67, "meters"),
  22859. weight: math.unit(140, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22863. extra: 438 / 410,
  22864. bottom: 0.75 / 439
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Shrunken",
  22871. height: math.unit(7.6, "cm")
  22872. },
  22873. {
  22874. name: "Human Scale",
  22875. height: math.unit(1.67, "meters")
  22876. },
  22877. {
  22878. name: "Wolxi Scale",
  22879. height: math.unit(36.7, "meters"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(1.73, "meters"),
  22889. weight: math.unit(240, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/izue-two-mothers/front.svg",
  22893. extra: 469 / 437,
  22894. bottom: 1.24 / 470.6
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Shrunken",
  22901. height: math.unit(7.86, "cm")
  22902. },
  22903. {
  22904. name: "Human Scale",
  22905. height: math.unit(1.73, "meters")
  22906. },
  22907. {
  22908. name: "Wolxi Scale",
  22909. height: math.unit(38, "meters"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(1.55, "meters"),
  22919. weight: math.unit(120, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/teeku-love-shack/front.svg",
  22923. extra: 387 / 362,
  22924. bottom: 1.51 / 388
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Shrunken",
  22931. height: math.unit(7, "cm")
  22932. },
  22933. {
  22934. name: "Human Scale",
  22935. height: math.unit(1.55, "meters")
  22936. },
  22937. {
  22938. name: "Wolxi Scale",
  22939. height: math.unit(34.1, "meters"),
  22940. default: true
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(1.83, "meters"),
  22949. weight: math.unit(135, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/dejma-the-red/front.svg",
  22953. extra: 480 / 458,
  22954. bottom: 1.8 / 482
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Shrunken",
  22961. height: math.unit(8.3, "cm")
  22962. },
  22963. {
  22964. name: "Human Scale",
  22965. height: math.unit(1.83, "meters")
  22966. },
  22967. {
  22968. name: "Wolxi Scale",
  22969. height: math.unit(40, "meters"),
  22970. default: true
  22971. },
  22972. ]
  22973. ))
  22974. characterMakers.push(() => makeCharacter(
  22975. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22976. {
  22977. front: {
  22978. height: math.unit(1.78, "meters"),
  22979. weight: math.unit(65, "kg"),
  22980. name: "Front",
  22981. image: {
  22982. source: "./media/characters/aki/front.svg",
  22983. extra: 452 / 415
  22984. }
  22985. },
  22986. frontNsfw: {
  22987. height: math.unit(1.78, "meters"),
  22988. weight: math.unit(65, "kg"),
  22989. name: "Front (NSFW)",
  22990. image: {
  22991. source: "./media/characters/aki/front-nsfw.svg",
  22992. extra: 452 / 415
  22993. }
  22994. },
  22995. back: {
  22996. height: math.unit(1.78, "meters"),
  22997. weight: math.unit(65, "kg"),
  22998. name: "Back",
  22999. image: {
  23000. source: "./media/characters/aki/back.svg",
  23001. extra: 452 / 415
  23002. }
  23003. },
  23004. rump: {
  23005. height: math.unit(2.05, "feet"),
  23006. name: "Rump",
  23007. image: {
  23008. source: "./media/characters/aki/rump.svg"
  23009. }
  23010. },
  23011. dick: {
  23012. height: math.unit(0.95, "feet"),
  23013. name: "Dick",
  23014. image: {
  23015. source: "./media/characters/aki/dick.svg"
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Micro",
  23022. height: math.unit(15, "cm")
  23023. },
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(178, "cm"),
  23027. default: true
  23028. },
  23029. {
  23030. name: "Macro",
  23031. height: math.unit(214, "m")
  23032. },
  23033. {
  23034. name: "Macro+",
  23035. height: math.unit(534, "m")
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23041. {
  23042. front: {
  23043. height: math.unit(5 + 5 / 12, "feet"),
  23044. weight: math.unit(120, "lb"),
  23045. name: "Front",
  23046. image: {
  23047. source: "./media/characters/ari/front.svg",
  23048. extra: 714.5 / 682,
  23049. bottom: 8 / 722.5
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Normal",
  23056. height: math.unit(5 + 5 / 12, "feet")
  23057. },
  23058. {
  23059. name: "Macro",
  23060. height: math.unit(100, "feet"),
  23061. default: true
  23062. },
  23063. {
  23064. name: "Megamacro",
  23065. height: math.unit(100, "miles")
  23066. },
  23067. {
  23068. name: "Gigamacro",
  23069. height: math.unit(80000, "miles")
  23070. },
  23071. ]
  23072. ))
  23073. characterMakers.push(() => makeCharacter(
  23074. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23075. {
  23076. side: {
  23077. height: math.unit(9, "feet"),
  23078. weight: math.unit(400, "kg"),
  23079. name: "Side",
  23080. image: {
  23081. source: "./media/characters/bolt/side.svg",
  23082. extra: 1126 / 896,
  23083. bottom: 60 / 1187.3,
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Micro",
  23090. height: math.unit(5, "inches")
  23091. },
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(9, "feet"),
  23095. default: true
  23096. },
  23097. {
  23098. name: "Macro",
  23099. height: math.unit(700, "feet")
  23100. },
  23101. {
  23102. name: "Max Size",
  23103. height: math.unit(1.52e22, "yottameters")
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(4.53, "meters"),
  23112. weight: math.unit(3, "tons"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/draekon-sylviar/front.svg",
  23116. extra: 1228 / 1068,
  23117. bottom: 41 / 1270
  23118. }
  23119. },
  23120. tail: {
  23121. height: math.unit(1.772, "meter"),
  23122. name: "Tail",
  23123. image: {
  23124. source: "./media/characters/draekon-sylviar/tail.svg"
  23125. }
  23126. },
  23127. head: {
  23128. height: math.unit(1.331, "meter"),
  23129. name: "Head",
  23130. image: {
  23131. source: "./media/characters/draekon-sylviar/head.svg"
  23132. }
  23133. },
  23134. hand: {
  23135. height: math.unit(0.564, "meter"),
  23136. name: "Hand",
  23137. image: {
  23138. source: "./media/characters/draekon-sylviar/hand.svg"
  23139. }
  23140. },
  23141. foot: {
  23142. height: math.unit(0.621, "meter"),
  23143. name: "Foot",
  23144. image: {
  23145. source: "./media/characters/draekon-sylviar/foot.svg",
  23146. bottom: 32 / 324
  23147. }
  23148. },
  23149. dick: {
  23150. height: math.unit(61, "cm"),
  23151. name: "Dick",
  23152. image: {
  23153. source: "./media/characters/draekon-sylviar/dick.svg"
  23154. }
  23155. },
  23156. dickseparated: {
  23157. height: math.unit(61, "cm"),
  23158. name: "Dick-separated",
  23159. image: {
  23160. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Small",
  23167. height: math.unit(4.53 / 2, "meters"),
  23168. default: true
  23169. },
  23170. {
  23171. name: "Normal",
  23172. height: math.unit(4.53, "meters"),
  23173. default: true
  23174. },
  23175. {
  23176. name: "Large",
  23177. height: math.unit(4.53 * 2, "meters"),
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(6 + 2 / 12, "feet"),
  23186. weight: math.unit(180, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/brawler/front.svg",
  23190. extra: 3301 / 3027,
  23191. bottom: 138 / 3439
  23192. }
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(6 + 2 / 12, "feet"),
  23199. default: true
  23200. },
  23201. ]
  23202. ))
  23203. characterMakers.push(() => makeCharacter(
  23204. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23205. {
  23206. front: {
  23207. height: math.unit(11, "feet"),
  23208. weight: math.unit(1000, "lb"),
  23209. name: "Front",
  23210. image: {
  23211. source: "./media/characters/alex/front.svg",
  23212. bottom: 44.5 / 620
  23213. }
  23214. },
  23215. },
  23216. [
  23217. {
  23218. name: "Micro",
  23219. height: math.unit(5, "inches")
  23220. },
  23221. {
  23222. name: "Normal",
  23223. height: math.unit(11, "feet"),
  23224. default: true
  23225. },
  23226. {
  23227. name: "Macro",
  23228. height: math.unit(9.5e9, "feet")
  23229. },
  23230. {
  23231. name: "Max Size",
  23232. height: math.unit(1.4e283, "yottameters")
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23238. {
  23239. female: {
  23240. height: math.unit(29.9, "m"),
  23241. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23242. name: "Female",
  23243. image: {
  23244. source: "./media/characters/zenari/female.svg",
  23245. extra: 3281.6 / 3217,
  23246. bottom: 72.2 / 3353
  23247. }
  23248. },
  23249. male: {
  23250. height: math.unit(27.7, "m"),
  23251. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23252. name: "Male",
  23253. image: {
  23254. source: "./media/characters/zenari/male.svg",
  23255. extra: 3008 / 2991,
  23256. bottom: 54.6 / 3069
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Macro",
  23263. height: math.unit(29.7, "meters"),
  23264. default: true
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23270. {
  23271. female: {
  23272. height: math.unit(23.8, "m"),
  23273. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23274. name: "Female",
  23275. image: {
  23276. source: "./media/characters/mactarian/female.svg",
  23277. extra: 2662 / 2569,
  23278. bottom: 73 / 2736
  23279. }
  23280. },
  23281. male: {
  23282. height: math.unit(23.8, "m"),
  23283. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23284. name: "Male",
  23285. image: {
  23286. source: "./media/characters/mactarian/male.svg",
  23287. extra: 2673 / 2600,
  23288. bottom: 76 / 2750
  23289. }
  23290. },
  23291. },
  23292. [
  23293. {
  23294. name: "Macro",
  23295. height: math.unit(23.8, "meters"),
  23296. default: true
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23302. {
  23303. female: {
  23304. height: math.unit(19.3, "m"),
  23305. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23306. name: "Female",
  23307. image: {
  23308. source: "./media/characters/umok/female.svg",
  23309. extra: 2186 / 2078,
  23310. bottom: 87 / 2277
  23311. }
  23312. },
  23313. male: {
  23314. height: math.unit(19.5, "m"),
  23315. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23316. name: "Male",
  23317. image: {
  23318. source: "./media/characters/umok/male.svg",
  23319. extra: 2233 / 2140,
  23320. bottom: 24.4 / 2258
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Macro",
  23327. height: math.unit(19.3, "meters"),
  23328. default: true
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23334. {
  23335. female: {
  23336. height: math.unit(26.15, "m"),
  23337. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23338. name: "Female",
  23339. image: {
  23340. source: "./media/characters/joraxian/female.svg",
  23341. extra: 2912 / 2824,
  23342. bottom: 36 / 2956
  23343. }
  23344. },
  23345. male: {
  23346. height: math.unit(25.4, "m"),
  23347. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23348. name: "Male",
  23349. image: {
  23350. source: "./media/characters/joraxian/male.svg",
  23351. extra: 2877 / 2721,
  23352. bottom: 82 / 2967
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Macro",
  23359. height: math.unit(26.15, "meters"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23366. {
  23367. female: {
  23368. height: math.unit(21.6, "m"),
  23369. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23370. name: "Female",
  23371. image: {
  23372. source: "./media/characters/sthara/female.svg",
  23373. extra: 2516 / 2347,
  23374. bottom: 21.5 / 2537
  23375. }
  23376. },
  23377. male: {
  23378. height: math.unit(24, "m"),
  23379. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23380. name: "Male",
  23381. image: {
  23382. source: "./media/characters/sthara/male.svg",
  23383. extra: 2732 / 2607,
  23384. bottom: 23 / 2732
  23385. }
  23386. },
  23387. },
  23388. [
  23389. {
  23390. name: "Macro",
  23391. height: math.unit(21.6, "meters"),
  23392. default: true
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23398. {
  23399. front: {
  23400. height: math.unit(6 + 4 / 12, "feet"),
  23401. weight: math.unit(175, "lb"),
  23402. name: "Front",
  23403. image: {
  23404. source: "./media/characters/luka-bryzant/front.svg",
  23405. extra: 311 / 289,
  23406. bottom: 4 / 315
  23407. }
  23408. },
  23409. back: {
  23410. height: math.unit(6 + 4 / 12, "feet"),
  23411. weight: math.unit(175, "lb"),
  23412. name: "Back",
  23413. image: {
  23414. source: "./media/characters/luka-bryzant/back.svg",
  23415. extra: 311 / 289,
  23416. bottom: 3.8 / 313.7
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Micro",
  23423. height: math.unit(10, "inches")
  23424. },
  23425. {
  23426. name: "Normal",
  23427. height: math.unit(6 + 4 / 12, "feet"),
  23428. default: true
  23429. },
  23430. {
  23431. name: "Large",
  23432. height: math.unit(12, "feet")
  23433. },
  23434. ]
  23435. ))
  23436. characterMakers.push(() => makeCharacter(
  23437. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23438. {
  23439. front: {
  23440. height: math.unit(5 + 7 / 12, "feet"),
  23441. weight: math.unit(185, "lb"),
  23442. name: "Front",
  23443. image: {
  23444. source: "./media/characters/aman-aquila/front.svg",
  23445. extra: 1013 / 976,
  23446. bottom: 45.6 / 1057
  23447. }
  23448. },
  23449. side: {
  23450. height: math.unit(5 + 7 / 12, "feet"),
  23451. weight: math.unit(185, "lb"),
  23452. name: "Side",
  23453. image: {
  23454. source: "./media/characters/aman-aquila/side.svg",
  23455. extra: 1054 / 1011,
  23456. bottom: 15 / 1070
  23457. }
  23458. },
  23459. back: {
  23460. height: math.unit(5 + 7 / 12, "feet"),
  23461. weight: math.unit(185, "lb"),
  23462. name: "Back",
  23463. image: {
  23464. source: "./media/characters/aman-aquila/back.svg",
  23465. extra: 1026 / 970,
  23466. bottom: 12 / 1039
  23467. }
  23468. },
  23469. head: {
  23470. height: math.unit(1.211, "feet"),
  23471. name: "Head",
  23472. image: {
  23473. source: "./media/characters/aman-aquila/head.svg",
  23474. }
  23475. },
  23476. },
  23477. [
  23478. {
  23479. name: "Minimicro",
  23480. height: math.unit(0.057, "inches")
  23481. },
  23482. {
  23483. name: "Micro",
  23484. height: math.unit(7, "inches")
  23485. },
  23486. {
  23487. name: "Mini",
  23488. height: math.unit(3 + 7 / 12, "feet")
  23489. },
  23490. {
  23491. name: "Normal",
  23492. height: math.unit(5 + 7 / 12, "feet"),
  23493. default: true
  23494. },
  23495. {
  23496. name: "Macro",
  23497. height: math.unit(157 + 7 / 12, "feet")
  23498. },
  23499. {
  23500. name: "Megamacro",
  23501. height: math.unit(1557 + 7 / 12, "feet")
  23502. },
  23503. {
  23504. name: "Gigamacro",
  23505. height: math.unit(15557 + 7 / 12, "feet")
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23511. {
  23512. front: {
  23513. height: math.unit(3 + 2 / 12, "inches"),
  23514. weight: math.unit(0.3, "ounces"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/hiphae/front.svg",
  23518. extra: 1931 / 1683,
  23519. bottom: 24 / 1955
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Normal",
  23526. height: math.unit(3 + 1 / 2, "inches"),
  23527. default: true
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(5 + 10 / 12, "feet"),
  23536. weight: math.unit(165, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/nicky/front.svg",
  23540. extra: 3144 / 2886,
  23541. bottom: 45.6 / 3192
  23542. }
  23543. },
  23544. back: {
  23545. height: math.unit(5 + 10 / 12, "feet"),
  23546. weight: math.unit(165, "lb"),
  23547. name: "Back",
  23548. image: {
  23549. source: "./media/characters/nicky/back.svg",
  23550. extra: 3055 / 2804,
  23551. bottom: 28.4 / 3087
  23552. }
  23553. },
  23554. frontclothed: {
  23555. height: math.unit(5 + 10 / 12, "feet"),
  23556. weight: math.unit(165, "lb"),
  23557. name: "Front-clothed",
  23558. image: {
  23559. source: "./media/characters/nicky/front-clothed.svg",
  23560. extra: 3184.9 / 2926.9,
  23561. bottom: 86.5 / 3239.9
  23562. }
  23563. },
  23564. foot: {
  23565. height: math.unit(1.16, "feet"),
  23566. name: "Foot",
  23567. image: {
  23568. source: "./media/characters/nicky/foot.svg"
  23569. }
  23570. },
  23571. feet: {
  23572. height: math.unit(1.34, "feet"),
  23573. name: "Feet",
  23574. image: {
  23575. source: "./media/characters/nicky/feet.svg"
  23576. }
  23577. },
  23578. maw: {
  23579. height: math.unit(0.9, "feet"),
  23580. name: "Maw",
  23581. image: {
  23582. source: "./media/characters/nicky/maw.svg"
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Normal",
  23589. height: math.unit(5 + 10 / 12, "feet"),
  23590. default: true
  23591. },
  23592. {
  23593. name: "Macro",
  23594. height: math.unit(60, "feet")
  23595. },
  23596. {
  23597. name: "Megamacro",
  23598. height: math.unit(1, "mile")
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23604. {
  23605. side: {
  23606. height: math.unit(10, "feet"),
  23607. weight: math.unit(600, "lb"),
  23608. name: "Side",
  23609. image: {
  23610. source: "./media/characters/blair/side.svg",
  23611. bottom: 16.6 / 475,
  23612. extra: 458 / 431
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Micro",
  23619. height: math.unit(8, "inches")
  23620. },
  23621. {
  23622. name: "Normal",
  23623. height: math.unit(10, "feet"),
  23624. default: true
  23625. },
  23626. {
  23627. name: "Macro",
  23628. height: math.unit(180, "feet")
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23634. {
  23635. front: {
  23636. height: math.unit(5 + 4 / 12, "feet"),
  23637. weight: math.unit(125, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/fisher/front.svg",
  23641. extra: 444 / 390,
  23642. bottom: 2 / 444.8
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Micro",
  23649. height: math.unit(4, "inches")
  23650. },
  23651. {
  23652. name: "Normal",
  23653. height: math.unit(5 + 4 / 12, "feet"),
  23654. default: true
  23655. },
  23656. {
  23657. name: "Macro",
  23658. height: math.unit(100, "feet")
  23659. },
  23660. ]
  23661. ))
  23662. characterMakers.push(() => makeCharacter(
  23663. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23664. {
  23665. front: {
  23666. height: math.unit(6.71, "feet"),
  23667. weight: math.unit(200, "lb"),
  23668. capacity: math.unit(1000000, "people"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/gliss/front.svg",
  23672. extra: 2347 / 2231,
  23673. bottom: 113 / 2462
  23674. }
  23675. },
  23676. hammerspaceSize: {
  23677. height: math.unit(6.71 * 717, "feet"),
  23678. weight: math.unit(200, "lb"),
  23679. capacity: math.unit(1000000, "people"),
  23680. name: "Hammerspace Size",
  23681. image: {
  23682. source: "./media/characters/gliss/front.svg",
  23683. extra: 2347 / 2231,
  23684. bottom: 113 / 2462
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(6.71, "feet"),
  23692. default: true
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23698. {
  23699. side: {
  23700. height: math.unit(1.44, "m"),
  23701. weight: math.unit(80, "kg"),
  23702. name: "Side",
  23703. image: {
  23704. source: "./media/characters/dune-anderson/side.svg",
  23705. bottom: 49 / 1426
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Wolf-sized",
  23712. height: math.unit(1.44, "meters")
  23713. },
  23714. {
  23715. name: "Normal",
  23716. height: math.unit(5.05, "meters"),
  23717. default: true
  23718. },
  23719. {
  23720. name: "Big",
  23721. height: math.unit(14.4, "meters")
  23722. },
  23723. {
  23724. name: "Huge",
  23725. height: math.unit(144, "meters")
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23731. {
  23732. front: {
  23733. height: math.unit(7, "feet"),
  23734. weight: math.unit(425, "lb"),
  23735. name: "Front",
  23736. image: {
  23737. source: "./media/characters/hind/front.svg",
  23738. extra: 2091 / 1860,
  23739. bottom: 129 / 2220
  23740. }
  23741. },
  23742. back: {
  23743. height: math.unit(7, "feet"),
  23744. weight: math.unit(425, "lb"),
  23745. name: "Back",
  23746. image: {
  23747. source: "./media/characters/hind/back.svg",
  23748. extra: 2091 / 1860,
  23749. bottom: 24.6 / 2309
  23750. }
  23751. },
  23752. tail: {
  23753. height: math.unit(2.8, "feet"),
  23754. name: "Tail",
  23755. image: {
  23756. source: "./media/characters/hind/tail.svg"
  23757. }
  23758. },
  23759. head: {
  23760. height: math.unit(2.55, "feet"),
  23761. name: "Head",
  23762. image: {
  23763. source: "./media/characters/hind/head.svg"
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "XS",
  23770. height: math.unit(0.7, "feet")
  23771. },
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(7, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "XL",
  23779. height: math.unit(70, "feet")
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(6, "feet"),
  23788. weight: math.unit(150, "lb"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/dylan-skaven/front.svg",
  23792. extra: 2318 / 2063,
  23793. bottom: 93.4 / 2410
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Nano",
  23800. height: math.unit(1, "mm")
  23801. },
  23802. {
  23803. name: "Micro",
  23804. height: math.unit(1, "cm")
  23805. },
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(2.1, "meters"),
  23809. default: true
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23815. {
  23816. front: {
  23817. height: math.unit(7 + 5 / 12, "feet"),
  23818. weight: math.unit(357, "lb"),
  23819. name: "Front",
  23820. image: {
  23821. source: "./media/characters/solex-draconov/front.svg",
  23822. extra: 1993 / 1865,
  23823. bottom: 117 / 2111
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Natural Height",
  23830. height: math.unit(7 + 5 / 12, "feet"),
  23831. default: true
  23832. },
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(350, "feet")
  23836. },
  23837. {
  23838. name: "Macro+",
  23839. height: math.unit(1000, "feet")
  23840. },
  23841. {
  23842. name: "Megamacro",
  23843. height: math.unit(20, "km")
  23844. },
  23845. {
  23846. name: "Megamacro+",
  23847. height: math.unit(1000, "km")
  23848. },
  23849. {
  23850. name: "Gigamacro",
  23851. height: math.unit(2.5, "Gm")
  23852. },
  23853. {
  23854. name: "Teramacro",
  23855. height: math.unit(15, "Tm")
  23856. },
  23857. {
  23858. name: "Galactic",
  23859. height: math.unit(30, "Zm")
  23860. },
  23861. {
  23862. name: "Universal",
  23863. height: math.unit(21000, "Ym")
  23864. },
  23865. {
  23866. name: "Omniversal",
  23867. height: math.unit(9.861e50, "Ym")
  23868. },
  23869. {
  23870. name: "Existential",
  23871. height: math.unit(1e300, "meters")
  23872. },
  23873. ]
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23877. {
  23878. side: {
  23879. height: math.unit(25, "feet"),
  23880. weight: math.unit(90000, "lb"),
  23881. name: "Side",
  23882. image: {
  23883. source: "./media/characters/mandarax/side.svg",
  23884. extra: 614 / 332,
  23885. bottom: 55 / 630
  23886. }
  23887. },
  23888. head: {
  23889. height: math.unit(11.4, "feet"),
  23890. name: "Head",
  23891. image: {
  23892. source: "./media/characters/mandarax/head.svg"
  23893. }
  23894. },
  23895. belly: {
  23896. height: math.unit(33, "feet"),
  23897. name: "Belly",
  23898. capacity: math.unit(500, "people"),
  23899. image: {
  23900. source: "./media/characters/mandarax/belly.svg"
  23901. }
  23902. },
  23903. dick: {
  23904. height: math.unit(8.46, "feet"),
  23905. name: "Dick",
  23906. image: {
  23907. source: "./media/characters/mandarax/dick.svg"
  23908. }
  23909. },
  23910. top: {
  23911. height: math.unit(28, "meters"),
  23912. name: "Top",
  23913. image: {
  23914. source: "./media/characters/mandarax/top.svg"
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(25, "feet"),
  23922. default: true
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23928. {
  23929. front: {
  23930. height: math.unit(5, "feet"),
  23931. weight: math.unit(90, "lb"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/pixil/front.svg",
  23935. extra: 2000 / 1618,
  23936. bottom: 12.3 / 2011
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Normal",
  23943. height: math.unit(5, "feet"),
  23944. default: true
  23945. },
  23946. {
  23947. name: "Megamacro",
  23948. height: math.unit(10, "miles"),
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23954. {
  23955. front: {
  23956. height: math.unit(7 + 2 / 12, "feet"),
  23957. weight: math.unit(200, "lb"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/angel/front.svg",
  23961. extra: 1830 / 1737,
  23962. bottom: 22.6 / 1854,
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Normal",
  23969. height: math.unit(7 + 2 / 12, "feet"),
  23970. default: true
  23971. },
  23972. {
  23973. name: "Macro",
  23974. height: math.unit(1000, "feet")
  23975. },
  23976. {
  23977. name: "Megamacro",
  23978. height: math.unit(2, "miles")
  23979. },
  23980. {
  23981. name: "Gigamacro",
  23982. height: math.unit(20, "earths")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(5, "feet"),
  23991. weight: math.unit(180, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/mekana/front.svg",
  23995. extra: 1671 / 1605,
  23996. bottom: 3.5 / 1691
  23997. }
  23998. },
  23999. side: {
  24000. height: math.unit(5, "feet"),
  24001. weight: math.unit(180, "lb"),
  24002. name: "Side",
  24003. image: {
  24004. source: "./media/characters/mekana/side.svg",
  24005. extra: 1671 / 1605,
  24006. bottom: 3.5 / 1691
  24007. }
  24008. },
  24009. back: {
  24010. height: math.unit(5, "feet"),
  24011. weight: math.unit(180, "lb"),
  24012. name: "Back",
  24013. image: {
  24014. source: "./media/characters/mekana/back.svg",
  24015. extra: 1671 / 1605,
  24016. bottom: 3.5 / 1691
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(5, "feet"),
  24024. default: true
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(4 + 6 / 12, "feet"),
  24033. weight: math.unit(80, "lb"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/pixie/front.svg",
  24037. extra: 1924 / 1825,
  24038. bottom: 22.4 / 1946
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Normal",
  24045. height: math.unit(4 + 6 / 12, "feet"),
  24046. default: true
  24047. },
  24048. {
  24049. name: "Macro",
  24050. height: math.unit(40, "feet")
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24056. {
  24057. front: {
  24058. height: math.unit(2.1, "meters"),
  24059. weight: math.unit(200, "lb"),
  24060. name: "Front",
  24061. image: {
  24062. source: "./media/characters/the-lascivious/front.svg",
  24063. extra: 1 / 0.893,
  24064. bottom: 3.5 / 573.7
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Human Scale",
  24071. height: math.unit(2.1, "meters")
  24072. },
  24073. {
  24074. name: "Wolxi Scale",
  24075. height: math.unit(46.2, "m"),
  24076. default: true
  24077. },
  24078. {
  24079. name: "Boinker of Buildings",
  24080. height: math.unit(10, "km")
  24081. },
  24082. {
  24083. name: "Shagger of Skyscrapers",
  24084. height: math.unit(40, "km")
  24085. },
  24086. {
  24087. name: "Banger of Boroughs",
  24088. height: math.unit(4000, "km")
  24089. },
  24090. {
  24091. name: "Screwer of States",
  24092. height: math.unit(100000, "km")
  24093. },
  24094. {
  24095. name: "Pounder of Planets",
  24096. height: math.unit(2000000, "km")
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(6, "feet"),
  24105. weight: math.unit(150, "lb"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/aj/front.svg",
  24109. extra: 2039 / 1562,
  24110. bottom: 40 / 2079
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Normal",
  24117. height: math.unit(11 + 6 / 12, "feet"),
  24118. default: true
  24119. },
  24120. {
  24121. name: "Megamacro",
  24122. height: math.unit(60, "megameters")
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24128. {
  24129. side: {
  24130. height: math.unit(31 + 8/12, "feet"),
  24131. weight: math.unit(75000, "kg"),
  24132. name: "Side",
  24133. image: {
  24134. source: "./media/characters/koros/side.svg",
  24135. extra: 1442/1297,
  24136. bottom: 122.7/1562
  24137. }
  24138. },
  24139. dicksKingsCrown: {
  24140. height: math.unit(6, "feet"),
  24141. name: "Dicks (King's Crown)",
  24142. image: {
  24143. source: "./media/characters/koros/dicks-kings-crown.svg"
  24144. }
  24145. },
  24146. dicksTailSet: {
  24147. height: math.unit(3, "feet"),
  24148. name: "Dicks (Tail Set)",
  24149. image: {
  24150. source: "./media/characters/koros/dicks-tail-set.svg"
  24151. }
  24152. },
  24153. dickCumming: {
  24154. height: math.unit(7.98, "feet"),
  24155. name: "Dick (Cumming)",
  24156. image: {
  24157. source: "./media/characters/koros/dick-cumming.svg"
  24158. }
  24159. },
  24160. dicksBack: {
  24161. height: math.unit(5.9, "feet"),
  24162. name: "Dicks (Back)",
  24163. image: {
  24164. source: "./media/characters/koros/dicks-back.svg"
  24165. }
  24166. },
  24167. dicksFront: {
  24168. height: math.unit(3.72, "feet"),
  24169. name: "Dicks (Front)",
  24170. image: {
  24171. source: "./media/characters/koros/dicks-front.svg"
  24172. }
  24173. },
  24174. dicksPeeking: {
  24175. height: math.unit(3.0, "feet"),
  24176. name: "Dicks (Peeking)",
  24177. image: {
  24178. source: "./media/characters/koros/dicks-peeking.svg"
  24179. }
  24180. },
  24181. eye: {
  24182. height: math.unit(1.7, "feet"),
  24183. name: "Eye",
  24184. image: {
  24185. source: "./media/characters/koros/eye.svg"
  24186. }
  24187. },
  24188. headFront: {
  24189. height: math.unit(11.69, "feet"),
  24190. name: "Head (Front)",
  24191. image: {
  24192. source: "./media/characters/koros/head-front.svg"
  24193. }
  24194. },
  24195. headSide: {
  24196. height: math.unit(14, "feet"),
  24197. name: "Head (Side)",
  24198. image: {
  24199. source: "./media/characters/koros/head-side.svg"
  24200. }
  24201. },
  24202. leg: {
  24203. height: math.unit(17, "feet"),
  24204. name: "Leg",
  24205. image: {
  24206. source: "./media/characters/koros/leg.svg"
  24207. }
  24208. },
  24209. mawSide: {
  24210. height: math.unit(12.8, "feet"),
  24211. name: "Maw (Side)",
  24212. image: {
  24213. source: "./media/characters/koros/maw-side.svg"
  24214. }
  24215. },
  24216. mawSpitting: {
  24217. height: math.unit(17, "feet"),
  24218. name: "Maw (Spitting)",
  24219. image: {
  24220. source: "./media/characters/koros/maw-spitting.svg"
  24221. }
  24222. },
  24223. slit: {
  24224. height: math.unit(2.8, "feet"),
  24225. name: "Slit",
  24226. image: {
  24227. source: "./media/characters/koros/slit.svg"
  24228. }
  24229. },
  24230. stomach: {
  24231. height: math.unit(6.8, "feet"),
  24232. capacity: math.unit(20, "people"),
  24233. name: "Stomach",
  24234. image: {
  24235. source: "./media/characters/koros/stomach.svg"
  24236. }
  24237. },
  24238. wingspanBottom: {
  24239. height: math.unit(114, "feet"),
  24240. name: "Wingspan (Bottom)",
  24241. image: {
  24242. source: "./media/characters/koros/wingspan-bottom.svg"
  24243. }
  24244. },
  24245. wingspanTop: {
  24246. height: math.unit(104, "feet"),
  24247. name: "Wingspan (Top)",
  24248. image: {
  24249. source: "./media/characters/koros/wingspan-top.svg"
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(31 + 8/12, "feet"),
  24257. default: true
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24263. {
  24264. front: {
  24265. height: math.unit(18 + 5/12, "feet"),
  24266. weight: math.unit(3750, "kg"),
  24267. name: "Front",
  24268. image: {
  24269. source: "./media/characters/vexx/front.svg",
  24270. extra: 426/396,
  24271. bottom: 31.5/458
  24272. }
  24273. },
  24274. maw: {
  24275. height: math.unit(6, "feet"),
  24276. name: "Maw",
  24277. image: {
  24278. source: "./media/characters/vexx/maw.svg"
  24279. }
  24280. },
  24281. },
  24282. [
  24283. {
  24284. name: "Normal",
  24285. height: math.unit(18 + 5/12, "feet"),
  24286. default: true
  24287. },
  24288. ]
  24289. ))
  24290. characterMakers.push(() => makeCharacter(
  24291. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24292. {
  24293. front: {
  24294. height: math.unit(17 + 6/12, "feet"),
  24295. weight: math.unit(150, "lb"),
  24296. name: "Front",
  24297. image: {
  24298. source: "./media/characters/baadra/front.svg",
  24299. extra: 3137/2890,
  24300. bottom: 168.4/3305
  24301. }
  24302. },
  24303. back: {
  24304. height: math.unit(17 + 6/12, "feet"),
  24305. weight: math.unit(150, "lb"),
  24306. name: "Back",
  24307. image: {
  24308. source: "./media/characters/baadra/back.svg",
  24309. extra: 3142/2890,
  24310. bottom: 220/3371
  24311. }
  24312. },
  24313. head: {
  24314. height: math.unit(5.45, "feet"),
  24315. name: "Head",
  24316. image: {
  24317. source: "./media/characters/baadra/head.svg"
  24318. }
  24319. },
  24320. headAngry: {
  24321. height: math.unit(4.95, "feet"),
  24322. name: "Head (Angry)",
  24323. image: {
  24324. source: "./media/characters/baadra/head-angry.svg"
  24325. }
  24326. },
  24327. headOpen: {
  24328. height: math.unit(6, "feet"),
  24329. name: "Head (Open)",
  24330. image: {
  24331. source: "./media/characters/baadra/head-open.svg"
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Normal",
  24338. height: math.unit(17 + 6/12, "feet"),
  24339. default: true
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24345. {
  24346. front: {
  24347. height: math.unit(7 + 3/12, "feet"),
  24348. weight: math.unit(180, "lb"),
  24349. name: "Front",
  24350. image: {
  24351. source: "./media/characters/juri/front.svg",
  24352. extra: 1401/1237,
  24353. bottom: 18.5/1418
  24354. }
  24355. },
  24356. side: {
  24357. height: math.unit(7 + 3/12, "feet"),
  24358. weight: math.unit(180, "lb"),
  24359. name: "Side",
  24360. image: {
  24361. source: "./media/characters/juri/side.svg",
  24362. extra: 1424/1242,
  24363. bottom: 18.5/1447
  24364. }
  24365. },
  24366. sitting: {
  24367. height: math.unit(6, "feet"),
  24368. weight: math.unit(180, "lb"),
  24369. name: "Sitting",
  24370. image: {
  24371. source: "./media/characters/juri/sitting.svg",
  24372. extra: 1270/1143,
  24373. bottom: 100/1343
  24374. }
  24375. },
  24376. back: {
  24377. height: math.unit(7 + 3/12, "feet"),
  24378. weight: math.unit(180, "lb"),
  24379. name: "Back",
  24380. image: {
  24381. source: "./media/characters/juri/back.svg",
  24382. extra: 1377/1240,
  24383. bottom: 23.7/1405
  24384. }
  24385. },
  24386. maw: {
  24387. height: math.unit(2.8, "feet"),
  24388. name: "Maw",
  24389. image: {
  24390. source: "./media/characters/juri/maw.svg"
  24391. }
  24392. },
  24393. stomach: {
  24394. height: math.unit(0.89, "feet"),
  24395. capacity: math.unit(4, "liters"),
  24396. name: "Stomach",
  24397. image: {
  24398. source: "./media/characters/juri/stomach.svg"
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Normal",
  24405. height: math.unit(7 + 3/12, "feet"),
  24406. default: true
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24412. {
  24413. fox: {
  24414. height: math.unit(5 + 6/12, "feet"),
  24415. weight: math.unit(140, "lb"),
  24416. name: "Fox",
  24417. image: {
  24418. source: "./media/characters/maxene-sita/fox.svg",
  24419. extra: 146/138,
  24420. bottom: 2.1/148.19
  24421. }
  24422. },
  24423. kitsune: {
  24424. height: math.unit(10, "feet"),
  24425. weight: math.unit(800, "lb"),
  24426. name: "Kitsune",
  24427. image: {
  24428. source: "./media/characters/maxene-sita/kitsune.svg",
  24429. extra: 185/176,
  24430. bottom: 4.7/189.9
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Normal",
  24437. height: math.unit(5 + 6/12, "feet"),
  24438. default: true
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24444. {
  24445. front: {
  24446. height: math.unit(3 + 4/12, "feet"),
  24447. weight: math.unit(70, "lb"),
  24448. name: "Front",
  24449. image: {
  24450. source: "./media/characters/maia/front.svg",
  24451. extra: 227/219.5,
  24452. bottom: 40 / 267
  24453. }
  24454. },
  24455. back: {
  24456. height: math.unit(3 + 4/12, "feet"),
  24457. weight: math.unit(70, "lb"),
  24458. name: "Back",
  24459. image: {
  24460. source: "./media/characters/maia/back.svg",
  24461. extra: 237/225
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Normal",
  24468. height: math.unit(3 + 4/12, "feet"),
  24469. default: true
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24475. {
  24476. front: {
  24477. height: math.unit(5 + 10/12, "feet"),
  24478. weight: math.unit(197, "lb"),
  24479. name: "Front",
  24480. image: {
  24481. source: "./media/characters/jabaro/front.svg",
  24482. extra: 225/216,
  24483. bottom: 5.06/230
  24484. }
  24485. },
  24486. back: {
  24487. height: math.unit(5 + 10/12, "feet"),
  24488. weight: math.unit(197, "lb"),
  24489. name: "Back",
  24490. image: {
  24491. source: "./media/characters/jabaro/back.svg",
  24492. extra: 225/219,
  24493. bottom: 1.9/227
  24494. }
  24495. },
  24496. },
  24497. [
  24498. {
  24499. name: "Normal",
  24500. height: math.unit(5 + 10/12, "feet"),
  24501. default: true
  24502. },
  24503. ]
  24504. ))
  24505. characterMakers.push(() => makeCharacter(
  24506. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24507. {
  24508. front: {
  24509. height: math.unit(5 + 8/12, "feet"),
  24510. weight: math.unit(139, "lb"),
  24511. name: "Front",
  24512. image: {
  24513. source: "./media/characters/risa/front.svg",
  24514. extra: 270/260,
  24515. bottom: 11.2/282
  24516. }
  24517. },
  24518. back: {
  24519. height: math.unit(5 + 8/12, "feet"),
  24520. weight: math.unit(139, "lb"),
  24521. name: "Back",
  24522. image: {
  24523. source: "./media/characters/risa/back.svg",
  24524. extra: 264/255,
  24525. bottom: 4/268
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(5 + 8/12, "feet"),
  24533. default: true
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24539. {
  24540. front: {
  24541. height: math.unit(2 + 11/12, "feet"),
  24542. weight: math.unit(30, "lb"),
  24543. name: "Front",
  24544. image: {
  24545. source: "./media/characters/weatley/front.svg",
  24546. bottom: 10.7/414,
  24547. extra: 403.5/362
  24548. }
  24549. },
  24550. back: {
  24551. height: math.unit(2 + 11/12, "feet"),
  24552. weight: math.unit(30, "lb"),
  24553. name: "Back",
  24554. image: {
  24555. source: "./media/characters/weatley/back.svg",
  24556. bottom: 10.7/414,
  24557. extra: 403.5/362
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(2 + 11/12, "feet"),
  24565. default: true
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24571. {
  24572. front: {
  24573. height: math.unit(5 + 2/12, "feet"),
  24574. weight: math.unit(50, "kg"),
  24575. name: "Front",
  24576. image: {
  24577. source: "./media/characters/mercury-crescent/front.svg",
  24578. extra: 1088/1033,
  24579. bottom: 18.9/1109
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(5 + 2/12, "feet"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(2, "feet"),
  24596. weight: math.unit(15, "kg"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/diamond-jones/front.svg",
  24600. bottom: 16/568
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Normal",
  24607. height: math.unit(2, "feet"),
  24608. default: true
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24614. {
  24615. front: {
  24616. height: math.unit(3, "feet"),
  24617. weight: math.unit(30, "kg"),
  24618. name: "Front",
  24619. image: {
  24620. source: "./media/characters/sweet-bit/front.svg",
  24621. extra: 675/567,
  24622. bottom: 27.7/703
  24623. }
  24624. },
  24625. },
  24626. [
  24627. {
  24628. name: "Normal",
  24629. height: math.unit(3, "feet"),
  24630. default: true
  24631. },
  24632. ]
  24633. ))
  24634. characterMakers.push(() => makeCharacter(
  24635. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24636. {
  24637. side: {
  24638. height: math.unit(9.178, "feet"),
  24639. weight: math.unit(500, "lb"),
  24640. name: "Side",
  24641. image: {
  24642. source: "./media/characters/umbrazen/side.svg",
  24643. extra: 1730/1473,
  24644. bottom: 34.6/1765
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Normal",
  24651. height: math.unit(9.178, "feet"),
  24652. default: true
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24658. {
  24659. front: {
  24660. height: math.unit(10, "feet"),
  24661. weight: math.unit(750, "lb"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/arlist/front.svg",
  24665. extra: 961/778,
  24666. bottom: 6.2/986
  24667. }
  24668. },
  24669. },
  24670. [
  24671. {
  24672. name: "Normal",
  24673. height: math.unit(10, "feet"),
  24674. default: true
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24680. {
  24681. front: {
  24682. height: math.unit(5 + 1/12, "feet"),
  24683. weight: math.unit(110, "lb"),
  24684. name: "Front",
  24685. image: {
  24686. source: "./media/characters/aradel/front.svg",
  24687. extra: 324/303,
  24688. bottom: 3.6/329.4
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(5 + 1/12, "feet"),
  24696. default: true
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(3 + 8/12, "feet"),
  24705. weight: math.unit(50, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/serryn/front.svg",
  24709. extra: 1792/1656,
  24710. bottom: 43.5/1840
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(3 + 8/12, "feet"),
  24718. default: true
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Xavier Thyme" },
  24724. {
  24725. front: {
  24726. height: math.unit(7 + 10/12, "feet"),
  24727. weight: math.unit(255, "lb"),
  24728. name: "Front",
  24729. image: {
  24730. source: "./media/characters/xavier-thyme/front.svg",
  24731. extra: 3733/3642,
  24732. bottom: 131/3869
  24733. }
  24734. },
  24735. frontRaven: {
  24736. height: math.unit(7 + 10/12, "feet"),
  24737. weight: math.unit(255, "lb"),
  24738. name: "Front (Raven)",
  24739. image: {
  24740. source: "./media/characters/xavier-thyme/front-raven.svg",
  24741. extra: 4385/3642,
  24742. bottom: 131/4517
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(7 + 10/12, "feet"),
  24750. default: true
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24756. {
  24757. front: {
  24758. height: math.unit(1.6, "m"),
  24759. weight: math.unit(50, "kg"),
  24760. name: "Front",
  24761. image: {
  24762. source: "./media/characters/kiki/front.svg",
  24763. extra: 4682/3610,
  24764. bottom: 115/4777
  24765. }
  24766. },
  24767. },
  24768. [
  24769. {
  24770. name: "Normal",
  24771. height: math.unit(1.6, "meters"),
  24772. default: true
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(50, "m"),
  24781. weight: math.unit(500, "tonnes"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/ryoko/front.svg",
  24785. extra: 4632/3926,
  24786. bottom: 193/4823
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(50, "meters"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(30, "m"),
  24803. weight: math.unit(22, "tonnes"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/elio/front.svg",
  24807. extra: 4582/3720,
  24808. bottom: 236/4828
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Normal",
  24815. height: math.unit(30, "meters"),
  24816. default: true
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(6 + 3/12, "feet"),
  24825. weight: math.unit(120, "lb"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/azura/front.svg",
  24829. extra: 1149/1135,
  24830. bottom: 45/1194
  24831. }
  24832. },
  24833. frontClothed: {
  24834. height: math.unit(6 + 3/12, "feet"),
  24835. weight: math.unit(120, "lb"),
  24836. name: "Front (Clothed)",
  24837. image: {
  24838. source: "./media/characters/azura/front-clothed.svg",
  24839. extra: 1149/1135,
  24840. bottom: 45/1194
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(6 + 3/12, "feet"),
  24848. default: true
  24849. },
  24850. {
  24851. name: "Macro",
  24852. height: math.unit(20 + 6/12, "feet")
  24853. },
  24854. {
  24855. name: "Megamacro",
  24856. height: math.unit(12, "miles")
  24857. },
  24858. {
  24859. name: "Gigamacro",
  24860. height: math.unit(10000, "miles")
  24861. },
  24862. {
  24863. name: "Teramacro",
  24864. height: math.unit(900000, "miles")
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24870. {
  24871. front: {
  24872. height: math.unit(12, "feet"),
  24873. weight: math.unit(1, "ton"),
  24874. capacity: math.unit(660000, "gallons"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/zeus/front.svg",
  24878. extra: 5005/4717,
  24879. bottom: 363/5388
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(12, "feet")
  24887. },
  24888. {
  24889. name: "Preferred Size",
  24890. height: math.unit(0.5, "miles"),
  24891. default: true
  24892. },
  24893. {
  24894. name: "Giga Horse",
  24895. height: math.unit(300, "miles")
  24896. },
  24897. {
  24898. name: "Riding Planets",
  24899. height: math.unit(30, "megameters")
  24900. },
  24901. {
  24902. name: "Cosmic Giant",
  24903. height: math.unit(3, "zettameters")
  24904. },
  24905. {
  24906. name: "Breeding God",
  24907. height: math.unit(9.92e22, "yottameters")
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24913. {
  24914. side: {
  24915. height: math.unit(9, "feet"),
  24916. weight: math.unit(1500, "kg"),
  24917. name: "Side",
  24918. image: {
  24919. source: "./media/characters/fang/side.svg",
  24920. extra: 924/866,
  24921. bottom: 47.5/972.3
  24922. }
  24923. },
  24924. },
  24925. [
  24926. {
  24927. name: "Normal",
  24928. height: math.unit(9, "feet"),
  24929. default: true
  24930. },
  24931. {
  24932. name: "Macro",
  24933. height: math.unit(75 + 6/12, "feet")
  24934. },
  24935. {
  24936. name: "Teramacro",
  24937. height: math.unit(50000, "miles")
  24938. },
  24939. ]
  24940. ))
  24941. characterMakers.push(() => makeCharacter(
  24942. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  24943. {
  24944. front: {
  24945. height: math.unit(10, "feet"),
  24946. weight: math.unit(2, "tons"),
  24947. name: "Front",
  24948. image: {
  24949. source: "./media/characters/rekhit/front.svg",
  24950. extra: 2796/2590,
  24951. bottom: 225/3022
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(10, "feet"),
  24959. default: true
  24960. },
  24961. {
  24962. name: "Macro",
  24963. height: math.unit(500, "feet")
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Dahlia Verrick" },
  24969. {
  24970. front: {
  24971. height: math.unit(7 + 6.451/12, "feet"),
  24972. weight: math.unit(310, "lb"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/dahlia-verrick/front.svg",
  24976. extra: 1488/1365,
  24977. bottom: 6.2/1495
  24978. }
  24979. },
  24980. back: {
  24981. height: math.unit(7 + 6.451/12, "feet"),
  24982. weight: math.unit(310, "lb"),
  24983. name: "Back",
  24984. image: {
  24985. source: "./media/characters/dahlia-verrick/back.svg",
  24986. extra: 1472/1351,
  24987. bottom: 5.28/1477
  24988. }
  24989. },
  24990. frontBusiness: {
  24991. height: math.unit(7 + 6.451/12, "feet"),
  24992. weight: math.unit(200, "lb"),
  24993. name: "Front (Business)",
  24994. image: {
  24995. source: "./media/characters/dahlia-verrick/front-business.svg",
  24996. extra: 1478/1381,
  24997. bottom: 5.5/1484
  24998. }
  24999. },
  25000. frontCasual: {
  25001. height: math.unit(7 + 6.451/12, "feet"),
  25002. weight: math.unit(200, "lb"),
  25003. name: "Front (Casual)",
  25004. image: {
  25005. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25006. extra: 1478/1381,
  25007. bottom: 5.5/1484
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Travel-Sized",
  25014. height: math.unit(7.45, "inches")
  25015. },
  25016. {
  25017. name: "Normal",
  25018. height: math.unit(7 + 6.451/12, "feet"),
  25019. default: true
  25020. },
  25021. {
  25022. name: "Hitting the Town",
  25023. height: math.unit(37 + 8/12, "feet")
  25024. },
  25025. {
  25026. name: "Stomp in the Suburbs",
  25027. height: math.unit(964 + 9.728/12, "feet")
  25028. },
  25029. {
  25030. name: "Sit on the City",
  25031. height: math.unit(61747 + 10.592/12, "feet")
  25032. },
  25033. {
  25034. name: "Glomp the Globe",
  25035. height: math.unit(252919327 + 4.832/12, "feet")
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(6 + 4/12, "feet"),
  25044. weight: math.unit(320, "lb"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/balina-mahigan/front.svg",
  25048. extra: 447/428,
  25049. bottom: 18/466
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(6 + 4/12, "feet"),
  25054. weight: math.unit(320, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/balina-mahigan/back.svg",
  25058. extra: 445/428,
  25059. bottom: 4.07/448
  25060. }
  25061. },
  25062. arm: {
  25063. height: math.unit(1.88, "feet"),
  25064. name: "Arm",
  25065. image: {
  25066. source: "./media/characters/balina-mahigan/arm.svg"
  25067. }
  25068. },
  25069. backPort: {
  25070. height: math.unit(0.685, "feet"),
  25071. name: "Back Port",
  25072. image: {
  25073. source: "./media/characters/balina-mahigan/back-port.svg"
  25074. }
  25075. },
  25076. hoofpaw: {
  25077. height: math.unit(1.41, "feet"),
  25078. name: "Hoofpaw",
  25079. image: {
  25080. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25081. }
  25082. },
  25083. leftHandBack: {
  25084. height: math.unit(0.938, "feet"),
  25085. name: "Left Hand (Back)",
  25086. image: {
  25087. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25088. }
  25089. },
  25090. leftHandFront: {
  25091. height: math.unit(0.938, "feet"),
  25092. name: "Left Hand (Front)",
  25093. image: {
  25094. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25095. }
  25096. },
  25097. rightHandBack: {
  25098. height: math.unit(0.95, "feet"),
  25099. name: "Right Hand (Back)",
  25100. image: {
  25101. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25102. }
  25103. },
  25104. rightHandFront: {
  25105. height: math.unit(0.95, "feet"),
  25106. name: "Right Hand (Front)",
  25107. image: {
  25108. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(6 + 4/12, "feet"),
  25116. default: true
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25122. {
  25123. front: {
  25124. height: math.unit(6, "feet"),
  25125. weight: math.unit(320, "lb"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/balina-mejeri/front.svg",
  25129. extra: 517/488,
  25130. bottom: 44.2/561
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Normal",
  25137. height: math.unit(6 + 4/12, "feet")
  25138. },
  25139. {
  25140. name: "Business",
  25141. height: math.unit(155, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25148. {
  25149. kneeling: {
  25150. height: math.unit(6 + 4/12, "feet"),
  25151. weight: math.unit(300*20, "lb"),
  25152. name: "Kneeling",
  25153. image: {
  25154. source: "./media/characters/balbarian/kneeling.svg",
  25155. extra: 922/862,
  25156. bottom: 42.4/965
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(6 + 4/12, "feet")
  25164. },
  25165. {
  25166. name: "Treasured",
  25167. height: math.unit(18 + 9/12, "feet"),
  25168. default: true
  25169. },
  25170. {
  25171. name: "Macro",
  25172. height: math.unit(900, "feet")
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(6 + 4/12, "feet"),
  25181. weight: math.unit(325, "lb"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/balina-amarini/front.svg",
  25185. extra: 415/403,
  25186. bottom: 19/433.4
  25187. }
  25188. },
  25189. back: {
  25190. height: math.unit(6 + 4/12, "feet"),
  25191. weight: math.unit(325, "lb"),
  25192. name: "Back",
  25193. image: {
  25194. source: "./media/characters/balina-amarini/back.svg",
  25195. extra: 415/403,
  25196. bottom: 13.5/432
  25197. }
  25198. },
  25199. overdrive: {
  25200. height: math.unit(6 + 4/12, "feet"),
  25201. weight: math.unit(400, "lb"),
  25202. name: "Overdrive",
  25203. image: {
  25204. source: "./media/characters/balina-amarini/overdrive.svg",
  25205. extra: 269/259,
  25206. bottom: 12/282
  25207. }
  25208. },
  25209. },
  25210. [
  25211. {
  25212. name: "Boom",
  25213. height: math.unit(9 + 10/12, "feet"),
  25214. default: true
  25215. },
  25216. {
  25217. name: "Macro",
  25218. height: math.unit(280, "feet")
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25224. {
  25225. goddess: {
  25226. height: math.unit(600, "feet"),
  25227. weight: math.unit(2000000, "tons"),
  25228. name: "Goddess",
  25229. image: {
  25230. source: "./media/characters/lady-kubwa/goddess.svg",
  25231. extra: 1240.5/1223,
  25232. bottom: 22/1263
  25233. }
  25234. },
  25235. goddesser: {
  25236. height: math.unit(900, "feet"),
  25237. weight: math.unit(20000000, "lb"),
  25238. name: "Goddess-er",
  25239. image: {
  25240. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25241. extra: 899/888,
  25242. bottom: 12.6/912
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(600, "feet"),
  25250. default: true
  25251. },
  25252. {
  25253. name: "Megamacro",
  25254. height: math.unit(250, "miles")
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25260. {
  25261. front: {
  25262. height: math.unit(7 + 7/12, "feet"),
  25263. weight: math.unit(250, "lb"),
  25264. name: "Front",
  25265. image: {
  25266. source: "./media/characters/tala-grovehorn/front.svg",
  25267. extra: 2636/2525,
  25268. bottom: 147/2781
  25269. }
  25270. },
  25271. back: {
  25272. height: math.unit(7 + 7/12, "feet"),
  25273. weight: math.unit(250, "lb"),
  25274. name: "Back",
  25275. image: {
  25276. source: "./media/characters/tala-grovehorn/back.svg",
  25277. extra: 2635/2539,
  25278. bottom: 100/2732.8
  25279. }
  25280. },
  25281. mouth: {
  25282. height: math.unit(1.15, "feet"),
  25283. name: "Mouth",
  25284. image: {
  25285. source: "./media/characters/tala-grovehorn/mouth.svg"
  25286. }
  25287. },
  25288. dick: {
  25289. height: math.unit(2.36, "feet"),
  25290. name: "Dick",
  25291. image: {
  25292. source: "./media/characters/tala-grovehorn/dick.svg"
  25293. }
  25294. },
  25295. slit: {
  25296. height: math.unit(0.61, "feet"),
  25297. name: "Slit",
  25298. image: {
  25299. source: "./media/characters/tala-grovehorn/slit.svg"
  25300. }
  25301. },
  25302. },
  25303. [
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(7 + 7/12, "feet"),
  25311. weight: math.unit(225, "lb"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/epona/front.svg",
  25315. extra: 2445/2290,
  25316. bottom: 251/2696
  25317. }
  25318. },
  25319. back: {
  25320. height: math.unit(7 + 7/12, "feet"),
  25321. weight: math.unit(225, "lb"),
  25322. name: "Back",
  25323. image: {
  25324. source: "./media/characters/epona/back.svg",
  25325. extra: 2546/2408,
  25326. bottom: 44/2589
  25327. }
  25328. },
  25329. genitals: {
  25330. height: math.unit(1.5, "feet"),
  25331. name: "Genitals",
  25332. image: {
  25333. source: "./media/characters/epona/genitals.svg"
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Normal",
  25340. height: math.unit(7 + 7/12, "feet")
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(7, "feet"),
  25349. weight: math.unit(518, "lb"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/avia-bloodbourn/front.svg",
  25353. extra: 1466/1350,
  25354. bottom: 65/1527
  25355. }
  25356. },
  25357. },
  25358. [
  25359. ]
  25360. ))
  25361. characterMakers.push(() => makeCharacter(
  25362. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25363. {
  25364. front: {
  25365. height: math.unit(9.35, "feet"),
  25366. weight: math.unit(600, "lb"),
  25367. name: "Front",
  25368. image: {
  25369. source: "./media/characters/amera/front.svg",
  25370. extra: 891/818,
  25371. bottom: 30/922.7
  25372. }
  25373. },
  25374. back: {
  25375. height: math.unit(9.35, "feet"),
  25376. weight: math.unit(600, "lb"),
  25377. name: "Back",
  25378. image: {
  25379. source: "./media/characters/amera/back.svg",
  25380. extra: 876/824,
  25381. bottom: 6.8/884
  25382. }
  25383. },
  25384. dick: {
  25385. height: math.unit(2.14, "feet"),
  25386. name: "Dick",
  25387. image: {
  25388. source: "./media/characters/amera/dick.svg"
  25389. }
  25390. },
  25391. },
  25392. [
  25393. {
  25394. name: "Normal",
  25395. height: math.unit(9.35, "feet"),
  25396. default: true
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25402. {
  25403. kneeling: {
  25404. height: math.unit(3 + 4/12, "feet"),
  25405. weight: math.unit(90, "lb"),
  25406. name: "Kneeling",
  25407. image: {
  25408. source: "./media/characters/rosewen/kneeling.svg",
  25409. extra: 1835/1571,
  25410. bottom: 27.7/1862
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(3 + 4/12, "feet"),
  25418. default: true
  25419. },
  25420. ]
  25421. ))
  25422. characterMakers.push(() => makeCharacter(
  25423. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25424. {
  25425. front: {
  25426. height: math.unit(5 + 10/12, "feet"),
  25427. weight: math.unit(200, "lb"),
  25428. name: "Front",
  25429. image: {
  25430. source: "./media/characters/sabah/front.svg",
  25431. extra: 849/763,
  25432. bottom: 33.9/881
  25433. }
  25434. },
  25435. },
  25436. [
  25437. {
  25438. name: "Normal",
  25439. height: math.unit(5 + 10/12, "feet"),
  25440. default: true
  25441. },
  25442. ]
  25443. ))
  25444. //characters
  25445. function makeCharacters() {
  25446. const results = [];
  25447. characterMakers.forEach(character => {
  25448. results.push(character());
  25449. });
  25450. return results;
  25451. }