less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

26355 строки
655 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. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. }
  1284. //species
  1285. function getSpeciesInfo(speciesList) {
  1286. let result = new Set();
  1287. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1288. result.add(entry)
  1289. });
  1290. return Array.from(result);
  1291. };
  1292. function getSpeciesInfoHelper(species) {
  1293. if (!speciesData[species]) {
  1294. console.warn(species + " doesn't exist");
  1295. return [];
  1296. }
  1297. if (speciesData[species].parents) {
  1298. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1299. } else {
  1300. return [species];
  1301. }
  1302. }
  1303. characterMakers.push(() => makeCharacter(
  1304. {
  1305. name: "Fen",
  1306. species: ["crux"],
  1307. description: {
  1308. title: "Bio",
  1309. text: "Very furry. Sheds on everything."
  1310. },
  1311. tags: [
  1312. "anthro",
  1313. "goo"
  1314. ]
  1315. },
  1316. {
  1317. back: {
  1318. height: math.unit(2.2428, "meter"),
  1319. weight: math.unit(124.738, "kg"),
  1320. name: "Back",
  1321. image: {
  1322. source: "./media/characters/fen/back.svg",
  1323. extra: 1025 / 935,
  1324. bottom: 0.01
  1325. },
  1326. info: {
  1327. description: {
  1328. mode: "append",
  1329. text: "\n\nHe is not currently looking at you."
  1330. }
  1331. }
  1332. },
  1333. full: {
  1334. height: math.unit(1.34, "meter"),
  1335. weight: math.unit(225, "kg"),
  1336. name: "Full",
  1337. image: {
  1338. source: "./media/characters/fen/full.svg"
  1339. },
  1340. info: {
  1341. description: {
  1342. mode: "append",
  1343. text: "\n\nMunch."
  1344. }
  1345. }
  1346. },
  1347. kneeling: {
  1348. height: math.unit(5.4, "feet"),
  1349. weight: math.unit(124.738, "kg"),
  1350. name: "Kneeling",
  1351. image: {
  1352. source: "./media/characters/fen/kneeling.svg",
  1353. extra: 563 / 507
  1354. }
  1355. },
  1356. goo: {
  1357. height: math.unit(2.8, "feet"),
  1358. weight: math.unit(125, "kg"),
  1359. capacity: math.unit(1, "people"),
  1360. name: "Goo",
  1361. image: {
  1362. source: "./media/characters/fen/goo.svg",
  1363. bottom: 116 / 613
  1364. }
  1365. },
  1366. lounging: {
  1367. height: math.unit(6.5, "feet"),
  1368. weight: math.unit(125, "kg"),
  1369. name: "Lounging",
  1370. image: {
  1371. source: "./media/characters/fen/lounging.svg"
  1372. }
  1373. },
  1374. },
  1375. [
  1376. {
  1377. name: "Normal",
  1378. height: math.unit(2.2428, "meter")
  1379. },
  1380. {
  1381. name: "Big",
  1382. height: math.unit(12, "feet")
  1383. },
  1384. {
  1385. name: "Minimacro",
  1386. height: math.unit(40, "feet"),
  1387. default: true,
  1388. info: {
  1389. description: {
  1390. mode: "append",
  1391. text: "\n\nTOO DAMN BIG"
  1392. }
  1393. }
  1394. },
  1395. {
  1396. name: "Macro",
  1397. height: math.unit(100, "feet"),
  1398. info: {
  1399. description: {
  1400. mode: "append",
  1401. text: "\n\nTOO DAMN BIG"
  1402. }
  1403. }
  1404. },
  1405. {
  1406. name: "Macro+",
  1407. height: math.unit(300, "feet")
  1408. },
  1409. {
  1410. name: "Megamacro",
  1411. height: math.unit(2, "miles")
  1412. }
  1413. ]
  1414. ))
  1415. characterMakers.push(() => makeCharacter(
  1416. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1417. {
  1418. front: {
  1419. height: math.unit(183, "cm"),
  1420. weight: math.unit(80, "kg"),
  1421. name: "Front",
  1422. image: {
  1423. source: "./media/characters/sofia-fluttertail/front.svg",
  1424. bottom: 0.01,
  1425. extra: 2154 / 2081
  1426. }
  1427. },
  1428. frontAlt: {
  1429. height: math.unit(183, "cm"),
  1430. weight: math.unit(80, "kg"),
  1431. name: "Front (alt)",
  1432. image: {
  1433. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1434. }
  1435. },
  1436. back: {
  1437. height: math.unit(183, "cm"),
  1438. weight: math.unit(80, "kg"),
  1439. name: "Back",
  1440. image: {
  1441. source: "./media/characters/sofia-fluttertail/back.svg"
  1442. }
  1443. },
  1444. kneeling: {
  1445. height: math.unit(125, "cm"),
  1446. weight: math.unit(80, "kg"),
  1447. name: "Kneeling",
  1448. image: {
  1449. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1450. extra: 1033 / 977,
  1451. bottom: 23.7 / 1057
  1452. }
  1453. },
  1454. maw: {
  1455. height: math.unit(183 / 5, "cm"),
  1456. name: "Maw",
  1457. image: {
  1458. source: "./media/characters/sofia-fluttertail/maw.svg"
  1459. }
  1460. },
  1461. mawcloseup: {
  1462. height: math.unit(183 / 5 * 0.41, "cm"),
  1463. name: "Maw (Closeup)",
  1464. image: {
  1465. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1466. }
  1467. },
  1468. },
  1469. [
  1470. {
  1471. name: "Normal",
  1472. height: math.unit(1.83, "meter")
  1473. },
  1474. {
  1475. name: "Size Thief",
  1476. height: math.unit(18, "feet")
  1477. },
  1478. {
  1479. name: "50 Foot Collie",
  1480. height: math.unit(50, "feet")
  1481. },
  1482. {
  1483. name: "Macro",
  1484. height: math.unit(96, "feet"),
  1485. default: true
  1486. },
  1487. {
  1488. name: "Megamerger",
  1489. height: math.unit(650, "feet")
  1490. },
  1491. ]
  1492. ))
  1493. characterMakers.push(() => makeCharacter(
  1494. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1495. {
  1496. front: {
  1497. height: math.unit(7, "feet"),
  1498. weight: math.unit(100, "kg"),
  1499. name: "Front",
  1500. image: {
  1501. source: "./media/characters/march/front.svg",
  1502. extra: 1,
  1503. bottom: 0.015
  1504. }
  1505. },
  1506. foot: {
  1507. height: math.unit(0.9, "feet"),
  1508. name: "Foot",
  1509. image: {
  1510. source: "./media/characters/march/foot.svg"
  1511. }
  1512. },
  1513. },
  1514. [
  1515. {
  1516. name: "Normal",
  1517. height: math.unit(7.9, "feet")
  1518. },
  1519. {
  1520. name: "Macro",
  1521. height: math.unit(220, "meters")
  1522. },
  1523. {
  1524. name: "Megamacro",
  1525. height: math.unit(2.98, "km"),
  1526. default: true
  1527. },
  1528. {
  1529. name: "Gigamacro",
  1530. height: math.unit(15963, "km")
  1531. },
  1532. {
  1533. name: "Teramacro",
  1534. height: math.unit(2980000000, "km")
  1535. },
  1536. {
  1537. name: "Examacro",
  1538. height: math.unit(250, "parsecs")
  1539. },
  1540. ]
  1541. ))
  1542. characterMakers.push(() => makeCharacter(
  1543. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1544. {
  1545. front: {
  1546. height: math.unit(6, "feet"),
  1547. weight: math.unit(60, "kg"),
  1548. name: "Front",
  1549. image: {
  1550. source: "./media/characters/noir/front.svg",
  1551. extra: 1,
  1552. bottom: 0.032
  1553. }
  1554. },
  1555. },
  1556. [
  1557. {
  1558. name: "Normal",
  1559. height: math.unit(6.6, "feet")
  1560. },
  1561. {
  1562. name: "Macro",
  1563. height: math.unit(500, "feet")
  1564. },
  1565. {
  1566. name: "Megamacro",
  1567. height: math.unit(2.5, "km"),
  1568. default: true
  1569. },
  1570. {
  1571. name: "Gigamacro",
  1572. height: math.unit(22500, "km")
  1573. },
  1574. {
  1575. name: "Teramacro",
  1576. height: math.unit(2500000000, "km")
  1577. },
  1578. {
  1579. name: "Examacro",
  1580. height: math.unit(200, "parsecs")
  1581. },
  1582. ]
  1583. ))
  1584. characterMakers.push(() => makeCharacter(
  1585. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1586. {
  1587. front: {
  1588. height: math.unit(7, "feet"),
  1589. weight: math.unit(100, "kg"),
  1590. name: "Front",
  1591. image: {
  1592. source: "./media/characters/okuri/front.svg",
  1593. extra: 1,
  1594. bottom: 0.037
  1595. }
  1596. },
  1597. back: {
  1598. height: math.unit(7, "feet"),
  1599. weight: math.unit(100, "kg"),
  1600. name: "Back",
  1601. image: {
  1602. source: "./media/characters/okuri/back.svg",
  1603. extra: 1,
  1604. bottom: 0.007
  1605. }
  1606. },
  1607. },
  1608. [
  1609. {
  1610. name: "Megamacro",
  1611. height: math.unit(100, "miles"),
  1612. default: true
  1613. },
  1614. ]
  1615. ))
  1616. characterMakers.push(() => makeCharacter(
  1617. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1618. {
  1619. front: {
  1620. height: math.unit(7, "feet"),
  1621. weight: math.unit(100, "kg"),
  1622. name: "Front",
  1623. image: {
  1624. source: "./media/characters/manny/front.svg",
  1625. extra: 1,
  1626. bottom: 0.06
  1627. }
  1628. },
  1629. back: {
  1630. height: math.unit(7, "feet"),
  1631. weight: math.unit(100, "kg"),
  1632. name: "Back",
  1633. image: {
  1634. source: "./media/characters/manny/back.svg",
  1635. extra: 1,
  1636. bottom: 0.014
  1637. }
  1638. },
  1639. },
  1640. [
  1641. {
  1642. name: "Normal",
  1643. height: math.unit(7, "feet"),
  1644. },
  1645. {
  1646. name: "Macro",
  1647. height: math.unit(78, "feet"),
  1648. default: true
  1649. },
  1650. {
  1651. name: "Macro+",
  1652. height: math.unit(300, "meters")
  1653. },
  1654. {
  1655. name: "Macro++",
  1656. height: math.unit(2400, "meters")
  1657. },
  1658. {
  1659. name: "Megamacro",
  1660. height: math.unit(5167, "meters")
  1661. },
  1662. {
  1663. name: "Gigamacro",
  1664. height: math.unit(41769, "miles")
  1665. },
  1666. ]
  1667. ))
  1668. characterMakers.push(() => makeCharacter(
  1669. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1670. {
  1671. front: {
  1672. height: math.unit(7, "feet"),
  1673. weight: math.unit(100, "kg"),
  1674. name: "Front",
  1675. image: {
  1676. source: "./media/characters/adake/front-1.svg"
  1677. }
  1678. },
  1679. frontAlt: {
  1680. height: math.unit(7, "feet"),
  1681. weight: math.unit(100, "kg"),
  1682. name: "Front (Alt)",
  1683. image: {
  1684. source: "./media/characters/adake/front-2.svg",
  1685. extra: 1,
  1686. bottom: 0.01
  1687. }
  1688. },
  1689. back: {
  1690. height: math.unit(7, "feet"),
  1691. weight: math.unit(100, "kg"),
  1692. name: "Back",
  1693. image: {
  1694. source: "./media/characters/adake/back.svg",
  1695. }
  1696. },
  1697. kneel: {
  1698. height: math.unit(5.385, "feet"),
  1699. weight: math.unit(100, "kg"),
  1700. name: "Kneeling",
  1701. image: {
  1702. source: "./media/characters/adake/kneel.svg",
  1703. bottom: 0.052
  1704. }
  1705. },
  1706. },
  1707. [
  1708. {
  1709. name: "Normal",
  1710. height: math.unit(7, "feet"),
  1711. },
  1712. {
  1713. name: "Macro",
  1714. height: math.unit(78, "feet"),
  1715. default: true
  1716. },
  1717. {
  1718. name: "Macro+",
  1719. height: math.unit(300, "meters")
  1720. },
  1721. {
  1722. name: "Macro++",
  1723. height: math.unit(2400, "meters")
  1724. },
  1725. {
  1726. name: "Megamacro",
  1727. height: math.unit(5167, "meters")
  1728. },
  1729. {
  1730. name: "Gigamacro",
  1731. height: math.unit(41769, "miles")
  1732. },
  1733. ]
  1734. ))
  1735. characterMakers.push(() => makeCharacter(
  1736. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1737. {
  1738. front: {
  1739. height: math.unit(1.65, "meters"),
  1740. weight: math.unit(50, "kg"),
  1741. name: "Front",
  1742. image: {
  1743. source: "./media/characters/elijah/front.svg",
  1744. extra: 858 / 830,
  1745. bottom: 95.5 / 953.8559
  1746. }
  1747. },
  1748. back: {
  1749. height: math.unit(1.65, "meters"),
  1750. weight: math.unit(50, "kg"),
  1751. name: "Back",
  1752. image: {
  1753. source: "./media/characters/elijah/back.svg",
  1754. extra: 895 / 850,
  1755. bottom: 5.3 / 897.956
  1756. }
  1757. },
  1758. frontNsfw: {
  1759. height: math.unit(1.65, "meters"),
  1760. weight: math.unit(50, "kg"),
  1761. name: "Front (NSFW)",
  1762. image: {
  1763. source: "./media/characters/elijah/front-nsfw.svg",
  1764. extra: 858 / 830,
  1765. bottom: 95.5 / 953.8559
  1766. }
  1767. },
  1768. backNsfw: {
  1769. height: math.unit(1.65, "meters"),
  1770. weight: math.unit(50, "kg"),
  1771. name: "Back (NSFW)",
  1772. image: {
  1773. source: "./media/characters/elijah/back-nsfw.svg",
  1774. extra: 895 / 850,
  1775. bottom: 5.3 / 897.956
  1776. }
  1777. },
  1778. dick: {
  1779. height: math.unit(1, "feet"),
  1780. name: "Dick",
  1781. image: {
  1782. source: "./media/characters/elijah/dick.svg"
  1783. }
  1784. },
  1785. beakOpen: {
  1786. height: math.unit(1.25, "feet"),
  1787. name: "Beak (Open)",
  1788. image: {
  1789. source: "./media/characters/elijah/beak-open.svg"
  1790. }
  1791. },
  1792. beakShut: {
  1793. height: math.unit(1.25, "feet"),
  1794. name: "Beak (Shut)",
  1795. image: {
  1796. source: "./media/characters/elijah/beak-shut.svg"
  1797. }
  1798. },
  1799. footFlexing: {
  1800. height: math.unit(1.61, "feet"),
  1801. name: "Foot (Flexing)",
  1802. image: {
  1803. source: "./media/characters/elijah/foot-flexing.svg"
  1804. }
  1805. },
  1806. footStepping: {
  1807. height: math.unit(1.44, "feet"),
  1808. name: "Foot (Stepping)",
  1809. image: {
  1810. source: "./media/characters/elijah/foot-stepping.svg"
  1811. }
  1812. },
  1813. plantigradeLeg: {
  1814. height: math.unit(2.34, "feet"),
  1815. name: "Plantigrade Leg",
  1816. image: {
  1817. source: "./media/characters/elijah/plantigrade-leg.svg"
  1818. }
  1819. },
  1820. plantigradeFootLeft: {
  1821. height: math.unit(0.9, "feet"),
  1822. name: "Plantigrade Foot (Left)",
  1823. image: {
  1824. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1825. }
  1826. },
  1827. plantigradeFootRight: {
  1828. height: math.unit(0.9, "feet"),
  1829. name: "Plantigrade Foot (Right)",
  1830. image: {
  1831. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1832. }
  1833. },
  1834. },
  1835. [
  1836. {
  1837. name: "Normal",
  1838. height: math.unit(1.65, "meters")
  1839. },
  1840. {
  1841. name: "Macro",
  1842. height: math.unit(55, "meters"),
  1843. default: true
  1844. },
  1845. {
  1846. name: "Macro+",
  1847. height: math.unit(105, "meters")
  1848. },
  1849. ]
  1850. ))
  1851. characterMakers.push(() => makeCharacter(
  1852. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1853. {
  1854. front: {
  1855. height: math.unit(11, "feet"),
  1856. weight: math.unit(80, "kg"),
  1857. name: "Front",
  1858. image: {
  1859. source: "./media/characters/rai/front.svg",
  1860. extra: 1,
  1861. bottom: 0.03
  1862. }
  1863. },
  1864. side: {
  1865. height: math.unit(11, "feet"),
  1866. weight: math.unit(80, "kg"),
  1867. name: "Side",
  1868. image: {
  1869. source: "./media/characters/rai/side.svg"
  1870. }
  1871. },
  1872. back: {
  1873. height: math.unit(11, "feet"),
  1874. weight: math.unit(80, "lb"),
  1875. name: "Back",
  1876. image: {
  1877. source: "./media/characters/rai/back.svg",
  1878. extra: 1,
  1879. bottom: 0.01
  1880. }
  1881. },
  1882. feral: {
  1883. height: math.unit(11, "feet"),
  1884. weight: math.unit(800, "lb"),
  1885. name: "Feral",
  1886. image: {
  1887. source: "./media/characters/rai/feral.svg",
  1888. extra: 1050 / 659,
  1889. bottom: 0.07
  1890. }
  1891. },
  1892. dragon: {
  1893. height: math.unit(23, "feet"),
  1894. weight: math.unit(50000, "lb"),
  1895. name: "Dragon",
  1896. image: {
  1897. source: "./media/characters/rai/dragon.svg",
  1898. extra: 2498 / 2030,
  1899. bottom: 85.2 / 2584
  1900. }
  1901. },
  1902. maw: {
  1903. height: math.unit(6 / 3.81416, "feet"),
  1904. name: "Maw",
  1905. image: {
  1906. source: "./media/characters/rai/maw.svg"
  1907. }
  1908. },
  1909. },
  1910. [
  1911. {
  1912. name: "Normal",
  1913. height: math.unit(11, "feet")
  1914. },
  1915. {
  1916. name: "Macro",
  1917. height: math.unit(302, "feet"),
  1918. default: true
  1919. },
  1920. ]
  1921. ))
  1922. characterMakers.push(() => makeCharacter(
  1923. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1924. {
  1925. frontDressed: {
  1926. height: math.unit(216, "feet"),
  1927. weight: math.unit(7000000, "lb"),
  1928. name: "Front (Dressed)",
  1929. image: {
  1930. source: "./media/characters/jazzy/front-dressed.svg",
  1931. extra: 2738 / 2651,
  1932. bottom: 41.8 / 2786
  1933. }
  1934. },
  1935. backDressed: {
  1936. height: math.unit(216, "feet"),
  1937. weight: math.unit(7000000, "lb"),
  1938. name: "Back (Dressed)",
  1939. image: {
  1940. source: "./media/characters/jazzy/back-dressed.svg",
  1941. extra: 2775 / 2673,
  1942. bottom: 36.8 / 2817
  1943. }
  1944. },
  1945. front: {
  1946. height: math.unit(216, "feet"),
  1947. weight: math.unit(7000000, "lb"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/jazzy/front.svg",
  1951. extra: 2738 / 2651,
  1952. bottom: 41.8 / 2786
  1953. }
  1954. },
  1955. back: {
  1956. height: math.unit(216, "feet"),
  1957. weight: math.unit(7000000, "lb"),
  1958. name: "Back",
  1959. image: {
  1960. source: "./media/characters/jazzy/back.svg",
  1961. extra: 2775 / 2673,
  1962. bottom: 36.8 / 2817
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(20, "feet"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/jazzy/maw.svg"
  1970. }
  1971. },
  1972. paws: {
  1973. height: math.unit(27.5, "feet"),
  1974. name: "Paws",
  1975. image: {
  1976. source: "./media/characters/jazzy/paws.svg"
  1977. }
  1978. },
  1979. eye: {
  1980. height: math.unit(4.4, "feet"),
  1981. name: "Eye",
  1982. image: {
  1983. source: "./media/characters/jazzy/eye.svg"
  1984. }
  1985. },
  1986. droneOffense: {
  1987. height: math.unit(9.5, "inches"),
  1988. name: "Drone (Offense)",
  1989. image: {
  1990. source: "./media/characters/jazzy/drone-offense.svg"
  1991. }
  1992. },
  1993. droneRecon: {
  1994. height: math.unit(9.5, "inches"),
  1995. name: "Drone (Recon)",
  1996. image: {
  1997. source: "./media/characters/jazzy/drone-recon.svg"
  1998. }
  1999. },
  2000. droneDefense: {
  2001. height: math.unit(9.5, "inches"),
  2002. name: "Drone (Defense)",
  2003. image: {
  2004. source: "./media/characters/jazzy/drone-defense.svg"
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Macro",
  2011. height: math.unit(216, "feet"),
  2012. default: true
  2013. },
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2018. {
  2019. front: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(80, "kg"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/flamm/front.svg",
  2025. extra: 1794 / 1677,
  2026. bottom: 31.7 / 1828.5
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(9.5, "feet")
  2034. },
  2035. {
  2036. name: "Macro",
  2037. height: math.unit(200, "feet"),
  2038. default: true
  2039. },
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2044. {
  2045. front: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(80, "kg"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/zephiro/front.svg",
  2051. extra: 2309 / 2162,
  2052. bottom: 0.069
  2053. }
  2054. },
  2055. side: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(80, "kg"),
  2058. name: "Side",
  2059. image: {
  2060. source: "./media/characters/zephiro/side.svg",
  2061. extra: 2403 / 2279,
  2062. bottom: 0.015
  2063. }
  2064. },
  2065. back: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(80, "kg"),
  2068. name: "Back",
  2069. image: {
  2070. source: "./media/characters/zephiro/back.svg",
  2071. extra: 2373 / 2244,
  2072. bottom: 0.013
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Micro",
  2079. height: math.unit(3, "inches")
  2080. },
  2081. {
  2082. name: "Normal",
  2083. height: math.unit(5 + 3 / 12, "feet"),
  2084. default: true
  2085. },
  2086. {
  2087. name: "Macro",
  2088. height: math.unit(118, "feet")
  2089. },
  2090. ]
  2091. ))
  2092. characterMakers.push(() => makeCharacter(
  2093. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2094. {
  2095. front: {
  2096. height: math.unit(5, "feet"),
  2097. weight: math.unit(90, "kg"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/fory/front.svg",
  2101. extra: 2862 / 2674,
  2102. bottom: 180 / 3043.8
  2103. }
  2104. },
  2105. back: {
  2106. height: math.unit(5, "feet"),
  2107. weight: math.unit(90, "kg"),
  2108. name: "Back",
  2109. image: {
  2110. source: "./media/characters/fory/back.svg",
  2111. extra: 2962 / 2791,
  2112. bottom: 106 / 3071.8
  2113. }
  2114. },
  2115. foot: {
  2116. height: math.unit(2.14, "feet"),
  2117. name: "Foot",
  2118. image: {
  2119. source: "./media/characters/fory/foot.svg"
  2120. }
  2121. },
  2122. },
  2123. [
  2124. {
  2125. name: "Normal",
  2126. height: math.unit(5, "feet")
  2127. },
  2128. {
  2129. name: "Macro",
  2130. height: math.unit(50, "feet"),
  2131. default: true
  2132. },
  2133. {
  2134. name: "Megamacro",
  2135. height: math.unit(10, "miles")
  2136. },
  2137. {
  2138. name: "Gigamacro",
  2139. height: math.unit(5, "earths")
  2140. },
  2141. ]
  2142. ))
  2143. characterMakers.push(() => makeCharacter(
  2144. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2145. {
  2146. front: {
  2147. height: math.unit(7, "feet"),
  2148. weight: math.unit(90, "kg"),
  2149. name: "Front",
  2150. image: {
  2151. source: "./media/characters/kurrikage/front.svg",
  2152. extra: 1,
  2153. bottom: 0.035
  2154. }
  2155. },
  2156. back: {
  2157. height: math.unit(7, "feet"),
  2158. weight: math.unit(90, "lb"),
  2159. name: "Back",
  2160. image: {
  2161. source: "./media/characters/kurrikage/back.svg"
  2162. }
  2163. },
  2164. paw: {
  2165. height: math.unit(1.5, "feet"),
  2166. name: "Paw",
  2167. image: {
  2168. source: "./media/characters/kurrikage/paw.svg"
  2169. }
  2170. },
  2171. staff: {
  2172. height: math.unit(6.7, "feet"),
  2173. name: "Staff",
  2174. image: {
  2175. source: "./media/characters/kurrikage/staff.svg"
  2176. }
  2177. },
  2178. peek: {
  2179. height: math.unit(1.05, "feet"),
  2180. name: "Peeking",
  2181. image: {
  2182. source: "./media/characters/kurrikage/peek.svg",
  2183. bottom: 0.08
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(12, "feet"),
  2191. default: true
  2192. },
  2193. {
  2194. name: "Big",
  2195. height: math.unit(20, "feet")
  2196. },
  2197. {
  2198. name: "Macro",
  2199. height: math.unit(500, "feet")
  2200. },
  2201. {
  2202. name: "Megamacro",
  2203. height: math.unit(20, "miles")
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2209. {
  2210. front: {
  2211. height: math.unit(6, "feet"),
  2212. weight: math.unit(75, "kg"),
  2213. name: "Front",
  2214. image: {
  2215. source: "./media/characters/shingo/front.svg",
  2216. extra: 3511 / 3338,
  2217. bottom: 0.005
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Micro",
  2224. height: math.unit(4, "inches")
  2225. },
  2226. {
  2227. name: "Normal",
  2228. height: math.unit(6, "feet"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Macro",
  2233. height: math.unit(108, "feet")
  2234. }
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2239. {
  2240. side: {
  2241. height: math.unit(6, "feet"),
  2242. weight: math.unit(75, "kg"),
  2243. name: "Side",
  2244. image: {
  2245. source: "./media/characters/aigey/side.svg"
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Macro",
  2252. height: math.unit(200, "feet"),
  2253. default: true
  2254. },
  2255. {
  2256. name: "Megamacro",
  2257. height: math.unit(100, "miles")
  2258. },
  2259. ]
  2260. )
  2261. )
  2262. characterMakers.push(() => makeCharacter(
  2263. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2264. {
  2265. front: {
  2266. height: math.unit(5 + 5 / 12, "feet"),
  2267. weight: math.unit(75, "kg"),
  2268. name: "Front",
  2269. image: {
  2270. source: "./media/characters/natasha/front.svg",
  2271. extra: 859 / 824,
  2272. bottom: 23 / 879.6
  2273. }
  2274. },
  2275. frontNsfw: {
  2276. height: math.unit(5 + 5 / 12, "feet"),
  2277. weight: math.unit(75, "kg"),
  2278. name: "Front (NSFW)",
  2279. image: {
  2280. source: "./media/characters/natasha/front-nsfw.svg",
  2281. extra: 859 / 824,
  2282. bottom: 23 / 879.6
  2283. }
  2284. },
  2285. frontErect: {
  2286. height: math.unit(5 + 5 / 12, "feet"),
  2287. weight: math.unit(75, "kg"),
  2288. name: "Front (Erect)",
  2289. image: {
  2290. source: "./media/characters/natasha/front-erect.svg",
  2291. extra: 859 / 824,
  2292. bottom: 23 / 879.6
  2293. }
  2294. },
  2295. back: {
  2296. height: math.unit(5 + 5 / 12, "feet"),
  2297. weight: math.unit(75, "kg"),
  2298. name: "Back",
  2299. image: {
  2300. source: "./media/characters/natasha/back.svg",
  2301. extra: 887.9 / 852.6,
  2302. bottom: 9.7 / 896.4
  2303. }
  2304. },
  2305. backAlt: {
  2306. height: math.unit(5 + 5 / 12, "feet"),
  2307. weight: math.unit(75, "kg"),
  2308. name: "Back (Alt)",
  2309. image: {
  2310. source: "./media/characters/natasha/back-alt.svg",
  2311. extra: 1236.7 / 1192,
  2312. bottom: 22.3 / 1258.2
  2313. }
  2314. },
  2315. dick: {
  2316. height: math.unit(1.772, "feet"),
  2317. name: "Dick",
  2318. image: {
  2319. source: "./media/characters/natasha/dick.svg"
  2320. }
  2321. },
  2322. },
  2323. [
  2324. {
  2325. name: "Normal",
  2326. height: math.unit(5 + 5 / 12, "feet")
  2327. },
  2328. {
  2329. name: "Large",
  2330. height: math.unit(12, "feet")
  2331. },
  2332. {
  2333. name: "Macro",
  2334. height: math.unit(100, "feet"),
  2335. default: true
  2336. },
  2337. {
  2338. name: "Macro+",
  2339. height: math.unit(260, "feet")
  2340. },
  2341. {
  2342. name: "Macro++",
  2343. height: math.unit(1, "mile")
  2344. },
  2345. ]
  2346. ))
  2347. characterMakers.push(() => makeCharacter(
  2348. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2349. {
  2350. front: {
  2351. height: math.unit(6, "feet"),
  2352. weight: math.unit(75, "kg"),
  2353. name: "Front",
  2354. image: {
  2355. source: "./media/characters/malik/front.svg"
  2356. }
  2357. },
  2358. side: {
  2359. height: math.unit(6, "feet"),
  2360. weight: math.unit(75, "kg"),
  2361. name: "Side",
  2362. image: {
  2363. source: "./media/characters/malik/side.svg",
  2364. extra: 1.1539
  2365. }
  2366. },
  2367. back: {
  2368. height: math.unit(6, "feet"),
  2369. weight: math.unit(75, "kg"),
  2370. name: "Back",
  2371. image: {
  2372. source: "./media/characters/malik/back.svg"
  2373. }
  2374. },
  2375. },
  2376. [
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(156, "feet"),
  2380. default: true
  2381. },
  2382. {
  2383. name: "Macro+",
  2384. height: math.unit(1188, "feet")
  2385. },
  2386. ]
  2387. ))
  2388. characterMakers.push(() => makeCharacter(
  2389. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2390. {
  2391. front: {
  2392. height: math.unit(6, "feet"),
  2393. weight: math.unit(75, "kg"),
  2394. name: "Front",
  2395. image: {
  2396. source: "./media/characters/sefer/front.svg",
  2397. extra: 848 / 659,
  2398. bottom: 28.3 / 876.442
  2399. }
  2400. },
  2401. back: {
  2402. height: math.unit(6, "feet"),
  2403. weight: math.unit(75, "kg"),
  2404. name: "Back",
  2405. image: {
  2406. source: "./media/characters/sefer/back.svg",
  2407. extra: 864 / 695,
  2408. bottom: 10 / 871
  2409. }
  2410. },
  2411. frontDressed: {
  2412. height: math.unit(6, "feet"),
  2413. weight: math.unit(75, "kg"),
  2414. name: "Front (Dressed)",
  2415. image: {
  2416. source: "./media/characters/sefer/front-dressed.svg",
  2417. extra: 839 / 653,
  2418. bottom: 37.6 / 878
  2419. }
  2420. },
  2421. },
  2422. [
  2423. {
  2424. name: "Normal",
  2425. height: math.unit(6, "feet"),
  2426. default: true
  2427. },
  2428. ]
  2429. ))
  2430. characterMakers.push(() => makeCharacter(
  2431. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2432. {
  2433. body: {
  2434. height: math.unit(2.2428, "meter"),
  2435. weight: math.unit(124.738, "kg"),
  2436. name: "Body",
  2437. image: {
  2438. extra: 1225 / 1050,
  2439. source: "./media/characters/north/front.svg"
  2440. }
  2441. }
  2442. },
  2443. [
  2444. {
  2445. name: "Micro",
  2446. height: math.unit(4, "inches")
  2447. },
  2448. {
  2449. name: "Macro",
  2450. height: math.unit(63, "meters")
  2451. },
  2452. {
  2453. name: "Megamacro",
  2454. height: math.unit(101, "miles"),
  2455. default: true
  2456. }
  2457. ]
  2458. ))
  2459. characterMakers.push(() => makeCharacter(
  2460. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2461. {
  2462. angled: {
  2463. height: math.unit(4, "meter"),
  2464. weight: math.unit(150, "kg"),
  2465. name: "Angled",
  2466. image: {
  2467. source: "./media/characters/talan/angled-sfw.svg",
  2468. bottom: 29 / 3734
  2469. }
  2470. },
  2471. angledNsfw: {
  2472. height: math.unit(4, "meter"),
  2473. weight: math.unit(150, "kg"),
  2474. name: "Angled (NSFW)",
  2475. image: {
  2476. source: "./media/characters/talan/angled-nsfw.svg",
  2477. bottom: 29 / 3734
  2478. }
  2479. },
  2480. frontNsfw: {
  2481. height: math.unit(4, "meter"),
  2482. weight: math.unit(150, "kg"),
  2483. name: "Front (NSFW)",
  2484. image: {
  2485. source: "./media/characters/talan/front-nsfw.svg",
  2486. bottom: 29 / 3734
  2487. }
  2488. },
  2489. sideNsfw: {
  2490. height: math.unit(4, "meter"),
  2491. weight: math.unit(150, "kg"),
  2492. name: "Side (NSFW)",
  2493. image: {
  2494. source: "./media/characters/talan/side-nsfw.svg",
  2495. bottom: 29 / 3734
  2496. }
  2497. },
  2498. back: {
  2499. height: math.unit(4, "meter"),
  2500. weight: math.unit(150, "kg"),
  2501. name: "Back",
  2502. image: {
  2503. source: "./media/characters/talan/back.svg"
  2504. }
  2505. },
  2506. dickBottom: {
  2507. height: math.unit(0.621, "meter"),
  2508. name: "Dick (Bottom)",
  2509. image: {
  2510. source: "./media/characters/talan/dick-bottom.svg"
  2511. }
  2512. },
  2513. dickTop: {
  2514. height: math.unit(0.621, "meter"),
  2515. name: "Dick (Top)",
  2516. image: {
  2517. source: "./media/characters/talan/dick-top.svg"
  2518. }
  2519. },
  2520. dickSide: {
  2521. height: math.unit(0.305, "meter"),
  2522. name: "Dick (Side)",
  2523. image: {
  2524. source: "./media/characters/talan/dick-side.svg"
  2525. }
  2526. },
  2527. dickFront: {
  2528. height: math.unit(0.305, "meter"),
  2529. name: "Dick (Front)",
  2530. image: {
  2531. source: "./media/characters/talan/dick-front.svg"
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(4, "meters")
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(100, "meters")
  2543. },
  2544. {
  2545. name: "Megamacro",
  2546. height: math.unit(2, "miles"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Gigamacro",
  2551. height: math.unit(5000, "miles")
  2552. },
  2553. {
  2554. name: "Teramacro",
  2555. height: math.unit(100, "parsecs")
  2556. }
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(2, "meter"),
  2564. weight: math.unit(90, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/gael'rathus/front.svg"
  2568. }
  2569. },
  2570. frontAlt: {
  2571. height: math.unit(2, "meter"),
  2572. weight: math.unit(90, "kg"),
  2573. name: "Front (alt)",
  2574. image: {
  2575. source: "./media/characters/gael'rathus/front-alt.svg"
  2576. }
  2577. },
  2578. frontAlt2: {
  2579. height: math.unit(2, "meter"),
  2580. weight: math.unit(90, "kg"),
  2581. name: "Front (alt 2)",
  2582. image: {
  2583. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2584. }
  2585. }
  2586. },
  2587. [
  2588. {
  2589. name: "Normal",
  2590. height: math.unit(9, "feet"),
  2591. default: true
  2592. },
  2593. {
  2594. name: "Large",
  2595. height: math.unit(25, "feet")
  2596. },
  2597. {
  2598. name: "Macro",
  2599. height: math.unit(0.25, "miles")
  2600. },
  2601. {
  2602. name: "Megamacro",
  2603. height: math.unit(10, "miles")
  2604. }
  2605. ]
  2606. ))
  2607. characterMakers.push(() => makeCharacter(
  2608. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2609. {
  2610. side: {
  2611. height: math.unit(2, "meter"),
  2612. weight: math.unit(140, "kg"),
  2613. name: "Side",
  2614. image: {
  2615. source: "./media/characters/sosha/side.svg",
  2616. bottom: 0.042
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(12, "feet"),
  2624. default: true
  2625. }
  2626. ]
  2627. ))
  2628. characterMakers.push(() => makeCharacter(
  2629. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2630. {
  2631. side: {
  2632. height: math.unit(5 + 5 / 12, "feet"),
  2633. weight: math.unit(170, "kg"),
  2634. name: "Side",
  2635. image: {
  2636. source: "./media/characters/runnola/side.svg",
  2637. extra: 741 / 448,
  2638. bottom: 0.05
  2639. }
  2640. },
  2641. },
  2642. [
  2643. {
  2644. name: "Small",
  2645. height: math.unit(3, "feet")
  2646. },
  2647. {
  2648. name: "Normal",
  2649. height: math.unit(5 + 5 / 12, "feet"),
  2650. default: true
  2651. },
  2652. {
  2653. name: "Big",
  2654. height: math.unit(10, "feet")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(2, "meter"),
  2663. weight: math.unit(50, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/kurribird/front.svg",
  2667. bottom: 0.015
  2668. }
  2669. },
  2670. frontAlt: {
  2671. height: math.unit(1.5, "meter"),
  2672. weight: math.unit(50, "kg"),
  2673. name: "Front (Alt)",
  2674. image: {
  2675. source: "./media/characters/kurribird/front-alt.svg",
  2676. extra: 1.45
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Normal",
  2683. height: math.unit(7, "feet")
  2684. },
  2685. {
  2686. name: "Big",
  2687. height: math.unit(12, "feet"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(1500, "feet")
  2693. },
  2694. {
  2695. name: "Megamacro",
  2696. height: math.unit(2, "miles")
  2697. }
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(2, "meter"),
  2705. weight: math.unit(80, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/elbial/front.svg",
  2709. extra: 1643 / 1556,
  2710. bottom: 60.2 / 1696
  2711. }
  2712. },
  2713. side: {
  2714. height: math.unit(2, "meter"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Side",
  2717. image: {
  2718. source: "./media/characters/elbial/side.svg",
  2719. extra: 1630 / 1565,
  2720. bottom: 71.5 / 1697
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(2, "meter"),
  2725. weight: math.unit(80, "kg"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/elbial/back.svg",
  2729. extra: 1668 / 1595,
  2730. bottom: 5.6 / 1672
  2731. }
  2732. },
  2733. frontDressed: {
  2734. height: math.unit(2, "meter"),
  2735. weight: math.unit(80, "kg"),
  2736. name: "Front (Dressed)",
  2737. image: {
  2738. source: "./media/characters/elbial/front-dressed.svg",
  2739. extra: 1653 / 1584,
  2740. bottom: 57 / 1708
  2741. }
  2742. },
  2743. genitals: {
  2744. height: math.unit(2 / 3.367, "meter"),
  2745. name: "Genitals",
  2746. image: {
  2747. source: "./media/characters/elbial/genitals.svg"
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Large",
  2754. height: math.unit(100, "feet")
  2755. },
  2756. {
  2757. name: "Macro",
  2758. height: math.unit(500, "feet"),
  2759. default: true
  2760. },
  2761. {
  2762. name: "Megamacro",
  2763. height: math.unit(10, "miles")
  2764. },
  2765. {
  2766. name: "Gigamacro",
  2767. height: math.unit(25000, "miles")
  2768. },
  2769. {
  2770. name: "Full-Size",
  2771. height: math.unit(8000000, "gigaparsecs")
  2772. }
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(2, "meter"),
  2780. weight: math.unit(60, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/noah/front.svg"
  2784. }
  2785. },
  2786. talons: {
  2787. height: math.unit(0.315, "meter"),
  2788. name: "Talons",
  2789. image: {
  2790. source: "./media/characters/noah/talons.svg"
  2791. }
  2792. }
  2793. },
  2794. [
  2795. {
  2796. name: "Large",
  2797. height: math.unit(50, "feet")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(750, "feet"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Megamacro",
  2806. height: math.unit(50, "miles")
  2807. },
  2808. {
  2809. name: "Gigamacro",
  2810. height: math.unit(100000, "miles")
  2811. },
  2812. {
  2813. name: "Full-Size",
  2814. height: math.unit(3000000000, "miles")
  2815. }
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2820. {
  2821. front: {
  2822. height: math.unit(2, "meter"),
  2823. weight: math.unit(80, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/natalya/front.svg"
  2827. }
  2828. },
  2829. back: {
  2830. height: math.unit(2, "meter"),
  2831. weight: math.unit(80, "kg"),
  2832. name: "Back",
  2833. image: {
  2834. source: "./media/characters/natalya/back.svg"
  2835. }
  2836. }
  2837. },
  2838. [
  2839. {
  2840. name: "Normal",
  2841. height: math.unit(150, "feet"),
  2842. default: true
  2843. },
  2844. {
  2845. name: "Megamacro",
  2846. height: math.unit(5, "miles")
  2847. },
  2848. {
  2849. name: "Full-Size",
  2850. height: math.unit(600, "kiloparsecs")
  2851. }
  2852. ]
  2853. ))
  2854. characterMakers.push(() => makeCharacter(
  2855. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2856. {
  2857. front: {
  2858. height: math.unit(2, "meter"),
  2859. weight: math.unit(50, "kg"),
  2860. name: "Front",
  2861. image: {
  2862. source: "./media/characters/erestrebah/front.svg",
  2863. extra: 208 / 193,
  2864. bottom: 0.055
  2865. }
  2866. },
  2867. back: {
  2868. height: math.unit(2, "meter"),
  2869. weight: math.unit(50, "kg"),
  2870. name: "Back",
  2871. image: {
  2872. source: "./media/characters/erestrebah/back.svg",
  2873. extra: 1.3
  2874. }
  2875. }
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(10, "feet")
  2881. },
  2882. {
  2883. name: "Large",
  2884. height: math.unit(50, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Macro",
  2889. height: math.unit(300, "feet")
  2890. },
  2891. {
  2892. name: "Macro+",
  2893. height: math.unit(750, "feet")
  2894. },
  2895. {
  2896. name: "Megamacro",
  2897. height: math.unit(3, "miles")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(80, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/jennifer/front.svg",
  2910. bottom: 0.11,
  2911. extra: 1.16
  2912. }
  2913. },
  2914. frontAlt: {
  2915. height: math.unit(2, "meter"),
  2916. weight: math.unit(80, "kg"),
  2917. name: "Front (Alt)",
  2918. image: {
  2919. source: "./media/characters/jennifer/front-alt.svg"
  2920. }
  2921. }
  2922. },
  2923. [
  2924. {
  2925. name: "Canon Height",
  2926. height: math.unit(120, "feet"),
  2927. default: true
  2928. },
  2929. {
  2930. name: "Macro+",
  2931. height: math.unit(300, "feet")
  2932. },
  2933. {
  2934. name: "Megamacro",
  2935. height: math.unit(20000, "feet")
  2936. }
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2941. {
  2942. front: {
  2943. height: math.unit(2, "meter"),
  2944. weight: math.unit(50, "kg"),
  2945. name: "Front",
  2946. image: {
  2947. source: "./media/characters/kalista/front.svg",
  2948. extra: 1947 / 1700,
  2949. bottom: 76.6 / 1412.98
  2950. }
  2951. },
  2952. back: {
  2953. height: math.unit(2, "meter"),
  2954. weight: math.unit(50, "kg"),
  2955. name: "Back",
  2956. image: {
  2957. source: "./media/characters/kalista/back.svg",
  2958. extra: 1366 / 1156,
  2959. bottom: 33.9 / 1362.78
  2960. }
  2961. }
  2962. },
  2963. [
  2964. {
  2965. name: "Uncomfortably Small",
  2966. height: math.unit(10, "feet")
  2967. },
  2968. {
  2969. name: "Small",
  2970. height: math.unit(30, "feet")
  2971. },
  2972. {
  2973. name: "Macro",
  2974. height: math.unit(100, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Macro+",
  2979. height: math.unit(2000, "feet")
  2980. },
  2981. {
  2982. name: "True Form",
  2983. height: math.unit(8924, "miles")
  2984. }
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(2, "meter"),
  2992. weight: math.unit(120, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/ggv/front.svg"
  2996. }
  2997. },
  2998. side: {
  2999. height: math.unit(2, "meter"),
  3000. weight: math.unit(120, "kg"),
  3001. name: "Side",
  3002. image: {
  3003. source: "./media/characters/ggv/side.svg"
  3004. }
  3005. }
  3006. },
  3007. [
  3008. {
  3009. name: "Extremely Puny",
  3010. height: math.unit(9 + 5 / 12, "feet")
  3011. },
  3012. {
  3013. name: "Horribly Small",
  3014. height: math.unit(47.7, "miles"),
  3015. default: true
  3016. },
  3017. {
  3018. name: "Reasonably Sized",
  3019. height: math.unit(25000, "parsecs")
  3020. },
  3021. {
  3022. name: "Slightly Uncompressed",
  3023. height: math.unit(7.77e31, "parsecs")
  3024. },
  3025. {
  3026. name: "Omniversal",
  3027. height: math.unit(1e300, "meters")
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(2, "meter"),
  3036. weight: math.unit(75, "lb"),
  3037. name: "Front",
  3038. image: {
  3039. source: "./media/characters/napalm/front.svg"
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(2, "meter"),
  3044. weight: math.unit(75, "lb"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/napalm/back.svg"
  3048. }
  3049. }
  3050. },
  3051. [
  3052. {
  3053. name: "Standard",
  3054. height: math.unit(55, "feet"),
  3055. default: true
  3056. }
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(7 + 5 / 6, "feet"),
  3064. weight: math.unit(325, "lb"),
  3065. name: "Front",
  3066. image: {
  3067. source: "./media/characters/asana/front.svg",
  3068. extra: 1133 / 1060,
  3069. bottom: 15.2/1148.6
  3070. }
  3071. },
  3072. back: {
  3073. height: math.unit(7 + 5 / 6, "feet"),
  3074. weight: math.unit(325, "lb"),
  3075. name: "Back",
  3076. image: {
  3077. source: "./media/characters/asana/back.svg",
  3078. extra: 1114 / 1043,
  3079. bottom: 5/1120
  3080. }
  3081. },
  3082. dressedDark: {
  3083. height: math.unit(7 + 5 / 6, "feet"),
  3084. weight: math.unit(325, "lb"),
  3085. name: "Dressed (Dark)",
  3086. image: {
  3087. source: "./media/characters/asana/dressed-dark.svg",
  3088. extra: 1133 / 1060,
  3089. bottom: 15.2/1148.6
  3090. }
  3091. },
  3092. dressedLight: {
  3093. height: math.unit(7 + 5 / 6, "feet"),
  3094. weight: math.unit(325, "lb"),
  3095. name: "Dressed (Light)",
  3096. image: {
  3097. source: "./media/characters/asana/dressed-light.svg",
  3098. extra: 1133 / 1060,
  3099. bottom: 15.2/1148.6
  3100. }
  3101. },
  3102. },
  3103. [
  3104. {
  3105. name: "Standard",
  3106. height: math.unit(7 + 5 / 6, "feet"),
  3107. default: true
  3108. },
  3109. {
  3110. name: "Large",
  3111. height: math.unit(10, "meters")
  3112. },
  3113. {
  3114. name: "Macro",
  3115. height: math.unit(2500, "meters")
  3116. },
  3117. {
  3118. name: "Megamacro",
  3119. height: math.unit(5e6, "meters")
  3120. },
  3121. {
  3122. name: "Examacro",
  3123. height: math.unit(5e12, "lightyears")
  3124. },
  3125. {
  3126. name: "Max Size",
  3127. height: math.unit(1e31, "lightyears")
  3128. }
  3129. ]
  3130. ))
  3131. characterMakers.push(() => makeCharacter(
  3132. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3133. {
  3134. front: {
  3135. height: math.unit(2, "meter"),
  3136. weight: math.unit(60, "kg"),
  3137. name: "Front",
  3138. image: {
  3139. source: "./media/characters/ebony/front.svg",
  3140. bottom: 0.03,
  3141. extra: 1045 / 810 + 0.03
  3142. }
  3143. },
  3144. side: {
  3145. height: math.unit(2, "meter"),
  3146. weight: math.unit(60, "kg"),
  3147. name: "Side",
  3148. image: {
  3149. source: "./media/characters/ebony/side.svg",
  3150. bottom: 0.03,
  3151. extra: 1045 / 810 + 0.03
  3152. }
  3153. },
  3154. back: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(60, "kg"),
  3157. name: "Back",
  3158. image: {
  3159. source: "./media/characters/ebony/back.svg",
  3160. bottom: 0.01,
  3161. extra: 1045 / 810 + 0.01
  3162. }
  3163. },
  3164. },
  3165. [
  3166. // TODO check why I did this lol
  3167. {
  3168. name: "Standard",
  3169. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(200, "feet")
  3175. },
  3176. {
  3177. name: "Gigamacro",
  3178. height: math.unit(13000, "km")
  3179. }
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(175, "lb"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/mountain/front.svg",
  3191. extra: 972/955,
  3192. bottom: 64/1036.6
  3193. }
  3194. },
  3195. back: {
  3196. height: math.unit(6, "feet"),
  3197. weight: math.unit(175, "lb"),
  3198. name: "Back",
  3199. image: {
  3200. source: "./media/characters/mountain/back.svg",
  3201. extra: 970/950,
  3202. bottom: 28.25/999
  3203. }
  3204. },
  3205. },
  3206. [
  3207. {
  3208. name: "Large",
  3209. height: math.unit(20, "meters")
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(300, "meters")
  3214. },
  3215. {
  3216. name: "Gigamacro",
  3217. height: math.unit(10000, "km"),
  3218. default: true
  3219. },
  3220. {
  3221. name: "Examacro",
  3222. height: math.unit(10e9, "lightyears")
  3223. }
  3224. ]
  3225. ))
  3226. characterMakers.push(() => makeCharacter(
  3227. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3228. {
  3229. front: {
  3230. height: math.unit(8, "feet"),
  3231. weight: math.unit(500, "lb"),
  3232. name: "Front",
  3233. image: {
  3234. source: "./media/characters/rick/front.svg"
  3235. }
  3236. }
  3237. },
  3238. [
  3239. {
  3240. name: "Normal",
  3241. height: math.unit(8, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro",
  3246. height: math.unit(5, "km")
  3247. }
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(8, "feet"),
  3255. weight: math.unit(120, "lb"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/ona/front.svg"
  3259. }
  3260. },
  3261. frontAlt: {
  3262. height: math.unit(8, "feet"),
  3263. weight: math.unit(120, "lb"),
  3264. name: "Front (Alt)",
  3265. image: {
  3266. source: "./media/characters/ona/front-alt.svg"
  3267. }
  3268. },
  3269. back: {
  3270. height: math.unit(8, "feet"),
  3271. weight: math.unit(120, "lb"),
  3272. name: "Back",
  3273. image: {
  3274. source: "./media/characters/ona/back.svg"
  3275. }
  3276. },
  3277. foot: {
  3278. height: math.unit(1.1, "feet"),
  3279. name: "Foot",
  3280. image: {
  3281. source: "./media/characters/ona/foot.svg"
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Megamacro",
  3288. height: math.unit(70, "km"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Gigamacro",
  3293. height: math.unit(681818, "miles")
  3294. },
  3295. {
  3296. name: "Examacro",
  3297. height: math.unit(3800000, "lightyears")
  3298. },
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(12, "feet"),
  3306. weight: math.unit(3000, "lb"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/mech/front.svg",
  3310. bottom: 0.025,
  3311. }
  3312. },
  3313. back: {
  3314. height: math.unit(12, "feet"),
  3315. weight: math.unit(3000, "lb"),
  3316. name: "Back",
  3317. image: {
  3318. source: "./media/characters/mech/back.svg",
  3319. bottom: 0.03,
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(12, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(300, "feet"),
  3331. default: true
  3332. },
  3333. {
  3334. name: "Macro+",
  3335. height: math.unit(1500, "feet")
  3336. },
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(1.3, "meter"),
  3344. weight: math.unit(30, "kg"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/gregory/front.svg",
  3348. }
  3349. }
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(1.3, "meter"),
  3355. default: true
  3356. },
  3357. {
  3358. name: "Macro",
  3359. height: math.unit(20, "meter")
  3360. }
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(2.8, "meter"),
  3368. weight: math.unit(200, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/elory/front.svg",
  3372. }
  3373. }
  3374. },
  3375. [
  3376. {
  3377. name: "Normal",
  3378. height: math.unit(2.8, "meter"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Macro",
  3383. height: math.unit(38, "meter")
  3384. }
  3385. ]
  3386. ))
  3387. characterMakers.push(() => makeCharacter(
  3388. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3389. {
  3390. front: {
  3391. height: math.unit(470, "feet"),
  3392. weight: math.unit(924, "tons"),
  3393. name: "Front",
  3394. image: {
  3395. source: "./media/characters/angelpatamon/front.svg",
  3396. }
  3397. }
  3398. },
  3399. [
  3400. {
  3401. name: "Normal",
  3402. height: math.unit(470, "feet"),
  3403. default: true
  3404. },
  3405. {
  3406. name: "Deity Size I",
  3407. height: math.unit(28651.2, "km")
  3408. },
  3409. {
  3410. name: "Deity Size II",
  3411. height: math.unit(171907.2, "km")
  3412. }
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3417. {
  3418. side: {
  3419. height: math.unit(7.2, "meter"),
  3420. weight: math.unit(8.2, "tons"),
  3421. name: "Side",
  3422. image: {
  3423. source: "./media/characters/cryae/side.svg",
  3424. extra: 3500 / 1500
  3425. }
  3426. }
  3427. },
  3428. [
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(7.2, "meter"),
  3432. default: true
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(6, "feet"),
  3441. weight: math.unit(175, "lb"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/xera/front.svg",
  3445. extra: 2377 / 1972,
  3446. bottom: 75.5/2452
  3447. }
  3448. },
  3449. side: {
  3450. height: math.unit(6, "feet"),
  3451. weight: math.unit(175, "lb"),
  3452. name: "Side",
  3453. image: {
  3454. source: "./media/characters/xera/side.svg",
  3455. extra: 2345/2019,
  3456. bottom: 39.7/2384
  3457. }
  3458. },
  3459. back: {
  3460. height: math.unit(6, "feet"),
  3461. weight: math.unit(175, "lb"),
  3462. name: "Back",
  3463. image: {
  3464. source: "./media/characters/xera/back.svg",
  3465. extra: 2095/1984,
  3466. bottom: 67/2166
  3467. }
  3468. },
  3469. },
  3470. [
  3471. {
  3472. name: "Small",
  3473. height: math.unit(10, "feet")
  3474. },
  3475. {
  3476. name: "Macro",
  3477. height: math.unit(500, "meters"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Macro+",
  3482. height: math.unit(10, "km")
  3483. },
  3484. {
  3485. name: "Gigamacro",
  3486. height: math.unit(25000, "km")
  3487. },
  3488. {
  3489. name: "Teramacro",
  3490. height: math.unit(3e6, "km")
  3491. }
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3496. {
  3497. front: {
  3498. height: math.unit(6, "feet"),
  3499. weight: math.unit(175, "lb"),
  3500. name: "Front",
  3501. image: {
  3502. source: "./media/characters/nebula/front.svg",
  3503. extra: 2600 / 2450
  3504. }
  3505. }
  3506. },
  3507. [
  3508. {
  3509. name: "Small",
  3510. height: math.unit(4.5, "meters")
  3511. },
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(1500, "meters"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Megamacro",
  3519. height: math.unit(150, "km")
  3520. },
  3521. {
  3522. name: "Gigamacro",
  3523. height: math.unit(27000, "km")
  3524. }
  3525. ]
  3526. ))
  3527. characterMakers.push(() => makeCharacter(
  3528. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3529. {
  3530. front: {
  3531. height: math.unit(6, "feet"),
  3532. weight: math.unit(225, "lb"),
  3533. name: "Front",
  3534. image: {
  3535. source: "./media/characters/abysgar/front.svg"
  3536. }
  3537. }
  3538. },
  3539. [
  3540. {
  3541. name: "Small",
  3542. height: math.unit(4.5, "meters")
  3543. },
  3544. {
  3545. name: "Macro",
  3546. height: math.unit(1250, "meters"),
  3547. default: true
  3548. },
  3549. {
  3550. name: "Megamacro",
  3551. height: math.unit(125, "km")
  3552. },
  3553. {
  3554. name: "Gigamacro",
  3555. height: math.unit(26000, "km")
  3556. }
  3557. ]
  3558. ))
  3559. characterMakers.push(() => makeCharacter(
  3560. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3561. {
  3562. front: {
  3563. height: math.unit(6, "feet"),
  3564. weight: math.unit(180, "lb"),
  3565. name: "Front",
  3566. image: {
  3567. source: "./media/characters/yakuz/front.svg"
  3568. }
  3569. }
  3570. },
  3571. [
  3572. {
  3573. name: "Small",
  3574. height: math.unit(5, "meters")
  3575. },
  3576. {
  3577. name: "Macro",
  3578. height: math.unit(1500, "meters"),
  3579. default: true
  3580. },
  3581. {
  3582. name: "Megamacro",
  3583. height: math.unit(200, "km")
  3584. },
  3585. {
  3586. name: "Gigamacro",
  3587. height: math.unit(100000, "km")
  3588. }
  3589. ]
  3590. ))
  3591. characterMakers.push(() => makeCharacter(
  3592. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3593. {
  3594. front: {
  3595. height: math.unit(6, "feet"),
  3596. weight: math.unit(175, "lb"),
  3597. name: "Front",
  3598. image: {
  3599. source: "./media/characters/mirova/front.svg",
  3600. extra: 3334/3071,
  3601. bottom: 42/3375.6
  3602. }
  3603. }
  3604. },
  3605. [
  3606. {
  3607. name: "Small",
  3608. height: math.unit(5, "meters")
  3609. },
  3610. {
  3611. name: "Macro",
  3612. height: math.unit(900, "meters"),
  3613. default: true
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(135, "km")
  3618. },
  3619. {
  3620. name: "Gigamacro",
  3621. height: math.unit(20000, "km")
  3622. }
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3627. {
  3628. side: {
  3629. height: math.unit(28.35, "feet"),
  3630. weight: math.unit(99.75, "tons"),
  3631. name: "Side",
  3632. image: {
  3633. source: "./media/characters/asana-mech/side.svg",
  3634. extra: 923/699,
  3635. bottom: 50/975
  3636. }
  3637. },
  3638. chaingun: {
  3639. height: math.unit(7, "feet"),
  3640. weight: math.unit(2400, "lb"),
  3641. name: "Chaingun",
  3642. image: {
  3643. source: "./media/characters/asana-mech/chaingun.svg"
  3644. }
  3645. },
  3646. laser: {
  3647. height: math.unit(7.12, "feet"),
  3648. weight: math.unit(2000, "lb"),
  3649. name: "Laser",
  3650. image: {
  3651. source: "./media/characters/asana-mech/laser.svg"
  3652. }
  3653. },
  3654. },
  3655. [
  3656. {
  3657. name: "Normal",
  3658. height: math.unit(28.35, "feet"),
  3659. default: true
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(2500, "feet")
  3664. },
  3665. {
  3666. name: "Megamacro",
  3667. height: math.unit(25, "miles")
  3668. },
  3669. {
  3670. name: "Examacro",
  3671. height: math.unit(6e8, "lightyears")
  3672. },
  3673. ]
  3674. ))
  3675. characterMakers.push(() => makeCharacter(
  3676. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3677. {
  3678. front: {
  3679. height: math.unit(2, "meters"),
  3680. weight: math.unit(70, "kg"),
  3681. name: "Front",
  3682. image: {
  3683. source: "./media/characters/ashtrek/front.svg",
  3684. extra: 560 / 524,
  3685. bottom: 0.01
  3686. }
  3687. },
  3688. frontArmor: {
  3689. height: math.unit(2, "meters"),
  3690. weight: math.unit(76, "kg"),
  3691. name: "Front (Armor)",
  3692. image: {
  3693. source: "./media/characters/ashtrek/front-armor.svg",
  3694. extra: 561 / 527,
  3695. bottom: 0.01
  3696. }
  3697. },
  3698. side: {
  3699. height: math.unit(2, "meters"),
  3700. weight: math.unit(70, "kg"),
  3701. name: "Side",
  3702. image: {
  3703. source: "./media/characters/ashtrek/side.svg",
  3704. extra: 1717 / 1609,
  3705. bottom: 0.005
  3706. }
  3707. },
  3708. back: {
  3709. height: math.unit(2, "meters"),
  3710. weight: math.unit(70, "kg"),
  3711. name: "Back",
  3712. image: {
  3713. source: "./media/characters/ashtrek/back.svg",
  3714. extra: 1570 / 1501
  3715. }
  3716. },
  3717. },
  3718. [
  3719. {
  3720. name: "DEFCON 5",
  3721. height: math.unit(5, "meters")
  3722. },
  3723. {
  3724. name: "DEFCON 4",
  3725. height: math.unit(500, "meters"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "DEFCON 3",
  3730. height: math.unit(5, "km")
  3731. },
  3732. {
  3733. name: "DEFCON 2",
  3734. height: math.unit(500, "km")
  3735. },
  3736. {
  3737. name: "DEFCON 1",
  3738. height: math.unit(500000, "km")
  3739. },
  3740. {
  3741. name: "DEFCON 0",
  3742. height: math.unit(3, "gigaparsecs")
  3743. },
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(2, "meters"),
  3751. weight: math.unit(76, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/gale/front.svg"
  3755. }
  3756. },
  3757. frontAlt1: {
  3758. height: math.unit(2, "meters"),
  3759. weight: math.unit(76, "kg"),
  3760. name: "Front (Alt 1)",
  3761. image: {
  3762. source: "./media/characters/gale/front-alt-1.svg"
  3763. }
  3764. },
  3765. frontAlt2: {
  3766. height: math.unit(2, "meters"),
  3767. weight: math.unit(76, "kg"),
  3768. name: "Front (Alt 2)",
  3769. image: {
  3770. source: "./media/characters/gale/front-alt-2.svg"
  3771. }
  3772. },
  3773. },
  3774. [
  3775. {
  3776. name: "Normal",
  3777. height: math.unit(7, "feet")
  3778. },
  3779. {
  3780. name: "Macro",
  3781. height: math.unit(150, "feet"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Macro+",
  3786. height: math.unit(300, "feet")
  3787. },
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3792. {
  3793. front: {
  3794. height: math.unit(2, "meters"),
  3795. weight: math.unit(76, "kg"),
  3796. name: "Front",
  3797. image: {
  3798. source: "./media/characters/draylen/front.svg"
  3799. }
  3800. }
  3801. },
  3802. [
  3803. {
  3804. name: "Macro",
  3805. height: math.unit(150, "feet"),
  3806. default: true
  3807. }
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(7 + 9 / 12, "feet"),
  3815. weight: math.unit(379, "lbs"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/chez/front.svg"
  3819. }
  3820. },
  3821. side: {
  3822. height: math.unit(7 + 9 / 12, "feet"),
  3823. weight: math.unit(379, "lbs"),
  3824. name: "Side",
  3825. image: {
  3826. source: "./media/characters/chez/side.svg"
  3827. }
  3828. }
  3829. },
  3830. [
  3831. {
  3832. name: "Normal",
  3833. height: math.unit(7 + 9 / 12, "feet"),
  3834. default: true
  3835. },
  3836. {
  3837. name: "God King",
  3838. height: math.unit(9750000, "meters")
  3839. }
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3844. {
  3845. front: {
  3846. height: math.unit(6, "feet"),
  3847. weight: math.unit(275, "lbs"),
  3848. name: "Front",
  3849. image: {
  3850. source: "./media/characters/kaylum/front.svg",
  3851. bottom: 0.01,
  3852. extra: 1166 / 1031
  3853. }
  3854. },
  3855. frontWingless: {
  3856. height: math.unit(6, "feet"),
  3857. weight: math.unit(275, "lbs"),
  3858. name: "Front (Wingless)",
  3859. image: {
  3860. source: "./media/characters/kaylum/front-wingless.svg",
  3861. bottom: 0.01,
  3862. extra: 1117 / 1031
  3863. }
  3864. }
  3865. },
  3866. [
  3867. {
  3868. name: "Normal",
  3869. height: math.unit(3.05, "meters")
  3870. },
  3871. {
  3872. name: "Master",
  3873. height: math.unit(5.5, "meters")
  3874. },
  3875. {
  3876. name: "Rampage",
  3877. height: math.unit(19, "meters")
  3878. },
  3879. {
  3880. name: "Macro Lite",
  3881. height: math.unit(37, "meters")
  3882. },
  3883. {
  3884. name: "Hyper Predator",
  3885. height: math.unit(61, "meters")
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(138, "meters"),
  3890. default: true
  3891. }
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3896. {
  3897. front: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(150, "lbs"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/geta/front.svg"
  3903. }
  3904. }
  3905. },
  3906. [
  3907. {
  3908. name: "Micro",
  3909. height: math.unit(3, "inches"),
  3910. default: true
  3911. },
  3912. {
  3913. name: "Normal",
  3914. height: math.unit(5 + 5 / 12, "feet")
  3915. }
  3916. ]
  3917. ))
  3918. characterMakers.push(() => makeCharacter(
  3919. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3920. {
  3921. front: {
  3922. height: math.unit(6, "feet"),
  3923. weight: math.unit(300, "lbs"),
  3924. name: "Front",
  3925. image: {
  3926. source: "./media/characters/tyrnn/front.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Main Height",
  3933. height: math.unit(355, "feet"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Fave. Height",
  3938. height: math.unit(2400, "feet")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(6, "feet"),
  3947. weight: math.unit(300, "lbs"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/appledectomy/front.svg"
  3951. }
  3952. }
  3953. },
  3954. [
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(2500, "feet")
  3958. },
  3959. {
  3960. name: "Megamacro",
  3961. height: math.unit(50, "miles"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Gigamacro",
  3966. height: math.unit(5000, "miles")
  3967. },
  3968. {
  3969. name: "Teramacro",
  3970. height: math.unit(250000, "miles")
  3971. },
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(200, "lbs"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/vulpes/front.svg",
  3983. extra: 573 / 543,
  3984. bottom: 0.033
  3985. }
  3986. },
  3987. side: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(200, "lbs"),
  3990. name: "Side",
  3991. image: {
  3992. source: "./media/characters/vulpes/side.svg",
  3993. extra: 573 / 543,
  3994. bottom: 0.01
  3995. }
  3996. },
  3997. back: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(200, "lbs"),
  4000. name: "Back",
  4001. image: {
  4002. source: "./media/characters/vulpes/back.svg",
  4003. extra: 573 / 543,
  4004. }
  4005. },
  4006. feet: {
  4007. height: math.unit(1.276, "feet"),
  4008. name: "Feet",
  4009. image: {
  4010. source: "./media/characters/vulpes/feet.svg"
  4011. }
  4012. },
  4013. maw: {
  4014. height: math.unit(1.18, "feet"),
  4015. name: "Maw",
  4016. image: {
  4017. source: "./media/characters/vulpes/maw.svg"
  4018. }
  4019. },
  4020. },
  4021. [
  4022. {
  4023. name: "Micro",
  4024. height: math.unit(2, "inches")
  4025. },
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(6.3, "feet")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(850, "feet")
  4033. },
  4034. {
  4035. name: "Megamacro",
  4036. height: math.unit(7500, "feet"),
  4037. default: true
  4038. },
  4039. {
  4040. name: "Gigamacro",
  4041. height: math.unit(570000, "miles")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4047. {
  4048. front: {
  4049. height: math.unit(6, "feet"),
  4050. weight: math.unit(210, "lbs"),
  4051. name: "Front",
  4052. image: {
  4053. source: "./media/characters/rain-fallen/front.svg"
  4054. }
  4055. },
  4056. side: {
  4057. height: math.unit(6, "feet"),
  4058. weight: math.unit(210, "lbs"),
  4059. name: "Side",
  4060. image: {
  4061. source: "./media/characters/rain-fallen/side.svg"
  4062. }
  4063. },
  4064. back: {
  4065. height: math.unit(6, "feet"),
  4066. weight: math.unit(210, "lbs"),
  4067. name: "Back",
  4068. image: {
  4069. source: "./media/characters/rain-fallen/back.svg"
  4070. }
  4071. },
  4072. feral: {
  4073. height: math.unit(9, "feet"),
  4074. weight: math.unit(700, "lbs"),
  4075. name: "Feral",
  4076. image: {
  4077. source: "./media/characters/rain-fallen/feral.svg"
  4078. }
  4079. },
  4080. },
  4081. [
  4082. {
  4083. name: "Normal",
  4084. height: math.unit(5, "meter")
  4085. },
  4086. {
  4087. name: "Macro",
  4088. height: math.unit(150, "meter"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Megamacro",
  4093. height: math.unit(278e6, "meter")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(2e9, "meter")
  4098. },
  4099. {
  4100. name: "Teramacro",
  4101. height: math.unit(8e12, "meter")
  4102. },
  4103. {
  4104. name: "Devourer",
  4105. height: math.unit(14, "zettameters")
  4106. },
  4107. {
  4108. name: "Scarlet King",
  4109. height: math.unit(18, "yottameters")
  4110. },
  4111. {
  4112. name: "Void",
  4113. height: math.unit(6.66e66, "yottameters")
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4119. {
  4120. standing: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(180, "lbs"),
  4123. name: "Standing",
  4124. image: {
  4125. source: "./media/characters/zaakira/standing.svg"
  4126. }
  4127. },
  4128. laying: {
  4129. height: math.unit(3, "feet"),
  4130. weight: math.unit(180, "lbs"),
  4131. name: "Laying",
  4132. image: {
  4133. source: "./media/characters/zaakira/laying.svg"
  4134. }
  4135. },
  4136. },
  4137. [
  4138. {
  4139. name: "Normal",
  4140. height: math.unit(12, "feet")
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(279, "feet"),
  4145. default: true
  4146. }
  4147. ]
  4148. ))
  4149. characterMakers.push(() => makeCharacter(
  4150. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4151. {
  4152. front: {
  4153. height: math.unit(6, "feet"),
  4154. weight: math.unit(250, "lbs"),
  4155. name: "Front",
  4156. image: {
  4157. source: "./media/characters/sigvald/front.svg",
  4158. extra: 1000 / 850
  4159. }
  4160. },
  4161. back: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(250, "lbs"),
  4164. name: "Back",
  4165. image: {
  4166. source: "./media/characters/sigvald/back.svg"
  4167. }
  4168. },
  4169. },
  4170. [
  4171. {
  4172. name: "Normal",
  4173. height: math.unit(8, "feet")
  4174. },
  4175. {
  4176. name: "Large",
  4177. height: math.unit(12, "feet")
  4178. },
  4179. {
  4180. name: "Larger",
  4181. height: math.unit(20, "feet")
  4182. },
  4183. {
  4184. name: "Macro",
  4185. height: math.unit(150, "feet")
  4186. },
  4187. {
  4188. name: "Macro+",
  4189. height: math.unit(200, "feet"),
  4190. default: true
  4191. },
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4196. {
  4197. side: {
  4198. height: math.unit(12, "feet"),
  4199. weight: math.unit(2000, "kg"),
  4200. name: "Side",
  4201. image: {
  4202. source: "./media/characters/scott/side.svg",
  4203. extra: 754 / 724,
  4204. bottom: 0.069
  4205. }
  4206. },
  4207. upright: {
  4208. height: math.unit(12, "feet"),
  4209. weight: math.unit(2000, "kg"),
  4210. name: "Upright",
  4211. image: {
  4212. source: "./media/characters/scott/upright.svg",
  4213. extra: 3881 / 3722,
  4214. bottom: 0.05
  4215. }
  4216. },
  4217. },
  4218. [
  4219. {
  4220. name: "Normal",
  4221. height: math.unit(12, "feet"),
  4222. default: true
  4223. },
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4228. {
  4229. side: {
  4230. height: math.unit(8, "meters"),
  4231. weight: math.unit(84755, "lbs"),
  4232. name: "Side",
  4233. image: {
  4234. source: "./media/characters/tobias/side.svg",
  4235. extra: 1474 / 1096,
  4236. bottom: 38.9 / 1513.1235
  4237. }
  4238. },
  4239. },
  4240. [
  4241. {
  4242. name: "Normal",
  4243. height: math.unit(8, "meters"),
  4244. default: true
  4245. },
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4250. {
  4251. front: {
  4252. height: math.unit(5.5, "feet"),
  4253. weight: math.unit(400, "lbs"),
  4254. name: "Front",
  4255. image: {
  4256. source: "./media/characters/kieran/front.svg",
  4257. extra: 2694 / 2364,
  4258. bottom: 217 / 2908
  4259. }
  4260. },
  4261. side: {
  4262. height: math.unit(5.5, "feet"),
  4263. weight: math.unit(400, "lbs"),
  4264. name: "Side",
  4265. image: {
  4266. source: "./media/characters/kieran/side.svg",
  4267. extra: 875 / 777,
  4268. bottom: 84.6 / 959
  4269. }
  4270. },
  4271. },
  4272. [
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(5.5, "feet"),
  4276. default: true
  4277. },
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4282. {
  4283. side: {
  4284. height: math.unit(2, "meters"),
  4285. weight: math.unit(70, "kg"),
  4286. name: "Side",
  4287. image: {
  4288. source: "./media/characters/sanya/side.svg",
  4289. bottom: 0.02,
  4290. extra: 1.02
  4291. }
  4292. },
  4293. },
  4294. [
  4295. {
  4296. name: "Small",
  4297. height: math.unit(2, "meters")
  4298. },
  4299. {
  4300. name: "Normal",
  4301. height: math.unit(3, "meters")
  4302. },
  4303. {
  4304. name: "Macro",
  4305. height: math.unit(16, "meters"),
  4306. default: true
  4307. },
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(2, "meters"),
  4315. weight: math.unit(120, "kg"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/miranda/front.svg",
  4319. extra: 195/185,
  4320. bottom: 10.9/206.5
  4321. }
  4322. },
  4323. back: {
  4324. height: math.unit(2, "meters"),
  4325. weight: math.unit(120, "kg"),
  4326. name: "Back",
  4327. image: {
  4328. source: "./media/characters/miranda/back.svg",
  4329. extra: 201/193,
  4330. bottom: 2.3/203.7
  4331. }
  4332. },
  4333. },
  4334. [
  4335. {
  4336. name: "Normal",
  4337. height: math.unit(10, "feet"),
  4338. default: true
  4339. }
  4340. ]
  4341. ))
  4342. characterMakers.push(() => makeCharacter(
  4343. { name: "James", species: ["deer"], tags: ["anthro"] },
  4344. {
  4345. side: {
  4346. height: math.unit(2, "meters"),
  4347. weight: math.unit(100, "kg"),
  4348. name: "Front",
  4349. image: {
  4350. source: "./media/characters/james/front.svg",
  4351. extra: 10 / 8.5
  4352. }
  4353. },
  4354. },
  4355. [
  4356. {
  4357. name: "Normal",
  4358. height: math.unit(8.5, "feet"),
  4359. default: true
  4360. }
  4361. ]
  4362. ))
  4363. characterMakers.push(() => makeCharacter(
  4364. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4365. {
  4366. side: {
  4367. height: math.unit(9.5, "feet"),
  4368. weight: math.unit(2500, "lbs"),
  4369. name: "Side",
  4370. image: {
  4371. source: "./media/characters/heather/side.svg"
  4372. }
  4373. },
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(9.5, "feet"),
  4379. default: true
  4380. }
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4385. {
  4386. side: {
  4387. height: math.unit(6.5, "feet"),
  4388. weight: math.unit(400, "lbs"),
  4389. name: "Side",
  4390. image: {
  4391. source: "./media/characters/lukas/side.svg",
  4392. extra: 7.25 / 6.5
  4393. }
  4394. },
  4395. },
  4396. [
  4397. {
  4398. name: "Normal",
  4399. height: math.unit(6.5, "feet"),
  4400. default: true
  4401. }
  4402. ]
  4403. ))
  4404. characterMakers.push(() => makeCharacter(
  4405. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4406. {
  4407. side: {
  4408. height: math.unit(5, "feet"),
  4409. weight: math.unit(3000, "lbs"),
  4410. name: "Side",
  4411. image: {
  4412. source: "./media/characters/louise/side.svg"
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Normal",
  4419. height: math.unit(5, "feet"),
  4420. default: true
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4426. {
  4427. side: {
  4428. height: math.unit(6, "feet"),
  4429. weight: math.unit(150, "lbs"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/ramona/side.svg"
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(5.3, "meters"),
  4440. default: true
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(20, "stories")
  4445. },
  4446. {
  4447. name: "Macro+",
  4448. height: math.unit(50, "stories")
  4449. },
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4454. {
  4455. standing: {
  4456. height: math.unit(5.75, "feet"),
  4457. weight: math.unit(160, "lbs"),
  4458. name: "Standing",
  4459. image: {
  4460. source: "./media/characters/deerpuff/standing.svg",
  4461. extra: 682 / 624
  4462. }
  4463. },
  4464. sitting: {
  4465. height: math.unit(5.75 / 1.79, "feet"),
  4466. weight: math.unit(160, "lbs"),
  4467. name: "Sitting",
  4468. image: {
  4469. source: "./media/characters/deerpuff/sitting.svg",
  4470. bottom: 44 / 400,
  4471. extra: 1
  4472. }
  4473. },
  4474. taurLaying: {
  4475. height: math.unit(6, "feet"),
  4476. weight: math.unit(400, "lbs"),
  4477. name: "Taur (Laying)",
  4478. image: {
  4479. source: "./media/characters/deerpuff/taur-laying.svg"
  4480. }
  4481. },
  4482. },
  4483. [
  4484. {
  4485. name: "Puffball",
  4486. height: math.unit(6, "inches")
  4487. },
  4488. {
  4489. name: "Normalpuff",
  4490. height: math.unit(5.75, "feet")
  4491. },
  4492. {
  4493. name: "Macropuff",
  4494. height: math.unit(1500, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Megapuff",
  4499. height: math.unit(500, "miles")
  4500. },
  4501. {
  4502. name: "Gigapuff",
  4503. height: math.unit(250000, "miles")
  4504. },
  4505. {
  4506. name: "Omegapuff",
  4507. height: math.unit(1000, "lightyears")
  4508. },
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4513. {
  4514. stomping: {
  4515. height: math.unit(6, "feet"),
  4516. weight: math.unit(170, "lbs"),
  4517. name: "Stomping",
  4518. image: {
  4519. source: "./media/characters/vivian/stomping.svg"
  4520. }
  4521. },
  4522. sitting: {
  4523. height: math.unit(6 / 1.75, "feet"),
  4524. weight: math.unit(170, "lbs"),
  4525. name: "Sitting",
  4526. image: {
  4527. source: "./media/characters/vivian/sitting.svg",
  4528. bottom: 1 / 6.4,
  4529. extra: 1,
  4530. }
  4531. },
  4532. },
  4533. [
  4534. {
  4535. name: "Normal",
  4536. height: math.unit(7, "feet"),
  4537. default: true
  4538. },
  4539. {
  4540. name: "Macro",
  4541. height: math.unit(10, "stories")
  4542. },
  4543. {
  4544. name: "Macro+",
  4545. height: math.unit(30, "stories")
  4546. },
  4547. {
  4548. name: "Megamacro",
  4549. height: math.unit(10, "miles")
  4550. },
  4551. {
  4552. name: "Megamacro+",
  4553. height: math.unit(2750000, "meters")
  4554. },
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(6, "feet"),
  4562. weight: math.unit(160, "lbs"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/prince/front.svg",
  4566. extra: 3400 / 3000
  4567. }
  4568. },
  4569. jumping: {
  4570. height: math.unit(6, "feet"),
  4571. weight: math.unit(160, "lbs"),
  4572. name: "Jumping",
  4573. image: {
  4574. source: "./media/characters/prince/jump.svg",
  4575. extra: 2555 / 2134
  4576. }
  4577. },
  4578. },
  4579. [
  4580. {
  4581. name: "Normal",
  4582. height: math.unit(7.75, "feet"),
  4583. default: true
  4584. },
  4585. {
  4586. name: "Not cute",
  4587. height: math.unit(17, "feet")
  4588. },
  4589. {
  4590. name: "I said NOT",
  4591. height: math.unit(91, "feet")
  4592. },
  4593. {
  4594. name: "Please stop",
  4595. height: math.unit(560, "feet")
  4596. },
  4597. {
  4598. name: "What have you done",
  4599. height: math.unit(2200, "feet")
  4600. },
  4601. {
  4602. name: "Deer God",
  4603. height: math.unit(3.6, "miles")
  4604. },
  4605. ]
  4606. ))
  4607. characterMakers.push(() => makeCharacter(
  4608. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4609. {
  4610. standing: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(300, "lbs"),
  4613. name: "Standing",
  4614. image: {
  4615. source: "./media/characters/psymon/standing.svg",
  4616. extra: 1888 / 1810,
  4617. bottom: 0.05
  4618. }
  4619. },
  4620. slithering: {
  4621. height: math.unit(6, "feet"),
  4622. weight: math.unit(300, "lbs"),
  4623. name: "Slithering",
  4624. image: {
  4625. source: "./media/characters/psymon/slithering.svg",
  4626. extra: 1330 / 1224
  4627. }
  4628. },
  4629. slitheringAlt: {
  4630. height: math.unit(6, "feet"),
  4631. weight: math.unit(300, "lbs"),
  4632. name: "Slithering (Alt)",
  4633. image: {
  4634. source: "./media/characters/psymon/slithering-alt.svg",
  4635. extra: 1330 / 1224
  4636. }
  4637. },
  4638. },
  4639. [
  4640. {
  4641. name: "Normal",
  4642. height: math.unit(11.25, "feet"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Large",
  4647. height: math.unit(27, "feet")
  4648. },
  4649. {
  4650. name: "Giant",
  4651. height: math.unit(87, "feet")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(365, "feet")
  4656. },
  4657. {
  4658. name: "Megamacro",
  4659. height: math.unit(3, "miles")
  4660. },
  4661. {
  4662. name: "World Serpent",
  4663. height: math.unit(8000, "miles")
  4664. },
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4669. {
  4670. front: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(180, "lbs"),
  4673. name: "Front",
  4674. image: {
  4675. source: "./media/characters/daimos/front.svg",
  4676. extra: 4160 / 3897,
  4677. bottom: 0.021
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Normal",
  4684. height: math.unit(8, "feet"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Big Dog",
  4689. height: math.unit(22, "feet")
  4690. },
  4691. {
  4692. name: "Macro",
  4693. height: math.unit(127, "feet")
  4694. },
  4695. {
  4696. name: "Megamacro",
  4697. height: math.unit(3600, "feet")
  4698. },
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4703. {
  4704. side: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(180, "lbs"),
  4707. name: "Side",
  4708. image: {
  4709. source: "./media/characters/blake/side.svg",
  4710. extra: 1212 / 1120,
  4711. bottom: 0.05
  4712. }
  4713. },
  4714. crouched: {
  4715. height: math.unit(6 * 0.57, "feet"),
  4716. weight: math.unit(180, "lbs"),
  4717. name: "Crouched",
  4718. image: {
  4719. source: "./media/characters/blake/crouched.svg",
  4720. extra: 840 / 587,
  4721. bottom: 0.04
  4722. }
  4723. },
  4724. bent: {
  4725. height: math.unit(6 * 0.75, "feet"),
  4726. weight: math.unit(180, "lbs"),
  4727. name: "Bent",
  4728. image: {
  4729. source: "./media/characters/blake/bent.svg",
  4730. extra: 592 / 544,
  4731. bottom: 0.035
  4732. }
  4733. },
  4734. },
  4735. [
  4736. {
  4737. name: "Normal",
  4738. height: math.unit(8 + 1 / 6, "feet"),
  4739. default: true
  4740. },
  4741. {
  4742. name: "Big Backside",
  4743. height: math.unit(37, "feet")
  4744. },
  4745. {
  4746. name: "Subway Shredder",
  4747. height: math.unit(72, "feet")
  4748. },
  4749. {
  4750. name: "City Carver",
  4751. height: math.unit(1675, "feet")
  4752. },
  4753. {
  4754. name: "Tectonic Tweaker",
  4755. height: math.unit(2300, "miles")
  4756. },
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4761. {
  4762. front: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(180, "lbs"),
  4765. name: "Front",
  4766. image: {
  4767. source: "./media/characters/guisetto/front.svg",
  4768. extra: 856 / 817,
  4769. bottom: 0.06
  4770. }
  4771. },
  4772. airborne: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(180, "lbs"),
  4775. name: "Airborne",
  4776. image: {
  4777. source: "./media/characters/guisetto/airborne.svg",
  4778. extra: 584 / 525
  4779. }
  4780. },
  4781. },
  4782. [
  4783. {
  4784. name: "Normal",
  4785. height: math.unit(10 + 11 / 12, "feet"),
  4786. default: true
  4787. },
  4788. {
  4789. name: "Large",
  4790. height: math.unit(35, "feet")
  4791. },
  4792. {
  4793. name: "Macro",
  4794. height: math.unit(475, "feet")
  4795. },
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4800. {
  4801. front: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(180, "lbs"),
  4804. name: "Front",
  4805. image: {
  4806. source: "./media/characters/luxor/front.svg",
  4807. extra: 2940 / 2152
  4808. }
  4809. },
  4810. back: {
  4811. height: math.unit(6, "feet"),
  4812. weight: math.unit(180, "lbs"),
  4813. name: "Back",
  4814. image: {
  4815. source: "./media/characters/luxor/back.svg",
  4816. extra: 1083 / 960
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(5 + 5 / 6, "feet"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Lamp",
  4828. height: math.unit(50, "feet")
  4829. },
  4830. {
  4831. name: "Lämp",
  4832. height: math.unit(300, "feet")
  4833. },
  4834. {
  4835. name: "The sun is a lamp",
  4836. height: math.unit(250000, "miles")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4842. {
  4843. front: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(50, "lbs"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/huoyan/front.svg"
  4849. }
  4850. },
  4851. side: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(180, "lbs"),
  4854. name: "Side",
  4855. image: {
  4856. source: "./media/characters/huoyan/side.svg"
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Chef",
  4863. height: math.unit(9, "feet")
  4864. },
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(65, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Macro",
  4872. height: math.unit(780, "feet")
  4873. },
  4874. {
  4875. name: "Flaming Mountain",
  4876. height: math.unit(4.8, "miles")
  4877. },
  4878. {
  4879. name: "Celestial",
  4880. height: math.unit(765000, "miles")
  4881. },
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(5 + 3 / 4, "feet"),
  4889. weight: math.unit(120, "lbs"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/tails/front.svg"
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(5 + 3 / 4, "feet"),
  4900. default: true
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(4, "feet"),
  4909. weight: math.unit(50, "lbs"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/rainy/front.svg"
  4913. }
  4914. }
  4915. },
  4916. [
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(800, "feet"),
  4920. default: true
  4921. }
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4926. {
  4927. front: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(150, "lbs"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/rainier/front.svg"
  4933. }
  4934. }
  4935. },
  4936. [
  4937. {
  4938. name: "Micro",
  4939. height: math.unit(2, "mm"),
  4940. default: true
  4941. }
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4946. {
  4947. front: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(180, "lbs"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/andy/front.svg"
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(8, "feet"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Macro",
  4964. height: math.unit(1000, "feet")
  4965. },
  4966. {
  4967. name: "Megamacro",
  4968. height: math.unit(5, "miles")
  4969. },
  4970. {
  4971. name: "Gigamacro",
  4972. height: math.unit(5000, "miles")
  4973. },
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4978. {
  4979. front: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(210, "lbs"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/cimmaron/front-sfw.svg",
  4985. extra: 701 / 676,
  4986. bottom: 0.046
  4987. }
  4988. },
  4989. back: {
  4990. height: math.unit(6, "feet"),
  4991. weight: math.unit(210, "lbs"),
  4992. name: "Back",
  4993. image: {
  4994. source: "./media/characters/cimmaron/back-sfw.svg",
  4995. extra: 701 / 676,
  4996. bottom: 0.046
  4997. }
  4998. },
  4999. frontNsfw: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(210, "lbs"),
  5002. name: "Front (NSFW)",
  5003. image: {
  5004. source: "./media/characters/cimmaron/front-nsfw.svg",
  5005. extra: 701 / 676,
  5006. bottom: 0.046
  5007. }
  5008. },
  5009. backNsfw: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(210, "lbs"),
  5012. name: "Back (NSFW)",
  5013. image: {
  5014. source: "./media/characters/cimmaron/back-nsfw.svg",
  5015. extra: 701 / 676,
  5016. bottom: 0.046
  5017. }
  5018. },
  5019. dick: {
  5020. height: math.unit(1.714, "feet"),
  5021. name: "Dick",
  5022. image: {
  5023. source: "./media/characters/cimmaron/dick.svg"
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(6, "feet"),
  5031. default: true
  5032. },
  5033. {
  5034. name: "Macro Mayor",
  5035. height: math.unit(350, "meters")
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(6, "feet"),
  5044. weight: math.unit(200, "lbs"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/akari/front.svg",
  5048. extra: 962 / 901,
  5049. bottom: 0.04
  5050. }
  5051. }
  5052. },
  5053. [
  5054. {
  5055. name: "Micro",
  5056. height: math.unit(5, "inches"),
  5057. default: true
  5058. },
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(7, "feet")
  5062. },
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5067. {
  5068. front: {
  5069. height: math.unit(6, "feet"),
  5070. weight: math.unit(140, "lbs"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/cynosura/front.svg",
  5074. extra: 896 / 847
  5075. }
  5076. },
  5077. back: {
  5078. height: math.unit(6, "feet"),
  5079. weight: math.unit(140, "lbs"),
  5080. name: "Back",
  5081. image: {
  5082. source: "./media/characters/cynosura/back.svg",
  5083. extra: 1365 / 1250
  5084. }
  5085. },
  5086. },
  5087. [
  5088. {
  5089. name: "Micro",
  5090. height: math.unit(4, "inches")
  5091. },
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(5.75, "feet"),
  5095. default: true
  5096. },
  5097. {
  5098. name: "Tall",
  5099. height: math.unit(10, "feet")
  5100. },
  5101. {
  5102. name: "Big",
  5103. height: math.unit(20, "feet")
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(50, "feet")
  5108. },
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5113. {
  5114. front: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(170, "lbs"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/gin/front.svg",
  5120. extra: 1.053,
  5121. bottom: 0.025
  5122. }
  5123. },
  5124. foot: {
  5125. height: math.unit(6 / 4.25, "feet"),
  5126. name: "Foot",
  5127. image: {
  5128. source: "./media/characters/gin/foot.svg"
  5129. }
  5130. },
  5131. sole: {
  5132. height: math.unit(6 / 4.40, "feet"),
  5133. name: "Sole",
  5134. image: {
  5135. source: "./media/characters/gin/sole.svg"
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(13 + 2 / 12, "feet")
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(1500, "feet")
  5147. },
  5148. {
  5149. name: "Megamacro",
  5150. height: math.unit(200, "miles"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Gigamacro",
  5155. height: math.unit(500, "megameters")
  5156. },
  5157. {
  5158. name: "Teramacro",
  5159. height: math.unit(15, "lightyears")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(6 + 1 / 6, "feet"),
  5168. weight: math.unit(178, "lbs"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/guy/front.svg"
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(6 + 1 / 6, "feet"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Large",
  5183. height: math.unit(25 + 7 / 12, "feet")
  5184. },
  5185. {
  5186. name: "Macro",
  5187. height: math.unit(60 + 9 / 12, "feet")
  5188. },
  5189. {
  5190. name: "Macro+",
  5191. height: math.unit(246, "feet")
  5192. },
  5193. {
  5194. name: "Macro++",
  5195. height: math.unit(878, "feet")
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5201. {
  5202. front: {
  5203. height: math.unit(9, "feet"),
  5204. weight: math.unit(800, "lbs"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/tiberius/front.svg",
  5208. extra: 2295 / 2071
  5209. }
  5210. },
  5211. back: {
  5212. height: math.unit(9, "feet"),
  5213. weight: math.unit(800, "lbs"),
  5214. name: "Back",
  5215. image: {
  5216. source: "./media/characters/tiberius/back.svg",
  5217. extra: 2373 / 2160
  5218. }
  5219. },
  5220. },
  5221. [
  5222. {
  5223. name: "Normal",
  5224. height: math.unit(9, "feet"),
  5225. default: true
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(600, "lbs"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/surgo/front.svg",
  5238. extra: 3591 / 2227
  5239. }
  5240. },
  5241. back: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(600, "lbs"),
  5244. name: "Back",
  5245. image: {
  5246. source: "./media/characters/surgo/back.svg",
  5247. extra: 3557 / 2228
  5248. }
  5249. },
  5250. laying: {
  5251. height: math.unit(6 * 0.85, "feet"),
  5252. weight: math.unit(600, "lbs"),
  5253. name: "Laying",
  5254. image: {
  5255. source: "./media/characters/surgo/laying.svg"
  5256. }
  5257. },
  5258. },
  5259. [
  5260. {
  5261. name: "Normal",
  5262. height: math.unit(6, "feet"),
  5263. default: true
  5264. }
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5269. {
  5270. side: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(150, "lbs"),
  5273. name: "Side",
  5274. image: {
  5275. source: "./media/characters/cibus/side.svg",
  5276. extra: 800 / 400
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(6, "feet"),
  5284. default: true
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5290. {
  5291. front: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(240, "lbs"),
  5294. name: "Front",
  5295. image: {
  5296. source: "./media/characters/nibbles/front.svg"
  5297. }
  5298. },
  5299. side: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(240, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/nibbles/side.svg"
  5305. }
  5306. },
  5307. },
  5308. [
  5309. {
  5310. name: "Normal",
  5311. height: math.unit(9, "feet"),
  5312. default: true
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5318. {
  5319. side: {
  5320. height: math.unit(5 + 1 / 6, "feet"),
  5321. weight: math.unit(130, "lbs"),
  5322. name: "Side",
  5323. image: {
  5324. source: "./media/characters/rikky/side.svg"
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(5 + 1 / 6, "feet")
  5332. },
  5333. {
  5334. name: "Macro",
  5335. height: math.unit(152, "feet"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Megamacro",
  5340. height: math.unit(7, "miles")
  5341. }
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5346. {
  5347. side: {
  5348. height: math.unit(370, "cm"),
  5349. weight: math.unit(350, "lbs"),
  5350. name: "Side",
  5351. image: {
  5352. source: "./media/characters/malfressa/side.svg"
  5353. }
  5354. },
  5355. walking: {
  5356. height: math.unit(370, "cm"),
  5357. weight: math.unit(350, "lbs"),
  5358. name: "Walking",
  5359. image: {
  5360. source: "./media/characters/malfressa/walking.svg"
  5361. }
  5362. },
  5363. feral: {
  5364. height: math.unit(2500, "cm"),
  5365. weight: math.unit(100000, "lbs"),
  5366. name: "Feral",
  5367. image: {
  5368. source: "./media/characters/malfressa/feral.svg",
  5369. extra: 2108 / 837,
  5370. bottom: 0.02
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(370, "cm")
  5378. },
  5379. {
  5380. name: "Macro",
  5381. height: math.unit(300, "meters"),
  5382. default: true
  5383. }
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5388. {
  5389. front: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(60, "kg"),
  5392. name: "Front",
  5393. image: {
  5394. source: "./media/characters/jaro/front.svg"
  5395. }
  5396. },
  5397. back: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(60, "kg"),
  5400. name: "Back",
  5401. image: {
  5402. source: "./media/characters/jaro/back.svg"
  5403. }
  5404. },
  5405. },
  5406. [
  5407. {
  5408. name: "Micro",
  5409. height: math.unit(7, "inches")
  5410. },
  5411. {
  5412. name: "Normal",
  5413. height: math.unit(5.5, "feet"),
  5414. default: true
  5415. },
  5416. {
  5417. name: "Minimacro",
  5418. height: math.unit(20, "feet")
  5419. },
  5420. {
  5421. name: "Macro",
  5422. height: math.unit(200, "meters")
  5423. }
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5428. {
  5429. front: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(195, "lb"),
  5432. name: "Front",
  5433. image: {
  5434. source: "./media/characters/rogue/front.svg"
  5435. }
  5436. },
  5437. },
  5438. [
  5439. {
  5440. name: "Macro",
  5441. height: math.unit(90, "feet"),
  5442. default: true
  5443. },
  5444. ]
  5445. ))
  5446. characterMakers.push(() => makeCharacter(
  5447. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5448. {
  5449. front: {
  5450. height: math.unit(5 + 8 / 12, "feet"),
  5451. weight: math.unit(140, "lb"),
  5452. name: "Front",
  5453. image: {
  5454. source: "./media/characters/piper/front.svg",
  5455. extra: 3928 / 3681
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Micro",
  5462. height: math.unit(2, "inches")
  5463. },
  5464. {
  5465. name: "Normal",
  5466. height: math.unit(5 + 8 / 12, "feet")
  5467. },
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(250, "feet"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Megamacro",
  5475. height: math.unit(7, "miles")
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5481. {
  5482. front: {
  5483. height: math.unit(6, "feet"),
  5484. weight: math.unit(220, "lb"),
  5485. name: "Front",
  5486. image: {
  5487. source: "./media/characters/gemini/front.svg"
  5488. }
  5489. },
  5490. back: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(220, "lb"),
  5493. name: "Back",
  5494. image: {
  5495. source: "./media/characters/gemini/back.svg"
  5496. }
  5497. },
  5498. kneeling: {
  5499. height: math.unit(6 / 1.5, "feet"),
  5500. weight: math.unit(220, "lb"),
  5501. name: "Kneeling",
  5502. image: {
  5503. source: "./media/characters/gemini/kneeling.svg",
  5504. bottom: 0.02
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(300, "meters"),
  5512. default: true
  5513. },
  5514. {
  5515. name: "Megamacro",
  5516. height: math.unit(6900, "meters")
  5517. },
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5522. {
  5523. anthro: {
  5524. height: math.unit(2.35, "meters"),
  5525. weight: math.unit(73, "kg"),
  5526. name: "Anthro",
  5527. image: {
  5528. source: "./media/characters/alicia/anthro.svg",
  5529. extra: 2571 / 2385,
  5530. bottom: 75 / 2648
  5531. }
  5532. },
  5533. paw: {
  5534. height: math.unit(1.32, "feet"),
  5535. name: "Paw",
  5536. image: {
  5537. source: "./media/characters/alicia/paw.svg"
  5538. }
  5539. },
  5540. feral: {
  5541. height: math.unit(1.69, "meters"),
  5542. weight: math.unit(73, "kg"),
  5543. name: "Feral",
  5544. image: {
  5545. source: "./media/characters/alicia/feral.svg",
  5546. extra: 2123 / 1715,
  5547. bottom: 222 / 2349
  5548. }
  5549. },
  5550. },
  5551. [
  5552. {
  5553. name: "Normal",
  5554. height: math.unit(2.35, "meters")
  5555. },
  5556. {
  5557. name: "Macro",
  5558. height: math.unit(60, "meters"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "Megamacro",
  5563. height: math.unit(10000, "kilometers")
  5564. },
  5565. ]
  5566. ))
  5567. characterMakers.push(() => makeCharacter(
  5568. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5569. {
  5570. front: {
  5571. height: math.unit(7, "feet"),
  5572. weight: math.unit(250, "lbs"),
  5573. name: "Front",
  5574. image: {
  5575. source: "./media/characters/archy/front.svg"
  5576. }
  5577. }
  5578. },
  5579. [
  5580. {
  5581. name: "Micro",
  5582. height: math.unit(1, "inch")
  5583. },
  5584. {
  5585. name: "Shorty",
  5586. height: math.unit(5, "feet")
  5587. },
  5588. {
  5589. name: "Normal",
  5590. height: math.unit(7, "feet")
  5591. },
  5592. {
  5593. name: "Macro",
  5594. height: math.unit(600, "meters"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Megamacro",
  5599. height: math.unit(1, "mile")
  5600. },
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5605. {
  5606. front: {
  5607. height: math.unit(1.65, "meters"),
  5608. weight: math.unit(74, "kg"),
  5609. name: "Front",
  5610. image: {
  5611. source: "./media/characters/berri/front.svg",
  5612. extra: 857 / 837,
  5613. bottom: 18 / 877
  5614. }
  5615. },
  5616. bum: {
  5617. height: math.unit(1.46, "feet"),
  5618. name: "Bum",
  5619. image: {
  5620. source: "./media/characters/berri/bum.svg"
  5621. }
  5622. },
  5623. mouth: {
  5624. height: math.unit(0.44, "feet"),
  5625. name: "Mouth",
  5626. image: {
  5627. source: "./media/characters/berri/mouth.svg"
  5628. }
  5629. },
  5630. paw: {
  5631. height: math.unit(0.826, "feet"),
  5632. name: "Paw",
  5633. image: {
  5634. source: "./media/characters/berri/paw.svg"
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(1.65, "meters")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(60, "m"),
  5646. default: true
  5647. },
  5648. {
  5649. name: "Megamacro",
  5650. height: math.unit(9.213, "km")
  5651. },
  5652. {
  5653. name: "Planet Eater",
  5654. height: math.unit(489, "megameters")
  5655. },
  5656. {
  5657. name: "Teramacro",
  5658. height: math.unit(2471635000000, "meters")
  5659. },
  5660. {
  5661. name: "Examacro",
  5662. height: math.unit(8.0624e+26, "meters")
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5668. {
  5669. front: {
  5670. height: math.unit(1.72, "meters"),
  5671. weight: math.unit(68, "kg"),
  5672. name: "Front",
  5673. image: {
  5674. source: "./media/characters/lexi/front.svg"
  5675. }
  5676. }
  5677. },
  5678. [
  5679. {
  5680. name: "Very Smol",
  5681. height: math.unit(10, "mm")
  5682. },
  5683. {
  5684. name: "Micro",
  5685. height: math.unit(6.8, "cm"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(1.72, "m")
  5691. }
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(1.69, "meters"),
  5699. weight: math.unit(68, "kg"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/martin/front.svg",
  5703. extra: 596 / 581
  5704. }
  5705. }
  5706. },
  5707. [
  5708. {
  5709. name: "Micro",
  5710. height: math.unit(6.85, "cm"),
  5711. default: true
  5712. },
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(1.69, "m")
  5716. }
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5721. {
  5722. front: {
  5723. height: math.unit(1.69, "meters"),
  5724. weight: math.unit(68, "kg"),
  5725. name: "Front",
  5726. image: {
  5727. source: "./media/characters/juno/front.svg"
  5728. }
  5729. }
  5730. },
  5731. [
  5732. {
  5733. name: "Micro",
  5734. height: math.unit(7, "cm")
  5735. },
  5736. {
  5737. name: "Normal",
  5738. height: math.unit(1.89, "m")
  5739. },
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(353, "meters"),
  5743. default: true
  5744. }
  5745. ]
  5746. ))
  5747. characterMakers.push(() => makeCharacter(
  5748. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5749. {
  5750. front: {
  5751. height: math.unit(1.93, "meters"),
  5752. weight: math.unit(83, "kg"),
  5753. name: "Front",
  5754. image: {
  5755. source: "./media/characters/samantha/front.svg"
  5756. }
  5757. },
  5758. frontClothed: {
  5759. height: math.unit(1.93, "meters"),
  5760. weight: math.unit(83, "kg"),
  5761. name: "Front (Clothed)",
  5762. image: {
  5763. source: "./media/characters/samantha/front-clothed.svg"
  5764. }
  5765. },
  5766. back: {
  5767. height: math.unit(1.93, "meters"),
  5768. weight: math.unit(83, "kg"),
  5769. name: "Back",
  5770. image: {
  5771. source: "./media/characters/samantha/back.svg"
  5772. }
  5773. },
  5774. },
  5775. [
  5776. {
  5777. name: "Normal",
  5778. height: math.unit(1.93, "m")
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(74, "meters"),
  5783. default: true
  5784. },
  5785. {
  5786. name: "Macro+",
  5787. height: math.unit(223, "meters"),
  5788. },
  5789. {
  5790. name: "Megamacro",
  5791. height: math.unit(8381, "meters"),
  5792. },
  5793. {
  5794. name: "Megamacro+",
  5795. height: math.unit(12000, "kilometers")
  5796. },
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5801. {
  5802. front: {
  5803. height: math.unit(1.92, "meters"),
  5804. weight: math.unit(80, "kg"),
  5805. name: "Front",
  5806. image: {
  5807. source: "./media/characters/dr-clay/front.svg"
  5808. }
  5809. },
  5810. frontClothed: {
  5811. height: math.unit(1.92, "meters"),
  5812. weight: math.unit(80, "kg"),
  5813. name: "Front (Clothed)",
  5814. image: {
  5815. source: "./media/characters/dr-clay/front-clothed.svg"
  5816. }
  5817. }
  5818. },
  5819. [
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(1.92, "m")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(214, "meters"),
  5827. default: true
  5828. },
  5829. {
  5830. name: "Macro+",
  5831. height: math.unit(12.237, "meters"),
  5832. },
  5833. {
  5834. name: "Megamacro",
  5835. height: math.unit(557, "megameters"),
  5836. },
  5837. {
  5838. name: "Unimaginable",
  5839. height: math.unit(120e9, "lightyears")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5845. {
  5846. front: {
  5847. height: math.unit(2, "meters"),
  5848. weight: math.unit(80, "kg"),
  5849. name: "Front",
  5850. image: {
  5851. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5852. }
  5853. }
  5854. },
  5855. [
  5856. {
  5857. name: "Teramacro",
  5858. height: math.unit(500000, "lightyears"),
  5859. default: true
  5860. },
  5861. ]
  5862. ))
  5863. characterMakers.push(() => makeCharacter(
  5864. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5865. {
  5866. front: {
  5867. height: math.unit(2, "meters"),
  5868. weight: math.unit(150, "kg"),
  5869. name: "Front",
  5870. image: {
  5871. source: "./media/characters/vemus/front.svg",
  5872. extra: 2384 / 2084,
  5873. bottom: 0.0123
  5874. }
  5875. }
  5876. },
  5877. [
  5878. {
  5879. name: "Normal",
  5880. height: math.unit(3.75, "meters"),
  5881. default: true
  5882. },
  5883. {
  5884. name: "Big",
  5885. height: math.unit(8, "meters")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(100, "meters")
  5890. },
  5891. {
  5892. name: "Macro+",
  5893. height: math.unit(1500, "meters")
  5894. },
  5895. {
  5896. name: "Stellar",
  5897. height: math.unit(14e8, "meters")
  5898. },
  5899. ]
  5900. ))
  5901. characterMakers.push(() => makeCharacter(
  5902. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5903. {
  5904. front: {
  5905. height: math.unit(2, "meters"),
  5906. weight: math.unit(70, "kg"),
  5907. name: "Front",
  5908. image: {
  5909. source: "./media/characters/beherit/front.svg",
  5910. extra: 1408 / 1242
  5911. }
  5912. }
  5913. },
  5914. [
  5915. {
  5916. name: "Normal",
  5917. height: math.unit(6, "feet")
  5918. },
  5919. {
  5920. name: "Lorg",
  5921. height: math.unit(25, "feet"),
  5922. default: true
  5923. },
  5924. {
  5925. name: "Lorger",
  5926. height: math.unit(75, "feet")
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(200, "meters")
  5931. },
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5936. {
  5937. front: {
  5938. height: math.unit(2, "meters"),
  5939. weight: math.unit(150, "kg"),
  5940. name: "Front",
  5941. image: {
  5942. source: "./media/characters/everett/front.svg",
  5943. extra: 2038 / 1737,
  5944. bottom: 0.03
  5945. }
  5946. },
  5947. paw: {
  5948. height: math.unit(2 / 3.6, "meters"),
  5949. name: "Paw",
  5950. image: {
  5951. source: "./media/characters/everett/paw.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(15, "feet"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Lorg",
  5963. height: math.unit(70, "feet"),
  5964. default: true
  5965. },
  5966. {
  5967. name: "Lorger",
  5968. height: math.unit(250, "feet")
  5969. },
  5970. {
  5971. name: "Macro",
  5972. height: math.unit(500, "meters")
  5973. },
  5974. ]
  5975. ))
  5976. characterMakers.push(() => makeCharacter(
  5977. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5978. {
  5979. front: {
  5980. height: math.unit(2, "meters"),
  5981. weight: math.unit(86, "kg"),
  5982. name: "Front",
  5983. image: {
  5984. source: "./media/characters/rose-lion/front.svg"
  5985. }
  5986. },
  5987. bent: {
  5988. height: math.unit(2 / 1.4288, "meters"),
  5989. weight: math.unit(86, "kg"),
  5990. name: "Bent",
  5991. image: {
  5992. source: "./media/characters/rose-lion/bent.svg"
  5993. }
  5994. }
  5995. },
  5996. [
  5997. {
  5998. name: "Mini-Micro",
  5999. height: math.unit(1, "cm")
  6000. },
  6001. {
  6002. name: "Micro",
  6003. height: math.unit(3.5, "inches"),
  6004. default: true
  6005. },
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(6 + 1 / 6, "feet")
  6009. },
  6010. {
  6011. name: "Mini-Macro",
  6012. height: math.unit(9 + 10 / 12, "feet")
  6013. },
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6018. {
  6019. front: {
  6020. height: math.unit(2, "meters"),
  6021. weight: math.unit(350, "lbs"),
  6022. name: "Front",
  6023. image: {
  6024. source: "./media/characters/regal/front.svg"
  6025. }
  6026. },
  6027. back: {
  6028. height: math.unit(2, "meters"),
  6029. weight: math.unit(350, "lbs"),
  6030. name: "Back",
  6031. image: {
  6032. source: "./media/characters/regal/back.svg"
  6033. }
  6034. },
  6035. },
  6036. [
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(350, "feet"),
  6040. default: true
  6041. }
  6042. ]
  6043. ))
  6044. characterMakers.push(() => makeCharacter(
  6045. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6046. {
  6047. front: {
  6048. height: math.unit(4 + 11 / 12, "feet"),
  6049. weight: math.unit(100, "lbs"),
  6050. name: "Front",
  6051. image: {
  6052. source: "./media/characters/opal/front.svg"
  6053. }
  6054. },
  6055. frontAlt: {
  6056. height: math.unit(4 + 11 / 12, "feet"),
  6057. weight: math.unit(100, "lbs"),
  6058. name: "Front (Alt)",
  6059. image: {
  6060. source: "./media/characters/opal/front-alt.svg"
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Small",
  6067. height: math.unit(4 + 11 / 12, "feet")
  6068. },
  6069. {
  6070. name: "Normal",
  6071. height: math.unit(20, "feet"),
  6072. default: true
  6073. },
  6074. {
  6075. name: "Macro",
  6076. height: math.unit(120, "feet")
  6077. },
  6078. {
  6079. name: "Megamacro",
  6080. height: math.unit(80, "miles")
  6081. },
  6082. {
  6083. name: "True Size",
  6084. height: math.unit(100000, "lightyears")
  6085. },
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6090. {
  6091. front: {
  6092. height: math.unit(6, "feet"),
  6093. weight: math.unit(200, "lbs"),
  6094. name: "Front",
  6095. image: {
  6096. source: "./media/characters/vector-wuff/front.svg"
  6097. }
  6098. }
  6099. },
  6100. [
  6101. {
  6102. name: "Normal",
  6103. height: math.unit(2.8, "meters")
  6104. },
  6105. {
  6106. name: "Macro",
  6107. height: math.unit(450, "meters"),
  6108. default: true
  6109. },
  6110. {
  6111. name: "Megamacro",
  6112. height: math.unit(15, "kilometers")
  6113. }
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6118. {
  6119. front: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(256, "lbs"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/dannik/front.svg"
  6125. }
  6126. }
  6127. },
  6128. [
  6129. {
  6130. name: "Macro",
  6131. height: math.unit(69.57, "meters"),
  6132. default: true
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(120, "lbs"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/azura-saharah/front.svg"
  6145. }
  6146. },
  6147. back: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(120, "lbs"),
  6150. name: "Back",
  6151. image: {
  6152. source: "./media/characters/azura-saharah/back.svg"
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(100, "feet"),
  6160. default: true
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6166. {
  6167. side: {
  6168. height: math.unit(5 + 4 / 12, "feet"),
  6169. weight: math.unit(163, "lbs"),
  6170. name: "Side",
  6171. image: {
  6172. source: "./media/characters/kennedy/side.svg"
  6173. }
  6174. }
  6175. },
  6176. [
  6177. {
  6178. name: "Standard Doggo",
  6179. height: math.unit(5 + 4 / 12, "feet")
  6180. },
  6181. {
  6182. name: "Big Doggo",
  6183. height: math.unit(25 + 3 / 12, "feet"),
  6184. default: true
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(90, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/odi-lunar/front.svg"
  6197. }
  6198. }
  6199. },
  6200. [
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(3, "inches"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(5.5, "feet")
  6209. }
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6214. {
  6215. back: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(220, "lbs"),
  6218. name: "Back",
  6219. image: {
  6220. source: "./media/characters/mandake/back.svg"
  6221. }
  6222. }
  6223. },
  6224. [
  6225. {
  6226. name: "Normal",
  6227. height: math.unit(7, "feet"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(78, "feet")
  6233. },
  6234. {
  6235. name: "Macro+",
  6236. height: math.unit(300, "meters")
  6237. },
  6238. {
  6239. name: "Macro++",
  6240. height: math.unit(2400, "feet")
  6241. },
  6242. {
  6243. name: "Megamacro",
  6244. height: math.unit(5167, "meters")
  6245. },
  6246. {
  6247. name: "Gigamacro",
  6248. height: math.unit(41769, "miles")
  6249. },
  6250. ]
  6251. ))
  6252. characterMakers.push(() => makeCharacter(
  6253. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6254. {
  6255. front: {
  6256. height: math.unit(6, "feet"),
  6257. weight: math.unit(120, "lbs"),
  6258. name: "Front",
  6259. image: {
  6260. source: "./media/characters/yozey/front.svg"
  6261. }
  6262. },
  6263. frontAlt: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(120, "lbs"),
  6266. name: "Front (Alt)",
  6267. image: {
  6268. source: "./media/characters/yozey/front-alt.svg"
  6269. }
  6270. },
  6271. side: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(120, "lbs"),
  6274. name: "Side",
  6275. image: {
  6276. source: "./media/characters/yozey/side.svg"
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Micro",
  6283. height: math.unit(3, "inches"),
  6284. default: true
  6285. },
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(6, "feet")
  6289. }
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6294. {
  6295. front: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(103, "lbs"),
  6298. name: "Front",
  6299. image: {
  6300. source: "./media/characters/valeska-voss/front.svg"
  6301. }
  6302. }
  6303. },
  6304. [
  6305. {
  6306. name: "Mini-Sized Sub",
  6307. height: math.unit(3.1, "inches")
  6308. },
  6309. {
  6310. name: "Mid-Sized Sub",
  6311. height: math.unit(6.2, "inches")
  6312. },
  6313. {
  6314. name: "Full-Sized Sub",
  6315. height: math.unit(9.3, "inches")
  6316. },
  6317. {
  6318. name: "Normal",
  6319. height: math.unit(5 + 2 / 12, "foot"),
  6320. default: true
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6326. {
  6327. front: {
  6328. height: math.unit(6, "feet"),
  6329. weight: math.unit(160, "lbs"),
  6330. name: "Front",
  6331. image: {
  6332. source: "./media/characters/gene-zeta/front.svg",
  6333. bottom: 0.03,
  6334. extra: 1
  6335. }
  6336. }
  6337. },
  6338. [
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(6.25, "foot"),
  6342. default: true
  6343. },
  6344. ]
  6345. ))
  6346. characterMakers.push(() => makeCharacter(
  6347. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6348. {
  6349. front: {
  6350. height: math.unit(6, "feet"),
  6351. weight: math.unit(350, "lbs"),
  6352. name: "Front",
  6353. image: {
  6354. source: "./media/characters/razinox/front.svg",
  6355. extra: 1686 / 1548,
  6356. bottom: 28.2 / 1868
  6357. }
  6358. },
  6359. back: {
  6360. height: math.unit(6, "feet"),
  6361. weight: math.unit(350, "lbs"),
  6362. name: "Back",
  6363. image: {
  6364. source: "./media/characters/razinox/back.svg",
  6365. extra: 1660 / 1590,
  6366. bottom: 15 / 1665
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(10 + 8 / 12, "foot")
  6374. },
  6375. {
  6376. name: "Minimacro",
  6377. height: math.unit(15, "foot")
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(60, "foot"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Megamacro",
  6386. height: math.unit(5, "miles")
  6387. },
  6388. {
  6389. name: "Gigamacro",
  6390. height: math.unit(6000, "miles")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(150, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/cobalt/front.svg"
  6403. }
  6404. }
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(8 + 1 / 12, "foot")
  6410. },
  6411. {
  6412. name: "Macro",
  6413. height: math.unit(111, "foot"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Supracosmic",
  6418. height: math.unit(1e42, "feet")
  6419. },
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6424. {
  6425. front: {
  6426. height: math.unit(6, "feet"),
  6427. weight: math.unit(140, "lbs"),
  6428. name: "Front",
  6429. image: {
  6430. source: "./media/characters/amanda/front.svg"
  6431. }
  6432. }
  6433. },
  6434. [
  6435. {
  6436. name: "Micro",
  6437. height: math.unit(5, "inches"),
  6438. default: true
  6439. },
  6440. ]
  6441. ))
  6442. characterMakers.push(() => makeCharacter(
  6443. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6444. {
  6445. front: {
  6446. height: math.unit(5.59, "feet"),
  6447. weight: math.unit(250, "lbs"),
  6448. name: "Front",
  6449. image: {
  6450. source: "./media/characters/teal/front.svg"
  6451. }
  6452. },
  6453. frontAlt: {
  6454. height: math.unit(6, "feet"),
  6455. weight: math.unit(250, "lbs"),
  6456. name: "Front (Alt)",
  6457. image: {
  6458. source: "./media/characters/teal/front-alt.svg",
  6459. bottom: 0.04,
  6460. extra: 1
  6461. }
  6462. },
  6463. },
  6464. [
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(12, "feet"),
  6468. default: true
  6469. },
  6470. {
  6471. name: "Macro",
  6472. height: math.unit(300, "feet")
  6473. },
  6474. ]
  6475. ))
  6476. characterMakers.push(() => makeCharacter(
  6477. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6478. {
  6479. frontCat: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(180, "lbs"),
  6482. name: "Front (Cat)",
  6483. image: {
  6484. source: "./media/characters/ravin-amulet/front-cat.svg"
  6485. }
  6486. },
  6487. frontCatAlt: {
  6488. height: math.unit(6, "feet"),
  6489. weight: math.unit(180, "lbs"),
  6490. name: "Front (Alt, Cat)",
  6491. image: {
  6492. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6493. }
  6494. },
  6495. frontWerewolf: {
  6496. height: math.unit(6 * 1.2, "feet"),
  6497. weight: math.unit(225, "lbs"),
  6498. name: "Front (Werewolf)",
  6499. image: {
  6500. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6501. }
  6502. },
  6503. backWerewolf: {
  6504. height: math.unit(6 * 1.2, "feet"),
  6505. weight: math.unit(225, "lbs"),
  6506. name: "Back (Werewolf)",
  6507. image: {
  6508. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Nano",
  6515. height: math.unit(1, "micrometer")
  6516. },
  6517. {
  6518. name: "Micro",
  6519. height: math.unit(1, "inch")
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(6, "feet"),
  6524. default: true
  6525. },
  6526. {
  6527. name: "Macro",
  6528. height: math.unit(60, "feet")
  6529. }
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6534. {
  6535. front: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(165, "lbs"),
  6538. name: "Front",
  6539. image: {
  6540. source: "./media/characters/fluoresce/front.svg"
  6541. }
  6542. }
  6543. },
  6544. [
  6545. {
  6546. name: "Micro",
  6547. height: math.unit(6, "cm")
  6548. },
  6549. {
  6550. name: "Normal",
  6551. height: math.unit(5 + 7 / 12, "feet"),
  6552. default: true
  6553. },
  6554. {
  6555. name: "Macro",
  6556. height: math.unit(56, "feet")
  6557. },
  6558. {
  6559. name: "Megamacro",
  6560. height: math.unit(1.9, "miles")
  6561. },
  6562. ]
  6563. ))
  6564. characterMakers.push(() => makeCharacter(
  6565. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6566. {
  6567. front: {
  6568. height: math.unit(9 + 6 / 12, "feet"),
  6569. weight: math.unit(523, "lbs"),
  6570. name: "Side",
  6571. image: {
  6572. source: "./media/characters/aurora/side.svg"
  6573. }
  6574. }
  6575. },
  6576. [
  6577. {
  6578. name: "Normal",
  6579. height: math.unit(9 + 6 / 12, "feet")
  6580. },
  6581. {
  6582. name: "Macro",
  6583. height: math.unit(96, "feet"),
  6584. default: true
  6585. },
  6586. {
  6587. name: "Macro+",
  6588. height: math.unit(243, "feet")
  6589. },
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(194, "cm"),
  6597. weight: math.unit(90, "kg"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/ranek/front.svg"
  6601. }
  6602. },
  6603. side: {
  6604. height: math.unit(194, "cm"),
  6605. weight: math.unit(90, "kg"),
  6606. name: "Side",
  6607. image: {
  6608. source: "./media/characters/ranek/side.svg"
  6609. }
  6610. },
  6611. back: {
  6612. height: math.unit(194, "cm"),
  6613. weight: math.unit(90, "kg"),
  6614. name: "Back",
  6615. image: {
  6616. source: "./media/characters/ranek/back.svg"
  6617. }
  6618. },
  6619. feral: {
  6620. height: math.unit(30, "cm"),
  6621. weight: math.unit(1.6, "lbs"),
  6622. name: "Feral",
  6623. image: {
  6624. source: "./media/characters/ranek/feral.svg"
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(194, "cm"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(100, "meters")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(5 + 6 / 12, "feet"),
  6645. weight: math.unit(153, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/andrew-cooper/front.svg"
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Nano",
  6655. height: math.unit(1, "mm")
  6656. },
  6657. {
  6658. name: "Micro",
  6659. height: math.unit(2, "inches")
  6660. },
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(5 + 6 / 12, "feet"),
  6664. default: true
  6665. }
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6670. {
  6671. front: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(180, "lbs"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/akane-sato/front.svg",
  6677. extra: 1219 / 1140
  6678. }
  6679. },
  6680. back: {
  6681. height: math.unit(6, "feet"),
  6682. weight: math.unit(180, "lbs"),
  6683. name: "Back",
  6684. image: {
  6685. source: "./media/characters/akane-sato/back.svg",
  6686. extra: 1219 / 1170
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(2.5, "meters")
  6694. },
  6695. {
  6696. name: "Macro",
  6697. height: math.unit(250, "meters"),
  6698. default: true
  6699. },
  6700. {
  6701. name: "Megamacro",
  6702. height: math.unit(25, "km")
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(65, "kg"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/rook/front.svg",
  6715. extra: 960 / 950
  6716. }
  6717. }
  6718. },
  6719. [
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(8.8, "feet")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(88, "feet"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "Megamacro",
  6731. height: math.unit(8, "miles")
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(12 + 2 / 12, "feet"),
  6740. weight: math.unit(808, "lbs"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/prodigy/front.svg"
  6744. }
  6745. }
  6746. },
  6747. [
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(12 + 2 / 12, "feet"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(143, "feet")
  6756. },
  6757. {
  6758. name: "Macro+",
  6759. height: math.unit(400, "feet")
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(225, "lbs"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/daniel/front.svg"
  6772. }
  6773. },
  6774. leaning: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(225, "lbs"),
  6777. name: "Leaning",
  6778. image: {
  6779. source: "./media/characters/daniel/leaning.svg"
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(1000, "feet"),
  6787. default: true
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(88, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/chiros/front.svg",
  6800. extra: 306 / 226
  6801. }
  6802. },
  6803. side: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(88, "lbs"),
  6806. name: "Side",
  6807. image: {
  6808. source: "./media/characters/chiros/side.svg",
  6809. extra: 306 / 226
  6810. }
  6811. },
  6812. },
  6813. [
  6814. {
  6815. name: "Normal",
  6816. height: math.unit(6, "cm"),
  6817. default: true
  6818. },
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6823. {
  6824. front: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(100, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/selka/front.svg",
  6830. extra: 947 / 887
  6831. }
  6832. }
  6833. },
  6834. [
  6835. {
  6836. name: "Normal",
  6837. height: math.unit(5, "cm"),
  6838. default: true
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6844. {
  6845. front: {
  6846. height: math.unit(8 + 3 / 12, "feet"),
  6847. weight: math.unit(424, "lbs"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/verin/front.svg",
  6851. extra: 1845 / 1550
  6852. }
  6853. },
  6854. frontArmored: {
  6855. height: math.unit(8 + 3 / 12, "feet"),
  6856. weight: math.unit(424, "lbs"),
  6857. name: "Front (Armored)",
  6858. image: {
  6859. source: "./media/characters/verin/front-armor.svg",
  6860. extra: 1845 / 1550,
  6861. bottom: 0.01
  6862. }
  6863. },
  6864. back: {
  6865. height: math.unit(8 + 3 / 12, "feet"),
  6866. weight: math.unit(424, "lbs"),
  6867. name: "Back",
  6868. image: {
  6869. source: "./media/characters/verin/back.svg",
  6870. bottom: 0.1,
  6871. extra: 1
  6872. }
  6873. },
  6874. foot: {
  6875. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6876. name: "Foot",
  6877. image: {
  6878. source: "./media/characters/verin/foot.svg"
  6879. }
  6880. },
  6881. },
  6882. [
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(8 + 3 / 12, "feet")
  6886. },
  6887. {
  6888. name: "Minimacro",
  6889. height: math.unit(21, "feet"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(626, "feet")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(2.718, "meters"),
  6903. weight: math.unit(150, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/sovrim-terraquian/front.svg"
  6907. }
  6908. },
  6909. back: {
  6910. height: math.unit(2.718, "meters"),
  6911. weight: math.unit(150, "lbs"),
  6912. name: "Back",
  6913. image: {
  6914. source: "./media/characters/sovrim-terraquian/back.svg"
  6915. }
  6916. }
  6917. },
  6918. [
  6919. {
  6920. name: "Micro",
  6921. height: math.unit(2, "inches")
  6922. },
  6923. {
  6924. name: "Small",
  6925. height: math.unit(1, "meter")
  6926. },
  6927. {
  6928. name: "Normal",
  6929. height: math.unit(Math.E, "meters"),
  6930. default: true
  6931. },
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(20, "meters")
  6935. },
  6936. {
  6937. name: "Macro+",
  6938. height: math.unit(400, "meters")
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(7, "feet"),
  6947. weight: math.unit(489, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/reece-silvermane/front.svg",
  6951. bottom: 0.02,
  6952. extra: 1
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(1.5, "miles"),
  6960. default: true
  6961. },
  6962. ]
  6963. ))
  6964. characterMakers.push(() => makeCharacter(
  6965. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6966. {
  6967. front: {
  6968. height: math.unit(6, "feet"),
  6969. weight: math.unit(78, "kg"),
  6970. name: "Front",
  6971. image: {
  6972. source: "./media/characters/kane/front.svg",
  6973. extra: 978 / 899
  6974. }
  6975. },
  6976. },
  6977. [
  6978. {
  6979. name: "Normal",
  6980. height: math.unit(2.1, "m"),
  6981. },
  6982. {
  6983. name: "Macro",
  6984. height: math.unit(1, "km"),
  6985. default: true
  6986. },
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6991. {
  6992. front: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(200, "kg"),
  6995. name: "Front",
  6996. image: {
  6997. source: "./media/characters/tegon/front.svg",
  6998. bottom: 0.01,
  6999. extra: 1
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Micro",
  7006. height: math.unit(1, "inch")
  7007. },
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(6 + 3 / 12, "feet"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(300, "feet")
  7016. },
  7017. {
  7018. name: "Megamacro",
  7019. height: math.unit(69, "miles")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7025. {
  7026. side: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(2304, "lbs"),
  7029. name: "Side",
  7030. image: {
  7031. source: "./media/characters/arcturax/side.svg",
  7032. extra: 790 / 376,
  7033. bottom: 0.01
  7034. }
  7035. },
  7036. },
  7037. [
  7038. {
  7039. name: "Micro",
  7040. height: math.unit(2, "inch")
  7041. },
  7042. {
  7043. name: "Normal",
  7044. height: math.unit(6, "feet")
  7045. },
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(39, "feet"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Megamacro",
  7053. height: math.unit(7, "miles")
  7054. },
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(50, "lbs"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/sentri/front.svg",
  7066. extra: 1750 / 1570,
  7067. bottom: 0.025
  7068. }
  7069. },
  7070. frontAlt: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(50, "lbs"),
  7073. name: "Front (Alt)",
  7074. image: {
  7075. source: "./media/characters/sentri/front-alt.svg",
  7076. extra: 1750 / 1570,
  7077. bottom: 0.025
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Normal",
  7084. height: math.unit(15, "feet"),
  7085. default: true
  7086. },
  7087. {
  7088. name: "Macro",
  7089. height: math.unit(2500, "feet")
  7090. }
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(5 + 8 / 12, "feet"),
  7098. weight: math.unit(130, "lbs"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/corvin/front.svg",
  7102. extra: 1803 / 1629
  7103. }
  7104. },
  7105. frontShirt: {
  7106. height: math.unit(5 + 8 / 12, "feet"),
  7107. weight: math.unit(130, "lbs"),
  7108. name: "Front (Shirt)",
  7109. image: {
  7110. source: "./media/characters/corvin/front-shirt.svg",
  7111. extra: 1803 / 1629
  7112. }
  7113. },
  7114. frontPoncho: {
  7115. height: math.unit(5 + 8 / 12, "feet"),
  7116. weight: math.unit(130, "lbs"),
  7117. name: "Front (Poncho)",
  7118. image: {
  7119. source: "./media/characters/corvin/front-poncho.svg",
  7120. extra: 1803 / 1629
  7121. }
  7122. },
  7123. side: {
  7124. height: math.unit(5 + 8 / 12, "feet"),
  7125. weight: math.unit(130, "lbs"),
  7126. name: "Side",
  7127. image: {
  7128. source: "./media/characters/corvin/side.svg",
  7129. extra: 1012 / 945
  7130. }
  7131. },
  7132. back: {
  7133. height: math.unit(5 + 8 / 12, "feet"),
  7134. weight: math.unit(130, "lbs"),
  7135. name: "Back",
  7136. image: {
  7137. source: "./media/characters/corvin/back.svg",
  7138. extra: 1803 / 1629
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Micro",
  7145. height: math.unit(3, "inches")
  7146. },
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(5 + 8 / 12, "feet")
  7150. },
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(300, "feet"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Megamacro",
  7158. height: math.unit(500, "miles")
  7159. }
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(135, "lbs"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/q/front.svg",
  7171. extra: 854 / 752,
  7172. bottom: 0.005
  7173. }
  7174. },
  7175. back: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(130, "lbs"),
  7178. name: "Back",
  7179. image: {
  7180. source: "./media/characters/q/back.svg",
  7181. extra: 854 / 752
  7182. }
  7183. },
  7184. },
  7185. [
  7186. {
  7187. name: "Macro",
  7188. height: math.unit(90, "feet"),
  7189. default: true
  7190. },
  7191. {
  7192. name: "Extra Macro",
  7193. height: math.unit(300, "feet"),
  7194. },
  7195. {
  7196. name: "BIG WALF",
  7197. height: math.unit(750, "feet"),
  7198. },
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7203. {
  7204. front: {
  7205. height: math.unit(6, "feet"),
  7206. weight: math.unit(150, "lbs"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/carley/front.svg",
  7210. extra: 3927 / 3540,
  7211. bottom: 0.03
  7212. }
  7213. }
  7214. },
  7215. [
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(6 + 3 / 12, "feet")
  7219. },
  7220. {
  7221. name: "Macro",
  7222. height: math.unit(185, "feet"),
  7223. default: true
  7224. },
  7225. {
  7226. name: "Megamacro",
  7227. height: math.unit(8, "miles"),
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(3, "feet"),
  7236. weight: math.unit(28, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/citrine/front.svg"
  7240. }
  7241. }
  7242. },
  7243. [
  7244. {
  7245. name: "Normal",
  7246. height: math.unit(3, "feet"),
  7247. default: true
  7248. }
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7253. {
  7254. front: {
  7255. height: math.unit(14, "feet"),
  7256. weight: math.unit(1450, "kg"),
  7257. capacity: math.unit(15, "people"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/aura-starwind/front.svg",
  7261. extra: 1455 / 1335
  7262. }
  7263. },
  7264. side: {
  7265. height: math.unit(14, "feet"),
  7266. weight: math.unit(1450, "kg"),
  7267. capacity: math.unit(15, "people"),
  7268. name: "Side",
  7269. image: {
  7270. source: "./media/characters/aura-starwind/side.svg",
  7271. extra: 1654 / 1497
  7272. }
  7273. },
  7274. taur: {
  7275. height: math.unit(18, "feet"),
  7276. weight: math.unit(5500, "kg"),
  7277. capacity: math.unit(50, "people"),
  7278. name: "Taur",
  7279. image: {
  7280. source: "./media/characters/aura-starwind/taur.svg",
  7281. extra: 1760 / 1650
  7282. }
  7283. },
  7284. feral: {
  7285. height: math.unit(46, "feet"),
  7286. weight: math.unit(25000, "kg"),
  7287. capacity: math.unit(120, "people"),
  7288. name: "Feral",
  7289. image: {
  7290. source: "./media/characters/aura-starwind/feral.svg"
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Normal",
  7297. height: math.unit(14, "feet"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Macro",
  7302. height: math.unit(50, "meters")
  7303. },
  7304. {
  7305. name: "Megamacro",
  7306. height: math.unit(5000, "meters")
  7307. },
  7308. {
  7309. name: "Gigamacro",
  7310. height: math.unit(100000, "kilometers")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(2 + 7 / 12, "feet"),
  7319. weight: math.unit(32, "lbs"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/rivet/front.svg",
  7323. extra: 1716 / 1658,
  7324. bottom: 0.03
  7325. }
  7326. },
  7327. foot: {
  7328. height: math.unit(0.551, "feet"),
  7329. name: "Rivet's Foot",
  7330. image: {
  7331. source: "./media/characters/rivet/foot.svg"
  7332. },
  7333. rename: true
  7334. }
  7335. },
  7336. [
  7337. {
  7338. name: "Micro",
  7339. height: math.unit(1.5, "inches"),
  7340. },
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(2 + 7 / 12, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(85, "feet")
  7349. },
  7350. {
  7351. name: "Megamacro",
  7352. height: math.unit(2.2, "km")
  7353. }
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(5 + 9 / 12, "feet"),
  7361. weight: math.unit(150, "lbs"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/coffee/front.svg",
  7365. extra: 3666 / 3032,
  7366. bottom: 0.04
  7367. }
  7368. },
  7369. foot: {
  7370. height: math.unit(1.29, "feet"),
  7371. name: "Foot",
  7372. image: {
  7373. source: "./media/characters/coffee/foot.svg"
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Micro",
  7380. height: math.unit(2, "inches"),
  7381. },
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(5 + 9 / 12, "feet"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(800, "feet")
  7390. },
  7391. {
  7392. name: "Megamacro",
  7393. height: math.unit(25, "miles")
  7394. }
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(200, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/chari-gal/front.svg",
  7406. extra: 1568 / 1385,
  7407. bottom: 0.047
  7408. }
  7409. },
  7410. gigantamax: {
  7411. height: math.unit(6 * 16, "feet"),
  7412. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7413. name: "Gigantamax",
  7414. image: {
  7415. source: "./media/characters/chari-gal/gigantamax.svg",
  7416. extra: 1124 / 888,
  7417. bottom: 0.03
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(5 + 7 / 12, "feet")
  7425. },
  7426. {
  7427. name: "Macro",
  7428. height: math.unit(200, "feet"),
  7429. default: true
  7430. }
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(6, "feet"),
  7438. weight: math.unit(150, "lbs"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/nova/front.svg",
  7442. extra: 5000 / 4722,
  7443. bottom: 0.02
  7444. }
  7445. }
  7446. },
  7447. [
  7448. {
  7449. name: "Micro-",
  7450. height: math.unit(0.8, "inches")
  7451. },
  7452. {
  7453. name: "Micro",
  7454. height: math.unit(2, "inches"),
  7455. default: true
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(3 + 1 / 12, "feet"),
  7464. weight: math.unit(21.7, "lbs"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/argent/front.svg",
  7468. extra: 1471 / 1331,
  7469. bottom: 100.8 / 1575.5
  7470. }
  7471. }
  7472. },
  7473. [
  7474. {
  7475. name: "Micro",
  7476. height: math.unit(2, "inches")
  7477. },
  7478. {
  7479. name: "Normal",
  7480. height: math.unit(3 + 1 / 12, "feet"),
  7481. default: true
  7482. },
  7483. {
  7484. name: "Macro",
  7485. height: math.unit(120, "feet")
  7486. },
  7487. ]
  7488. ))
  7489. characterMakers.push(() => makeCharacter(
  7490. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7491. {
  7492. lamp: {
  7493. height: math.unit(7 * 1559 / 989, "feet"),
  7494. name: "Magic Lamp",
  7495. image: {
  7496. source: "./media/characters/mira-al-cul/lamp.svg",
  7497. extra: 1617 / 1559
  7498. }
  7499. },
  7500. front: {
  7501. height: math.unit(7, "feet"),
  7502. name: "Front",
  7503. image: {
  7504. source: "./media/characters/mira-al-cul/front.svg",
  7505. extra: 1044 / 990
  7506. }
  7507. },
  7508. },
  7509. [
  7510. {
  7511. name: "Heavily Restricted",
  7512. height: math.unit(7 * 1559 / 989, "feet")
  7513. },
  7514. {
  7515. name: "Freshly Freed",
  7516. height: math.unit(50 * 1559 / 989, "feet")
  7517. },
  7518. {
  7519. name: "World Encompassing",
  7520. height: math.unit(10000 * 1559 / 989, "miles")
  7521. },
  7522. {
  7523. name: "Galactic",
  7524. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7525. },
  7526. {
  7527. name: "Palmed Universe",
  7528. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Multiversal Matriarch",
  7533. height: math.unit(8.87e10, "yottameters")
  7534. },
  7535. {
  7536. name: "Void Mother",
  7537. height: math.unit(3.14e110, "yottaparsecs")
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7543. {
  7544. front: {
  7545. height: math.unit(17 + 1 / 12, "feet"),
  7546. weight: math.unit(476.2 * 5, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/kuro-shi-uchū/front.svg",
  7550. extra: 2329 / 1835,
  7551. bottom: 0.02
  7552. }
  7553. },
  7554. },
  7555. [
  7556. {
  7557. name: "Micro",
  7558. height: math.unit(2, "inches")
  7559. },
  7560. {
  7561. name: "Normal",
  7562. height: math.unit(12, "meters")
  7563. },
  7564. {
  7565. name: "Planetary",
  7566. height: math.unit(0.00929, "AU"),
  7567. default: true
  7568. },
  7569. {
  7570. name: "Universal",
  7571. height: math.unit(20, "gigaparsecs")
  7572. },
  7573. ]
  7574. ))
  7575. characterMakers.push(() => makeCharacter(
  7576. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7577. {
  7578. front: {
  7579. height: math.unit(5 + 2 / 12, "feet"),
  7580. weight: math.unit(120, "lbs"),
  7581. name: "Front",
  7582. image: {
  7583. source: "./media/characters/katherine/front.svg",
  7584. extra: 2075 / 1969
  7585. }
  7586. },
  7587. dress: {
  7588. height: math.unit(5 + 2 / 12, "feet"),
  7589. weight: math.unit(120, "lbs"),
  7590. name: "Dress",
  7591. image: {
  7592. source: "./media/characters/katherine/dress.svg",
  7593. extra: 2258 / 2064
  7594. }
  7595. },
  7596. },
  7597. [
  7598. {
  7599. name: "Micro",
  7600. height: math.unit(1, "inches"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(5 + 2 / 12, "feet")
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(100, "meters")
  7610. },
  7611. {
  7612. name: "Megamacro",
  7613. height: math.unit(80, "miles")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(7 + 8 / 12, "feet"),
  7622. weight: math.unit(250, "lbs"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/yevis/front.svg",
  7626. extra: 1938 / 1755
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Mortal",
  7633. height: math.unit(7 + 8 / 12, "feet")
  7634. },
  7635. {
  7636. name: "Battle",
  7637. height: math.unit(25 + 11 / 12, "feet")
  7638. },
  7639. {
  7640. name: "Wrath",
  7641. height: math.unit(1654 + 11 / 12, "feet")
  7642. },
  7643. {
  7644. name: "Planet Destroyer",
  7645. height: math.unit(12000, "miles")
  7646. },
  7647. {
  7648. name: "Galaxy Conqueror",
  7649. height: math.unit(1.45, "zettameters"),
  7650. default: true
  7651. },
  7652. {
  7653. name: "Universal War",
  7654. height: math.unit(184, "gigaparsecs")
  7655. },
  7656. {
  7657. name: "Eternity War",
  7658. height: math.unit(1.98e55, "yottaparsecs")
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(5 + 8 / 12, "feet"),
  7667. weight: math.unit(63, "kg"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/xavier/front.svg",
  7671. extra: 944 / 883
  7672. }
  7673. },
  7674. frontStretch: {
  7675. height: math.unit(5 + 8 / 12, "feet"),
  7676. weight: math.unit(63, "kg"),
  7677. name: "Stretching",
  7678. image: {
  7679. source: "./media/characters/xavier/front-stretch.svg",
  7680. extra: 962 / 820
  7681. }
  7682. },
  7683. },
  7684. [
  7685. {
  7686. name: "Normal",
  7687. height: math.unit(5 + 8 / 12, "feet")
  7688. },
  7689. {
  7690. name: "Macro",
  7691. height: math.unit(100, "meters"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "McLargeHuge",
  7696. height: math.unit(10, "miles")
  7697. },
  7698. ]
  7699. ))
  7700. characterMakers.push(() => makeCharacter(
  7701. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7702. {
  7703. front: {
  7704. height: math.unit(5 + 5 / 12, "feet"),
  7705. weight: math.unit(150, "lb"),
  7706. name: "Front",
  7707. image: {
  7708. source: "./media/characters/joshii/front.svg"
  7709. }
  7710. },
  7711. foot: {
  7712. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7713. name: "Foot",
  7714. image: {
  7715. source: "./media/characters/joshii/foot.svg"
  7716. }
  7717. },
  7718. },
  7719. [
  7720. {
  7721. name: "Micro",
  7722. height: math.unit(2, "inches")
  7723. },
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(5 + 5 / 12, "feet"),
  7727. default: true
  7728. },
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(785, "feet")
  7732. },
  7733. {
  7734. name: "Megamacro",
  7735. height: math.unit(24.5, "miles")
  7736. },
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7741. {
  7742. front: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(150, "lb"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/goddess-elizabeth/front.svg",
  7748. extra: 1800 / 1525,
  7749. bottom: 0.005
  7750. }
  7751. },
  7752. foot: {
  7753. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7754. name: "Foot",
  7755. image: {
  7756. source: "./media/characters/goddess-elizabeth/foot.svg"
  7757. }
  7758. },
  7759. mouth: {
  7760. height: math.unit(6, "feet"),
  7761. name: "Mouth",
  7762. image: {
  7763. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7764. }
  7765. },
  7766. },
  7767. [
  7768. {
  7769. name: "Micro",
  7770. height: math.unit(12, "feet")
  7771. },
  7772. {
  7773. name: "Normal",
  7774. height: math.unit(80, "miles"),
  7775. default: true
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(15000, "parsecs")
  7780. },
  7781. ]
  7782. ))
  7783. characterMakers.push(() => makeCharacter(
  7784. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7785. {
  7786. front: {
  7787. height: math.unit(5 + 9 / 12, "feet"),
  7788. weight: math.unit(144, "lb"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/kara/front.svg"
  7792. }
  7793. },
  7794. feet: {
  7795. height: math.unit(6 / 6.765, "feet"),
  7796. name: "Kara's Feet",
  7797. rename: true,
  7798. image: {
  7799. source: "./media/characters/kara/feet.svg"
  7800. }
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "Normal",
  7806. height: math.unit(5 + 9 / 12, "feet")
  7807. },
  7808. {
  7809. name: "Macro",
  7810. height: math.unit(174, "feet"),
  7811. default: true
  7812. },
  7813. ]
  7814. ))
  7815. characterMakers.push(() => makeCharacter(
  7816. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7817. {
  7818. front: {
  7819. height: math.unit(18, "feet"),
  7820. weight: math.unit(4050, "lb"),
  7821. name: "Front",
  7822. image: {
  7823. source: "./media/characters/tyrone/front.svg",
  7824. extra: 2520 / 2402,
  7825. bottom: 0.025
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Normal",
  7832. height: math.unit(18, "feet"),
  7833. default: true
  7834. },
  7835. {
  7836. name: "Macro",
  7837. height: math.unit(300, "feet")
  7838. },
  7839. ]
  7840. ))
  7841. characterMakers.push(() => makeCharacter(
  7842. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7843. {
  7844. front: {
  7845. height: math.unit(7 + 8 / 12, "feet"),
  7846. weight: math.unit(120, "lb"),
  7847. name: "Front",
  7848. image: {
  7849. source: "./media/characters/danny/front.svg",
  7850. extra: 1490 / 1350
  7851. }
  7852. },
  7853. back: {
  7854. height: math.unit(7 + 8 / 12, "feet"),
  7855. weight: math.unit(120, "lb"),
  7856. name: "Back",
  7857. image: {
  7858. source: "./media/characters/danny/back.svg",
  7859. extra: 1490 / 1350
  7860. }
  7861. },
  7862. },
  7863. [
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(7 + 8 / 12, "feet"),
  7867. default: true
  7868. },
  7869. ]
  7870. ))
  7871. characterMakers.push(() => makeCharacter(
  7872. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7873. {
  7874. front: {
  7875. height: math.unit(3.5, "inches"),
  7876. weight: math.unit(19, "grams"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/mallow/front.svg",
  7880. extra: 471 / 431
  7881. }
  7882. },
  7883. back: {
  7884. height: math.unit(3.5, "inches"),
  7885. weight: math.unit(19, "grams"),
  7886. name: "Back",
  7887. image: {
  7888. source: "./media/characters/mallow/back.svg",
  7889. extra: 471 / 431
  7890. }
  7891. },
  7892. },
  7893. [
  7894. {
  7895. name: "Normal",
  7896. height: math.unit(3.5, "inches"),
  7897. default: true
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(9, "feet"),
  7906. weight: math.unit(230, "kg"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/starry-aqua/front.svg"
  7910. }
  7911. },
  7912. back: {
  7913. height: math.unit(9, "feet"),
  7914. weight: math.unit(230, "kg"),
  7915. name: "Back",
  7916. image: {
  7917. source: "./media/characters/starry-aqua/back.svg"
  7918. }
  7919. },
  7920. hand: {
  7921. height: math.unit(9 * 0.1168, "feet"),
  7922. name: "Hand",
  7923. image: {
  7924. source: "./media/characters/starry-aqua/hand.svg"
  7925. }
  7926. },
  7927. foot: {
  7928. height: math.unit(9 * 0.18, "feet"),
  7929. name: "Foot",
  7930. image: {
  7931. source: "./media/characters/starry-aqua/foot.svg"
  7932. }
  7933. }
  7934. },
  7935. [
  7936. {
  7937. name: "Micro",
  7938. height: math.unit(3, "inches")
  7939. },
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(9, "feet")
  7943. },
  7944. {
  7945. name: "Macro",
  7946. height: math.unit(300, "feet"),
  7947. default: true
  7948. },
  7949. {
  7950. name: "Megamacro",
  7951. height: math.unit(3200, "feet")
  7952. }
  7953. ]
  7954. ))
  7955. characterMakers.push(() => makeCharacter(
  7956. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7957. {
  7958. front: {
  7959. height: math.unit(6, "feet"),
  7960. weight: math.unit(230, "lb"),
  7961. name: "Front",
  7962. image: {
  7963. source: "./media/characters/luka/front.svg",
  7964. extra: 1,
  7965. bottom: 0.025
  7966. }
  7967. },
  7968. },
  7969. [
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(12 + 8 / 12, "feet"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Minimacro",
  7977. height: math.unit(20, "feet")
  7978. },
  7979. {
  7980. name: "Macro",
  7981. height: math.unit(250, "feet")
  7982. },
  7983. {
  7984. name: "Megamacro",
  7985. height: math.unit(5, "miles")
  7986. },
  7987. {
  7988. name: "Gigamacro",
  7989. height: math.unit(8000, "miles")
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(6, "feet"),
  7998. weight: math.unit(150, "lb"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/natalie-nightring/front.svg",
  8002. extra: 1,
  8003. bottom: 0.06
  8004. }
  8005. },
  8006. },
  8007. [
  8008. {
  8009. name: "Uh Oh",
  8010. height: math.unit(0.1, "mm")
  8011. },
  8012. {
  8013. name: "Small",
  8014. height: math.unit(3, "inches")
  8015. },
  8016. {
  8017. name: "Human Scale",
  8018. height: math.unit(6, "feet")
  8019. },
  8020. {
  8021. name: "Librarian",
  8022. height: math.unit(50, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Immense",
  8027. height: math.unit(200, "miles")
  8028. },
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(6, "feet"),
  8036. weight: math.unit(180, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/danni-rosie/front.svg",
  8040. extra: 1260 / 1128,
  8041. bottom: 0.022
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Micro",
  8048. height: math.unit(2, "inches"),
  8049. default: true
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(5 + 9 / 12, "feet"),
  8058. weight: math.unit(220, "lb"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/samantha-kruse/front.svg",
  8062. extra: (985 / 935),
  8063. bottom: 0.03
  8064. }
  8065. },
  8066. frontUndressed: {
  8067. height: math.unit(5 + 9 / 12, "feet"),
  8068. weight: math.unit(220, "lb"),
  8069. name: "Front (Undressed)",
  8070. image: {
  8071. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8072. extra: (973 / 923),
  8073. bottom: 0.025
  8074. }
  8075. },
  8076. fat: {
  8077. height: math.unit(5 + 9 / 12, "feet"),
  8078. weight: math.unit(900, "lb"),
  8079. name: "Front (Fat)",
  8080. image: {
  8081. source: "./media/characters/samantha-kruse/fat.svg",
  8082. extra: 2688 / 2561
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(5 + 9 / 12, "feet"),
  8090. default: true
  8091. }
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8096. {
  8097. back: {
  8098. height: math.unit(5 + 4 / 12, "feet"),
  8099. weight: math.unit(4963, "lb"),
  8100. name: "Back",
  8101. image: {
  8102. source: "./media/characters/amelia-rosie/back.svg",
  8103. extra: 1113 / 963,
  8104. bottom: 0.01
  8105. }
  8106. },
  8107. },
  8108. [
  8109. {
  8110. name: "Level 0",
  8111. height: math.unit(5 + 4 / 12, "feet")
  8112. },
  8113. {
  8114. name: "Level 1",
  8115. height: math.unit(164597, "feet"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "Level 2",
  8120. height: math.unit(956243, "miles")
  8121. },
  8122. {
  8123. name: "Level 3",
  8124. height: math.unit(29421709423, "miles")
  8125. },
  8126. {
  8127. name: "Level 4",
  8128. height: math.unit(154, "lightyears")
  8129. },
  8130. {
  8131. name: "Level 5",
  8132. height: math.unit(4738272, "lightyears")
  8133. },
  8134. {
  8135. name: "Level 6",
  8136. height: math.unit(145787152896, "lightyears")
  8137. },
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8142. {
  8143. front: {
  8144. height: math.unit(5 + 11 / 12, "feet"),
  8145. weight: math.unit(65, "kg"),
  8146. name: "Front",
  8147. image: {
  8148. source: "./media/characters/rook-kitara/front.svg",
  8149. extra: 1347 / 1274,
  8150. bottom: 0.005
  8151. }
  8152. },
  8153. },
  8154. [
  8155. {
  8156. name: "Totally Unfair",
  8157. height: math.unit(1.8, "mm")
  8158. },
  8159. {
  8160. name: "Lap Rookie",
  8161. height: math.unit(1.4, "feet")
  8162. },
  8163. {
  8164. name: "Normal",
  8165. height: math.unit(5 + 11 / 12, "feet"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "How Did This Happen",
  8170. height: math.unit(80, "miles")
  8171. }
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8176. {
  8177. front: {
  8178. height: math.unit(7, "feet"),
  8179. weight: math.unit(300, "lb"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/pisces/front.svg",
  8183. extra: 2255 / 2115,
  8184. bottom: 0.03
  8185. }
  8186. },
  8187. back: {
  8188. height: math.unit(7, "feet"),
  8189. weight: math.unit(300, "lb"),
  8190. name: "Back",
  8191. image: {
  8192. source: "./media/characters/pisces/back.svg",
  8193. extra: 2146 / 2055,
  8194. bottom: 0.04
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(7, "feet"),
  8202. default: true
  8203. },
  8204. {
  8205. name: "Swimming Pool",
  8206. height: math.unit(12.2, "meters")
  8207. },
  8208. {
  8209. name: "Olympic Swimming Pool",
  8210. height: math.unit(56.3, "meters")
  8211. },
  8212. {
  8213. name: "Lake Superior",
  8214. height: math.unit(93900, "meters")
  8215. },
  8216. {
  8217. name: "Mediterranean Sea",
  8218. height: math.unit(644457, "meters")
  8219. },
  8220. {
  8221. name: "World's Oceans",
  8222. height: math.unit(4567491, "meters")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(2.3, "meters"),
  8231. weight: math.unit(120, "kg"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/zelas/front.svg"
  8235. }
  8236. },
  8237. side: {
  8238. height: math.unit(2.3, "meters"),
  8239. weight: math.unit(120, "kg"),
  8240. name: "Side",
  8241. image: {
  8242. source: "./media/characters/zelas/side.svg"
  8243. }
  8244. },
  8245. back: {
  8246. height: math.unit(2.3, "meters"),
  8247. weight: math.unit(120, "kg"),
  8248. name: "Back",
  8249. image: {
  8250. source: "./media/characters/zelas/back.svg"
  8251. }
  8252. },
  8253. foot: {
  8254. height: math.unit(1.116, "feet"),
  8255. name: "Foot",
  8256. image: {
  8257. source: "./media/characters/zelas/foot.svg"
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(2.3, "meters")
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(30, "meters"),
  8269. default: true
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(1, "inch"),
  8278. weight: math.unit(0.21, "grams"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/talbot/front.svg",
  8282. extra: 594 / 544
  8283. }
  8284. },
  8285. },
  8286. [
  8287. {
  8288. name: "Micro",
  8289. height: math.unit(1, "inch"),
  8290. default: true
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8296. {
  8297. front: {
  8298. height: math.unit(3 + 3 / 12, "feet"),
  8299. weight: math.unit(51.8, "lb"),
  8300. name: "Front",
  8301. image: {
  8302. source: "./media/characters/fliss/front.svg",
  8303. extra: 840 / 640
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Teeny Tiny",
  8310. height: math.unit(1, "mm")
  8311. },
  8312. {
  8313. name: "Small",
  8314. height: math.unit(1, "inch"),
  8315. default: true
  8316. },
  8317. {
  8318. name: "Standard Sylveon",
  8319. height: math.unit(3 + 3 / 12, "feet")
  8320. },
  8321. {
  8322. name: "Large Nuisance",
  8323. height: math.unit(33, "feet")
  8324. },
  8325. {
  8326. name: "City Filler",
  8327. height: math.unit(3000, "feet")
  8328. },
  8329. {
  8330. name: "New Horizon",
  8331. height: math.unit(6000, "miles")
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(5, "cm"),
  8340. weight: math.unit(1.94, "g"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/fleta/front.svg",
  8344. extra: 835 / 803
  8345. }
  8346. },
  8347. back: {
  8348. height: math.unit(5, "cm"),
  8349. weight: math.unit(1.94, "g"),
  8350. name: "Back",
  8351. image: {
  8352. source: "./media/characters/fleta/back.svg",
  8353. extra: 835 / 803
  8354. }
  8355. },
  8356. },
  8357. [
  8358. {
  8359. name: "Micro",
  8360. height: math.unit(5, "cm"),
  8361. default: true
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(225, "lb"),
  8371. name: "Front",
  8372. image: {
  8373. source: "./media/characters/dominic/front.svg",
  8374. extra: 1770 / 1620,
  8375. bottom: 0.025
  8376. }
  8377. },
  8378. back: {
  8379. height: math.unit(6, "feet"),
  8380. weight: math.unit(225, "lb"),
  8381. name: "Back",
  8382. image: {
  8383. source: "./media/characters/dominic/back.svg",
  8384. extra: 1745 / 1620,
  8385. bottom: 0.065
  8386. }
  8387. },
  8388. },
  8389. [
  8390. {
  8391. name: "Nano",
  8392. height: math.unit(0.1, "mm")
  8393. },
  8394. {
  8395. name: "Micro-",
  8396. height: math.unit(1, "mm")
  8397. },
  8398. {
  8399. name: "Micro",
  8400. height: math.unit(4, "inches")
  8401. },
  8402. {
  8403. name: "Normal",
  8404. height: math.unit(6 + 4 / 12, "feet"),
  8405. default: true
  8406. },
  8407. {
  8408. name: "Macro",
  8409. height: math.unit(115, "feet")
  8410. },
  8411. {
  8412. name: "Macro+",
  8413. height: math.unit(955, "feet")
  8414. },
  8415. {
  8416. name: "Megamacro",
  8417. height: math.unit(8990, "feet")
  8418. },
  8419. {
  8420. name: "Gigmacro",
  8421. height: math.unit(9310, "miles")
  8422. },
  8423. {
  8424. name: "Teramacro",
  8425. height: math.unit(1567005010, "miles")
  8426. },
  8427. {
  8428. name: "Examacro",
  8429. height: math.unit(1425, "parsecs")
  8430. },
  8431. ]
  8432. ))
  8433. characterMakers.push(() => makeCharacter(
  8434. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8435. {
  8436. front: {
  8437. height: math.unit(400, "feet"),
  8438. weight: math.unit(44444444, "lb"),
  8439. name: "Front",
  8440. image: {
  8441. source: "./media/characters/major-colonel/front.svg"
  8442. }
  8443. },
  8444. back: {
  8445. height: math.unit(400, "feet"),
  8446. weight: math.unit(44444444, "lb"),
  8447. name: "Back",
  8448. image: {
  8449. source: "./media/characters/major-colonel/back.svg"
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Macro",
  8456. height: math.unit(400, "feet"),
  8457. default: true
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8463. {
  8464. catFront: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(120, "lb"),
  8467. name: "Front (Cat Side)",
  8468. image: {
  8469. source: "./media/characters/axel-lycan/cat-front.svg",
  8470. extra: 430 / 402,
  8471. bottom: 43 / 472.35
  8472. }
  8473. },
  8474. catBack: {
  8475. height: math.unit(6, "feet"),
  8476. weight: math.unit(120, "lb"),
  8477. name: "Back (Cat Side)",
  8478. image: {
  8479. source: "./media/characters/axel-lycan/cat-back.svg",
  8480. extra: 447 / 419,
  8481. bottom: 23.3 / 469
  8482. }
  8483. },
  8484. wolfFront: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(120, "lb"),
  8487. name: "Front (Wolf Side)",
  8488. image: {
  8489. source: "./media/characters/axel-lycan/wolf-front.svg",
  8490. extra: 485 / 456,
  8491. bottom: 19 / 504
  8492. }
  8493. },
  8494. wolfBack: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(120, "lb"),
  8497. name: "Back (Wolf Side)",
  8498. image: {
  8499. source: "./media/characters/axel-lycan/wolf-back.svg",
  8500. extra: 475 / 438,
  8501. bottom: 39.2 / 514
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Macro",
  8508. height: math.unit(1, "km"),
  8509. default: true
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8515. {
  8516. front: {
  8517. height: math.unit(5 + 9 / 12, "feet"),
  8518. weight: math.unit(175, "lb"),
  8519. name: "Front",
  8520. image: {
  8521. source: "./media/characters/vanrel-hyena/front.svg",
  8522. extra: 1086 / 1010,
  8523. bottom: 0.04
  8524. }
  8525. },
  8526. },
  8527. [
  8528. {
  8529. name: "Normal",
  8530. height: math.unit(5 + 9 / 12, "feet"),
  8531. default: true
  8532. },
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8537. {
  8538. front: {
  8539. height: math.unit(6, "feet"),
  8540. weight: math.unit(103, "lb"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/abbott-absol/front.svg",
  8544. extra: 2010 / 1842
  8545. }
  8546. },
  8547. },
  8548. [
  8549. {
  8550. name: "Megamicro",
  8551. height: math.unit(0.1, "mm")
  8552. },
  8553. {
  8554. name: "Micro",
  8555. height: math.unit(1, "inch")
  8556. },
  8557. {
  8558. name: "Normal",
  8559. height: math.unit(6, "feet"),
  8560. default: true
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8566. {
  8567. front: {
  8568. height: math.unit(6, "feet"),
  8569. weight: math.unit(264, "lb"),
  8570. name: "Front",
  8571. image: {
  8572. source: "./media/characters/hector/front.svg",
  8573. extra: 2280 / 2130,
  8574. bottom: 0.07
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Normal",
  8581. height: math.unit(12.25, "foot"),
  8582. default: true
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(160, "feet")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(150, "lb"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/sal/front.svg",
  8599. extra: 1846 / 1699,
  8600. bottom: 0.04
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Megamacro",
  8607. height: math.unit(10, "miles"),
  8608. default: true
  8609. },
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8614. {
  8615. front: {
  8616. height: math.unit(3, "meters"),
  8617. weight: math.unit(450, "kg"),
  8618. name: "front",
  8619. image: {
  8620. source: "./media/characters/ranger/front.svg",
  8621. extra: 2401 / 2243,
  8622. bottom: 0.05
  8623. }
  8624. },
  8625. },
  8626. [
  8627. {
  8628. name: "Normal",
  8629. height: math.unit(3, "meters"),
  8630. default: true
  8631. },
  8632. ]
  8633. ))
  8634. characterMakers.push(() => makeCharacter(
  8635. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8636. {
  8637. front: {
  8638. height: math.unit(14, "feet"),
  8639. weight: math.unit(800, "kg"),
  8640. name: "Front",
  8641. image: {
  8642. source: "./media/characters/theresa/front.svg",
  8643. extra: 3575 / 3346,
  8644. bottom: 0.03
  8645. }
  8646. },
  8647. },
  8648. [
  8649. {
  8650. name: "Normal",
  8651. height: math.unit(14, "feet"),
  8652. default: true
  8653. },
  8654. ]
  8655. ))
  8656. characterMakers.push(() => makeCharacter(
  8657. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8658. {
  8659. front: {
  8660. height: math.unit(6, "feet"),
  8661. weight: math.unit(3, "kg"),
  8662. name: "Front",
  8663. image: {
  8664. source: "./media/characters/ine/front.svg",
  8665. extra: 678 / 539,
  8666. bottom: 0.023
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Normal",
  8673. height: math.unit(2.265, "feet"),
  8674. default: true
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(5, "feet"),
  8683. weight: math.unit(30, "kg"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/vial/front.svg",
  8687. extra: 1365 / 1277,
  8688. bottom: 0.04
  8689. }
  8690. },
  8691. },
  8692. [
  8693. {
  8694. name: "Normal",
  8695. height: math.unit(5, "feet"),
  8696. default: true
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8702. {
  8703. side: {
  8704. height: math.unit(3.4, "meters"),
  8705. weight: math.unit(1000, "lb"),
  8706. name: "Side",
  8707. image: {
  8708. source: "./media/characters/rovoska/side.svg",
  8709. extra: 4403 / 1515
  8710. }
  8711. },
  8712. },
  8713. [
  8714. {
  8715. name: "Normal",
  8716. height: math.unit(3.4, "meters"),
  8717. default: true
  8718. },
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(8, "feet"),
  8726. weight: math.unit(315, "lb"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/gunner-rotthbauer/front.svg"
  8730. }
  8731. },
  8732. back: {
  8733. height: math.unit(8, "feet"),
  8734. weight: math.unit(315, "lb"),
  8735. name: "Back",
  8736. image: {
  8737. source: "./media/characters/gunner-rotthbauer/back.svg"
  8738. }
  8739. },
  8740. },
  8741. [
  8742. {
  8743. name: "Micro",
  8744. height: math.unit(3.5, "inches")
  8745. },
  8746. {
  8747. name: "Normal",
  8748. height: math.unit(8, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(250, "feet")
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(1, "AU")
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(5 + 5 / 12, "feet"),
  8766. weight: math.unit(140, "lb"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/allatia/front.svg",
  8770. extra: 1227 / 1180,
  8771. bottom: 0.027
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(5 + 5 / 12, "feet")
  8779. },
  8780. {
  8781. name: "Macro",
  8782. height: math.unit(250, "feet"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "Megamacro",
  8787. height: math.unit(8, "miles")
  8788. }
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(6, "feet"),
  8796. weight: math.unit(120, "lb"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/tene/front.svg",
  8800. extra: 1728 / 1578,
  8801. bottom: 0.022
  8802. }
  8803. },
  8804. stomping: {
  8805. height: math.unit(2.025, "meters"),
  8806. weight: math.unit(120, "lb"),
  8807. name: "Stomping",
  8808. image: {
  8809. source: "./media/characters/tene/stomping.svg",
  8810. extra: 938 / 873,
  8811. bottom: 0.01
  8812. }
  8813. },
  8814. sitting: {
  8815. height: math.unit(1, "meter"),
  8816. weight: math.unit(120, "lb"),
  8817. name: "Sitting",
  8818. image: {
  8819. source: "./media/characters/tene/sitting.svg",
  8820. extra: 437 / 415,
  8821. bottom: 0.1
  8822. }
  8823. },
  8824. feral: {
  8825. height: math.unit(3.9, "feet"),
  8826. weight: math.unit(250, "lb"),
  8827. name: "Feral",
  8828. image: {
  8829. source: "./media/characters/tene/feral.svg",
  8830. extra: 717 / 458,
  8831. bottom: 0.179
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(6, "feet")
  8839. },
  8840. {
  8841. name: "Macro",
  8842. height: math.unit(300, "feet"),
  8843. default: true
  8844. },
  8845. {
  8846. name: "Megamacro",
  8847. height: math.unit(5, "miles")
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8853. {
  8854. side: {
  8855. height: math.unit(6, "feet"),
  8856. name: "Side",
  8857. image: {
  8858. source: "./media/characters/evander/side.svg",
  8859. extra: 877 / 477
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(0.83, "meters"),
  8867. default: true
  8868. },
  8869. ]
  8870. ))
  8871. characterMakers.push(() => makeCharacter(
  8872. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8873. {
  8874. front: {
  8875. height: math.unit(12, "feet"),
  8876. weight: math.unit(1000, "lb"),
  8877. name: "Front",
  8878. image: {
  8879. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8880. extra: 1762 / 1611
  8881. }
  8882. },
  8883. back: {
  8884. height: math.unit(12, "feet"),
  8885. weight: math.unit(1000, "lb"),
  8886. name: "Back",
  8887. image: {
  8888. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8889. extra: 1762 / 1611
  8890. }
  8891. },
  8892. },
  8893. [
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(12, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Kaiju",
  8901. height: math.unit(150, "feet")
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(6, "feet"),
  8910. weight: math.unit(150, "lb"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/zero-alurus/front.svg"
  8914. }
  8915. },
  8916. back: {
  8917. height: math.unit(6, "feet"),
  8918. weight: math.unit(150, "lb"),
  8919. name: "Back",
  8920. image: {
  8921. source: "./media/characters/zero-alurus/back.svg"
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(5 + 10 / 12, "feet")
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(60, "feet"),
  8933. default: true
  8934. },
  8935. {
  8936. name: "Macro+",
  8937. height: math.unit(450, "feet")
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8943. {
  8944. front: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(200, "lb"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/mega-shi/front.svg",
  8950. extra: 1279 / 1250,
  8951. bottom: 0.02
  8952. }
  8953. },
  8954. back: {
  8955. height: math.unit(6, "feet"),
  8956. weight: math.unit(200, "lb"),
  8957. name: "Back",
  8958. image: {
  8959. source: "./media/characters/mega-shi/back.svg",
  8960. extra: 1279 / 1250,
  8961. bottom: 0.02
  8962. }
  8963. },
  8964. },
  8965. [
  8966. {
  8967. name: "Micro",
  8968. height: math.unit(16 + 6 / 12, "feet")
  8969. },
  8970. {
  8971. name: "Third Dimension",
  8972. height: math.unit(40, "meters")
  8973. },
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(660, "feet"),
  8977. default: true
  8978. },
  8979. {
  8980. name: "Megamacro",
  8981. height: math.unit(10, "miles")
  8982. },
  8983. {
  8984. name: "Planetary Launch",
  8985. height: math.unit(500, "miles")
  8986. },
  8987. {
  8988. name: "Interstellar",
  8989. height: math.unit(1e9, "miles")
  8990. },
  8991. {
  8992. name: "Leaving the Universe",
  8993. height: math.unit(1, "gigaparsec")
  8994. },
  8995. {
  8996. name: "Travelling Universes",
  8997. height: math.unit(30e15, "parsecs")
  8998. },
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9003. {
  9004. front: {
  9005. height: math.unit(6, "feet"),
  9006. weight: math.unit(150, "lb"),
  9007. name: "Front",
  9008. image: {
  9009. source: "./media/characters/odyssey/front.svg",
  9010. extra: 1782 / 1582,
  9011. bottom: 0.01
  9012. }
  9013. },
  9014. side: {
  9015. height: math.unit(5.7, "feet"),
  9016. weight: math.unit(140, "lb"),
  9017. name: "Side",
  9018. image: {
  9019. source: "./media/characters/odyssey/side.svg",
  9020. extra: 6462 / 5700
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Normal",
  9027. height: math.unit(5 + 4 / 12, "feet")
  9028. },
  9029. {
  9030. name: "Macro",
  9031. height: math.unit(1, "km")
  9032. },
  9033. {
  9034. name: "Megamacro",
  9035. height: math.unit(3000, "km")
  9036. },
  9037. {
  9038. name: "Gigamacro",
  9039. height: math.unit(1, "AU"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Omniversal",
  9044. height: math.unit(100e14, "lightyears")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(300, "lb"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/mekuto/front.svg",
  9057. extra: 921 / 832,
  9058. bottom: 0.03
  9059. }
  9060. },
  9061. hand: {
  9062. height: math.unit(6 / 10.24, "feet"),
  9063. name: "Hand",
  9064. image: {
  9065. source: "./media/characters/mekuto/hand.svg"
  9066. }
  9067. },
  9068. foot: {
  9069. height: math.unit(6 / 5.05, "feet"),
  9070. name: "Foot",
  9071. image: {
  9072. source: "./media/characters/mekuto/foot.svg"
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Minimicro",
  9079. height: math.unit(0.2, "inches")
  9080. },
  9081. {
  9082. name: "Micro",
  9083. height: math.unit(1.5, "inches")
  9084. },
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(5 + 11 / 12, "feet"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Minimacro",
  9092. height: math.unit(17 + 9 / 12, "feet")
  9093. },
  9094. {
  9095. name: "Macro",
  9096. height: math.unit(177.5, "feet")
  9097. },
  9098. {
  9099. name: "Megamacro",
  9100. height: math.unit(152, "miles")
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(6.5, "inches"),
  9109. weight: math.unit(13, "oz"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/dafydd-tomos/front.svg",
  9113. extra: 2990 / 2603,
  9114. bottom: 0.03
  9115. }
  9116. },
  9117. },
  9118. [
  9119. {
  9120. name: "Micro",
  9121. height: math.unit(6.5, "inches"),
  9122. default: true
  9123. },
  9124. ]
  9125. ))
  9126. characterMakers.push(() => makeCharacter(
  9127. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9128. {
  9129. front: {
  9130. height: math.unit(6, "feet"),
  9131. weight: math.unit(150, "lb"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/splinter/front.svg",
  9135. extra: 2990 / 2882,
  9136. bottom: 0.04
  9137. }
  9138. },
  9139. back: {
  9140. height: math.unit(6, "feet"),
  9141. weight: math.unit(150, "lb"),
  9142. name: "Back",
  9143. image: {
  9144. source: "./media/characters/splinter/back.svg",
  9145. extra: 2990 / 2882,
  9146. bottom: 0.04
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(6, "feet")
  9154. },
  9155. {
  9156. name: "Macro",
  9157. height: math.unit(230, "meters"),
  9158. default: true
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9164. {
  9165. front: {
  9166. height: math.unit(4 + 10 / 12, "feet"),
  9167. weight: math.unit(480, "lb"),
  9168. name: "Front",
  9169. image: {
  9170. source: "./media/characters/snow-gabumon/front.svg",
  9171. extra: 1140 / 963,
  9172. bottom: 0.058
  9173. }
  9174. },
  9175. back: {
  9176. height: math.unit(4 + 10 / 12, "feet"),
  9177. weight: math.unit(480, "lb"),
  9178. name: "Back",
  9179. image: {
  9180. source: "./media/characters/snow-gabumon/back.svg",
  9181. extra: 1115 / 962,
  9182. bottom: 0.041
  9183. }
  9184. },
  9185. frontUndresed: {
  9186. height: math.unit(4 + 10 / 12, "feet"),
  9187. weight: math.unit(480, "lb"),
  9188. name: "Front (Undressed)",
  9189. image: {
  9190. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9191. extra: 1061 / 960,
  9192. bottom: 0.045
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Micro",
  9199. height: math.unit(1, "inch")
  9200. },
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(4 + 10 / 12, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Macro",
  9208. height: math.unit(200, "feet")
  9209. },
  9210. {
  9211. name: "Megamacro",
  9212. height: math.unit(120, "miles")
  9213. },
  9214. {
  9215. name: "Gigamacro",
  9216. height: math.unit(9800, "miles")
  9217. },
  9218. ]
  9219. ))
  9220. characterMakers.push(() => makeCharacter(
  9221. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9222. {
  9223. front: {
  9224. height: math.unit(1.7, "meters"),
  9225. weight: math.unit(140, "lb"),
  9226. name: "Front",
  9227. image: {
  9228. source: "./media/characters/moody/front.svg",
  9229. extra: 3226 / 3007,
  9230. bottom: 0.087
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Micro",
  9237. height: math.unit(1, "mm")
  9238. },
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(1.7, "meters"),
  9242. default: true
  9243. },
  9244. {
  9245. name: "Macro",
  9246. height: math.unit(80, "meters")
  9247. },
  9248. {
  9249. name: "Macro+",
  9250. height: math.unit(500, "meters")
  9251. },
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9256. {
  9257. front: {
  9258. height: math.unit(6, "feet"),
  9259. weight: math.unit(150, "lb"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/zyas/front.svg",
  9263. extra: 1180 / 1120,
  9264. bottom: 0.045
  9265. }
  9266. },
  9267. },
  9268. [
  9269. {
  9270. name: "Normal",
  9271. height: math.unit(10, "feet"),
  9272. default: true
  9273. },
  9274. {
  9275. name: "Macro",
  9276. height: math.unit(500, "feet")
  9277. },
  9278. {
  9279. name: "Megamacro",
  9280. height: math.unit(5, "miles")
  9281. },
  9282. {
  9283. name: "Teramacro",
  9284. height: math.unit(150000, "miles")
  9285. },
  9286. ]
  9287. ))
  9288. characterMakers.push(() => makeCharacter(
  9289. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9290. {
  9291. front: {
  9292. height: math.unit(6, "feet"),
  9293. weight: math.unit(150, "lb"),
  9294. name: "Front",
  9295. image: {
  9296. source: "./media/characters/cuon/front.svg",
  9297. extra: 1390 / 1320,
  9298. bottom: 0.008
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Micro",
  9305. height: math.unit(3, "inches")
  9306. },
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(18 + 9 / 12, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(360, "feet")
  9315. },
  9316. {
  9317. name: "Megamacro",
  9318. height: math.unit(360, "miles")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(2.4, "meters"),
  9327. weight: math.unit(70, "kg"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/nyanuxk/front.svg",
  9331. extra: 1172 / 1084,
  9332. bottom: 0.065
  9333. }
  9334. },
  9335. side: {
  9336. height: math.unit(2.4, "meters"),
  9337. weight: math.unit(70, "kg"),
  9338. name: "Side",
  9339. image: {
  9340. source: "./media/characters/nyanuxk/side.svg",
  9341. extra: 1190 / 1132,
  9342. bottom: 0.007
  9343. }
  9344. },
  9345. back: {
  9346. height: math.unit(2.4, "meters"),
  9347. weight: math.unit(70, "kg"),
  9348. name: "Back",
  9349. image: {
  9350. source: "./media/characters/nyanuxk/back.svg",
  9351. extra: 1200 / 1141,
  9352. bottom: 0.015
  9353. }
  9354. },
  9355. foot: {
  9356. height: math.unit(0.52, "meters"),
  9357. name: "Foot",
  9358. image: {
  9359. source: "./media/characters/nyanuxk/foot.svg"
  9360. }
  9361. },
  9362. },
  9363. [
  9364. {
  9365. name: "Micro",
  9366. height: math.unit(2, "cm")
  9367. },
  9368. {
  9369. name: "Normal",
  9370. height: math.unit(2.4, "meters"),
  9371. default: true
  9372. },
  9373. {
  9374. name: "Smaller Macro",
  9375. height: math.unit(120, "meters")
  9376. },
  9377. {
  9378. name: "Bigger Macro",
  9379. height: math.unit(1.2, "km")
  9380. },
  9381. {
  9382. name: "Megamacro",
  9383. height: math.unit(15, "kilometers")
  9384. },
  9385. {
  9386. name: "Gigamacro",
  9387. height: math.unit(2000, "km")
  9388. },
  9389. {
  9390. name: "Teramacro",
  9391. height: math.unit(500000, "km")
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9397. {
  9398. side: {
  9399. height: math.unit(6, "feet"),
  9400. name: "Side",
  9401. image: {
  9402. source: "./media/characters/ailbhe/side.svg",
  9403. extra: 757 / 464,
  9404. bottom: 0.041
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(1.07, "meters"),
  9412. default: true
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(120, "kg"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/zevulfius/front.svg",
  9425. extra: 965 / 903
  9426. }
  9427. },
  9428. side: {
  9429. height: math.unit(6, "feet"),
  9430. weight: math.unit(120, "kg"),
  9431. name: "Side",
  9432. image: {
  9433. source: "./media/characters/zevulfius/side.svg",
  9434. extra: 939 / 900
  9435. }
  9436. },
  9437. back: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(120, "kg"),
  9440. name: "Back",
  9441. image: {
  9442. source: "./media/characters/zevulfius/back.svg",
  9443. extra: 918 / 854,
  9444. bottom: 0.005
  9445. }
  9446. },
  9447. foot: {
  9448. height: math.unit(6 / 3.72, "feet"),
  9449. name: "Foot",
  9450. image: {
  9451. source: "./media/characters/zevulfius/foot.svg"
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Macro",
  9458. height: math.unit(750, "meters")
  9459. },
  9460. {
  9461. name: "Megamacro",
  9462. height: math.unit(20, "km"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Gigamacro",
  9467. height: math.unit(2000, "km")
  9468. },
  9469. {
  9470. name: "Teramacro",
  9471. height: math.unit(250000, "km")
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9477. {
  9478. front: {
  9479. height: math.unit(100, "feet"),
  9480. weight: math.unit(350, "kg"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/rikes/front.svg",
  9484. extra: 1565 / 1483,
  9485. bottom: 0.017
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(100, "feet"),
  9493. default: true
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9499. {
  9500. anthro: {
  9501. height: math.unit(8, "feet"),
  9502. weight: math.unit(120, "kg"),
  9503. name: "Anthro",
  9504. image: {
  9505. source: "./media/characters/adam-silver-mane/anthro.svg",
  9506. extra: 5743 / 5339,
  9507. bottom: 0.07
  9508. }
  9509. },
  9510. taur: {
  9511. height: math.unit(16, "feet"),
  9512. weight: math.unit(1500, "kg"),
  9513. name: "Taur",
  9514. image: {
  9515. source: "./media/characters/adam-silver-mane/taur.svg",
  9516. extra: 1713 / 1571,
  9517. bottom: 0.01
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(8, "feet")
  9525. },
  9526. {
  9527. name: "Minimacro",
  9528. height: math.unit(80, "feet")
  9529. },
  9530. {
  9531. name: "Macro",
  9532. height: math.unit(800, "feet"),
  9533. default: true
  9534. },
  9535. {
  9536. name: "Megamacro",
  9537. height: math.unit(8000, "feet")
  9538. },
  9539. {
  9540. name: "Gigamacro",
  9541. height: math.unit(800, "miles")
  9542. },
  9543. {
  9544. name: "Teramacro",
  9545. height: math.unit(80000, "miles")
  9546. },
  9547. {
  9548. name: "Celestial",
  9549. height: math.unit(8e6, "miles")
  9550. },
  9551. {
  9552. name: "Star Dragon",
  9553. height: math.unit(800000, "parsecs")
  9554. },
  9555. {
  9556. name: "Godly",
  9557. height: math.unit(800, "teraparsecs")
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(150, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/ky'owin/front.svg",
  9570. extra: 3888 / 3068,
  9571. bottom: 0.015
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(6 + 8 / 12, "feet")
  9579. },
  9580. {
  9581. name: "Large",
  9582. height: math.unit(68, "feet")
  9583. },
  9584. {
  9585. name: "Macro",
  9586. height: math.unit(132, "feet")
  9587. },
  9588. {
  9589. name: "Macro+",
  9590. height: math.unit(340, "feet")
  9591. },
  9592. {
  9593. name: "Macro++",
  9594. height: math.unit(680, "feet"),
  9595. default: true
  9596. },
  9597. {
  9598. name: "Megamacro",
  9599. height: math.unit(1, "mile")
  9600. },
  9601. {
  9602. name: "Megamacro+",
  9603. height: math.unit(10, "miles")
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9609. {
  9610. front: {
  9611. height: math.unit(4, "feet"),
  9612. weight: math.unit(50, "lb"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/mal/front.svg",
  9616. extra: 785 / 724,
  9617. bottom: 0.07
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Micro",
  9624. height: math.unit(4, "inches")
  9625. },
  9626. {
  9627. name: "Normal",
  9628. height: math.unit(4, "feet"),
  9629. default: true
  9630. },
  9631. {
  9632. name: "Macro",
  9633. height: math.unit(200, "feet")
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9639. {
  9640. front: {
  9641. height: math.unit(6, "feet"),
  9642. weight: math.unit(150, "lb"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/jordan-deware/front.svg",
  9646. extra: 1191 / 1012
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Nano",
  9653. height: math.unit(0.01, "mm")
  9654. },
  9655. {
  9656. name: "Minimicro",
  9657. height: math.unit(1, "mm")
  9658. },
  9659. {
  9660. name: "Micro",
  9661. height: math.unit(0.5, "inches")
  9662. },
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(4, "feet"),
  9666. default: true
  9667. },
  9668. {
  9669. name: "Minimacro",
  9670. height: math.unit(40, "meters")
  9671. },
  9672. {
  9673. name: "Small Macro",
  9674. height: math.unit(400, "meters")
  9675. },
  9676. {
  9677. name: "Macro",
  9678. height: math.unit(4, "miles")
  9679. },
  9680. {
  9681. name: "Megamacro",
  9682. height: math.unit(40, "miles")
  9683. },
  9684. {
  9685. name: "Megamacro+",
  9686. height: math.unit(400, "miles")
  9687. },
  9688. {
  9689. name: "Gigamacro",
  9690. height: math.unit(400000, "miles")
  9691. },
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9696. {
  9697. side: {
  9698. height: math.unit(6, "feet"),
  9699. weight: math.unit(150, "lb"),
  9700. name: "Side",
  9701. image: {
  9702. source: "./media/characters/kimiko/side.svg",
  9703. extra: 600 / 358
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(15, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Macro",
  9715. height: math.unit(220, "feet")
  9716. },
  9717. {
  9718. name: "Macro+",
  9719. height: math.unit(1450, "feet")
  9720. },
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(11500, "feet")
  9724. },
  9725. {
  9726. name: "Gigamacro",
  9727. height: math.unit(9500, "miles")
  9728. },
  9729. {
  9730. name: "Teramacro",
  9731. height: math.unit(2208005005, "miles")
  9732. },
  9733. {
  9734. name: "Examacro",
  9735. height: math.unit(2750, "parsecs")
  9736. },
  9737. {
  9738. name: "Zettamacro",
  9739. height: math.unit(101500, "parsecs")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(6, "feet"),
  9748. weight: math.unit(70, "kg"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/andrew-sleepy/front.svg"
  9752. }
  9753. },
  9754. side: {
  9755. height: math.unit(6, "feet"),
  9756. weight: math.unit(70, "kg"),
  9757. name: "Side",
  9758. image: {
  9759. source: "./media/characters/andrew-sleepy/side.svg"
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(1, "mm"),
  9767. default: true
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(150, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/judio/front.svg",
  9780. extra: 1258 / 1110
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(5 + 6 / 12, "feet")
  9788. },
  9789. {
  9790. name: "Macro",
  9791. height: math.unit(1000, "feet"),
  9792. default: true
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(10, "miles")
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(6, "feet"),
  9805. weight: math.unit(68, "kg"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/nomaxice/front.svg",
  9809. extra: 1498 / 1073,
  9810. bottom: 0.075
  9811. }
  9812. },
  9813. foot: {
  9814. height: math.unit(1.1, "feet"),
  9815. name: "Foot",
  9816. image: {
  9817. source: "./media/characters/nomaxice/foot.svg"
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Micro",
  9824. height: math.unit(8, "cm")
  9825. },
  9826. {
  9827. name: "Norm",
  9828. height: math.unit(1.82, "m")
  9829. },
  9830. {
  9831. name: "Norm+",
  9832. height: math.unit(8.8, "feet")
  9833. },
  9834. {
  9835. name: "Big",
  9836. height: math.unit(8, "meters"),
  9837. default: true
  9838. },
  9839. {
  9840. name: "Macro",
  9841. height: math.unit(18, "meters")
  9842. },
  9843. {
  9844. name: "Macro+",
  9845. height: math.unit(88, "meters")
  9846. },
  9847. ]
  9848. ))
  9849. characterMakers.push(() => makeCharacter(
  9850. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9851. {
  9852. front: {
  9853. height: math.unit(12, "feet"),
  9854. weight: math.unit(1.5, "tons"),
  9855. name: "Front",
  9856. image: {
  9857. source: "./media/characters/dydros/front.svg",
  9858. extra: 863 / 800,
  9859. bottom: 0.015
  9860. }
  9861. },
  9862. back: {
  9863. height: math.unit(12, "feet"),
  9864. weight: math.unit(1.5, "tons"),
  9865. name: "Back",
  9866. image: {
  9867. source: "./media/characters/dydros/back.svg",
  9868. extra: 900 / 843,
  9869. bottom: 0.005
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(12, "feet"),
  9877. default: true
  9878. },
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9883. {
  9884. front: {
  9885. height: math.unit(6, "feet"),
  9886. weight: math.unit(100, "kg"),
  9887. name: "Front",
  9888. image: {
  9889. source: "./media/characters/riggi/front.svg",
  9890. extra: 5787 / 5303
  9891. }
  9892. },
  9893. hyper: {
  9894. height: math.unit(6 * 5 / 3, "feet"),
  9895. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9896. name: "Hyper",
  9897. image: {
  9898. source: "./media/characters/riggi/hyper.svg",
  9899. extra: 3595 / 3485
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Small Macro",
  9906. height: math.unit(50, "feet")
  9907. },
  9908. {
  9909. name: "Default",
  9910. height: math.unit(200, "feet"),
  9911. default: true
  9912. },
  9913. {
  9914. name: "Loom",
  9915. height: math.unit(10000, "feet")
  9916. },
  9917. {
  9918. name: "Cruising Altitude",
  9919. height: math.unit(30000, "feet")
  9920. },
  9921. {
  9922. name: "Megamacro",
  9923. height: math.unit(100, "miles")
  9924. },
  9925. {
  9926. name: "Continent Sized",
  9927. height: math.unit(2800, "miles")
  9928. },
  9929. {
  9930. name: "Earth Sized",
  9931. height: math.unit(8000, "miles")
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(6, "feet"),
  9940. weight: math.unit(250, "lb"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/alexi/front.svg",
  9944. extra: 3483 / 3291,
  9945. bottom: 0.04
  9946. }
  9947. },
  9948. back: {
  9949. height: math.unit(6, "feet"),
  9950. weight: math.unit(250, "lb"),
  9951. name: "Back",
  9952. image: {
  9953. source: "./media/characters/alexi/back.svg",
  9954. extra: 3533 / 3356,
  9955. bottom: 0.021
  9956. }
  9957. },
  9958. frontTransforming: {
  9959. height: math.unit(8.58, "feet"),
  9960. weight: math.unit(1300, "lb"),
  9961. name: "Transforming",
  9962. image: {
  9963. source: "./media/characters/alexi/front-transforming.svg",
  9964. extra: 437 / 409,
  9965. bottom: 19 / 458.66
  9966. }
  9967. },
  9968. frontTransformed: {
  9969. height: math.unit(12.5, "feet"),
  9970. weight: math.unit(4000, "lb"),
  9971. name: "Transformed",
  9972. image: {
  9973. source: "./media/characters/alexi/front-transformed.svg",
  9974. extra: 639 / 614,
  9975. bottom: 30.55 / 671
  9976. }
  9977. },
  9978. },
  9979. [
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(3, "meters"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "Minimacro",
  9987. height: math.unit(30, "meters")
  9988. },
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(500, "meters")
  9992. },
  9993. {
  9994. name: "Megamacro",
  9995. height: math.unit(9000, "km")
  9996. },
  9997. {
  9998. name: "Teramacro",
  9999. height: math.unit(384000, "km")
  10000. },
  10001. ]
  10002. ))
  10003. characterMakers.push(() => makeCharacter(
  10004. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10005. {
  10006. front: {
  10007. height: math.unit(6, "feet"),
  10008. weight: math.unit(150, "lb"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/kayroo/front.svg",
  10012. extra: 1153 / 1038,
  10013. bottom: 0.06
  10014. }
  10015. },
  10016. foot: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(150, "lb"),
  10019. name: "Foot",
  10020. image: {
  10021. source: "./media/characters/kayroo/foot.svg"
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(8, "feet"),
  10029. default: true
  10030. },
  10031. {
  10032. name: "Minimacro",
  10033. height: math.unit(250, "feet")
  10034. },
  10035. {
  10036. name: "Macro",
  10037. height: math.unit(2800, "feet")
  10038. },
  10039. {
  10040. name: "Megamacro",
  10041. height: math.unit(5200, "feet")
  10042. },
  10043. {
  10044. name: "Gigamacro",
  10045. height: math.unit(27000, "feet")
  10046. },
  10047. {
  10048. name: "Omega",
  10049. height: math.unit(45000, "feet")
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10055. {
  10056. front: {
  10057. height: math.unit(18, "feet"),
  10058. weight: math.unit(5800, "lb"),
  10059. name: "Front",
  10060. image: {
  10061. source: "./media/characters/rhys/front.svg",
  10062. extra: 3386 / 3090,
  10063. bottom: 0.07
  10064. }
  10065. },
  10066. },
  10067. [
  10068. {
  10069. name: "Normal",
  10070. height: math.unit(18, "feet"),
  10071. default: true
  10072. },
  10073. {
  10074. name: "Working Size",
  10075. height: math.unit(200, "feet")
  10076. },
  10077. {
  10078. name: "Demolition Size",
  10079. height: math.unit(2000, "feet")
  10080. },
  10081. {
  10082. name: "Maximum Licensed Size",
  10083. height: math.unit(5, "miles")
  10084. },
  10085. {
  10086. name: "Maximum Observed Size",
  10087. height: math.unit(10, "yottameters")
  10088. },
  10089. ]
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10093. {
  10094. front: {
  10095. height: math.unit(6, "feet"),
  10096. weight: math.unit(250, "lb"),
  10097. name: "Front",
  10098. image: {
  10099. source: "./media/characters/toto/front.svg",
  10100. extra: 527 / 479,
  10101. bottom: 0.05
  10102. }
  10103. },
  10104. },
  10105. [
  10106. {
  10107. name: "Micro",
  10108. height: math.unit(3, "feet")
  10109. },
  10110. {
  10111. name: "Normal",
  10112. height: math.unit(10, "feet")
  10113. },
  10114. {
  10115. name: "Macro",
  10116. height: math.unit(150, "feet"),
  10117. default: true
  10118. },
  10119. {
  10120. name: "Megamacro",
  10121. height: math.unit(1200, "feet")
  10122. },
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "King", species: ["lion"], tags: ["anthro"] },
  10127. {
  10128. back: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(150, "lb"),
  10131. name: "Back",
  10132. image: {
  10133. source: "./media/characters/king/back.svg"
  10134. }
  10135. },
  10136. },
  10137. [
  10138. {
  10139. name: "Micro",
  10140. height: math.unit(2, "inches")
  10141. },
  10142. {
  10143. name: "Normal",
  10144. height: math.unit(8, "feet")
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(200, "feet"),
  10149. default: true
  10150. },
  10151. {
  10152. name: "Megamacro",
  10153. height: math.unit(50, "miles")
  10154. },
  10155. ]
  10156. ))
  10157. characterMakers.push(() => makeCharacter(
  10158. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10159. {
  10160. anthro: {
  10161. height: math.unit(6 + 5 / 12, "feet"),
  10162. weight: math.unit(280, "lb"),
  10163. name: "Anthro",
  10164. image: {
  10165. source: "./media/characters/cordite/anthro.svg",
  10166. extra: 1986 / 1905,
  10167. bottom: 0.025
  10168. }
  10169. },
  10170. feral: {
  10171. height: math.unit(2, "feet"),
  10172. weight: math.unit(90, "lb"),
  10173. name: "Feral",
  10174. image: {
  10175. source: "./media/characters/cordite/feral.svg",
  10176. extra: 1260 / 755,
  10177. bottom: 0.05
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(6 + 5 / 12, "feet"),
  10185. default: true
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(150, "lb"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/pianostrong/front.svg",
  10198. extra: 6577 / 6254,
  10199. bottom: 0.02
  10200. }
  10201. },
  10202. side: {
  10203. height: math.unit(6, "feet"),
  10204. weight: math.unit(150, "lb"),
  10205. name: "Side",
  10206. image: {
  10207. source: "./media/characters/pianostrong/side.svg",
  10208. extra: 6106 / 5730
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(150, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/pianostrong/back.svg",
  10217. extra: 6085 / 5733,
  10218. bottom: 0.01
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Macro",
  10225. height: math.unit(100, "feet")
  10226. },
  10227. {
  10228. name: "Macro+",
  10229. height: math.unit(300, "feet"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "Macro++",
  10234. height: math.unit(1000, "feet")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(6, "feet"),
  10243. weight: math.unit(150, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/kona/front.svg",
  10247. extra: 2960 / 2629,
  10248. bottom: 0.005
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(11 + 8 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(850, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Macro+",
  10264. height: math.unit(1.5, "km"),
  10265. default: true
  10266. },
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(80, "miles")
  10270. },
  10271. {
  10272. name: "Gigamacro",
  10273. height: math.unit(3500, "miles")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10279. {
  10280. side: {
  10281. height: math.unit(1.9, "meters"),
  10282. weight: math.unit(326, "kg"),
  10283. name: "Side",
  10284. image: {
  10285. source: "./media/characters/levi/side.svg",
  10286. extra: 1704 / 1334,
  10287. bottom: 0.02
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(1.9, "meters"),
  10295. default: true
  10296. },
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(20, "meters")
  10300. },
  10301. {
  10302. name: "Macro+",
  10303. height: math.unit(200, "meters")
  10304. },
  10305. {
  10306. name: "Megamacro",
  10307. height: math.unit(2, "km")
  10308. },
  10309. {
  10310. name: "Megamacro+",
  10311. height: math.unit(20, "km")
  10312. },
  10313. {
  10314. name: "Gigamacro",
  10315. height: math.unit(2500, "km")
  10316. },
  10317. {
  10318. name: "Gigamacro+",
  10319. height: math.unit(120000, "km")
  10320. },
  10321. {
  10322. name: "Teramacro",
  10323. height: math.unit(7.77e6, "km")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(6 + 4 / 12, "feet"),
  10332. weight: math.unit(188, "lb"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/bmc/front.svg",
  10336. extra: 1067 / 1022,
  10337. bottom: 0.047
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Human-sized",
  10344. height: math.unit(6 + 4 / 12, "feet")
  10345. },
  10346. {
  10347. name: "Small",
  10348. height: math.unit(250, "feet")
  10349. },
  10350. {
  10351. name: "Normal",
  10352. height: math.unit(1250, "feet"),
  10353. default: true
  10354. },
  10355. {
  10356. name: "Good Day",
  10357. height: math.unit(88, "miles")
  10358. },
  10359. {
  10360. name: "Largest Measured Size",
  10361. height: math.unit(11.2e6, "lightyears")
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(20, "feet"),
  10370. weight: math.unit(2016, "kg"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/sven-the-kaiju/front.svg",
  10374. extra: 1479 / 1449,
  10375. bottom: 0.05
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Fairy",
  10382. height: math.unit(6, "inches")
  10383. },
  10384. {
  10385. name: "Normal",
  10386. height: math.unit(20, "feet"),
  10387. default: true
  10388. },
  10389. {
  10390. name: "Rampage",
  10391. height: math.unit(200, "feet")
  10392. },
  10393. {
  10394. name: "Archfey Forest Guardian",
  10395. height: math.unit(1, "mile")
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10401. {
  10402. front: {
  10403. height: math.unit(4, "meters"),
  10404. weight: math.unit(2, "tons"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/marik/front.svg",
  10408. extra: 1057 / 1003,
  10409. bottom: 0.08
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(4, "meters"),
  10417. default: true
  10418. },
  10419. {
  10420. name: "Macro",
  10421. height: math.unit(20, "meters")
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(50, "km")
  10426. },
  10427. {
  10428. name: "Gigamacro",
  10429. height: math.unit(100, "km")
  10430. },
  10431. {
  10432. name: "Alpha Macro",
  10433. height: math.unit(7.88e7, "yottameters")
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10439. {
  10440. front: {
  10441. height: math.unit(6, "feet"),
  10442. weight: math.unit(110, "lb"),
  10443. name: "Front",
  10444. image: {
  10445. source: "./media/characters/mel/front.svg",
  10446. extra: 736 / 617,
  10447. bottom: 0.017
  10448. }
  10449. },
  10450. },
  10451. [
  10452. {
  10453. name: "Pico",
  10454. height: math.unit(3, "pm")
  10455. },
  10456. {
  10457. name: "Nano",
  10458. height: math.unit(3, "nm")
  10459. },
  10460. {
  10461. name: "Micro",
  10462. height: math.unit(0.3, "mm"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Micro+",
  10467. height: math.unit(3, "mm")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(5 + 10.5 / 12, "feet")
  10472. },
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10477. {
  10478. kaiju: {
  10479. height: math.unit(1.75, "meters"),
  10480. weight: math.unit(55, "kg"),
  10481. name: "Kaiju",
  10482. image: {
  10483. source: "./media/characters/lykonous/kaiju.svg",
  10484. extra: 1055 / 946,
  10485. bottom: 0.135
  10486. }
  10487. },
  10488. },
  10489. [
  10490. {
  10491. name: "Normal",
  10492. height: math.unit(2.5, "meters"),
  10493. default: true
  10494. },
  10495. {
  10496. name: "Kaiju Dragon",
  10497. height: math.unit(60, "meters")
  10498. },
  10499. {
  10500. name: "Mega Kaiju",
  10501. height: math.unit(120, "km")
  10502. },
  10503. {
  10504. name: "Giga Kaiju",
  10505. height: math.unit(200, "megameters")
  10506. },
  10507. {
  10508. name: "Terra Kaiju",
  10509. height: math.unit(400, "gigameters")
  10510. },
  10511. {
  10512. name: "Kaiju Dragon God",
  10513. height: math.unit(13000, "exaparsecs")
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(150, "lb"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/blü/front.svg",
  10526. extra: 1883 / 1564,
  10527. bottom: 0.031
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Normal",
  10534. height: math.unit(13, "feet"),
  10535. default: true
  10536. },
  10537. {
  10538. name: "Big Boi",
  10539. height: math.unit(150, "meters")
  10540. },
  10541. {
  10542. name: "Mini Stomper",
  10543. height: math.unit(300, "meters")
  10544. },
  10545. {
  10546. name: "Macro",
  10547. height: math.unit(1000, "meters")
  10548. },
  10549. {
  10550. name: "Megamacro",
  10551. height: math.unit(11000, "meters")
  10552. },
  10553. {
  10554. name: "Gigamacro",
  10555. height: math.unit(11000, "km")
  10556. },
  10557. {
  10558. name: "Teramacro",
  10559. height: math.unit(420000, "km")
  10560. },
  10561. {
  10562. name: "Examacro",
  10563. height: math.unit(120, "parsecs")
  10564. },
  10565. {
  10566. name: "God Tho",
  10567. height: math.unit(98000000000, "parsecs")
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10573. {
  10574. taurFront: {
  10575. height: math.unit(6, "feet"),
  10576. weight: math.unit(200, "lb"),
  10577. name: "Taur (Front)",
  10578. image: {
  10579. source: "./media/characters/scales/taur-front.svg",
  10580. extra: 1,
  10581. bottom: 0.05
  10582. }
  10583. },
  10584. taurBack: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(200, "lb"),
  10587. name: "Taur (Back)",
  10588. image: {
  10589. source: "./media/characters/scales/taur-back.svg",
  10590. extra: 1,
  10591. bottom: 0.08
  10592. }
  10593. },
  10594. anthro: {
  10595. height: math.unit(6 * 7 / 12, "feet"),
  10596. weight: math.unit(100, "lb"),
  10597. name: "Anthro",
  10598. image: {
  10599. source: "./media/characters/scales/anthro.svg",
  10600. extra: 1,
  10601. bottom: 0.06
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(12, "feet"),
  10609. default: true
  10610. },
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(150, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/koragos/front.svg",
  10622. extra: 841 / 794,
  10623. bottom: 0.035
  10624. }
  10625. },
  10626. back: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(150, "lb"),
  10629. name: "Back",
  10630. image: {
  10631. source: "./media/characters/koragos/back.svg",
  10632. extra: 841 / 810,
  10633. bottom: 0.022
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Normal",
  10640. height: math.unit(6 + 11 / 12, "feet"),
  10641. default: true
  10642. },
  10643. {
  10644. name: "Macro",
  10645. height: math.unit(490, "feet")
  10646. },
  10647. {
  10648. name: "Megamacro",
  10649. height: math.unit(10, "miles")
  10650. },
  10651. {
  10652. name: "Gigamacro",
  10653. height: math.unit(50, "miles")
  10654. },
  10655. ]
  10656. ))
  10657. characterMakers.push(() => makeCharacter(
  10658. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10659. {
  10660. front: {
  10661. height: math.unit(6, "feet"),
  10662. weight: math.unit(250, "lb"),
  10663. name: "Front",
  10664. image: {
  10665. source: "./media/characters/xylrem/front.svg",
  10666. extra: 3323 / 3050,
  10667. bottom: 0.065
  10668. }
  10669. },
  10670. },
  10671. [
  10672. {
  10673. name: "Micro",
  10674. height: math.unit(4, "feet")
  10675. },
  10676. {
  10677. name: "Normal",
  10678. height: math.unit(16, "feet"),
  10679. default: true
  10680. },
  10681. {
  10682. name: "Macro",
  10683. height: math.unit(2720, "feet")
  10684. },
  10685. {
  10686. name: "Megamacro",
  10687. height: math.unit(25000, "miles")
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10693. {
  10694. front: {
  10695. height: math.unit(8, "feet"),
  10696. weight: math.unit(250, "kg"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/ikideru/front.svg",
  10700. extra: 930 / 870,
  10701. bottom: 0.087
  10702. }
  10703. },
  10704. back: {
  10705. height: math.unit(8, "feet"),
  10706. weight: math.unit(250, "kg"),
  10707. name: "Back",
  10708. image: {
  10709. source: "./media/characters/ikideru/back.svg",
  10710. extra: 919 / 852,
  10711. bottom: 0.055
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Rare",
  10718. height: math.unit(8, "feet"),
  10719. default: true
  10720. },
  10721. {
  10722. name: "Playful Loom",
  10723. height: math.unit(80, "feet")
  10724. },
  10725. {
  10726. name: "City Leaner",
  10727. height: math.unit(230, "feet")
  10728. },
  10729. {
  10730. name: "Megamacro",
  10731. height: math.unit(2500, "feet")
  10732. },
  10733. {
  10734. name: "Gigamacro",
  10735. height: math.unit(26400, "feet")
  10736. },
  10737. {
  10738. name: "Tectonic Shifter",
  10739. height: math.unit(1.7, "megameters")
  10740. },
  10741. {
  10742. name: "Planet Carer",
  10743. height: math.unit(21, "megameters")
  10744. },
  10745. {
  10746. name: "God",
  10747. height: math.unit(11157.22, "parsecs")
  10748. },
  10749. ]
  10750. ))
  10751. characterMakers.push(() => makeCharacter(
  10752. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10753. {
  10754. front: {
  10755. height: math.unit(6, "feet"),
  10756. weight: math.unit(120, "lb"),
  10757. name: "Front",
  10758. image: {
  10759. source: "./media/characters/neo/front.svg"
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Micro",
  10766. height: math.unit(2, "inches"),
  10767. default: true
  10768. },
  10769. {
  10770. name: "Human Size",
  10771. height: math.unit(5 + 8 / 12, "feet")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(13 + 10 / 12, "feet"),
  10780. weight: math.unit(5320, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/chauncey-chantz/front.svg",
  10784. extra: 1587 / 1435,
  10785. bottom: 0.02
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(13 + 10 / 12, "feet"),
  10793. default: true
  10794. },
  10795. {
  10796. name: "Macro",
  10797. height: math.unit(45, "feet")
  10798. },
  10799. {
  10800. name: "Megamacro",
  10801. height: math.unit(250, "miles")
  10802. },
  10803. {
  10804. name: "Planetary",
  10805. height: math.unit(10000, "miles")
  10806. },
  10807. {
  10808. name: "Galactic",
  10809. height: math.unit(40000, "parsecs")
  10810. },
  10811. {
  10812. name: "Universal",
  10813. height: math.unit(1, "yottameter")
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/epifox/front.svg",
  10826. extra: 1,
  10827. bottom: 0.075
  10828. }
  10829. },
  10830. },
  10831. [
  10832. {
  10833. name: "Micro",
  10834. height: math.unit(6, "inches")
  10835. },
  10836. {
  10837. name: "Normal",
  10838. height: math.unit(12, "feet"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(3810, "feet")
  10844. },
  10845. {
  10846. name: "Megamacro",
  10847. height: math.unit(500, "miles")
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(1.8796, "m"),
  10856. weight: math.unit(230, "lb"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/colin-t/front.svg",
  10860. extra: 1272 / 1193,
  10861. bottom: 0.07
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Micro",
  10868. height: math.unit(0.571, "meters")
  10869. },
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(1.8796, "meters"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Tall",
  10877. height: math.unit(4, "meters")
  10878. },
  10879. {
  10880. name: "Macro",
  10881. height: math.unit(67.241, "meters")
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(371.856, "meters")
  10886. },
  10887. {
  10888. name: "Planetary",
  10889. height: math.unit(12631.5689, "km")
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(1.85, "meters"),
  10898. weight: math.unit(80, "kg"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/matvei/front.svg",
  10902. extra: 614 / 594,
  10903. bottom: 0.01
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(1.85, "meters"),
  10911. default: true
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(5 + 9 / 12, "feet"),
  10920. weight: math.unit(70, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/quincy/front.svg",
  10924. extra: 3041 / 2751
  10925. }
  10926. },
  10927. back: {
  10928. height: math.unit(5 + 9 / 12, "feet"),
  10929. weight: math.unit(70, "lb"),
  10930. name: "Back",
  10931. image: {
  10932. source: "./media/characters/quincy/back.svg",
  10933. extra: 3041 / 2751
  10934. }
  10935. },
  10936. flying: {
  10937. height: math.unit(5 + 4 / 12, "feet"),
  10938. weight: math.unit(70, "lb"),
  10939. name: "Flying",
  10940. image: {
  10941. source: "./media/characters/quincy/flying.svg",
  10942. extra: 1044 / 930
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Micro",
  10949. height: math.unit(3, "cm")
  10950. },
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(5 + 9 / 12, "feet")
  10954. },
  10955. {
  10956. name: "Macro",
  10957. height: math.unit(200, "meters"),
  10958. default: true
  10959. },
  10960. {
  10961. name: "Megamacro",
  10962. height: math.unit(1000, "meters")
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(4 + 7 / 12, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/vanrel/front.svg",
  10975. extra: 1,
  10976. bottom: 0.02
  10977. }
  10978. },
  10979. elemental: {
  10980. height: math.unit(3, "feet"),
  10981. weight: math.unit(150, "lb"),
  10982. name: "Elemental",
  10983. image: {
  10984. source: "./media/characters/vanrel/elemental.svg",
  10985. extra: 192.3 / 162.8,
  10986. bottom: 1.79 / 194.17
  10987. }
  10988. },
  10989. side: {
  10990. height: math.unit(4 + 7 / 12, "feet"),
  10991. weight: math.unit(150, "lb"),
  10992. name: "Side",
  10993. image: {
  10994. source: "./media/characters/vanrel/side.svg",
  10995. extra: 1,
  10996. bottom: 0.025
  10997. }
  10998. },
  10999. tome: {
  11000. height: math.unit(1.35, "feet"),
  11001. weight: math.unit(10, "lb"),
  11002. name: "Vanrel's Tome",
  11003. rename: true,
  11004. image: {
  11005. source: "./media/characters/vanrel/tome.svg"
  11006. }
  11007. },
  11008. beans: {
  11009. height: math.unit(0.89, "feet"),
  11010. name: "Beans",
  11011. image: {
  11012. source: "./media/characters/vanrel/beans.svg"
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(4 + 7 / 12, "feet"),
  11020. default: true
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(7 + 5 / 12, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/kuiper-vanrel/front.svg",
  11033. extra: 1118 / 1068,
  11034. bottom: 0.09
  11035. }
  11036. },
  11037. foot: {
  11038. height: math.unit(0.55, "meters"),
  11039. name: "Foot",
  11040. image: {
  11041. source: "./media/characters/kuiper-vanrel/foot.svg",
  11042. }
  11043. },
  11044. battle: {
  11045. height: math.unit(6.824, "feet"),
  11046. weight: math.unit(150, "lb"),
  11047. name: "Battle",
  11048. image: {
  11049. source: "./media/characters/kuiper-vanrel/battle.svg",
  11050. extra: 1466 / 1327,
  11051. bottom: 29 / 1492.5
  11052. }
  11053. },
  11054. },
  11055. [
  11056. {
  11057. name: "Normal",
  11058. height: math.unit(7 + 5 / 12, "feet"),
  11059. default: true
  11060. },
  11061. ]
  11062. ))
  11063. characterMakers.push(() => makeCharacter(
  11064. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11065. {
  11066. front: {
  11067. height: math.unit(8 + 5 / 12, "feet"),
  11068. weight: math.unit(150, "lb"),
  11069. name: "Front",
  11070. image: {
  11071. source: "./media/characters/keset-vanrel/front.svg",
  11072. extra: 1150 / 1084,
  11073. bottom: 0.05
  11074. }
  11075. },
  11076. hand: {
  11077. height: math.unit(0.6, "meters"),
  11078. name: "Hand",
  11079. image: {
  11080. source: "./media/characters/keset-vanrel/hand.svg"
  11081. }
  11082. },
  11083. foot: {
  11084. height: math.unit(0.94978, "meters"),
  11085. name: "Foot",
  11086. image: {
  11087. source: "./media/characters/keset-vanrel/foot.svg"
  11088. }
  11089. },
  11090. battle: {
  11091. height: math.unit(7.408, "feet"),
  11092. weight: math.unit(150, "lb"),
  11093. name: "Battle",
  11094. image: {
  11095. source: "./media/characters/keset-vanrel/battle.svg",
  11096. extra: 1890 / 1386,
  11097. bottom: 73.28 / 1970
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Normal",
  11104. height: math.unit(8 + 5 / 12, "feet"),
  11105. default: true
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11111. {
  11112. front: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(150, "lb"),
  11115. name: "Front",
  11116. image: {
  11117. source: "./media/characters/neos/front.svg",
  11118. extra: 1696 / 992,
  11119. bottom: 0.14
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Normal",
  11126. height: math.unit(54, "cm"),
  11127. default: true
  11128. },
  11129. {
  11130. name: "Macro",
  11131. height: math.unit(100, "m")
  11132. },
  11133. {
  11134. name: "Megamacro",
  11135. height: math.unit(10, "km")
  11136. },
  11137. {
  11138. name: "Megamacro+",
  11139. height: math.unit(100, "km")
  11140. },
  11141. {
  11142. name: "Gigamacro",
  11143. height: math.unit(100, "Mm")
  11144. },
  11145. {
  11146. name: "Teramacro",
  11147. height: math.unit(100, "Gm")
  11148. },
  11149. {
  11150. name: "Examacro",
  11151. height: math.unit(100, "Em")
  11152. },
  11153. {
  11154. name: "Godly",
  11155. height: math.unit(10000, "Ym")
  11156. },
  11157. {
  11158. name: "Beyond Godly",
  11159. height: math.unit(25, "multiverses")
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11165. {
  11166. feminine: {
  11167. height: math.unit(5, "feet"),
  11168. weight: math.unit(100, "lb"),
  11169. name: "Feminine",
  11170. image: {
  11171. source: "./media/characters/sammy-mouse/feminine.svg",
  11172. extra: 2526 / 2425,
  11173. bottom: 0.123
  11174. }
  11175. },
  11176. masculine: {
  11177. height: math.unit(5, "feet"),
  11178. weight: math.unit(100, "lb"),
  11179. name: "Masculine",
  11180. image: {
  11181. source: "./media/characters/sammy-mouse/masculine.svg",
  11182. extra: 2526 / 2425,
  11183. bottom: 0.123
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Micro",
  11190. height: math.unit(5, "inches")
  11191. },
  11192. {
  11193. name: "Normal",
  11194. height: math.unit(5, "feet"),
  11195. default: true
  11196. },
  11197. {
  11198. name: "Macro",
  11199. height: math.unit(60, "feet")
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11205. {
  11206. front: {
  11207. height: math.unit(4, "feet"),
  11208. weight: math.unit(50, "lb"),
  11209. name: "Front",
  11210. image: {
  11211. source: "./media/characters/kole/front.svg",
  11212. extra: 1423 / 1303,
  11213. bottom: 0.025
  11214. }
  11215. },
  11216. back: {
  11217. height: math.unit(4, "feet"),
  11218. weight: math.unit(50, "lb"),
  11219. name: "Back",
  11220. image: {
  11221. source: "./media/characters/kole/back.svg",
  11222. extra: 1426 / 1280,
  11223. bottom: 0.02
  11224. }
  11225. },
  11226. },
  11227. [
  11228. {
  11229. name: "Normal",
  11230. height: math.unit(4, "feet"),
  11231. default: true
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11237. {
  11238. front: {
  11239. height: math.unit(2 + 6 / 12, "feet"),
  11240. weight: math.unit(20, "lb"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/rufran/front.svg",
  11244. extra: 2041 / 1839,
  11245. bottom: 0.055
  11246. }
  11247. },
  11248. back: {
  11249. height: math.unit(2 + 6 / 12, "feet"),
  11250. weight: math.unit(20, "lb"),
  11251. name: "Back",
  11252. image: {
  11253. source: "./media/characters/rufran/back.svg",
  11254. extra: 2054 / 1839,
  11255. bottom: 0.01
  11256. }
  11257. },
  11258. hand: {
  11259. height: math.unit(0.2166, "meters"),
  11260. name: "Hand",
  11261. image: {
  11262. source: "./media/characters/rufran/hand.svg"
  11263. }
  11264. },
  11265. foot: {
  11266. height: math.unit(0.185, "meters"),
  11267. name: "Foot",
  11268. image: {
  11269. source: "./media/characters/rufran/foot.svg"
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Micro",
  11276. height: math.unit(1, "inch")
  11277. },
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(2 + 6 / 12, "feet"),
  11281. default: true
  11282. },
  11283. {
  11284. name: "Big",
  11285. height: math.unit(60, "feet")
  11286. },
  11287. {
  11288. name: "Macro",
  11289. height: math.unit(325, "feet")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11295. {
  11296. front: {
  11297. height: math.unit(0.3, "meters"),
  11298. weight: math.unit(3.5, "kg"),
  11299. name: "Front",
  11300. image: {
  11301. source: "./media/characters/chip/front.svg",
  11302. extra: 748 / 674
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Micro",
  11309. height: math.unit(1, "inch"),
  11310. default: true
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11316. {
  11317. side: {
  11318. height: math.unit(2.3, "meters"),
  11319. weight: math.unit(3500, "lb"),
  11320. name: "Side",
  11321. image: {
  11322. source: "./media/characters/torvid/side.svg",
  11323. extra: 1972 / 722,
  11324. bottom: 0.035
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(2.3, "meters"),
  11332. default: true
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(2, "meters"),
  11341. weight: math.unit(150.5, "kg"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/susan/front.svg",
  11345. extra: 693 / 635,
  11346. bottom: 0.05
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Megamacro",
  11353. height: math.unit(505, "miles"),
  11354. default: true
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/raindrops/front.svg",
  11367. extra: 2655 / 2461,
  11368. bottom: 0.02
  11369. }
  11370. },
  11371. back: {
  11372. height: math.unit(6, "feet"),
  11373. weight: math.unit(150, "lb"),
  11374. name: "Back",
  11375. image: {
  11376. source: "./media/characters/raindrops/back.svg",
  11377. extra: 2574 / 2400,
  11378. bottom: 0.03
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Micro",
  11385. height: math.unit(6, "inches")
  11386. },
  11387. {
  11388. name: "Normal",
  11389. height: math.unit(6 + 2 / 12, "feet")
  11390. },
  11391. {
  11392. name: "Macro",
  11393. height: math.unit(131, "feet"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Megamacro",
  11398. height: math.unit(15, "miles")
  11399. },
  11400. {
  11401. name: "Gigamacro",
  11402. height: math.unit(4000, "miles")
  11403. },
  11404. {
  11405. name: "Teramacro",
  11406. height: math.unit(315000, "miles")
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11412. {
  11413. front: {
  11414. height: math.unit(2.794, "meters"),
  11415. weight: math.unit(325, "kg"),
  11416. name: "Front",
  11417. image: {
  11418. source: "./media/characters/tezwa/front.svg",
  11419. extra: 2083 / 1906,
  11420. bottom: 0.031
  11421. }
  11422. },
  11423. foot: {
  11424. height: math.unit(0.687, "meters"),
  11425. name: "Foot",
  11426. image: {
  11427. source: "./media/characters/tezwa/foot.svg"
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(9 + 2 / 12, "feet"),
  11435. default: true
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(58, "feet"),
  11444. weight: math.unit(89000, "lb"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/typhus/front.svg",
  11448. extra: 816 / 800,
  11449. bottom: 0.065
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Macro",
  11456. height: math.unit(58, "feet"),
  11457. default: true
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11463. {
  11464. front: {
  11465. height: math.unit(12, "feet"),
  11466. weight: math.unit(6, "tonnes"),
  11467. name: "Front",
  11468. image: {
  11469. source: "./media/characters/lyra-von-wulf/front.svg",
  11470. extra: 1,
  11471. bottom: 0.10
  11472. }
  11473. },
  11474. frontMecha: {
  11475. height: math.unit(12, "feet"),
  11476. weight: math.unit(12, "tonnes"),
  11477. name: "Front (Mecha)",
  11478. image: {
  11479. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11480. extra: 1,
  11481. bottom: 0.042
  11482. }
  11483. },
  11484. maw: {
  11485. height: math.unit(2.2, "feet"),
  11486. name: "Maw",
  11487. image: {
  11488. source: "./media/characters/lyra-von-wulf/maw.svg"
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(12, "feet"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Classic",
  11500. height: math.unit(50, "feet")
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(500, "feet")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(1, "mile")
  11509. },
  11510. {
  11511. name: "Gigamacro",
  11512. height: math.unit(400, "miles")
  11513. },
  11514. {
  11515. name: "Teramacro",
  11516. height: math.unit(22000, "miles")
  11517. },
  11518. {
  11519. name: "Solarmacro",
  11520. height: math.unit(8600000, "miles")
  11521. },
  11522. {
  11523. name: "Galactic",
  11524. height: math.unit(1057000, "lightyears")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(6 + 10 / 12, "feet"),
  11533. weight: math.unit(150, "lb"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/dixon/front.svg",
  11537. extra: 3361 / 3209,
  11538. bottom: 0.01
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Normal",
  11545. height: math.unit(6 + 10 / 12, "feet"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Big",
  11550. height: math.unit(12, "meters")
  11551. },
  11552. {
  11553. name: "Macro",
  11554. height: math.unit(500, "meters")
  11555. },
  11556. {
  11557. name: "Megamacro",
  11558. height: math.unit(2, "km")
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11564. {
  11565. front: {
  11566. height: math.unit(185, "cm"),
  11567. weight: math.unit(68, "kg"),
  11568. name: "Front",
  11569. image: {
  11570. source: "./media/characters/kauko/front.svg",
  11571. extra: 1455 / 1421,
  11572. bottom: 0.03
  11573. }
  11574. },
  11575. back: {
  11576. height: math.unit(185, "cm"),
  11577. weight: math.unit(68, "kg"),
  11578. name: "Back",
  11579. image: {
  11580. source: "./media/characters/kauko/back.svg",
  11581. extra: 1455 / 1421,
  11582. bottom: 0.004
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(185, "cm"),
  11590. default: true
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(150, "kg"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/varg/front.svg",
  11603. extra: 1108 / 1018,
  11604. bottom: 0.0375
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(5, "meters")
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(200, "meters")
  11616. },
  11617. {
  11618. name: "Megamacro",
  11619. height: math.unit(20, "kilometers")
  11620. },
  11621. {
  11622. name: "True Size",
  11623. height: math.unit(211, "km"),
  11624. default: true
  11625. },
  11626. {
  11627. name: "Gigamacro",
  11628. height: math.unit(1000, "km")
  11629. },
  11630. {
  11631. name: "Gigamacro+",
  11632. height: math.unit(8000, "km")
  11633. },
  11634. {
  11635. name: "Teramacro",
  11636. height: math.unit(1000000, "km")
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(7 + 7 / 12, "feet"),
  11645. weight: math.unit(267, "lb"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/dayza/front.svg",
  11649. extra: 1262 / 1200,
  11650. bottom: 0.035
  11651. }
  11652. },
  11653. side: {
  11654. height: math.unit(7 + 7 / 12, "feet"),
  11655. weight: math.unit(267, "lb"),
  11656. name: "Side",
  11657. image: {
  11658. source: "./media/characters/dayza/side.svg",
  11659. extra: 1295 / 1245,
  11660. bottom: 0.05
  11661. }
  11662. },
  11663. back: {
  11664. height: math.unit(7 + 7 / 12, "feet"),
  11665. weight: math.unit(267, "lb"),
  11666. name: "Back",
  11667. image: {
  11668. source: "./media/characters/dayza/back.svg",
  11669. extra: 1241 / 1170
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(7 + 7 / 12, "feet"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Macro",
  11681. height: math.unit(155, "feet")
  11682. },
  11683. ]
  11684. ))
  11685. characterMakers.push(() => makeCharacter(
  11686. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11687. {
  11688. front: {
  11689. height: math.unit(6 + 5 / 12, "feet"),
  11690. weight: math.unit(160, "lb"),
  11691. name: "Front",
  11692. image: {
  11693. source: "./media/characters/xanthos/front.svg",
  11694. extra: 1,
  11695. bottom: 0.04
  11696. }
  11697. },
  11698. back: {
  11699. height: math.unit(6 + 5 / 12, "feet"),
  11700. weight: math.unit(160, "lb"),
  11701. name: "Back",
  11702. image: {
  11703. source: "./media/characters/xanthos/back.svg",
  11704. extra: 1,
  11705. bottom: 0.03
  11706. }
  11707. },
  11708. hand: {
  11709. height: math.unit(0.928, "feet"),
  11710. name: "Hand",
  11711. image: {
  11712. source: "./media/characters/xanthos/hand.svg"
  11713. }
  11714. },
  11715. foot: {
  11716. height: math.unit(1.286, "feet"),
  11717. name: "Foot",
  11718. image: {
  11719. source: "./media/characters/xanthos/foot.svg"
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(6 + 5 / 12, "feet"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Normal+",
  11731. height: math.unit(6, "meters")
  11732. },
  11733. {
  11734. name: "Macro",
  11735. height: math.unit(40, "feet")
  11736. },
  11737. {
  11738. name: "Macro+",
  11739. height: math.unit(200, "meters")
  11740. },
  11741. {
  11742. name: "Megamacro",
  11743. height: math.unit(20, "km")
  11744. },
  11745. {
  11746. name: "Megamacro+",
  11747. height: math.unit(100, "km")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11753. {
  11754. front: {
  11755. height: math.unit(6 + 3 / 12, "feet"),
  11756. weight: math.unit(215, "lb"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/grynn/front.svg",
  11760. extra: 4627 / 4209,
  11761. bottom: 0.047
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Micro",
  11768. height: math.unit(6, "inches")
  11769. },
  11770. {
  11771. name: "Normal",
  11772. height: math.unit(6 + 3 / 12, "feet"),
  11773. default: true
  11774. },
  11775. {
  11776. name: "Big",
  11777. height: math.unit(104, "feet")
  11778. },
  11779. {
  11780. name: "Macro",
  11781. height: math.unit(944, "feet")
  11782. },
  11783. {
  11784. name: "Macro+",
  11785. height: math.unit(9480, "feet")
  11786. },
  11787. {
  11788. name: "Megamacro",
  11789. height: math.unit(78752, "feet")
  11790. },
  11791. {
  11792. name: "Megamacro+",
  11793. height: math.unit(630128, "feet")
  11794. },
  11795. {
  11796. name: "Megamacro++",
  11797. height: math.unit(3150695, "feet")
  11798. },
  11799. ]
  11800. ))
  11801. characterMakers.push(() => makeCharacter(
  11802. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11803. {
  11804. front: {
  11805. height: math.unit(7 + 5 / 12, "feet"),
  11806. weight: math.unit(450, "lb"),
  11807. name: "Front",
  11808. image: {
  11809. source: "./media/characters/mocha-aura/front.svg",
  11810. extra: 1907 / 1817,
  11811. bottom: 0.04
  11812. }
  11813. },
  11814. back: {
  11815. height: math.unit(7 + 5 / 12, "feet"),
  11816. weight: math.unit(450, "lb"),
  11817. name: "Back",
  11818. image: {
  11819. source: "./media/characters/mocha-aura/back.svg",
  11820. extra: 1900 / 1825,
  11821. bottom: 0.045
  11822. }
  11823. },
  11824. },
  11825. [
  11826. {
  11827. name: "Nano",
  11828. height: math.unit(1, "nm")
  11829. },
  11830. {
  11831. name: "Megamicro",
  11832. height: math.unit(1, "mm")
  11833. },
  11834. {
  11835. name: "Micro",
  11836. height: math.unit(3, "inches")
  11837. },
  11838. {
  11839. name: "Normal",
  11840. height: math.unit(7 + 5 / 12, "feet"),
  11841. default: true
  11842. },
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(30, "feet")
  11846. },
  11847. {
  11848. name: "Megamacro",
  11849. height: math.unit(3500, "feet")
  11850. },
  11851. {
  11852. name: "Teramacro",
  11853. height: math.unit(500000, "miles")
  11854. },
  11855. {
  11856. name: "Petamacro",
  11857. height: math.unit(50000000000000000, "parsecs")
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11863. {
  11864. front: {
  11865. height: math.unit(6, "feet"),
  11866. weight: math.unit(150, "lb"),
  11867. name: "Front",
  11868. image: {
  11869. source: "./media/characters/ilisha-devya/front.svg",
  11870. extra: 1,
  11871. bottom: 0.175
  11872. }
  11873. },
  11874. back: {
  11875. height: math.unit(6, "feet"),
  11876. weight: math.unit(150, "lb"),
  11877. name: "Back",
  11878. image: {
  11879. source: "./media/characters/ilisha-devya/back.svg",
  11880. extra: 1,
  11881. bottom: 0.015
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(500, "feet"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Megamacro",
  11893. height: math.unit(10, "miles")
  11894. },
  11895. {
  11896. name: "Gigamacro",
  11897. height: math.unit(100000, "miles")
  11898. },
  11899. {
  11900. name: "Examacro",
  11901. height: math.unit(1e9, "lightyears")
  11902. },
  11903. {
  11904. name: "Omniversal",
  11905. height: math.unit(1e33, "lightyears")
  11906. },
  11907. {
  11908. name: "Beyond Infinite",
  11909. height: math.unit(1e100, "lightyears")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11915. {
  11916. Side: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Side",
  11920. image: {
  11921. source: "./media/characters/mira/side.svg",
  11922. extra: 900 / 799,
  11923. bottom: 0.02
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Human Size",
  11930. height: math.unit(6, "feet")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(100, "feet"),
  11935. default: true
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(10, "miles")
  11940. },
  11941. {
  11942. name: "Gigamacro",
  11943. height: math.unit(25000, "miles")
  11944. },
  11945. {
  11946. name: "Teramacro",
  11947. height: math.unit(300, "AU")
  11948. },
  11949. {
  11950. name: "Full Size",
  11951. height: math.unit(4.5e10, "lightyears")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/holly/front.svg",
  11964. extra: 639 / 606
  11965. }
  11966. },
  11967. back: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(150, "lb"),
  11970. name: "Back",
  11971. image: {
  11972. source: "./media/characters/holly/back.svg",
  11973. extra: 623 / 598
  11974. }
  11975. },
  11976. frontWorking: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Front (Working)",
  11980. image: {
  11981. source: "./media/characters/holly/front-working.svg",
  11982. extra: 607 / 577,
  11983. bottom: 0.048
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(12 + 3 / 12, "feet"),
  11991. default: true
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Porter", species: ["bernese-mountain-dog"], 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/porter/front.svg",
  12004. extra: 1,
  12005. bottom: 0.01
  12006. }
  12007. },
  12008. frontRobes: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Front (Robes)",
  12012. image: {
  12013. source: "./media/characters/porter/front-robes.svg",
  12014. extra: 1.01,
  12015. bottom: 0.01
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(11 + 9 / 12, "feet"),
  12023. default: true
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12029. {
  12030. legendary: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(150, "lb"),
  12033. name: "Legendary",
  12034. image: {
  12035. source: "./media/characters/lucy/legendary.svg",
  12036. extra: 1355 / 1100,
  12037. bottom: 0.045
  12038. }
  12039. },
  12040. },
  12041. [
  12042. {
  12043. name: "Legendary",
  12044. height: math.unit(86882 * 2, "miles"),
  12045. default: true
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(6, "feet"),
  12054. weight: math.unit(150, "lb"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/drusilla/front.svg",
  12058. extra: 678 / 635,
  12059. bottom: 0.03
  12060. }
  12061. },
  12062. back: {
  12063. height: math.unit(6, "feet"),
  12064. weight: math.unit(150, "lb"),
  12065. name: "Back",
  12066. image: {
  12067. source: "./media/characters/drusilla/back.svg",
  12068. extra: 678 / 635,
  12069. bottom: 0.005
  12070. }
  12071. },
  12072. },
  12073. [
  12074. {
  12075. name: "Macro",
  12076. height: math.unit(100, "feet")
  12077. },
  12078. {
  12079. name: "Canon Height",
  12080. height: math.unit(2000, "feet"),
  12081. default: true
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(6, "feet"),
  12090. weight: math.unit(180, "lb"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/renard-thatch/front.svg",
  12094. extra: 2411 / 2275,
  12095. bottom: 0.01
  12096. }
  12097. },
  12098. frontPosing: {
  12099. height: math.unit(6, "feet"),
  12100. weight: math.unit(180, "lb"),
  12101. name: "Front (Posing)",
  12102. image: {
  12103. source: "./media/characters/renard-thatch/front-posing.svg",
  12104. extra: 2381 / 2261,
  12105. bottom: 0.01
  12106. }
  12107. },
  12108. back: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(180, "lb"),
  12111. name: "Back",
  12112. image: {
  12113. source: "./media/characters/renard-thatch/back.svg",
  12114. extra: 2428 / 2288
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Micro",
  12121. height: math.unit(3, "inches")
  12122. },
  12123. {
  12124. name: "Default",
  12125. height: math.unit(6, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Macro",
  12130. height: math.unit(75, "feet")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(1450, "feet"),
  12139. weight: math.unit(1.21e6, "tons"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/sekvra/front.svg",
  12143. extra: 1,
  12144. bottom: 0.03
  12145. }
  12146. },
  12147. frontClothed: {
  12148. height: math.unit(1450, "feet"),
  12149. weight: math.unit(1.21e6, "tons"),
  12150. name: "Front (Clothed)",
  12151. image: {
  12152. source: "./media/characters/sekvra/front-clothed.svg",
  12153. extra: 1,
  12154. bottom: 0.03
  12155. }
  12156. },
  12157. side: {
  12158. height: math.unit(1450, "feet"),
  12159. weight: math.unit(1.21e6, "tons"),
  12160. name: "Side",
  12161. image: {
  12162. source: "./media/characters/sekvra/side.svg",
  12163. extra: 1,
  12164. bottom: 0.025
  12165. }
  12166. },
  12167. back: {
  12168. height: math.unit(1450, "feet"),
  12169. weight: math.unit(1.21e6, "tons"),
  12170. name: "Back",
  12171. image: {
  12172. source: "./media/characters/sekvra/back.svg",
  12173. extra: 1,
  12174. bottom: 0.005
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Macro",
  12181. height: math.unit(1450, "feet"),
  12182. default: true
  12183. },
  12184. {
  12185. name: "Megamacro",
  12186. height: math.unit(15000, "feet")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(150, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/carmine/front.svg",
  12199. extra: 1,
  12200. bottom: 0.035
  12201. }
  12202. },
  12203. frontArmor: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(150, "lb"),
  12206. name: "Front (Armor)",
  12207. image: {
  12208. source: "./media/characters/carmine/front-armor.svg",
  12209. extra: 1,
  12210. bottom: 0.035
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Large",
  12217. height: math.unit(1, "mile")
  12218. },
  12219. {
  12220. name: "Huge",
  12221. height: math.unit(40, "miles"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Colossal",
  12226. height: math.unit(2500, "miles")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(150, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/elyssia/front.svg",
  12239. extra: 2201 / 2035,
  12240. bottom: 0.05
  12241. }
  12242. },
  12243. frontClothed: {
  12244. height: math.unit(6, "feet"),
  12245. weight: math.unit(150, "lb"),
  12246. name: "Front (Clothed)",
  12247. image: {
  12248. source: "./media/characters/elyssia/front-clothed.svg",
  12249. extra: 2201 / 2035,
  12250. bottom: 0.05
  12251. }
  12252. },
  12253. back: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(150, "lb"),
  12256. name: "Back",
  12257. image: {
  12258. source: "./media/characters/elyssia/back.svg",
  12259. extra: 2201 / 2035,
  12260. bottom: 0.013
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Smaller",
  12267. height: math.unit(150, "feet")
  12268. },
  12269. {
  12270. name: "Standard",
  12271. height: math.unit(1400, "feet"),
  12272. default: true
  12273. },
  12274. {
  12275. name: "Distracted",
  12276. height: math.unit(15000, "feet")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(7 + 4 / 12, "feet"),
  12285. weight: math.unit(500, "lb"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/geno-maxwell/front.svg",
  12289. extra: 2207 / 2040,
  12290. bottom: 0.015
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Micro",
  12297. height: math.unit(3, "inches")
  12298. },
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(7 + 4 / 12, "feet"),
  12302. default: true
  12303. },
  12304. {
  12305. name: "Macro",
  12306. height: math.unit(220, "feet")
  12307. },
  12308. {
  12309. name: "Megamacro",
  12310. height: math.unit(11, "miles")
  12311. },
  12312. ]
  12313. ))
  12314. characterMakers.push(() => makeCharacter(
  12315. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12316. {
  12317. front: {
  12318. height: math.unit(7 + 4 / 12, "feet"),
  12319. weight: math.unit(500, "lb"),
  12320. name: "Front",
  12321. image: {
  12322. source: "./media/characters/regena-maxwell/front.svg",
  12323. extra: 3115 / 2770,
  12324. bottom: 0.02
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(7 + 4 / 12, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(220, "feet")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(11, "miles")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(6, "feet"),
  12349. weight: math.unit(150, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12353. extra: 860 / 690,
  12354. bottom: 0.03
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(1.7, "meters"),
  12362. default: true
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/quilly/front.svg",
  12375. extra: 890 / 776
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Gigamacro",
  12382. height: math.unit(404090, "miles"),
  12383. default: true
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(7 + 8 / 12, "feet"),
  12392. weight: math.unit(350, "lb"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/tempest/front.svg",
  12396. extra: 1175 / 1086,
  12397. bottom: 0.02
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(7 + 8 / 12, "feet"),
  12405. default: true
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12411. {
  12412. side: {
  12413. height: math.unit(4 + 5 / 12, "feet"),
  12414. weight: math.unit(80, "lb"),
  12415. name: "Side",
  12416. image: {
  12417. source: "./media/characters/rodger/side.svg",
  12418. extra: 1235 / 1118
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Micro",
  12425. height: math.unit(1, "inch")
  12426. },
  12427. {
  12428. name: "Normal",
  12429. height: math.unit(4 + 5 / 12, "feet"),
  12430. default: true
  12431. },
  12432. {
  12433. name: "Macro",
  12434. height: math.unit(120, "feet")
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12440. {
  12441. front: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(150, "lb"),
  12444. name: "Front",
  12445. image: {
  12446. source: "./media/characters/danyel/front.svg",
  12447. extra: 1185 / 1123,
  12448. bottom: 0.05
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Shrunken",
  12455. height: math.unit(0.5, "mm")
  12456. },
  12457. {
  12458. name: "Micro",
  12459. height: math.unit(1, "mm"),
  12460. default: true
  12461. },
  12462. {
  12463. name: "Upsized",
  12464. height: math.unit(5 + 5 / 12, "feet")
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(5 + 6 / 12, "feet"),
  12473. weight: math.unit(200, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/vivian-bijoux/front.svg",
  12477. extra: 1,
  12478. bottom: 0.072
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Normal",
  12485. height: math.unit(5 + 6 / 12, "feet"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Bad Dream",
  12490. height: math.unit(500, "feet")
  12491. },
  12492. {
  12493. name: "Nightmare",
  12494. height: math.unit(500, "miles")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(6 + 1 / 12, "feet"),
  12503. weight: math.unit(260, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/zeta/front.svg",
  12507. extra: 1968 / 1889,
  12508. bottom: 0.06
  12509. }
  12510. },
  12511. back: {
  12512. height: math.unit(6 + 1 / 12, "feet"),
  12513. weight: math.unit(260, "lb"),
  12514. name: "Back",
  12515. image: {
  12516. source: "./media/characters/zeta/back.svg",
  12517. extra: 1944 / 1858,
  12518. bottom: 0.03
  12519. }
  12520. },
  12521. hand: {
  12522. height: math.unit(1.112, "feet"),
  12523. name: "Hand",
  12524. image: {
  12525. source: "./media/characters/zeta/hand.svg"
  12526. }
  12527. },
  12528. foot: {
  12529. height: math.unit(1.48, "feet"),
  12530. name: "Foot",
  12531. image: {
  12532. source: "./media/characters/zeta/foot.svg"
  12533. }
  12534. },
  12535. },
  12536. [
  12537. {
  12538. name: "Micro",
  12539. height: math.unit(6, "inches")
  12540. },
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(6 + 1 / 12, "feet"),
  12544. default: true
  12545. },
  12546. {
  12547. name: "Macro",
  12548. height: math.unit(20, "feet")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/jamie-larsen/front.svg",
  12561. extra: 962 / 933,
  12562. bottom: 0.02
  12563. }
  12564. },
  12565. back: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(150, "lb"),
  12568. name: "Back",
  12569. image: {
  12570. source: "./media/characters/jamie-larsen/back.svg",
  12571. extra: 997 / 946
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(28 + 7 / 12, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Macro+",
  12583. height: math.unit(180, "feet")
  12584. },
  12585. {
  12586. name: "Megamacro",
  12587. height: math.unit(10, "miles")
  12588. },
  12589. {
  12590. name: "Gigamacro",
  12591. height: math.unit(200000, "miles")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(6, "feet"),
  12600. weight: math.unit(120, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/vance/front.svg",
  12604. extra: 1980 / 1890,
  12605. bottom: 0.09
  12606. }
  12607. },
  12608. back: {
  12609. height: math.unit(6, "feet"),
  12610. weight: math.unit(120, "lb"),
  12611. name: "Back",
  12612. image: {
  12613. source: "./media/characters/vance/back.svg",
  12614. extra: 2081 / 1994,
  12615. bottom: 0.014
  12616. }
  12617. },
  12618. hand: {
  12619. height: math.unit(0.88, "feet"),
  12620. name: "Hand",
  12621. image: {
  12622. source: "./media/characters/vance/hand.svg"
  12623. }
  12624. },
  12625. foot: {
  12626. height: math.unit(0.64, "feet"),
  12627. name: "Foot",
  12628. image: {
  12629. source: "./media/characters/vance/foot.svg"
  12630. }
  12631. },
  12632. },
  12633. [
  12634. {
  12635. name: "Small",
  12636. height: math.unit(90, "feet"),
  12637. default: true
  12638. },
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(100, "meters")
  12642. },
  12643. {
  12644. name: "Megamacro",
  12645. height: math.unit(15, "miles")
  12646. },
  12647. ]
  12648. ))
  12649. characterMakers.push(() => makeCharacter(
  12650. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12651. {
  12652. front: {
  12653. height: math.unit(6, "feet"),
  12654. weight: math.unit(180, "lb"),
  12655. name: "Front",
  12656. image: {
  12657. source: "./media/characters/xochitl/front.svg",
  12658. extra: 2297 / 2261,
  12659. bottom: 0.065
  12660. }
  12661. },
  12662. back: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(180, "lb"),
  12665. name: "Back",
  12666. image: {
  12667. source: "./media/characters/xochitl/back.svg",
  12668. extra: 2386 / 2354,
  12669. bottom: 0.01
  12670. }
  12671. },
  12672. foot: {
  12673. height: math.unit(6 / 5 * 1.15, "feet"),
  12674. weight: math.unit(150, "lb"),
  12675. name: "Foot",
  12676. image: {
  12677. source: "./media/characters/xochitl/foot.svg"
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Macro",
  12684. height: math.unit(80, "feet")
  12685. },
  12686. {
  12687. name: "Macro+",
  12688. height: math.unit(400, "feet"),
  12689. default: true
  12690. },
  12691. {
  12692. name: "Gigamacro",
  12693. height: math.unit(80000, "miles")
  12694. },
  12695. {
  12696. name: "Gigamacro+",
  12697. height: math.unit(400000, "miles")
  12698. },
  12699. {
  12700. name: "Teramacro",
  12701. height: math.unit(300, "AU")
  12702. },
  12703. ]
  12704. ))
  12705. characterMakers.push(() => makeCharacter(
  12706. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12707. {
  12708. front: {
  12709. height: math.unit(6, "feet"),
  12710. weight: math.unit(150, "lb"),
  12711. name: "Front",
  12712. image: {
  12713. source: "./media/characters/vincent/front.svg",
  12714. extra: 1130 / 1080,
  12715. bottom: 0.055
  12716. }
  12717. },
  12718. beak: {
  12719. height: math.unit(6 * 0.1, "feet"),
  12720. name: "Beak",
  12721. image: {
  12722. source: "./media/characters/vincent/beak.svg"
  12723. }
  12724. },
  12725. hand: {
  12726. height: math.unit(6 * 0.85, "feet"),
  12727. weight: math.unit(150, "lb"),
  12728. name: "Hand",
  12729. image: {
  12730. source: "./media/characters/vincent/hand.svg"
  12731. }
  12732. },
  12733. foot: {
  12734. height: math.unit(6 * 0.19, "feet"),
  12735. weight: math.unit(150, "lb"),
  12736. name: "Foot",
  12737. image: {
  12738. source: "./media/characters/vincent/foot.svg"
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Base",
  12745. height: math.unit(6 + 5 / 12, "feet"),
  12746. default: true
  12747. },
  12748. {
  12749. name: "Macro",
  12750. height: math.unit(300, "feet")
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(2, "miles")
  12755. },
  12756. {
  12757. name: "Gigamacro",
  12758. height: math.unit(1000, "miles")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(6 + 2 / 12, "feet"),
  12767. weight: math.unit(265, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/jay/front.svg",
  12771. extra: 1510 / 1430,
  12772. bottom: 0.042
  12773. }
  12774. },
  12775. back: {
  12776. height: math.unit(6 + 2 / 12, "feet"),
  12777. weight: math.unit(265, "lb"),
  12778. name: "Back",
  12779. image: {
  12780. source: "./media/characters/jay/back.svg",
  12781. extra: 1510 / 1430,
  12782. bottom: 0.025
  12783. }
  12784. },
  12785. clothed: {
  12786. height: math.unit(6 + 2 / 12, "feet"),
  12787. weight: math.unit(265, "lb"),
  12788. name: "Front (Clothed)",
  12789. image: {
  12790. source: "./media/characters/jay/clothed.svg",
  12791. extra: 744 / 699,
  12792. bottom: 0.043
  12793. }
  12794. },
  12795. head: {
  12796. height: math.unit(1.772, "feet"),
  12797. name: "Head",
  12798. image: {
  12799. source: "./media/characters/jay/head.svg"
  12800. }
  12801. },
  12802. sizeRay: {
  12803. height: math.unit(1.331, "feet"),
  12804. name: "Size Ray",
  12805. image: {
  12806. source: "./media/characters/jay/size-ray.svg"
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Micro",
  12813. height: math.unit(1, "inch")
  12814. },
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(6 + 2 / 12, "feet"),
  12818. default: true
  12819. },
  12820. {
  12821. name: "Macro",
  12822. height: math.unit(1, "mile")
  12823. },
  12824. {
  12825. name: "Megamacro",
  12826. height: math.unit(100, "miles")
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12832. {
  12833. front: {
  12834. height: math.unit(2, "meters"),
  12835. weight: math.unit(500, "kg"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/coatl/front.svg",
  12839. extra: 3948 / 3500,
  12840. bottom: 0.082
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(4, "meters")
  12848. },
  12849. {
  12850. name: "Macro",
  12851. height: math.unit(100, "meters"),
  12852. default: true
  12853. },
  12854. {
  12855. name: "Macro+",
  12856. height: math.unit(300, "meters")
  12857. },
  12858. {
  12859. name: "Megamacro",
  12860. height: math.unit(3, "gigameters")
  12861. },
  12862. {
  12863. name: "Megamacro+",
  12864. height: math.unit(300, "terameters")
  12865. },
  12866. {
  12867. name: "Megamacro++",
  12868. height: math.unit(3, "lightyears")
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12874. {
  12875. front: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(50, "kg"),
  12878. name: "front",
  12879. image: {
  12880. source: "./media/characters/shiroryu/front.svg",
  12881. extra: 1990 / 1935
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Mortal Mingling",
  12888. height: math.unit(3, "meters")
  12889. },
  12890. {
  12891. name: "Kaiju-ish",
  12892. height: math.unit(250, "meters")
  12893. },
  12894. {
  12895. name: "Somewhat Godly",
  12896. height: math.unit(400, "km"),
  12897. default: true
  12898. },
  12899. {
  12900. name: "Planetary",
  12901. height: math.unit(300, "megameters")
  12902. },
  12903. {
  12904. name: "Galaxy-dwarfing",
  12905. height: math.unit(450, "kiloparsecs")
  12906. },
  12907. {
  12908. name: "Universe Eater",
  12909. height: math.unit(150, "gigaparsecs")
  12910. },
  12911. {
  12912. name: "Almost Immeasurable",
  12913. height: math.unit(1.3e266, "yottaparsecs")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12919. {
  12920. front: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(150, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/umeko/front.svg",
  12926. extra: 1,
  12927. bottom: 0.019
  12928. }
  12929. },
  12930. frontArmored: {
  12931. height: math.unit(6, "feet"),
  12932. weight: math.unit(150, "lb"),
  12933. name: "Front (Armored)",
  12934. image: {
  12935. source: "./media/characters/umeko/front-armored.svg",
  12936. extra: 1,
  12937. bottom: 0.021
  12938. }
  12939. },
  12940. },
  12941. [
  12942. {
  12943. name: "Macro",
  12944. height: math.unit(220, "feet"),
  12945. default: true
  12946. },
  12947. {
  12948. name: "Guardian Dragon",
  12949. height: math.unit(50, "miles")
  12950. },
  12951. {
  12952. name: "Cosmic",
  12953. height: math.unit(800000, "miles")
  12954. },
  12955. ]
  12956. ))
  12957. characterMakers.push(() => makeCharacter(
  12958. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12959. {
  12960. front: {
  12961. height: math.unit(6, "feet"),
  12962. weight: math.unit(150, "lb"),
  12963. name: "Front",
  12964. image: {
  12965. source: "./media/characters/cassidy/front.svg",
  12966. extra: 1,
  12967. bottom: 0.043
  12968. }
  12969. },
  12970. },
  12971. [
  12972. {
  12973. name: "Canon Height",
  12974. height: math.unit(120, "feet"),
  12975. default: true
  12976. },
  12977. {
  12978. name: "Macro+",
  12979. height: math.unit(400, "feet")
  12980. },
  12981. {
  12982. name: "Macro++",
  12983. height: math.unit(4000, "feet")
  12984. },
  12985. {
  12986. name: "Megamacro",
  12987. height: math.unit(3, "miles")
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12993. {
  12994. front: {
  12995. height: math.unit(6, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/isaac/front.svg",
  13000. extra: 896 / 815,
  13001. bottom: 0.11
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Human Size",
  13008. height: math.unit(8, "feet"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Macro",
  13013. height: math.unit(400, "feet")
  13014. },
  13015. {
  13016. name: "Megamacro",
  13017. height: math.unit(50, "miles")
  13018. },
  13019. {
  13020. name: "Canon Height",
  13021. height: math.unit(200, "AU")
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(72, "kg"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/sleekit/front.svg",
  13034. extra: 4693 / 4487,
  13035. bottom: 0.012
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Minimum Height",
  13042. height: math.unit(10, "meters")
  13043. },
  13044. {
  13045. name: "Smaller",
  13046. height: math.unit(25, "meters")
  13047. },
  13048. {
  13049. name: "Larger",
  13050. height: math.unit(38, "meters"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Maximum height",
  13055. height: math.unit(100, "meters")
  13056. },
  13057. ]
  13058. ))
  13059. characterMakers.push(() => makeCharacter(
  13060. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13061. {
  13062. front: {
  13063. height: math.unit(6, "feet"),
  13064. weight: math.unit(150, "lb"),
  13065. name: "Front",
  13066. image: {
  13067. source: "./media/characters/nillia/front.svg",
  13068. extra: 2195 / 2037,
  13069. bottom: 0.005
  13070. }
  13071. },
  13072. back: {
  13073. height: math.unit(6, "feet"),
  13074. weight: math.unit(150, "lb"),
  13075. name: "Back",
  13076. image: {
  13077. source: "./media/characters/nillia/back.svg",
  13078. extra: 2195 / 2037,
  13079. bottom: 0.005
  13080. }
  13081. },
  13082. },
  13083. [
  13084. {
  13085. name: "Canon Height",
  13086. height: math.unit(489, "feet"),
  13087. default: true
  13088. }
  13089. ]
  13090. ))
  13091. characterMakers.push(() => makeCharacter(
  13092. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13093. {
  13094. front: {
  13095. height: math.unit(6, "feet"),
  13096. weight: math.unit(150, "lb"),
  13097. name: "Front",
  13098. image: {
  13099. source: "./media/characters/mesmyriza/front.svg",
  13100. extra: 2067 / 1784,
  13101. bottom: 0.035
  13102. }
  13103. },
  13104. foot: {
  13105. height: math.unit(6 / (250 / 35), "feet"),
  13106. name: "Foot",
  13107. image: {
  13108. source: "./media/characters/mesmyriza/foot.svg"
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(457, "meters"),
  13116. default: true
  13117. },
  13118. {
  13119. name: "Megamacro",
  13120. height: math.unit(8, "megameters")
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13126. {
  13127. front: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(250, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/saudade/front.svg",
  13133. extra: 1172 / 1139,
  13134. bottom: 0.035
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Micro",
  13141. height: math.unit(3, "inches")
  13142. },
  13143. {
  13144. name: "Normal",
  13145. height: math.unit(6, "feet"),
  13146. default: true
  13147. },
  13148. {
  13149. name: "Macro",
  13150. height: math.unit(50, "feet")
  13151. },
  13152. {
  13153. name: "Megamacro",
  13154. height: math.unit(2800, "feet")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(5 + 4 / 12, "feet"),
  13163. weight: math.unit(100, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/keireer/front.svg",
  13167. extra: 716 / 666,
  13168. bottom: 0.05
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(5 + 4 / 12, "feet"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(90, "kg"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/mirja/front.svg",
  13189. extra: 1789 / 1683,
  13190. bottom: 0.05
  13191. }
  13192. },
  13193. frontDressed: {
  13194. height: math.unit(6, "feet"),
  13195. weight: math.unit(90, "lb"),
  13196. name: "Front (Dressed)",
  13197. image: {
  13198. source: "./media/characters/mirja/front-dressed.svg",
  13199. extra: 1789 / 1683,
  13200. bottom: 0.05
  13201. }
  13202. },
  13203. back: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(90, "lb"),
  13206. name: "Back",
  13207. image: {
  13208. source: "./media/characters/mirja/back.svg",
  13209. extra: 953 / 917,
  13210. bottom: 0.017
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "\"Incognito\"",
  13217. height: math.unit(3, "meters")
  13218. },
  13219. {
  13220. name: "Strolling Size",
  13221. height: math.unit(15, "km")
  13222. },
  13223. {
  13224. name: "Larger Strolling Size",
  13225. height: math.unit(400, "km")
  13226. },
  13227. {
  13228. name: "Preferred Size",
  13229. height: math.unit(5000, "km")
  13230. },
  13231. {
  13232. name: "True Size",
  13233. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13234. default: true
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(15, "feet"),
  13243. weight: math.unit(880, "kg"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/nightraver/front.svg",
  13247. extra: 2444 / 2160,
  13248. bottom: 0.027
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(15, "feet"),
  13253. weight: math.unit(880, "kg"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/nightraver/back.svg",
  13257. extra: 2309 / 2180,
  13258. bottom: 0.005
  13259. }
  13260. },
  13261. sole: {
  13262. height: math.unit(2.878, "feet"),
  13263. name: "Sole",
  13264. image: {
  13265. source: "./media/characters/nightraver/sole.svg"
  13266. }
  13267. },
  13268. foot: {
  13269. height: math.unit(2.285, "feet"),
  13270. name: "Foot",
  13271. image: {
  13272. source: "./media/characters/nightraver/foot.svg"
  13273. }
  13274. },
  13275. maw: {
  13276. height: math.unit(2.67, "feet"),
  13277. name: "Maw",
  13278. image: {
  13279. source: "./media/characters/nightraver/maw.svg"
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Micro",
  13286. height: math.unit(1, "cm")
  13287. },
  13288. {
  13289. name: "Normal",
  13290. height: math.unit(15, "feet"),
  13291. default: true
  13292. },
  13293. {
  13294. name: "Macro",
  13295. height: math.unit(300, "feet")
  13296. },
  13297. {
  13298. name: "Megamacro",
  13299. height: math.unit(300, "miles")
  13300. },
  13301. {
  13302. name: "Gigamacro",
  13303. height: math.unit(10000, "miles")
  13304. },
  13305. ]
  13306. ))
  13307. characterMakers.push(() => makeCharacter(
  13308. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13309. {
  13310. side: {
  13311. height: math.unit(2, "inches"),
  13312. weight: math.unit(5, "grams"),
  13313. name: "Side",
  13314. image: {
  13315. source: "./media/characters/arc/side.svg"
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Micro",
  13322. height: math.unit(2, "inches"),
  13323. default: true
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(1.1938, "meters"),
  13332. weight: math.unit(54, "kg"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/nebula-shahar/front.svg",
  13336. extra: 1642 / 1436,
  13337. bottom: 0.06
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Megamicro",
  13344. height: math.unit(0.3, "mm")
  13345. },
  13346. {
  13347. name: "Micro",
  13348. height: math.unit(3, "cm")
  13349. },
  13350. {
  13351. name: "Normal",
  13352. height: math.unit(138, "cm"),
  13353. default: true
  13354. },
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(30, "m")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13363. {
  13364. front: {
  13365. height: math.unit(5.24, "feet"),
  13366. weight: math.unit(150, "lb"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/shayla/front.svg",
  13370. extra: 1512 / 1414,
  13371. bottom: 0.01
  13372. }
  13373. },
  13374. back: {
  13375. height: math.unit(5.24, "feet"),
  13376. weight: math.unit(150, "lb"),
  13377. name: "Back",
  13378. image: {
  13379. source: "./media/characters/shayla/back.svg",
  13380. extra: 1512 / 1414
  13381. }
  13382. },
  13383. hand: {
  13384. height: math.unit(0.7781496062992126, "feet"),
  13385. name: "Hand",
  13386. image: {
  13387. source: "./media/characters/shayla/hand.svg"
  13388. }
  13389. },
  13390. foot: {
  13391. height: math.unit(1.4206036745406823, "feet"),
  13392. name: "Foot",
  13393. image: {
  13394. source: "./media/characters/shayla/foot.svg"
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Micro",
  13401. height: math.unit(0.32, "feet")
  13402. },
  13403. {
  13404. name: "Normal",
  13405. height: math.unit(5.24, "feet"),
  13406. default: true
  13407. },
  13408. {
  13409. name: "Macro",
  13410. height: math.unit(492.12, "feet")
  13411. },
  13412. {
  13413. name: "Megamacro",
  13414. height: math.unit(186.41, "miles")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(2.2, "m"),
  13423. weight: math.unit(120, "kg"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/pia-jr/front.svg",
  13427. extra: 1000 / 970,
  13428. bottom: 0.035
  13429. }
  13430. },
  13431. hand: {
  13432. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13433. name: "Hand",
  13434. image: {
  13435. source: "./media/characters/pia-jr/hand.svg"
  13436. }
  13437. },
  13438. paw: {
  13439. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13440. name: "Paw",
  13441. image: {
  13442. source: "./media/characters/pia-jr/paw.svg"
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Micro",
  13449. height: math.unit(1.2, "cm")
  13450. },
  13451. {
  13452. name: "Normal",
  13453. height: math.unit(2.2, "m"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(180, "m")
  13459. },
  13460. {
  13461. name: "Megamacro",
  13462. height: math.unit(420, "km")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(2, "m"),
  13471. weight: math.unit(115, "kg"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/pia-sr/front.svg",
  13475. extra: 760 / 730,
  13476. bottom: 0.015
  13477. }
  13478. },
  13479. back: {
  13480. height: math.unit(2, "m"),
  13481. weight: math.unit(115, "kg"),
  13482. name: "Back",
  13483. image: {
  13484. source: "./media/characters/pia-sr/back.svg",
  13485. extra: 760 / 730,
  13486. bottom: 0.01
  13487. }
  13488. },
  13489. hand: {
  13490. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13491. name: "Hand",
  13492. image: {
  13493. source: "./media/characters/pia-sr/hand.svg"
  13494. }
  13495. },
  13496. foot: {
  13497. height: math.unit(1.83, "feet"),
  13498. name: "Foot",
  13499. image: {
  13500. source: "./media/characters/pia-sr/foot.svg"
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Micro",
  13507. height: math.unit(88, "mm")
  13508. },
  13509. {
  13510. name: "Normal",
  13511. height: math.unit(2, "m"),
  13512. default: true
  13513. },
  13514. {
  13515. name: "Macro",
  13516. height: math.unit(200, "m")
  13517. },
  13518. {
  13519. name: "Megamacro",
  13520. height: math.unit(420, "km")
  13521. },
  13522. ]
  13523. ))
  13524. characterMakers.push(() => makeCharacter(
  13525. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13526. {
  13527. front: {
  13528. height: math.unit(8 + 2 / 12, "feet"),
  13529. weight: math.unit(300, "lb"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/kibibyte/front.svg",
  13533. extra: 2221 / 2098,
  13534. bottom: 0.04
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Normal",
  13541. height: math.unit(8 + 2 / 12, "feet"),
  13542. default: true
  13543. },
  13544. {
  13545. name: "Socialable Macro",
  13546. height: math.unit(50, "feet")
  13547. },
  13548. {
  13549. name: "Macro",
  13550. height: math.unit(300, "feet")
  13551. },
  13552. {
  13553. name: "Megamacro",
  13554. height: math.unit(500, "miles")
  13555. },
  13556. ]
  13557. ))
  13558. characterMakers.push(() => makeCharacter(
  13559. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13560. {
  13561. front: {
  13562. height: math.unit(6, "feet"),
  13563. weight: math.unit(150, "lb"),
  13564. name: "Front",
  13565. image: {
  13566. source: "./media/characters/felix/front.svg",
  13567. extra: 762 / 722,
  13568. bottom: 0.02
  13569. }
  13570. },
  13571. frontClothed: {
  13572. height: math.unit(6, "feet"),
  13573. weight: math.unit(150, "lb"),
  13574. name: "Front (Clothed)",
  13575. image: {
  13576. source: "./media/characters/felix/front-clothed.svg",
  13577. extra: 762 / 722,
  13578. bottom: 0.02
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Normal",
  13585. height: math.unit(6 + 8 / 12, "feet"),
  13586. default: true
  13587. },
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(2600, "feet")
  13591. },
  13592. {
  13593. name: "Megamacro",
  13594. height: math.unit(450, "miles")
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13600. {
  13601. front: {
  13602. height: math.unit(6 + 1 / 12, "feet"),
  13603. weight: math.unit(250, "lb"),
  13604. name: "Front",
  13605. image: {
  13606. source: "./media/characters/tobo/front.svg",
  13607. extra: 608 / 586,
  13608. bottom: 0.023
  13609. }
  13610. },
  13611. back: {
  13612. height: math.unit(6 + 1 / 12, "feet"),
  13613. weight: math.unit(250, "lb"),
  13614. name: "Back",
  13615. image: {
  13616. source: "./media/characters/tobo/back.svg",
  13617. extra: 608 / 586
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Nano",
  13624. height: math.unit(2, "nm")
  13625. },
  13626. {
  13627. name: "Megamicro",
  13628. height: math.unit(0.1, "mm")
  13629. },
  13630. {
  13631. name: "Micro",
  13632. height: math.unit(1, "inch"),
  13633. default: true
  13634. },
  13635. {
  13636. name: "Human-sized",
  13637. height: math.unit(6 + 1 / 12, "feet")
  13638. },
  13639. {
  13640. name: "Macro",
  13641. height: math.unit(250, "feet")
  13642. },
  13643. {
  13644. name: "Megamacro",
  13645. height: math.unit(75, "miles")
  13646. },
  13647. {
  13648. name: "Texas-sized",
  13649. height: math.unit(750, "miles")
  13650. },
  13651. {
  13652. name: "Teramacro",
  13653. height: math.unit(50000, "miles")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(6, "feet"),
  13662. weight: math.unit(269, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/danny-kapowsky/front.svg",
  13666. extra: 766 / 736,
  13667. bottom: 0.044
  13668. }
  13669. },
  13670. back: {
  13671. height: math.unit(6, "feet"),
  13672. weight: math.unit(269, "lb"),
  13673. name: "Back",
  13674. image: {
  13675. source: "./media/characters/danny-kapowsky/back.svg",
  13676. extra: 797 / 760,
  13677. bottom: 0.025
  13678. }
  13679. },
  13680. },
  13681. [
  13682. {
  13683. name: "Macro",
  13684. height: math.unit(150, "feet"),
  13685. default: true
  13686. },
  13687. {
  13688. name: "Macro+",
  13689. height: math.unit(200, "feet")
  13690. },
  13691. {
  13692. name: "Macro++",
  13693. height: math.unit(300, "feet")
  13694. },
  13695. {
  13696. name: "Macro+++",
  13697. height: math.unit(400, "feet")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13703. {
  13704. side: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(170, "lb"),
  13707. name: "Side",
  13708. image: {
  13709. source: "./media/characters/finn/side.svg",
  13710. extra: 1953 / 1807,
  13711. bottom: 0.057
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Megamacro",
  13718. height: math.unit(14445, "feet"),
  13719. default: true
  13720. },
  13721. ]
  13722. ))
  13723. characterMakers.push(() => makeCharacter(
  13724. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13725. {
  13726. front: {
  13727. height: math.unit(5 + 6 / 12, "feet"),
  13728. weight: math.unit(125, "lb"),
  13729. name: "Front",
  13730. image: {
  13731. source: "./media/characters/roy/front.svg",
  13732. extra: 1,
  13733. bottom: 0.11
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Micro",
  13740. height: math.unit(3, "inches"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Normal",
  13745. height: math.unit(5 + 6 / 12, "feet")
  13746. },
  13747. {
  13748. name: "Lesser Macro",
  13749. height: math.unit(60, "feet")
  13750. },
  13751. {
  13752. name: "Greater Macro",
  13753. height: math.unit(120, "feet")
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(100, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/aevsivs/front.svg",
  13766. extra: 1,
  13767. bottom: 0.03
  13768. }
  13769. },
  13770. back: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(100, "lb"),
  13773. name: "Back",
  13774. image: {
  13775. source: "./media/characters/aevsivs/back.svg"
  13776. }
  13777. },
  13778. },
  13779. [
  13780. {
  13781. name: "Micro",
  13782. height: math.unit(2, "inches"),
  13783. default: true
  13784. },
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(5, "feet")
  13788. },
  13789. ]
  13790. ))
  13791. characterMakers.push(() => makeCharacter(
  13792. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13793. {
  13794. front: {
  13795. height: math.unit(5 + 7 / 12, "feet"),
  13796. weight: math.unit(159, "lb"),
  13797. name: "Front",
  13798. image: {
  13799. source: "./media/characters/hildegard/front.svg",
  13800. extra: 289 / 269,
  13801. bottom: 7.63/297.8
  13802. }
  13803. },
  13804. back: {
  13805. height: math.unit(5 + 7 / 12, "feet"),
  13806. weight: math.unit(159, "lb"),
  13807. name: "Back",
  13808. image: {
  13809. source: "./media/characters/hildegard/back.svg",
  13810. extra: 280/260,
  13811. bottom: 2.3/282
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(5 + 7 / 12, "feet"),
  13819. default: true
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13825. {
  13826. bernard: {
  13827. height: math.unit(2 + 7 / 12, "feet"),
  13828. weight: math.unit(66, "lb"),
  13829. name: "Bernard",
  13830. rename: true,
  13831. image: {
  13832. source: "./media/characters/bernard-wilder/bernard.svg",
  13833. extra: 192 / 128,
  13834. bottom: 0.05
  13835. }
  13836. },
  13837. wilder: {
  13838. height: math.unit(5 + 8 / 12, "feet"),
  13839. weight: math.unit(143, "lb"),
  13840. name: "Wilder",
  13841. rename: true,
  13842. image: {
  13843. source: "./media/characters/bernard-wilder/wilder.svg",
  13844. extra: 361 / 312,
  13845. bottom: 0.02
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Normal",
  13852. height: math.unit(2 + 7 / 12, "feet"),
  13853. default: true
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13859. {
  13860. anthro: {
  13861. height: math.unit(6 + 1 / 12, "feet"),
  13862. weight: math.unit(155, "lb"),
  13863. name: "Anthro",
  13864. image: {
  13865. source: "./media/characters/hearth/anthro.svg",
  13866. extra: 260 / 250,
  13867. bottom: 0.02
  13868. }
  13869. },
  13870. feral: {
  13871. height: math.unit(3.78, "feet"),
  13872. weight: math.unit(35, "kg"),
  13873. name: "Feral",
  13874. image: {
  13875. source: "./media/characters/hearth/feral.svg",
  13876. extra: 153 / 135,
  13877. bottom: 0.03
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(6 + 1 / 12, "feet"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(182, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/ingrid/front.svg",
  13898. extra: 294 / 268,
  13899. bottom: 0.027
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Normal",
  13906. height: math.unit(6, "feet"),
  13907. default: true
  13908. },
  13909. ]
  13910. ))
  13911. characterMakers.push(() => makeCharacter(
  13912. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13913. {
  13914. eevee: {
  13915. height: math.unit(2 + 10 / 12, "feet"),
  13916. weight: math.unit(86, "lb"),
  13917. name: "Malgam",
  13918. image: {
  13919. source: "./media/characters/malgam/eevee.svg",
  13920. extra: 218 / 180,
  13921. bottom: 0.2
  13922. }
  13923. },
  13924. sylveon: {
  13925. height: math.unit(4, "feet"),
  13926. weight: math.unit(101, "lb"),
  13927. name: "Future Malgam",
  13928. rename: true,
  13929. image: {
  13930. source: "./media/characters/malgam/sylveon.svg",
  13931. extra: 371 / 325,
  13932. bottom: 0.015
  13933. }
  13934. },
  13935. gigantamax: {
  13936. height: math.unit(50, "feet"),
  13937. name: "Gigantamax Malgam",
  13938. rename: true,
  13939. image: {
  13940. source: "./media/characters/malgam/gigantamax.svg"
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(2 + 10 / 12, "feet"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13954. {
  13955. front: {
  13956. height: math.unit(5 + 11 / 12, "feet"),
  13957. weight: math.unit(188, "lb"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/fleur/front.svg",
  13961. extra: 309 / 283,
  13962. bottom: 0.007
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Normal",
  13969. height: math.unit(5 + 11 / 12, "feet"),
  13970. default: true
  13971. },
  13972. ]
  13973. ))
  13974. characterMakers.push(() => makeCharacter(
  13975. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13976. {
  13977. front: {
  13978. height: math.unit(5 + 4 / 12, "feet"),
  13979. weight: math.unit(122, "lb"),
  13980. name: "Front",
  13981. image: {
  13982. source: "./media/characters/jude/front.svg",
  13983. extra: 288 / 273,
  13984. bottom: 0.03
  13985. }
  13986. },
  13987. },
  13988. [
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(5 + 4 / 12, "feet"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(5 + 11 / 12, "feet"),
  14001. weight: math.unit(190, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/seara/front.svg",
  14005. extra: 1,
  14006. bottom: 0.05
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(5 + 11 / 12, "feet"),
  14014. default: true
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(16 + 5 / 12, "feet"),
  14023. weight: math.unit(524, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/caspian/front.svg",
  14027. extra: 1,
  14028. bottom: 0.04
  14029. }
  14030. },
  14031. },
  14032. [
  14033. {
  14034. name: "Normal",
  14035. height: math.unit(16 + 5 / 12, "feet"),
  14036. default: true
  14037. },
  14038. ]
  14039. ))
  14040. characterMakers.push(() => makeCharacter(
  14041. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14042. {
  14043. front: {
  14044. height: math.unit(5 + 7 / 12, "feet"),
  14045. weight: math.unit(170, "lb"),
  14046. name: "Front",
  14047. image: {
  14048. source: "./media/characters/mika/front.svg",
  14049. extra: 1,
  14050. bottom: 0.016
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Normal",
  14057. height: math.unit(5 + 7 / 12, "feet"),
  14058. default: true
  14059. },
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14064. {
  14065. front: {
  14066. height: math.unit(6 + 2 / 12, "feet"),
  14067. weight: math.unit(268, "lb"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/sol/front.svg",
  14071. extra: 247 / 231,
  14072. bottom: 0.05
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Normal",
  14079. height: math.unit(6 + 2 / 12, "feet"),
  14080. default: true
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14086. {
  14087. buizel: {
  14088. height: math.unit(2 + 5 / 12, "feet"),
  14089. weight: math.unit(87, "lb"),
  14090. name: "Buizel",
  14091. image: {
  14092. source: "./media/characters/umiko/buizel.svg",
  14093. extra: 172 / 157,
  14094. bottom: 0.01
  14095. }
  14096. },
  14097. floatzel: {
  14098. height: math.unit(5 + 9 / 12, "feet"),
  14099. weight: math.unit(250, "lb"),
  14100. name: "Floatzel",
  14101. image: {
  14102. source: "./media/characters/umiko/floatzel.svg",
  14103. extra: 262 / 248
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Normal",
  14110. height: math.unit(2 + 5 / 12, "feet"),
  14111. default: true
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(6 + 2 / 12, "feet"),
  14120. weight: math.unit(146, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/iliac/front.svg",
  14124. extra: 389 / 365,
  14125. bottom: 0.035
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Normal",
  14132. height: math.unit(6 + 2 / 12, "feet"),
  14133. default: true
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(170, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/topaz/front.svg",
  14146. extra: 317 / 303,
  14147. bottom: 0.055
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Normal",
  14154. height: math.unit(6, "feet"),
  14155. default: true
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14161. {
  14162. front: {
  14163. height: math.unit(5 + 11 / 12, "feet"),
  14164. weight: math.unit(144, "lb"),
  14165. name: "Front",
  14166. image: {
  14167. source: "./media/characters/gabriel/front.svg",
  14168. extra: 285 / 262,
  14169. bottom: 0.004
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Normal",
  14176. height: math.unit(5 + 11 / 12, "feet"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14183. {
  14184. side: {
  14185. height: math.unit(6 + 5 / 12, "feet"),
  14186. weight: math.unit(300, "lb"),
  14187. name: "Side",
  14188. image: {
  14189. source: "./media/characters/tempest-suicune/side.svg",
  14190. extra: 195 / 154,
  14191. bottom: 0.04
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Normal",
  14198. height: math.unit(6 + 5 / 12, "feet"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14205. {
  14206. front: {
  14207. height: math.unit(7 + 2 / 12, "feet"),
  14208. weight: math.unit(322, "lb"),
  14209. name: "Front",
  14210. image: {
  14211. source: "./media/characters/vulcan/front.svg",
  14212. extra: 154 / 147,
  14213. bottom: 0.04
  14214. }
  14215. },
  14216. },
  14217. [
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(7 + 2 / 12, "feet"),
  14221. default: true
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14227. {
  14228. front: {
  14229. height: math.unit(5 + 10 / 12, "feet"),
  14230. weight: math.unit(264, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/gault/front.svg",
  14234. extra: 161 / 140,
  14235. bottom: 0.028
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(5 + 10 / 12, "feet"),
  14243. default: true
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14249. {
  14250. front: {
  14251. height: math.unit(6, "feet"),
  14252. weight: math.unit(150, "lb"),
  14253. name: "Front",
  14254. image: {
  14255. source: "./media/characters/shard/front.svg",
  14256. extra: 273 / 238,
  14257. bottom: 0.02
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(3 + 6 / 12, "feet"),
  14265. default: true
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14271. {
  14272. front: {
  14273. height: math.unit(5 + 11 / 12, "feet"),
  14274. weight: math.unit(146, "lb"),
  14275. name: "Front",
  14276. image: {
  14277. source: "./media/characters/ashe/front.svg",
  14278. extra: 400 / 373,
  14279. bottom: 0.01
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Normal",
  14286. height: math.unit(5 + 11 / 12, "feet"),
  14287. default: true
  14288. },
  14289. ]
  14290. ))
  14291. characterMakers.push(() => makeCharacter(
  14292. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14293. {
  14294. front: {
  14295. height: math.unit(5 + 5 / 12, "feet"),
  14296. weight: math.unit(135, "lb"),
  14297. name: "Front",
  14298. image: {
  14299. source: "./media/characters/beatrix/front.svg",
  14300. extra: 392 / 379,
  14301. bottom: 0.01
  14302. }
  14303. },
  14304. },
  14305. [
  14306. {
  14307. name: "Normal",
  14308. height: math.unit(6, "feet"),
  14309. default: true
  14310. },
  14311. ]
  14312. ))
  14313. characterMakers.push(() => makeCharacter(
  14314. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14315. {
  14316. front: {
  14317. height: math.unit(6, "feet"),
  14318. weight: math.unit(150, "lb"),
  14319. name: "Front",
  14320. image: {
  14321. source: "./media/characters/ignatius/front.svg",
  14322. extra: 245 / 222,
  14323. bottom: 0.01
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(5 + 5 / 12, "feet"),
  14331. default: true
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(6 + 2 / 12, "feet"),
  14340. weight: math.unit(138, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/mei-li/front.svg",
  14344. extra: 237 / 229,
  14345. bottom: 0.03
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(6 + 2 / 12, "feet"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(2 + 4 / 12, "feet"),
  14362. weight: math.unit(62, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/puru/front.svg",
  14366. extra: 206 / 149,
  14367. bottom: 0.06
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(2 + 4 / 12, "feet"),
  14375. default: true
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14381. {
  14382. taur: {
  14383. height: math.unit(11, "feet"),
  14384. weight: math.unit(500, "lb"),
  14385. name: "Taur",
  14386. image: {
  14387. source: "./media/characters/kee/taur.svg",
  14388. extra: 1,
  14389. bottom: 0.04
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(11, "feet"),
  14397. default: true
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14403. {
  14404. anthro: {
  14405. height: math.unit(7, "feet"),
  14406. weight: math.unit(190, "lb"),
  14407. name: "Anthro",
  14408. image: {
  14409. source: "./media/characters/cobalt-dracha/anthro.svg",
  14410. extra: 231 / 225,
  14411. bottom: 0.04
  14412. }
  14413. },
  14414. feral: {
  14415. height: math.unit(9 + 7 / 12, "feet"),
  14416. weight: math.unit(294, "lb"),
  14417. name: "Feral",
  14418. image: {
  14419. source: "./media/characters/cobalt-dracha/feral.svg",
  14420. extra: 692 / 633,
  14421. bottom: 0.05
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(7, "feet"),
  14429. default: true
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14435. {
  14436. fallen: {
  14437. height: math.unit(11 + 8 / 12, "feet"),
  14438. weight: math.unit(485, "lb"),
  14439. name: "Java (Fallen)",
  14440. rename: true,
  14441. image: {
  14442. source: "./media/characters/java/fallen.svg",
  14443. extra: 226 / 208,
  14444. bottom: 0.005
  14445. }
  14446. },
  14447. godkin: {
  14448. height: math.unit(10 + 6 / 12, "feet"),
  14449. weight: math.unit(328, "lb"),
  14450. name: "Java (Godkin)",
  14451. rename: true,
  14452. image: {
  14453. source: "./media/characters/java/godkin.svg",
  14454. extra: 270 / 262,
  14455. bottom: 0.02
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(11 + 8 / 12, "feet"),
  14463. default: true
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(7 + 8 / 12, "feet"),
  14472. weight: math.unit(320, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/skoll/front.svg",
  14476. extra: 232 / 220,
  14477. bottom: 0.02
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(7 + 8 / 12, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(5 + 9 / 12, "feet"),
  14494. weight: math.unit(170, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/purna/front.svg",
  14498. extra: 239 / 229,
  14499. bottom: 0.01
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(5 + 9 / 12, "feet"),
  14507. default: true
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(5 + 9 / 12, "feet"),
  14516. weight: math.unit(142, "lb"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/kuva/front.svg",
  14520. extra: 281 / 271,
  14521. bottom: 0.006
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(5 + 9 / 12, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14535. {
  14536. anthro: {
  14537. height: math.unit(9 + 2 / 12, "feet"),
  14538. weight: math.unit(270, "lb"),
  14539. name: "Anthro",
  14540. image: {
  14541. source: "./media/characters/embra/anthro.svg",
  14542. extra: 200 / 187,
  14543. bottom: 0.02
  14544. }
  14545. },
  14546. feral: {
  14547. height: math.unit(18 + 8 / 12, "feet"),
  14548. weight: math.unit(576, "lb"),
  14549. name: "Feral",
  14550. image: {
  14551. source: "./media/characters/embra/feral.svg",
  14552. extra: 152 / 137,
  14553. bottom: 0.037
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(9 + 2 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14567. {
  14568. anthro: {
  14569. height: math.unit(10 + 9 / 12, "feet"),
  14570. weight: math.unit(224, "lb"),
  14571. name: "Anthro",
  14572. image: {
  14573. source: "./media/characters/grottos/anthro.svg",
  14574. extra: 350 / 332,
  14575. bottom: 0.045
  14576. }
  14577. },
  14578. feral: {
  14579. height: math.unit(20 + 7 / 12, "feet"),
  14580. weight: math.unit(629, "lb"),
  14581. name: "Feral",
  14582. image: {
  14583. source: "./media/characters/grottos/feral.svg",
  14584. extra: 207 / 190,
  14585. bottom: 0.05
  14586. }
  14587. },
  14588. },
  14589. [
  14590. {
  14591. name: "Normal",
  14592. height: math.unit(10 + 9 / 12, "feet"),
  14593. default: true
  14594. },
  14595. ]
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14599. {
  14600. anthro: {
  14601. height: math.unit(9 + 6 / 12, "feet"),
  14602. weight: math.unit(298, "lb"),
  14603. name: "Anthro",
  14604. image: {
  14605. source: "./media/characters/frifna/anthro.svg",
  14606. extra: 282 / 269,
  14607. bottom: 0.015
  14608. }
  14609. },
  14610. feral: {
  14611. height: math.unit(16 + 2 / 12, "feet"),
  14612. weight: math.unit(624, "lb"),
  14613. name: "Feral",
  14614. image: {
  14615. source: "./media/characters/frifna/feral.svg"
  14616. }
  14617. },
  14618. },
  14619. [
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(9 + 6 / 12, "feet"),
  14623. default: true
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(6 + 2 / 12, "feet"),
  14632. weight: math.unit(168, "lb"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/elise/front.svg",
  14636. extra: 276 / 271
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Normal",
  14643. height: math.unit(6 + 2 / 12, "feet"),
  14644. default: true
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14650. {
  14651. front: {
  14652. height: math.unit(5 + 10 / 12, "feet"),
  14653. weight: math.unit(210, "lb"),
  14654. name: "Front",
  14655. image: {
  14656. source: "./media/characters/glade/front.svg",
  14657. extra: 258 / 247,
  14658. bottom: 0.008
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Normal",
  14665. height: math.unit(5 + 10 / 12, "feet"),
  14666. default: true
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14672. {
  14673. front: {
  14674. height: math.unit(5 + 10 / 12, "feet"),
  14675. weight: math.unit(129, "lb"),
  14676. name: "Front",
  14677. image: {
  14678. source: "./media/characters/rina/front.svg",
  14679. extra: 266 / 255,
  14680. bottom: 0.005
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(5 + 10 / 12, "feet"),
  14688. default: true
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(6 + 1 / 12, "feet"),
  14697. weight: math.unit(192, "lb"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/veronica/front.svg",
  14701. extra: 319 / 309,
  14702. bottom: 0.005
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Normal",
  14709. height: math.unit(6 + 1 / 12, "feet"),
  14710. default: true
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(9 + 3 / 12, "feet"),
  14719. weight: math.unit(1100, "lb"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/braxton/front.svg",
  14723. extra: 1057 / 984,
  14724. bottom: 0.05
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(9 + 3 / 12, "feet")
  14732. },
  14733. {
  14734. name: "Giant",
  14735. height: math.unit(300, "feet"),
  14736. default: true
  14737. },
  14738. {
  14739. name: "Macro",
  14740. height: math.unit(700, "feet")
  14741. },
  14742. {
  14743. name: "Megamacro",
  14744. height: math.unit(6000, "feet")
  14745. },
  14746. ]
  14747. ))
  14748. characterMakers.push(() => makeCharacter(
  14749. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14750. {
  14751. front: {
  14752. height: math.unit(6 + 7 / 12, "feet"),
  14753. weight: math.unit(150, "lb"),
  14754. name: "Front",
  14755. image: {
  14756. source: "./media/characters/blue-feyonics/front.svg",
  14757. extra: 1403 / 1306,
  14758. bottom: 0.047
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Normal",
  14765. height: math.unit(6 + 7 / 12, "feet"),
  14766. default: true
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(1.8, "meters"),
  14775. weight: math.unit(60, "kg"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/maxwell/front.svg",
  14779. extra: 2060 / 1873
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Micro",
  14786. height: math.unit(1, "mm")
  14787. },
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(1.8, "meter"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Macro",
  14795. height: math.unit(30, "meters")
  14796. },
  14797. {
  14798. name: "Megamacro",
  14799. height: math.unit(10, "km")
  14800. },
  14801. ]
  14802. ))
  14803. characterMakers.push(() => makeCharacter(
  14804. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14805. {
  14806. front: {
  14807. height: math.unit(6, "feet"),
  14808. weight: math.unit(150, "lb"),
  14809. name: "Front",
  14810. image: {
  14811. source: "./media/characters/jack/front.svg",
  14812. extra: 1754 / 1640,
  14813. bottom: 0.01
  14814. }
  14815. },
  14816. },
  14817. [
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(80000, "feet"),
  14821. default: true
  14822. },
  14823. {
  14824. name: "Max size",
  14825. height: math.unit(10, "lightyears")
  14826. },
  14827. ]
  14828. ))
  14829. characterMakers.push(() => makeCharacter(
  14830. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14831. {
  14832. upright: {
  14833. height: math.unit(7, "feet"),
  14834. weight: math.unit(170, "lb"),
  14835. name: "Upright",
  14836. image: {
  14837. source: "./media/characters/cafat/upright.svg",
  14838. bottom: 0.01
  14839. }
  14840. },
  14841. uprightFull: {
  14842. height: math.unit(7, "feet"),
  14843. weight: math.unit(170, "lb"),
  14844. name: "Upright (Full)",
  14845. image: {
  14846. source: "./media/characters/cafat/upright-full.svg",
  14847. bottom: 0.01
  14848. }
  14849. },
  14850. side: {
  14851. height: math.unit(5, "feet"),
  14852. weight: math.unit(150, "lb"),
  14853. name: "Side",
  14854. image: {
  14855. source: "./media/characters/cafat/side.svg"
  14856. }
  14857. },
  14858. },
  14859. [
  14860. {
  14861. name: "Small",
  14862. height: math.unit(7, "feet"),
  14863. default: true
  14864. },
  14865. {
  14866. name: "Large",
  14867. height: math.unit(15.5, "feet")
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(6, "feet"),
  14876. weight: math.unit(150, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/verin-raharra/front.svg",
  14880. extra: 5019 / 4835,
  14881. bottom: 0.023
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(7 + 5 / 12, "feet"),
  14889. default: true
  14890. },
  14891. {
  14892. name: "Upsized",
  14893. height: math.unit(20, "feet")
  14894. },
  14895. ]
  14896. ))
  14897. characterMakers.push(() => makeCharacter(
  14898. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14899. {
  14900. front: {
  14901. height: math.unit(7, "feet"),
  14902. weight: math.unit(230, "lb"),
  14903. name: "Front",
  14904. image: {
  14905. source: "./media/characters/nakata/front.svg",
  14906. extra: 1.005,
  14907. bottom: 0.01
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Normal",
  14914. height: math.unit(7, "feet"),
  14915. default: true
  14916. },
  14917. {
  14918. name: "Big",
  14919. height: math.unit(14, "feet")
  14920. },
  14921. {
  14922. name: "Macro",
  14923. height: math.unit(400, "feet")
  14924. },
  14925. ]
  14926. ))
  14927. characterMakers.push(() => makeCharacter(
  14928. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14929. {
  14930. front: {
  14931. height: math.unit(4.91, "feet"),
  14932. weight: math.unit(100, "lb"),
  14933. name: "Front",
  14934. image: {
  14935. source: "./media/characters/lily/front.svg",
  14936. extra: 1585 / 1415,
  14937. bottom: 0.02
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(4.91, "feet"),
  14945. default: true
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14951. {
  14952. laying: {
  14953. height: math.unit(4 + 4 / 12, "feet"),
  14954. weight: math.unit(600, "lb"),
  14955. name: "Laying",
  14956. image: {
  14957. source: "./media/characters/sheila/laying.svg",
  14958. extra: 1333 / 1265,
  14959. bottom: 0.16
  14960. }
  14961. },
  14962. },
  14963. [
  14964. {
  14965. name: "Normal",
  14966. height: math.unit(4 + 4 / 12, "feet"),
  14967. default: true
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(6, "feet"),
  14976. weight: math.unit(190, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/sax/front.svg",
  14980. extra: 1187 / 973,
  14981. bottom: 0.042
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Micro",
  14988. height: math.unit(4, "inches"),
  14989. default: true
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14995. {
  14996. front: {
  14997. height: math.unit(6, "feet"),
  14998. weight: math.unit(150, "lb"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/pandora/front.svg",
  15002. extra: 2720 / 2556,
  15003. bottom: 0.015
  15004. }
  15005. },
  15006. back: {
  15007. height: math.unit(6, "feet"),
  15008. weight: math.unit(150, "lb"),
  15009. name: "Back",
  15010. image: {
  15011. source: "./media/characters/pandora/back.svg",
  15012. extra: 2720 / 2556,
  15013. bottom: 0.01
  15014. }
  15015. },
  15016. beans: {
  15017. height: math.unit(6 / 8, "feet"),
  15018. name: "Beans",
  15019. image: {
  15020. source: "./media/characters/pandora/beans.svg"
  15021. }
  15022. },
  15023. skirt: {
  15024. height: math.unit(6, "feet"),
  15025. weight: math.unit(150, "lb"),
  15026. name: "Skirt",
  15027. image: {
  15028. source: "./media/characters/pandora/skirt.svg",
  15029. extra: 1622 / 1525,
  15030. bottom: 0.015
  15031. }
  15032. },
  15033. hoodie: {
  15034. height: math.unit(6, "feet"),
  15035. weight: math.unit(150, "lb"),
  15036. name: "Hoodie",
  15037. image: {
  15038. source: "./media/characters/pandora/hoodie.svg",
  15039. extra: 1622 / 1525,
  15040. bottom: 0.015
  15041. }
  15042. },
  15043. casual: {
  15044. height: math.unit(6, "feet"),
  15045. weight: math.unit(150, "lb"),
  15046. name: "Casual",
  15047. image: {
  15048. source: "./media/characters/pandora/casual.svg",
  15049. extra: 1622 / 1525,
  15050. bottom: 0.015
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(6, "feet")
  15058. },
  15059. {
  15060. name: "Big Steppy",
  15061. height: math.unit(1, "km"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15068. {
  15069. side: {
  15070. height: math.unit(10, "feet"),
  15071. weight: math.unit(800, "kg"),
  15072. name: "Side",
  15073. image: {
  15074. source: "./media/characters/venio-darcony/side.svg",
  15075. extra: 1373 / 1003,
  15076. bottom: 0.037
  15077. }
  15078. },
  15079. front: {
  15080. height: math.unit(19, "feet"),
  15081. weight: math.unit(800, "kg"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/venio-darcony/front.svg"
  15085. }
  15086. },
  15087. back: {
  15088. height: math.unit(19, "feet"),
  15089. weight: math.unit(800, "kg"),
  15090. name: "Back",
  15091. image: {
  15092. source: "./media/characters/venio-darcony/back.svg"
  15093. }
  15094. },
  15095. sideNsfw: {
  15096. height: math.unit(10, "feet"),
  15097. weight: math.unit(800, "kg"),
  15098. name: "Side (NSFW)",
  15099. image: {
  15100. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15101. extra: 1373 / 1003,
  15102. bottom: 0.037
  15103. }
  15104. },
  15105. frontNsfw: {
  15106. height: math.unit(19, "feet"),
  15107. weight: math.unit(800, "kg"),
  15108. name: "Front (NSFW)",
  15109. image: {
  15110. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15111. }
  15112. },
  15113. backNsfw: {
  15114. height: math.unit(19, "feet"),
  15115. weight: math.unit(800, "kg"),
  15116. name: "Back (NSFW)",
  15117. image: {
  15118. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15119. }
  15120. },
  15121. sideArmored: {
  15122. height: math.unit(10, "feet"),
  15123. weight: math.unit(800, "kg"),
  15124. name: "Side (Armored)",
  15125. image: {
  15126. source: "./media/characters/venio-darcony/side-armored.svg",
  15127. extra: 1373 / 1003,
  15128. bottom: 0.037
  15129. }
  15130. },
  15131. frontArmored: {
  15132. height: math.unit(19, "feet"),
  15133. weight: math.unit(900, "kg"),
  15134. name: "Front (Armored)",
  15135. image: {
  15136. source: "./media/characters/venio-darcony/front-armored.svg"
  15137. }
  15138. },
  15139. backArmored: {
  15140. height: math.unit(19, "feet"),
  15141. weight: math.unit(900, "kg"),
  15142. name: "Back (Armored)",
  15143. image: {
  15144. source: "./media/characters/venio-darcony/back-armored.svg"
  15145. }
  15146. },
  15147. sword: {
  15148. height: math.unit(10, "feet"),
  15149. weight: math.unit(50, "lb"),
  15150. name: "Sword",
  15151. image: {
  15152. source: "./media/characters/venio-darcony/sword.svg"
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(10, "feet")
  15160. },
  15161. {
  15162. name: "Macro",
  15163. height: math.unit(130, "feet"),
  15164. default: true
  15165. },
  15166. {
  15167. name: "Macro+",
  15168. height: math.unit(240, "feet")
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(6, "feet"),
  15177. weight: math.unit(150, "lb"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/veski/front.svg",
  15181. extra: 1299 / 1225,
  15182. bottom: 0.04
  15183. }
  15184. },
  15185. back: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Back",
  15189. image: {
  15190. source: "./media/characters/veski/back.svg",
  15191. extra: 1299 / 1225,
  15192. bottom: 0.008
  15193. }
  15194. },
  15195. maw: {
  15196. height: math.unit(1.5 * 1.21, "feet"),
  15197. name: "Maw",
  15198. image: {
  15199. source: "./media/characters/veski/maw.svg"
  15200. }
  15201. },
  15202. },
  15203. [
  15204. {
  15205. name: "Macro",
  15206. height: math.unit(2, "km"),
  15207. default: true
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15213. {
  15214. front: {
  15215. height: math.unit(5 + 7 / 12, "feet"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/isabelle/front.svg",
  15219. extra: 2130 / 1976,
  15220. bottom: 0.05
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Supermicro",
  15227. height: math.unit(10, "micrometers")
  15228. },
  15229. {
  15230. name: "Micro",
  15231. height: math.unit(1, "inch")
  15232. },
  15233. {
  15234. name: "Tiny",
  15235. height: math.unit(5, "inches")
  15236. },
  15237. {
  15238. name: "Standard",
  15239. height: math.unit(5 + 7 / 12, "inches")
  15240. },
  15241. {
  15242. name: "Macro",
  15243. height: math.unit(80, "meters"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Megamacro",
  15248. height: math.unit(250, "meters")
  15249. },
  15250. {
  15251. name: "Gigamacro",
  15252. height: math.unit(5, "km")
  15253. },
  15254. {
  15255. name: "Cosmic",
  15256. height: math.unit(2.5e6, "miles")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/hanzo/front.svg",
  15269. extra: 374 / 344,
  15270. bottom: 0.02
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(8, "feet"),
  15278. default: true
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15284. {
  15285. front: {
  15286. height: math.unit(7, "feet"),
  15287. weight: math.unit(130, "lb"),
  15288. name: "Front",
  15289. image: {
  15290. source: "./media/characters/anna/front.svg",
  15291. extra: 169 / 145,
  15292. bottom: 0.06
  15293. }
  15294. },
  15295. full: {
  15296. height: math.unit(4.96, "feet"),
  15297. weight: math.unit(220, "lb"),
  15298. name: "Full",
  15299. image: {
  15300. source: "./media/characters/anna/full.svg",
  15301. extra: 138 / 114,
  15302. bottom: 0.15
  15303. }
  15304. },
  15305. tongue: {
  15306. height: math.unit(2.53, "feet"),
  15307. name: "Tongue",
  15308. image: {
  15309. source: "./media/characters/anna/tongue.svg"
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(7, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(7, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/ian-corvid/front.svg",
  15330. extra: 150 / 142,
  15331. bottom: 0.02
  15332. }
  15333. },
  15334. back: {
  15335. height: math.unit(7, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Back",
  15338. image: {
  15339. source: "./media/characters/ian-corvid/back.svg",
  15340. extra: 150 / 143,
  15341. bottom: 0.01
  15342. }
  15343. },
  15344. stomping: {
  15345. height: math.unit(7, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Stomping",
  15348. image: {
  15349. source: "./media/characters/ian-corvid/stomping.svg",
  15350. extra: 76 / 72
  15351. }
  15352. },
  15353. sitting: {
  15354. height: math.unit(7 / 1.8, "feet"),
  15355. weight: math.unit(150, "lb"),
  15356. name: "Sitting",
  15357. image: {
  15358. source: "./media/characters/ian-corvid/sitting.svg",
  15359. extra: 1400 / 1269,
  15360. bottom: 0.15
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Tiny Microw",
  15367. height: math.unit(1, "inch")
  15368. },
  15369. {
  15370. name: "Microw",
  15371. height: math.unit(6, "inches")
  15372. },
  15373. {
  15374. name: "Crow",
  15375. height: math.unit(7 + 1 / 12, "feet"),
  15376. default: true
  15377. },
  15378. {
  15379. name: "Macrow",
  15380. height: math.unit(176, "feet")
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15386. {
  15387. front: {
  15388. height: math.unit(5 + 7 / 12, "feet"),
  15389. weight: math.unit(147, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/natalie-kellon/front.svg",
  15393. extra: 1214 / 1141,
  15394. bottom: 0.02
  15395. }
  15396. },
  15397. },
  15398. [
  15399. {
  15400. name: "Micro",
  15401. height: math.unit(1 / 16, "inch")
  15402. },
  15403. {
  15404. name: "Tiny",
  15405. height: math.unit(4, "inches")
  15406. },
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(5 + 7 / 12, "feet"),
  15410. default: true
  15411. },
  15412. {
  15413. name: "Amazon",
  15414. height: math.unit(12, "feet")
  15415. },
  15416. {
  15417. name: "Giantess",
  15418. height: math.unit(160, "meters")
  15419. },
  15420. {
  15421. name: "Titaness",
  15422. height: math.unit(800, "meters")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/alluria/front.svg",
  15435. extra: 806 / 738,
  15436. bottom: 0.01
  15437. }
  15438. },
  15439. side: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Side",
  15443. image: {
  15444. source: "./media/characters/alluria/side.svg",
  15445. extra: 800 / 750,
  15446. }
  15447. },
  15448. back: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Back",
  15452. image: {
  15453. source: "./media/characters/alluria/back.svg",
  15454. extra: 806 / 738,
  15455. }
  15456. },
  15457. frontMaid: {
  15458. height: math.unit(6, "feet"),
  15459. weight: math.unit(150, "lb"),
  15460. name: "Front (Maid)",
  15461. image: {
  15462. source: "./media/characters/alluria/front-maid.svg",
  15463. extra: 806 / 738,
  15464. bottom: 0.01
  15465. }
  15466. },
  15467. sideMaid: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Side (Maid)",
  15471. image: {
  15472. source: "./media/characters/alluria/side-maid.svg",
  15473. extra: 800 / 750,
  15474. bottom: 0.005
  15475. }
  15476. },
  15477. backMaid: {
  15478. height: math.unit(6, "feet"),
  15479. weight: math.unit(150, "lb"),
  15480. name: "Back (Maid)",
  15481. image: {
  15482. source: "./media/characters/alluria/back-maid.svg",
  15483. extra: 806 / 738,
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Micro",
  15490. height: math.unit(6, "inches"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(6, "feet"),
  15500. weight: math.unit(150, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/kyle/front.svg",
  15504. extra: 1069 / 962,
  15505. bottom: 77.228 / 1727.45
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(150, "feet"),
  15513. default: true
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(6, "feet"),
  15522. weight: math.unit(300, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/duncan/front.svg",
  15526. extra: 1650 / 1482,
  15527. bottom: 0.05
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(100, "feet"),
  15535. default: true
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(5 + 4 / 12, "feet"),
  15544. weight: math.unit(220, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/memory/front.svg",
  15548. extra: 3641 / 3545,
  15549. bottom: 0.03
  15550. }
  15551. },
  15552. back: {
  15553. height: math.unit(5 + 4 / 12, "feet"),
  15554. weight: math.unit(220, "lb"),
  15555. name: "Back",
  15556. image: {
  15557. source: "./media/characters/memory/back.svg",
  15558. extra: 3641 / 3545,
  15559. bottom: 0.025
  15560. }
  15561. },
  15562. frontSkirt: {
  15563. height: math.unit(5 + 4 / 12, "feet"),
  15564. weight: math.unit(220, "lb"),
  15565. name: "Front (Skirt)",
  15566. image: {
  15567. source: "./media/characters/memory/front-skirt.svg",
  15568. extra: 3641 / 3545,
  15569. bottom: 0.03
  15570. }
  15571. },
  15572. frontDress: {
  15573. height: math.unit(5 + 4 / 12, "feet"),
  15574. weight: math.unit(220, "lb"),
  15575. name: "Front (Dress)",
  15576. image: {
  15577. source: "./media/characters/memory/front-dress.svg",
  15578. extra: 3641 / 3545,
  15579. bottom: 0.03
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Micro",
  15586. height: math.unit(6, "inches"),
  15587. default: true
  15588. },
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(5 + 4 / 12, "feet")
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(4 + 11 / 12, "feet"),
  15600. weight: math.unit(100, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/luno/front.svg",
  15604. extra: 1535 / 1487,
  15605. bottom: 0.03
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Micro",
  15612. height: math.unit(3, "inches")
  15613. },
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(4 + 11 / 12, "feet"),
  15617. default: true
  15618. },
  15619. {
  15620. name: "Macro",
  15621. height: math.unit(300, "feet")
  15622. },
  15623. {
  15624. name: "Megamacro",
  15625. height: math.unit(700, "miles")
  15626. },
  15627. ]
  15628. ))
  15629. characterMakers.push(() => makeCharacter(
  15630. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15631. {
  15632. front: {
  15633. height: math.unit(6 + 2 / 12, "feet"),
  15634. weight: math.unit(170, "lb"),
  15635. name: "Front",
  15636. image: {
  15637. source: "./media/characters/jamesy/front.svg",
  15638. extra: 440 / 382,
  15639. bottom: 0.005
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Micro",
  15646. height: math.unit(3, "inches")
  15647. },
  15648. {
  15649. name: "Normal",
  15650. height: math.unit(6 + 2 / 12, "feet"),
  15651. default: true
  15652. },
  15653. {
  15654. name: "Macro",
  15655. height: math.unit(300, "feet")
  15656. },
  15657. {
  15658. name: "Megamacro",
  15659. height: math.unit(700, "miles")
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(6, "feet"),
  15668. weight: math.unit(160, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/mark/front.svg",
  15672. extra: 3300 / 3100,
  15673. bottom: 136.42 / 3440.47
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Macro",
  15680. height: math.unit(120, "meters")
  15681. },
  15682. {
  15683. name: "Bigger Macro",
  15684. height: math.unit(350, "meters")
  15685. },
  15686. {
  15687. name: "Megamacro",
  15688. height: math.unit(8, "km"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Continental",
  15693. height: math.unit(4550, "km")
  15694. },
  15695. {
  15696. name: "Planetary",
  15697. height: math.unit(65000, "km")
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(400, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/mac/front.svg",
  15710. extra: 1048 / 987.7,
  15711. bottom: 60 / 1107.6,
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(500, "feet"),
  15719. default: true
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(5 + 2 / 12, "feet"),
  15728. weight: math.unit(190, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/bari/front.svg",
  15732. extra: 3156 / 2880,
  15733. bottom: 0.03
  15734. }
  15735. },
  15736. back: {
  15737. height: math.unit(5 + 2 / 12, "feet"),
  15738. weight: math.unit(190, "lb"),
  15739. name: "Back",
  15740. image: {
  15741. source: "./media/characters/bari/back.svg",
  15742. extra: 3260 / 2834,
  15743. bottom: 0.025
  15744. }
  15745. },
  15746. frontPlush: {
  15747. height: math.unit(5 + 2 / 12, "feet"),
  15748. weight: math.unit(190, "lb"),
  15749. name: "Front (Plush)",
  15750. image: {
  15751. source: "./media/characters/bari/front-plush.svg",
  15752. extra: 1112 / 1061,
  15753. bottom: 0.002
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Micro",
  15760. height: math.unit(3, "inches")
  15761. },
  15762. {
  15763. name: "Normal",
  15764. height: math.unit(5 + 2 / 12, "feet"),
  15765. default: true
  15766. },
  15767. {
  15768. name: "Macro",
  15769. height: math.unit(20, "feet")
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(6 + 1 / 12, "feet"),
  15778. weight: math.unit(275, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/hunter-misha-raven/front.svg"
  15782. }
  15783. },
  15784. },
  15785. [
  15786. {
  15787. name: "Mortal",
  15788. height: math.unit(6 + 1 / 12, "feet")
  15789. },
  15790. {
  15791. name: "Divine",
  15792. height: math.unit(1.12134e34, "parsecs"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(6 + 3 / 12, "feet"),
  15802. weight: math.unit(220, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/max-calore/front.svg",
  15806. extra: 1700 / 1648,
  15807. bottom: 0.01
  15808. }
  15809. },
  15810. back: {
  15811. height: math.unit(6 + 3 / 12, "feet"),
  15812. weight: math.unit(220, "lb"),
  15813. name: "Back",
  15814. image: {
  15815. source: "./media/characters/max-calore/back.svg",
  15816. extra: 1700 / 1648,
  15817. bottom: 0.01
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Normal",
  15824. height: math.unit(6 + 3 / 12, "feet"),
  15825. default: true
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15831. {
  15832. side: {
  15833. height: math.unit(2 + 8 / 12, "feet"),
  15834. weight: math.unit(99, "lb"),
  15835. name: "Side",
  15836. image: {
  15837. source: "./media/characters/aspen/side.svg",
  15838. extra: 152 / 138,
  15839. bottom: 0.032
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(2 + 8 / 12, "feet"),
  15847. default: true
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15853. {
  15854. side: {
  15855. height: math.unit(3 + 2 / 12, "feet"),
  15856. weight: math.unit(224, "lb"),
  15857. name: "Side",
  15858. image: {
  15859. source: "./media/characters/sheila-feral-wolf/side.svg",
  15860. extra: 179 / 166,
  15861. bottom: 0.03
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(3 + 2 / 12, "feet"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15875. {
  15876. side: {
  15877. height: math.unit(1 + 9 / 12, "feet"),
  15878. weight: math.unit(38, "lb"),
  15879. name: "Side",
  15880. image: {
  15881. source: "./media/characters/michelle/side.svg",
  15882. extra: 147 / 136.7,
  15883. bottom: 0.03
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(1 + 9 / 12, "feet"),
  15891. default: true
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(1 + 1 / 12, "feet"),
  15900. weight: math.unit(18, "lb"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/nino/front.svg"
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(1 + 1 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(1, "feet"),
  15920. weight: math.unit(16, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/viola/front.svg"
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(1, "feet"),
  15931. default: true
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6 + 5 / 12, "feet"),
  15940. weight: math.unit(580, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/atlas/front.svg",
  15944. extra: 298.5 / 290,
  15945. bottom: 0.015
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(6 + 5 / 12, "feet"),
  15953. default: true
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15959. {
  15960. side: {
  15961. height: math.unit(1 + 10 / 12, "feet"),
  15962. weight: math.unit(25, "lb"),
  15963. name: "Side",
  15964. image: {
  15965. source: "./media/characters/davy/side.svg",
  15966. extra: 200 / 170,
  15967. bottom: 0.01
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(1 + 10 / 12, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15981. {
  15982. side: {
  15983. height: math.unit(4 + 8 / 12, "feet"),
  15984. weight: math.unit(166, "lb"),
  15985. name: "Side",
  15986. image: {
  15987. source: "./media/characters/fiona/side.svg",
  15988. extra: 232 / 220,
  15989. bottom: 0.03
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(4 + 8 / 12, "feet"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16003. {
  16004. front: {
  16005. height: math.unit(2, "feet"),
  16006. weight: math.unit(62, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/lyla/front.svg",
  16010. bottom: 0.1
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(2, "feet"),
  16018. default: true
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16024. {
  16025. side: {
  16026. height: math.unit(1.8, "feet"),
  16027. weight: math.unit(44, "lb"),
  16028. name: "Side",
  16029. image: {
  16030. source: "./media/characters/perseus/side.svg",
  16031. bottom: 0.21
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(1.8, "feet"),
  16039. default: true
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16045. {
  16046. side: {
  16047. height: math.unit(4 + 2 / 12, "feet"),
  16048. weight: math.unit(20, "lb"),
  16049. name: "Side",
  16050. image: {
  16051. source: "./media/characters/remus/side.svg"
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(4 + 2 / 12, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(4 + 11 / 12, "feet"),
  16068. weight: math.unit(114, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/raf/front.svg",
  16072. bottom: 0.01
  16073. }
  16074. },
  16075. side: {
  16076. height: math.unit(4 + 11 / 12, "feet"),
  16077. weight: math.unit(114, "lb"),
  16078. name: "Side",
  16079. image: {
  16080. source: "./media/characters/raf/side.svg",
  16081. bottom: 0.005
  16082. }
  16083. },
  16084. },
  16085. [
  16086. {
  16087. name: "Micro",
  16088. height: math.unit(2, "inches")
  16089. },
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(4 + 11 / 12, "feet"),
  16093. default: true
  16094. },
  16095. {
  16096. name: "Macro",
  16097. height: math.unit(70, "feet")
  16098. },
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16103. {
  16104. front: {
  16105. height: math.unit(1.5, "meters"),
  16106. weight: math.unit(68, "kg"),
  16107. name: "Front",
  16108. image: {
  16109. source: "./media/characters/liam-einarr/front.svg",
  16110. extra: 2822 / 2666
  16111. }
  16112. },
  16113. back: {
  16114. height: math.unit(1.5, "meters"),
  16115. weight: math.unit(68, "kg"),
  16116. name: "Back",
  16117. image: {
  16118. source: "./media/characters/liam-einarr/back.svg",
  16119. extra: 2822 / 2666,
  16120. bottom: 0.015
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Normal",
  16127. height: math.unit(1.5, "meters"),
  16128. default: true
  16129. },
  16130. {
  16131. name: "Macro",
  16132. height: math.unit(150, "meters")
  16133. },
  16134. {
  16135. name: "Megamacro",
  16136. height: math.unit(35, "km")
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(6, "feet"),
  16145. weight: math.unit(75, "kg"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/linda/front.svg",
  16149. extra: 930 / 874,
  16150. bottom: 0.004
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(6, "feet"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6 + 8 / 12, "feet"),
  16167. weight: math.unit(220, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/caylex/front.svg",
  16171. extra: 821 / 772,
  16172. bottom: 0.07
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(6 + 8 / 12, "feet"),
  16177. weight: math.unit(220, "lb"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/caylex/back.svg",
  16181. extra: 821 / 772,
  16182. bottom: 0.022
  16183. }
  16184. },
  16185. hand: {
  16186. height: math.unit(1.25, "feet"),
  16187. name: "Hand",
  16188. image: {
  16189. source: "./media/characters/caylex/hand.svg"
  16190. }
  16191. },
  16192. foot: {
  16193. height: math.unit(1.6, "feet"),
  16194. name: "Foot",
  16195. image: {
  16196. source: "./media/characters/caylex/foot.svg"
  16197. }
  16198. },
  16199. armored: {
  16200. height: math.unit(6 + 8 / 12, "feet"),
  16201. weight: math.unit(250, "lb"),
  16202. name: "Armored",
  16203. image: {
  16204. source: "./media/characters/caylex/armored.svg",
  16205. extra: 1420 / 1310,
  16206. bottom: 0.045
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Normal",
  16213. height: math.unit(6 + 8 / 12, "feet"),
  16214. default: true
  16215. },
  16216. {
  16217. name: "Normal+",
  16218. height: math.unit(12, "feet")
  16219. },
  16220. ]
  16221. ))
  16222. characterMakers.push(() => makeCharacter(
  16223. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16224. {
  16225. front: {
  16226. height: math.unit(7 + 6 / 12, "feet"),
  16227. weight: math.unit(288, "lb"),
  16228. name: "Front",
  16229. image: {
  16230. source: "./media/characters/alana/front.svg",
  16231. extra: 679 / 653,
  16232. bottom: 22.5 / 701
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(7 + 6 / 12, "feet")
  16240. },
  16241. {
  16242. name: "Large",
  16243. height: math.unit(50, "feet")
  16244. },
  16245. {
  16246. name: "Macro",
  16247. height: math.unit(100, "feet"),
  16248. default: true
  16249. },
  16250. {
  16251. name: "Macro+",
  16252. height: math.unit(200, "feet")
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(6 + 1 / 12, "feet"),
  16261. weight: math.unit(210, "lb"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/hasani/front.svg",
  16265. extra: 244 / 232,
  16266. bottom: 0.01
  16267. }
  16268. },
  16269. back: {
  16270. height: math.unit(6 + 1 / 12, "feet"),
  16271. weight: math.unit(210, "lb"),
  16272. name: "Back",
  16273. image: {
  16274. source: "./media/characters/hasani/back.svg",
  16275. extra: 244 / 232,
  16276. bottom: 0.01
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(6 + 1 / 12, "feet")
  16284. },
  16285. {
  16286. name: "Macro",
  16287. height: math.unit(175, "feet"),
  16288. default: true
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(1.82, "meters"),
  16297. weight: math.unit(140, "lb"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/nita/front.svg",
  16301. extra: 2473 / 2363,
  16302. bottom: 0.01
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(1.82, "m")
  16310. },
  16311. {
  16312. name: "Macro",
  16313. height: math.unit(300, "m")
  16314. },
  16315. {
  16316. name: "Mistake Canon",
  16317. height: math.unit(0.5, "miles"),
  16318. default: true
  16319. },
  16320. {
  16321. name: "Big Mistake",
  16322. height: math.unit(13, "miles")
  16323. },
  16324. {
  16325. name: "Playing God",
  16326. height: math.unit(2450, "miles")
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(4, "feet"),
  16335. weight: math.unit(120, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/shiriko/front.svg",
  16339. extra: 195 / 188
  16340. }
  16341. },
  16342. },
  16343. [
  16344. {
  16345. name: "Normal",
  16346. height: math.unit(4, "feet"),
  16347. default: true
  16348. },
  16349. ]
  16350. ))
  16351. characterMakers.push(() => makeCharacter(
  16352. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16353. {
  16354. front: {
  16355. height: math.unit(6, "feet"),
  16356. name: "front",
  16357. image: {
  16358. source: "./media/characters/deja/front.svg",
  16359. extra: 926 / 840,
  16360. bottom: 0.07
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Planck Length",
  16367. height: math.unit(1.6e-35, "meters")
  16368. },
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(30.48, "meters"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Universal",
  16376. height: math.unit(8.8e26, "meters")
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16382. {
  16383. side: {
  16384. height: math.unit(8, "feet"),
  16385. weight: math.unit(6300, "lb"),
  16386. name: "Side",
  16387. image: {
  16388. source: "./media/characters/anima/side.svg",
  16389. bottom: 0.035
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(8, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(8, "feet"),
  16406. weight: math.unit(350, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/bianca/front.svg",
  16410. extra: 234 / 225,
  16411. bottom: 0.03
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Normal",
  16418. height: math.unit(8, "feet"),
  16419. default: true
  16420. },
  16421. ]
  16422. ))
  16423. characterMakers.push(() => makeCharacter(
  16424. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16425. {
  16426. front: {
  16427. height: math.unit(6, "feet"),
  16428. weight: math.unit(150, "lb"),
  16429. name: "Front",
  16430. image: {
  16431. source: "./media/characters/adinia/front.svg",
  16432. extra: 1845 / 1672,
  16433. bottom: 0.02
  16434. }
  16435. },
  16436. back: {
  16437. height: math.unit(6, "feet"),
  16438. weight: math.unit(150, "lb"),
  16439. name: "Back",
  16440. image: {
  16441. source: "./media/characters/adinia/back.svg",
  16442. extra: 1845 / 1672,
  16443. bottom: 0.002
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(11 + 5 / 12, "feet"),
  16451. default: true
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(3, "meters"),
  16460. weight: math.unit(200, "kg"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/lykasa/front.svg",
  16464. extra: 1076 / 976,
  16465. bottom: 0.06
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(3, "meters")
  16473. },
  16474. {
  16475. name: "Kaiju",
  16476. height: math.unit(120, "meters"),
  16477. default: true
  16478. },
  16479. {
  16480. name: "Mega Kaiju",
  16481. height: math.unit(240, "km")
  16482. },
  16483. {
  16484. name: "Giga Kaiju",
  16485. height: math.unit(400, "megameters")
  16486. },
  16487. {
  16488. name: "Tera Kaiju",
  16489. height: math.unit(800, "gigameters")
  16490. },
  16491. {
  16492. name: "Kaiju Dragon Goddess",
  16493. height: math.unit(26, "zettaparsecs")
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16499. {
  16500. side: {
  16501. height: math.unit(283 / 124 * 6, "feet"),
  16502. weight: math.unit(35000, "lb"),
  16503. name: "Side",
  16504. image: {
  16505. source: "./media/characters/malfaren/side.svg",
  16506. extra: 2500 / 1010,
  16507. bottom: 0.01
  16508. }
  16509. },
  16510. front: {
  16511. height: math.unit(22.36, "feet"),
  16512. weight: math.unit(35000, "lb"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/malfaren/front.svg",
  16516. extra: 1631 / 1476,
  16517. bottom: 0.01
  16518. }
  16519. },
  16520. maw: {
  16521. height: math.unit(6.9, "feet"),
  16522. name: "Maw",
  16523. image: {
  16524. source: "./media/characters/malfaren/maw.svg"
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Big",
  16531. height: math.unit(283 / 162 * 6, "feet"),
  16532. },
  16533. {
  16534. name: "Bigger",
  16535. height: math.unit(283 / 124 * 6, "feet")
  16536. },
  16537. {
  16538. name: "Massive",
  16539. height: math.unit(283 / 92 * 6, "feet"),
  16540. default: true
  16541. },
  16542. {
  16543. name: "👀💦",
  16544. height: math.unit(283 / 73 * 6, "feet"),
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(1.7, "m"),
  16553. weight: math.unit(70, "kg"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/kernel/front.svg",
  16557. extra: 222 / 210,
  16558. bottom: 0.007
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Nano",
  16565. height: math.unit(17, "micrometers")
  16566. },
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(1.7, "mm")
  16570. },
  16571. {
  16572. name: "Small",
  16573. height: math.unit(1.7, "cm")
  16574. },
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(1.7, "m"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(1.75, "meters"),
  16587. weight: math.unit(65, "kg"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/jayne-folest/front.svg",
  16591. extra: 2115 / 2007,
  16592. bottom: 0.02
  16593. }
  16594. },
  16595. back: {
  16596. height: math.unit(1.75, "meters"),
  16597. weight: math.unit(65, "kg"),
  16598. name: "Back",
  16599. image: {
  16600. source: "./media/characters/jayne-folest/back.svg",
  16601. extra: 2115 / 2007,
  16602. bottom: 0.005
  16603. }
  16604. },
  16605. frontClothed: {
  16606. height: math.unit(1.75, "meters"),
  16607. weight: math.unit(65, "kg"),
  16608. name: "Front (Clothed)",
  16609. image: {
  16610. source: "./media/characters/jayne-folest/front-clothed.svg",
  16611. extra: 2115 / 2007,
  16612. bottom: 0.035
  16613. }
  16614. },
  16615. hand: {
  16616. height: math.unit(1 / 1.260, "feet"),
  16617. name: "Hand",
  16618. image: {
  16619. source: "./media/characters/jayne-folest/hand.svg"
  16620. }
  16621. },
  16622. foot: {
  16623. height: math.unit(1 / 0.918, "feet"),
  16624. name: "Foot",
  16625. image: {
  16626. source: "./media/characters/jayne-folest/foot.svg"
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Micro",
  16633. height: math.unit(4, "cm")
  16634. },
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(1.75, "meters")
  16638. },
  16639. {
  16640. name: "Macro",
  16641. height: math.unit(47.5, "meters"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(180, "cm"),
  16651. weight: math.unit(70, "kg"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/algier/front.svg",
  16655. extra: 596 / 572,
  16656. bottom: 0.04
  16657. }
  16658. },
  16659. back: {
  16660. height: math.unit(180, "cm"),
  16661. weight: math.unit(70, "kg"),
  16662. name: "Back",
  16663. image: {
  16664. source: "./media/characters/algier/back.svg",
  16665. extra: 596 / 572,
  16666. bottom: 0.025
  16667. }
  16668. },
  16669. frontdressed: {
  16670. height: math.unit(180, "cm"),
  16671. weight: math.unit(150, "kg"),
  16672. name: "Front-dressed",
  16673. image: {
  16674. source: "./media/characters/algier/front-dressed.svg",
  16675. extra: 596 / 572,
  16676. bottom: 0.038
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Micro",
  16683. height: math.unit(5, "cm")
  16684. },
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(180, "cm"),
  16688. default: true
  16689. },
  16690. {
  16691. name: "Macro",
  16692. height: math.unit(64, "m")
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16698. {
  16699. upright: {
  16700. height: math.unit(7, "feet"),
  16701. weight: math.unit(300, "lb"),
  16702. name: "Upright",
  16703. image: {
  16704. source: "./media/characters/pretzel/upright.svg",
  16705. extra: 534 / 522,
  16706. bottom: 0.065
  16707. }
  16708. },
  16709. sprawling: {
  16710. height: math.unit(3.75, "feet"),
  16711. weight: math.unit(300, "lb"),
  16712. name: "Sprawling",
  16713. image: {
  16714. source: "./media/characters/pretzel/sprawling.svg",
  16715. extra: 314 / 281,
  16716. bottom: 0.1
  16717. }
  16718. },
  16719. tongue: {
  16720. height: math.unit(2, "feet"),
  16721. name: "Tongue",
  16722. image: {
  16723. source: "./media/characters/pretzel/tongue.svg"
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(7, "feet"),
  16731. default: true
  16732. },
  16733. {
  16734. name: "Oversized",
  16735. height: math.unit(15, "feet")
  16736. },
  16737. {
  16738. name: "Huge",
  16739. height: math.unit(30, "feet")
  16740. },
  16741. {
  16742. name: "Macro",
  16743. height: math.unit(250, "feet")
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16749. {
  16750. sideFront: {
  16751. height: math.unit(5 + 2 / 12, "feet"),
  16752. weight: math.unit(120, "lb"),
  16753. name: "Front Side",
  16754. image: {
  16755. source: "./media/characters/roxi/side-front.svg",
  16756. extra: 2924 / 2717,
  16757. bottom: 0.08
  16758. }
  16759. },
  16760. sideBack: {
  16761. height: math.unit(5 + 2 / 12, "feet"),
  16762. weight: math.unit(120, "lb"),
  16763. name: "Back Side",
  16764. image: {
  16765. source: "./media/characters/roxi/side-back.svg",
  16766. extra: 2904 / 2693,
  16767. bottom: 0.06
  16768. }
  16769. },
  16770. front: {
  16771. height: math.unit(5 + 2 / 12, "feet"),
  16772. weight: math.unit(120, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/roxi/front.svg",
  16776. extra: 2028 / 1907,
  16777. bottom: 0.01
  16778. }
  16779. },
  16780. frontAlt: {
  16781. height: math.unit(5 + 2 / 12, "feet"),
  16782. weight: math.unit(120, "lb"),
  16783. name: "Front (Alt)",
  16784. image: {
  16785. source: "./media/characters/roxi/front-alt.svg",
  16786. extra: 1828 / 1798,
  16787. bottom: 0.01
  16788. }
  16789. },
  16790. sitting: {
  16791. height: math.unit(2.8, "feet"),
  16792. weight: math.unit(120, "lb"),
  16793. name: "Sitting",
  16794. image: {
  16795. source: "./media/characters/roxi/sitting.svg",
  16796. extra: 2660 / 2462,
  16797. bottom: 0.1
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(5 + 2 / 12, "feet"),
  16805. default: true
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16811. {
  16812. side: {
  16813. height: math.unit(55, "feet"),
  16814. weight: math.unit(153, "tons"),
  16815. name: "Side",
  16816. image: {
  16817. source: "./media/characters/shadow/side.svg",
  16818. extra: 701 / 628,
  16819. bottom: 0.02
  16820. }
  16821. },
  16822. flying: {
  16823. height: math.unit(145, "feet"),
  16824. weight: math.unit(153, "tons"),
  16825. name: "Flying",
  16826. image: {
  16827. source: "./media/characters/shadow/flying.svg"
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(55, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(6, "feet"),
  16844. weight: math.unit(200, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/marcie/front.svg",
  16848. extra: 960 / 876,
  16849. bottom: 58 / 1017.87
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Macro",
  16856. height: math.unit(1, "mile"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(7, "feet"),
  16866. weight: math.unit(200, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/kachina/front.svg",
  16870. extra: 1290.68 / 1119,
  16871. bottom: 36.5 / 1327.18
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(7, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16885. {
  16886. looking: {
  16887. height: math.unit(2, "meters"),
  16888. weight: math.unit(300, "kg"),
  16889. name: "Looking",
  16890. image: {
  16891. source: "./media/characters/kash/looking.svg",
  16892. extra: 474 / 344,
  16893. bottom: 0.03
  16894. }
  16895. },
  16896. side: {
  16897. height: math.unit(2, "meters"),
  16898. weight: math.unit(300, "kg"),
  16899. name: "Side",
  16900. image: {
  16901. source: "./media/characters/kash/side.svg",
  16902. extra: 302 / 251,
  16903. bottom: 0.03
  16904. }
  16905. },
  16906. front: {
  16907. height: math.unit(2, "meters"),
  16908. weight: math.unit(300, "kg"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/kash/front.svg",
  16912. extra: 495 / 360,
  16913. bottom: 0.015
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(2, "meters"),
  16921. default: true
  16922. },
  16923. {
  16924. name: "Big",
  16925. height: math.unit(3, "meters")
  16926. },
  16927. {
  16928. name: "Large",
  16929. height: math.unit(5, "meters")
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16935. {
  16936. feeding: {
  16937. height: math.unit(6.7, "feet"),
  16938. weight: math.unit(350, "lb"),
  16939. name: "Feeding",
  16940. image: {
  16941. source: "./media/characters/lalim/feeding.svg",
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(6.7, "feet"),
  16949. default: true
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16955. {
  16956. front: {
  16957. height: math.unit(9.5, "feet"),
  16958. weight: math.unit(600, "lb"),
  16959. name: "Front",
  16960. image: {
  16961. source: "./media/characters/de'vout/front.svg",
  16962. extra: 1443 / 1328,
  16963. bottom: 0.025
  16964. }
  16965. },
  16966. back: {
  16967. height: math.unit(9.5, "feet"),
  16968. weight: math.unit(600, "lb"),
  16969. name: "Back",
  16970. image: {
  16971. source: "./media/characters/de'vout/back.svg",
  16972. extra: 1443 / 1328
  16973. }
  16974. },
  16975. frontDressed: {
  16976. height: math.unit(9.5, "feet"),
  16977. weight: math.unit(600, "lb"),
  16978. name: "Front (Dressed",
  16979. image: {
  16980. source: "./media/characters/de'vout/front-dressed.svg",
  16981. extra: 1443 / 1328,
  16982. bottom: 0.025
  16983. }
  16984. },
  16985. backDressed: {
  16986. height: math.unit(9.5, "feet"),
  16987. weight: math.unit(600, "lb"),
  16988. name: "Back (Dressed",
  16989. image: {
  16990. source: "./media/characters/de'vout/back-dressed.svg",
  16991. extra: 1443 / 1328
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(9.5, "feet"),
  16999. default: true
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17005. {
  17006. front: {
  17007. height: math.unit(8, "feet"),
  17008. weight: math.unit(225, "lb"),
  17009. name: "Front",
  17010. image: {
  17011. source: "./media/characters/talana/front.svg",
  17012. extra: 1410 / 1300,
  17013. bottom: 0.015
  17014. }
  17015. },
  17016. frontDressed: {
  17017. height: math.unit(8, "feet"),
  17018. weight: math.unit(225, "lb"),
  17019. name: "Front (Dressed",
  17020. image: {
  17021. source: "./media/characters/talana/front-dressed.svg",
  17022. extra: 1410 / 1300,
  17023. bottom: 0.015
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(8, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17037. {
  17038. side: {
  17039. height: math.unit(7.2, "feet"),
  17040. weight: math.unit(150, "lb"),
  17041. name: "Side",
  17042. image: {
  17043. source: "./media/characters/xeauvok/side.svg",
  17044. extra: 1975 / 1523,
  17045. bottom: 0.07
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(7.2, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17059. {
  17060. side: {
  17061. height: math.unit(10, "feet"),
  17062. weight: math.unit(900, "kg"),
  17063. name: "Side",
  17064. image: {
  17065. source: "./media/characters/zara/side.svg",
  17066. extra: 504 / 498
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(10, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17080. {
  17081. side: {
  17082. height: math.unit(6, "feet"),
  17083. weight: math.unit(150, "lb"),
  17084. name: "Side",
  17085. image: {
  17086. source: "./media/characters/richard-dragon/side.svg",
  17087. extra: 845 / 340,
  17088. bottom: 0.017
  17089. }
  17090. },
  17091. maw: {
  17092. height: math.unit(2.97, "feet"),
  17093. name: "Maw",
  17094. image: {
  17095. source: "./media/characters/richard-dragon/maw.svg"
  17096. }
  17097. },
  17098. },
  17099. [
  17100. ]
  17101. ))
  17102. characterMakers.push(() => makeCharacter(
  17103. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17104. {
  17105. front: {
  17106. height: math.unit(4, "feet"),
  17107. weight: math.unit(100, "lb"),
  17108. name: "Front",
  17109. image: {
  17110. source: "./media/characters/richard-smeargle/front.svg",
  17111. extra: 2952 / 2820,
  17112. bottom: 0.028
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(4, "feet"),
  17120. default: true
  17121. },
  17122. {
  17123. name: "Dynamax",
  17124. height: math.unit(20, "meters")
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(6, "feet"),
  17133. weight: math.unit(110, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/klay/front.svg",
  17137. extra: 962 / 883,
  17138. bottom: 0.04
  17139. }
  17140. },
  17141. back: {
  17142. height: math.unit(6, "feet"),
  17143. weight: math.unit(110, "lb"),
  17144. name: "Back",
  17145. image: {
  17146. source: "./media/characters/klay/back.svg",
  17147. extra: 962 / 883
  17148. }
  17149. },
  17150. beans: {
  17151. height: math.unit(1.15, "feet"),
  17152. name: "Beans",
  17153. image: {
  17154. source: "./media/characters/klay/beans.svg"
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Micro",
  17161. height: math.unit(6, "inches")
  17162. },
  17163. {
  17164. name: "Mini",
  17165. height: math.unit(3, "feet")
  17166. },
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(6, "feet"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Big",
  17174. height: math.unit(25, "feet")
  17175. },
  17176. {
  17177. name: "Macro",
  17178. height: math.unit(100, "feet")
  17179. },
  17180. {
  17181. name: "Megamacro",
  17182. height: math.unit(400, "feet")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(6, "feet"),
  17191. weight: math.unit(160, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/marcus/front.svg",
  17195. extra: 734 / 676,
  17196. bottom: 0.03
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Little",
  17203. height: math.unit(6, "feet")
  17204. },
  17205. {
  17206. name: "Normal",
  17207. height: math.unit(110, "feet"),
  17208. default: true
  17209. },
  17210. {
  17211. name: "Macro",
  17212. height: math.unit(250, "feet")
  17213. },
  17214. {
  17215. name: "Megamacro",
  17216. height: math.unit(1000, "feet")
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17222. {
  17223. front: {
  17224. height: math.unit(7, "feet"),
  17225. weight: math.unit(275, "lb"),
  17226. name: "Front",
  17227. image: {
  17228. source: "./media/characters/claude-delroute/front.svg",
  17229. extra: 230 / 214,
  17230. bottom: 0.007
  17231. }
  17232. },
  17233. side: {
  17234. height: math.unit(7, "feet"),
  17235. weight: math.unit(275, "lb"),
  17236. name: "Side",
  17237. image: {
  17238. source: "./media/characters/claude-delroute/side.svg",
  17239. extra: 222 / 214,
  17240. bottom: 0.01
  17241. }
  17242. },
  17243. back: {
  17244. height: math.unit(7, "feet"),
  17245. weight: math.unit(275, "lb"),
  17246. name: "Back",
  17247. image: {
  17248. source: "./media/characters/claude-delroute/back.svg",
  17249. extra: 230 / 214,
  17250. bottom: 0.015
  17251. }
  17252. },
  17253. maw: {
  17254. height: math.unit(0.6407, "meters"),
  17255. name: "Maw",
  17256. image: {
  17257. source: "./media/characters/claude-delroute/maw.svg"
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(7, "feet"),
  17265. default: true
  17266. },
  17267. {
  17268. name: "Lorge",
  17269. height: math.unit(20, "feet")
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(8 + 4 / 12, "feet"),
  17278. weight: math.unit(600, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/dragonien/front.svg",
  17282. extra: 100 / 94,
  17283. bottom: 3.3 / 103.3445
  17284. }
  17285. },
  17286. back: {
  17287. height: math.unit(8 + 4 / 12, "feet"),
  17288. weight: math.unit(600, "lb"),
  17289. name: "Back",
  17290. image: {
  17291. source: "./media/characters/dragonien/back.svg",
  17292. extra: 776 / 746,
  17293. bottom: 6.4 / 782.0616
  17294. }
  17295. },
  17296. foot: {
  17297. height: math.unit(1.54, "feet"),
  17298. name: "Foot",
  17299. image: {
  17300. source: "./media/characters/dragonien/foot.svg",
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(8 + 4 / 12, "feet"),
  17308. default: true
  17309. },
  17310. {
  17311. name: "Macro",
  17312. height: math.unit(200, "feet")
  17313. },
  17314. {
  17315. name: "Megamacro",
  17316. height: math.unit(1, "mile")
  17317. },
  17318. {
  17319. name: "Gigamacro",
  17320. height: math.unit(1000, "miles")
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17326. {
  17327. front: {
  17328. height: math.unit(5 + 2 / 12, "feet"),
  17329. weight: math.unit(110, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/desta/front.svg",
  17333. extra: 767/726,
  17334. bottom: 11.7/779
  17335. }
  17336. },
  17337. back: {
  17338. height: math.unit(5 + 2 / 12, "feet"),
  17339. weight: math.unit(110, "lb"),
  17340. name: "Back",
  17341. image: {
  17342. source: "./media/characters/desta/back.svg",
  17343. extra: 777/728,
  17344. bottom: 6/784
  17345. }
  17346. },
  17347. frontAlt: {
  17348. height: math.unit(5 + 2 / 12, "feet"),
  17349. weight: math.unit(110, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/desta/front-alt.svg",
  17353. extra: 1482 / 1417
  17354. }
  17355. },
  17356. side: {
  17357. height: math.unit(5 + 2 / 12, "feet"),
  17358. weight: math.unit(110, "lb"),
  17359. name: "Side",
  17360. image: {
  17361. source: "./media/characters/desta/side.svg",
  17362. extra: 2579 / 2491,
  17363. bottom: 0.053
  17364. }
  17365. },
  17366. },
  17367. [
  17368. {
  17369. name: "Micro",
  17370. height: math.unit(6, "inches")
  17371. },
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(5 + 2 / 12, "feet"),
  17375. default: true
  17376. },
  17377. {
  17378. name: "Macro",
  17379. height: math.unit(62, "feet")
  17380. },
  17381. {
  17382. name: "Megamacro",
  17383. height: math.unit(1800, "feet")
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(10, "feet"),
  17392. weight: math.unit(700, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/storm-alystar/front.svg",
  17396. extra: 2112 / 1898,
  17397. bottom: 0.034
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Micro",
  17404. height: math.unit(3.5, "inches")
  17405. },
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(10, "feet"),
  17409. default: true
  17410. },
  17411. {
  17412. name: "Macro",
  17413. height: math.unit(400, "feet")
  17414. },
  17415. {
  17416. name: "Deific",
  17417. height: math.unit(60, "miles")
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17423. {
  17424. front: {
  17425. height: math.unit(2.35, "meters"),
  17426. weight: math.unit(119, "kg"),
  17427. name: "Front",
  17428. image: {
  17429. source: "./media/characters/ilia/front.svg",
  17430. extra: 1285 / 1255,
  17431. bottom: 0.06
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Normal",
  17438. height: math.unit(2.35, "meters")
  17439. },
  17440. {
  17441. name: "Macro",
  17442. height: math.unit(140, "meters"),
  17443. default: true
  17444. },
  17445. {
  17446. name: "Megamacro",
  17447. height: math.unit(100, "miles")
  17448. },
  17449. ]
  17450. ))
  17451. characterMakers.push(() => makeCharacter(
  17452. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17453. {
  17454. front: {
  17455. height: math.unit(6 + 5 / 12, "feet"),
  17456. weight: math.unit(190, "lb"),
  17457. name: "Front",
  17458. image: {
  17459. source: "./media/characters/kingdead/front.svg",
  17460. extra: 1228 / 1177
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Micro",
  17467. height: math.unit(7, "inches")
  17468. },
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(6 + 5 / 12, "feet")
  17472. },
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(150, "feet"),
  17476. default: true
  17477. },
  17478. {
  17479. name: "Megamacro",
  17480. height: math.unit(200, "miles")
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(8, "feet"),
  17489. weight: math.unit(600, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/kyrehx/front.svg",
  17493. extra: 1195 / 1095,
  17494. bottom: 0.034
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Micro",
  17501. height: math.unit(2, "inches")
  17502. },
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(8, "feet"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Macro",
  17510. height: math.unit(255, "feet")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17519. weight: math.unit(184, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/xang/front.svg",
  17523. extra: 845 / 755
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17531. default: true
  17532. },
  17533. {
  17534. name: "Macro",
  17535. height: math.unit(0.935 * 146, "feet")
  17536. },
  17537. {
  17538. name: "Megamacro",
  17539. height: math.unit(0.935 * 3, "miles")
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17545. {
  17546. frontDressed: {
  17547. height: math.unit(5 + 7 / 12, "feet"),
  17548. weight: math.unit(140, "lb"),
  17549. name: "Front (Dressed)",
  17550. image: {
  17551. source: "./media/characters/doc-weardno/front-dressed.svg",
  17552. extra: 263 / 234
  17553. }
  17554. },
  17555. backDressed: {
  17556. height: math.unit(5 + 7 / 12, "feet"),
  17557. weight: math.unit(140, "lb"),
  17558. name: "Back (Dressed)",
  17559. image: {
  17560. source: "./media/characters/doc-weardno/back-dressed.svg",
  17561. extra: 266 / 238
  17562. }
  17563. },
  17564. front: {
  17565. height: math.unit(5 + 7 / 12, "feet"),
  17566. weight: math.unit(140, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/doc-weardno/front.svg",
  17570. extra: 254 / 233
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Micro",
  17577. height: math.unit(3, "inches")
  17578. },
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(5 + 7 / 12, "feet"),
  17582. default: true
  17583. },
  17584. {
  17585. name: "Macro",
  17586. height: math.unit(25, "feet")
  17587. },
  17588. {
  17589. name: "Megamacro",
  17590. height: math.unit(2, "miles")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(6 + 2 / 12, "feet"),
  17599. weight: math.unit(153, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/seth-whilst/front.svg",
  17603. bottom: 0.07
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Micro",
  17610. height: math.unit(5, "inches")
  17611. },
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(6 + 2 / 12, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17621. {
  17622. front: {
  17623. height: math.unit(3, "inches"),
  17624. weight: math.unit(8, "grams"),
  17625. name: "Front",
  17626. image: {
  17627. source: "./media/characters/pocket-jabari/front.svg",
  17628. extra: 1024 / 974,
  17629. bottom: 0.039
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Minimicro",
  17636. height: math.unit(8, "mm")
  17637. },
  17638. {
  17639. name: "Micro",
  17640. height: math.unit(3, "inches"),
  17641. default: true
  17642. },
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(3, "feet")
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(15, "feet"),
  17654. weight: math.unit(3280, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/sapphy/front.svg",
  17658. extra: 671 / 577,
  17659. bottom: 0.085
  17660. }
  17661. },
  17662. back: {
  17663. height: math.unit(15, "feet"),
  17664. weight: math.unit(3280, "lb"),
  17665. name: "Back",
  17666. image: {
  17667. source: "./media/characters/sapphy/back.svg",
  17668. extra: 631 / 607,
  17669. bottom: 0.045
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(15, "feet")
  17677. },
  17678. {
  17679. name: "Casual Macro",
  17680. height: math.unit(120, "feet")
  17681. },
  17682. {
  17683. name: "Macro",
  17684. height: math.unit(2150, "feet"),
  17685. default: true
  17686. },
  17687. {
  17688. name: "Megamacro",
  17689. height: math.unit(8, "miles")
  17690. },
  17691. {
  17692. name: "Galaxy Mom",
  17693. height: math.unit(6, "megalightyears")
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(6, "feet"),
  17702. weight: math.unit(170, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/kiro/front.svg",
  17706. extra: 1064 / 1012,
  17707. bottom: 0.052
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Micro",
  17714. height: math.unit(6, "inches")
  17715. },
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(6, "feet"),
  17719. default: true
  17720. },
  17721. {
  17722. name: "Macro",
  17723. height: math.unit(72, "feet")
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17729. {
  17730. front: {
  17731. height: math.unit(5 + 9 / 12, "feet"),
  17732. weight: math.unit(175, "lb"),
  17733. name: "Front",
  17734. image: {
  17735. source: "./media/characters/irishfox/front.svg",
  17736. extra: 1912 / 1680,
  17737. bottom: 0.02
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Nano",
  17744. height: math.unit(1, "mm")
  17745. },
  17746. {
  17747. name: "Micro",
  17748. height: math.unit(2, "inches")
  17749. },
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(5 + 9 / 12, "feet"),
  17753. default: true
  17754. },
  17755. {
  17756. name: "Macro",
  17757. height: math.unit(45, "feet")
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(6 + 1 / 12, "feet"),
  17766. weight: math.unit(150, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/aronai-sieyes/front.svg",
  17770. extra: 1556 / 1480,
  17771. bottom: 0.015
  17772. }
  17773. },
  17774. side: {
  17775. height: math.unit(6 + 1 / 12, "feet"),
  17776. weight: math.unit(150, "lb"),
  17777. name: "Side",
  17778. image: {
  17779. source: "./media/characters/aronai-sieyes/side.svg",
  17780. extra: 1433 / 1390,
  17781. bottom: 0.0393
  17782. }
  17783. },
  17784. back: {
  17785. height: math.unit(6 + 1 / 12, "feet"),
  17786. weight: math.unit(150, "lb"),
  17787. name: "Back",
  17788. image: {
  17789. source: "./media/characters/aronai-sieyes/back.svg",
  17790. extra: 1544 / 1494,
  17791. bottom: 0.02
  17792. }
  17793. },
  17794. frontClothed: {
  17795. height: math.unit(6 + 1 / 12, "feet"),
  17796. weight: math.unit(150, "lb"),
  17797. name: "Front (Clothed)",
  17798. image: {
  17799. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17800. extra: 1582 / 1527
  17801. }
  17802. },
  17803. feral: {
  17804. height: math.unit(18, "feet"),
  17805. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17806. name: "Feral",
  17807. image: {
  17808. source: "./media/characters/aronai-sieyes/feral.svg",
  17809. extra: 1530 / 1240,
  17810. bottom: 0.035
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Micro",
  17817. height: math.unit(2, "inches")
  17818. },
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(6 + 1 / 12, "feet"),
  17822. default: true
  17823. }
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(12, "feet"),
  17831. weight: math.unit(410, "kg"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/xuna/front.svg",
  17835. extra: 2184 / 1980
  17836. }
  17837. },
  17838. side: {
  17839. height: math.unit(12, "feet"),
  17840. weight: math.unit(410, "kg"),
  17841. name: "Side",
  17842. image: {
  17843. source: "./media/characters/xuna/side.svg",
  17844. extra: 2184 / 1980
  17845. }
  17846. },
  17847. back: {
  17848. height: math.unit(12, "feet"),
  17849. weight: math.unit(410, "kg"),
  17850. name: "Back",
  17851. image: {
  17852. source: "./media/characters/xuna/back.svg",
  17853. extra: 2184 / 1980
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Nano glow",
  17860. height: math.unit(10, "nm")
  17861. },
  17862. {
  17863. name: "Micro floof",
  17864. height: math.unit(0.3, "m")
  17865. },
  17866. {
  17867. name: "Huggable softy boi",
  17868. height: math.unit(3.6576, "m"),
  17869. default: true
  17870. },
  17871. {
  17872. name: "Admirable floof",
  17873. height: math.unit(80, "meters")
  17874. },
  17875. {
  17876. name: "Gentle macro",
  17877. height: math.unit(300, "meters")
  17878. },
  17879. {
  17880. name: "Very careful floof",
  17881. height: math.unit(3200, "meters")
  17882. },
  17883. {
  17884. name: "The mega floof",
  17885. height: math.unit(36000, "meters")
  17886. },
  17887. {
  17888. name: "Giga-fur-Wicker",
  17889. height: math.unit(4800000, "meters")
  17890. },
  17891. {
  17892. name: "Licky world",
  17893. height: math.unit(20000000, "meters")
  17894. },
  17895. {
  17896. name: "Floofy cyan sun",
  17897. height: math.unit(1500000000, "meters")
  17898. },
  17899. {
  17900. name: "Milky Wicker",
  17901. height: math.unit(1000000000000000000000, "meters")
  17902. },
  17903. {
  17904. name: "The observing Wicker",
  17905. height: math.unit(999999999999999999999999999, "meters")
  17906. },
  17907. ]
  17908. ))
  17909. characterMakers.push(() => makeCharacter(
  17910. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17911. {
  17912. front: {
  17913. height: math.unit(5 + 9 / 12, "feet"),
  17914. weight: math.unit(150, "lb"),
  17915. name: "Front",
  17916. image: {
  17917. source: "./media/characters/arokha-sieyes/front.svg",
  17918. extra: 1425 / 1284,
  17919. bottom: 0.05
  17920. }
  17921. },
  17922. },
  17923. [
  17924. {
  17925. name: "Normal",
  17926. height: math.unit(5 + 9 / 12, "feet")
  17927. },
  17928. {
  17929. name: "Macro",
  17930. height: math.unit(30, "meters"),
  17931. default: true
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(6, "feet"),
  17940. weight: math.unit(180, "lb"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/arokh-sieyes/front.svg",
  17944. extra: 1830 / 1769,
  17945. bottom: 0.01
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(6, "feet")
  17953. },
  17954. {
  17955. name: "Macro",
  17956. height: math.unit(30, "meters"),
  17957. default: true
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17963. {
  17964. side: {
  17965. height: math.unit(13 + 1 / 12, "feet"),
  17966. weight: math.unit(8.5, "tonnes"),
  17967. name: "Side",
  17968. image: {
  17969. source: "./media/characters/goldeneye/side.svg",
  17970. extra: 1182 / 778,
  17971. bottom: 0.067
  17972. }
  17973. },
  17974. paw: {
  17975. height: math.unit(3.4, "feet"),
  17976. name: "Paw",
  17977. image: {
  17978. source: "./media/characters/goldeneye/paw.svg"
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(13 + 1 / 12, "feet"),
  17986. default: true
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17992. {
  17993. front: {
  17994. height: math.unit(6 + 1 / 12, "feet"),
  17995. weight: math.unit(210, "lb"),
  17996. name: "Front",
  17997. image: {
  17998. source: "./media/characters/leonardo-lycheborne/front.svg",
  17999. extra: 390 / 365,
  18000. bottom: 0.032
  18001. }
  18002. },
  18003. side: {
  18004. height: math.unit(6 + 1 / 12, "feet"),
  18005. weight: math.unit(210, "lb"),
  18006. name: "Side",
  18007. image: {
  18008. source: "./media/characters/leonardo-lycheborne/side.svg",
  18009. extra: 390 / 365,
  18010. bottom: 0.005
  18011. }
  18012. },
  18013. back: {
  18014. height: math.unit(6 + 1 / 12, "feet"),
  18015. weight: math.unit(210, "lb"),
  18016. name: "Back",
  18017. image: {
  18018. source: "./media/characters/leonardo-lycheborne/back.svg",
  18019. extra: 392 / 366,
  18020. bottom: 0.01
  18021. }
  18022. },
  18023. hand: {
  18024. height: math.unit(1.08, "feet"),
  18025. name: "Hand",
  18026. image: {
  18027. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18028. }
  18029. },
  18030. foot: {
  18031. height: math.unit(1.32, "feet"),
  18032. name: "Foot",
  18033. image: {
  18034. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18035. }
  18036. },
  18037. were: {
  18038. height: math.unit(20, "feet"),
  18039. weight: math.unit(7800, "lb"),
  18040. name: "Were",
  18041. image: {
  18042. source: "./media/characters/leonardo-lycheborne/were.svg",
  18043. extra: 308 / 294,
  18044. bottom: 0.048
  18045. }
  18046. },
  18047. feral: {
  18048. height: math.unit(7.5, "feet"),
  18049. weight: math.unit(600, "lb"),
  18050. name: "Feral",
  18051. image: {
  18052. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18053. extra: 210 / 186,
  18054. bottom: 0.108
  18055. }
  18056. },
  18057. taur: {
  18058. height: math.unit(11, "feet"),
  18059. weight: math.unit(3300, "lb"),
  18060. name: "Taur",
  18061. image: {
  18062. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18063. extra: 320 / 303,
  18064. bottom: 0.025
  18065. }
  18066. },
  18067. barghest: {
  18068. height: math.unit(11, "feet"),
  18069. weight: math.unit(1300, "lb"),
  18070. name: "Barghest",
  18071. image: {
  18072. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18073. extra: 323 / 302,
  18074. bottom: 0.027
  18075. }
  18076. },
  18077. dick: {
  18078. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18079. name: "Dick",
  18080. image: {
  18081. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18082. }
  18083. },
  18084. dickWere: {
  18085. height: math.unit((20) / 3.8, "feet"),
  18086. name: "Dick (Were)",
  18087. image: {
  18088. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(6 + 1 / 12, "feet"),
  18096. default: true
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18102. {
  18103. front: {
  18104. height: math.unit(10, "feet"),
  18105. weight: math.unit(350, "lb"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/jet/front.svg",
  18109. extra: 2050 / 1980,
  18110. bottom: 0.013
  18111. }
  18112. },
  18113. back: {
  18114. height: math.unit(10, "feet"),
  18115. weight: math.unit(350, "lb"),
  18116. name: "Back",
  18117. image: {
  18118. source: "./media/characters/jet/back.svg",
  18119. extra: 2050 / 1980,
  18120. bottom: 0.013
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Micro",
  18127. height: math.unit(6, "inches")
  18128. },
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(10, "feet"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(100, "feet")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(15, "feet"),
  18145. weight: math.unit(2800, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/tanarath/front.svg",
  18149. extra: 2392 / 2220,
  18150. bottom: 0.03
  18151. }
  18152. },
  18153. back: {
  18154. height: math.unit(15, "feet"),
  18155. weight: math.unit(2800, "lb"),
  18156. name: "Back",
  18157. image: {
  18158. source: "./media/characters/tanarath/back.svg",
  18159. extra: 2392 / 2220,
  18160. bottom: 0.03
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(15, "feet"),
  18168. default: true
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18174. {
  18175. front: {
  18176. height: math.unit(7 + 1 / 12, "feet"),
  18177. weight: math.unit(175, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/patty-cattybatty/front.svg",
  18181. extra: 908 / 874,
  18182. bottom: 0.025
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Micro",
  18189. height: math.unit(1, "inch")
  18190. },
  18191. {
  18192. name: "Normal",
  18193. height: math.unit(7 + 1 / 12, "feet")
  18194. },
  18195. {
  18196. name: "Mini Macro",
  18197. height: math.unit(155, "feet")
  18198. },
  18199. {
  18200. name: "Macro",
  18201. height: math.unit(1077, "feet")
  18202. },
  18203. {
  18204. name: "Mega Macro",
  18205. height: math.unit(47650, "feet"),
  18206. default: true
  18207. },
  18208. {
  18209. name: "Giga Macro",
  18210. height: math.unit(440, "miles")
  18211. },
  18212. {
  18213. name: "Tera Macro",
  18214. height: math.unit(8700, "miles")
  18215. },
  18216. {
  18217. name: "Planetary Macro",
  18218. height: math.unit(32700, "miles")
  18219. },
  18220. {
  18221. name: "Solar Macro",
  18222. height: math.unit(550000, "miles")
  18223. },
  18224. {
  18225. name: "Celestial Macro",
  18226. height: math.unit(2.5, "AU")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(4 + 5 / 12, "feet"),
  18235. weight: math.unit(90, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/cappu/front.svg",
  18239. extra: 1247 / 1152,
  18240. bottom: 0.012
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(4 + 5 / 12, "feet"),
  18248. default: true
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18254. {
  18255. frontDressed: {
  18256. height: math.unit(70, "cm"),
  18257. weight: math.unit(6, "kg"),
  18258. name: "Front (Dressed)",
  18259. image: {
  18260. source: "./media/characters/sebi/front-dressed.svg",
  18261. extra: 713.5 / 686.5,
  18262. bottom: 0.003
  18263. }
  18264. },
  18265. front: {
  18266. height: math.unit(70, "cm"),
  18267. weight: math.unit(5, "kg"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/sebi/front.svg",
  18271. extra: 713.5 / 686.5,
  18272. bottom: 0.003
  18273. }
  18274. }
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(70, "cm"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Macro",
  18284. height: math.unit(8, "meters")
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(6, "feet"),
  18293. weight: math.unit(150, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/typhek/front.svg",
  18297. extra: 1948 / 1929,
  18298. bottom: 0.025
  18299. }
  18300. },
  18301. side: {
  18302. height: math.unit(6, "feet"),
  18303. weight: math.unit(150, "lb"),
  18304. name: "Side",
  18305. image: {
  18306. source: "./media/characters/typhek/side.svg",
  18307. extra: 2034 / 2010,
  18308. bottom: 0.003
  18309. }
  18310. },
  18311. back: {
  18312. height: math.unit(6, "feet"),
  18313. weight: math.unit(150, "lb"),
  18314. name: "Back",
  18315. image: {
  18316. source: "./media/characters/typhek/back.svg",
  18317. extra: 2005 / 1978,
  18318. bottom: 0.004
  18319. }
  18320. },
  18321. palm: {
  18322. height: math.unit(1.2, "feet"),
  18323. name: "Palm",
  18324. image: {
  18325. source: "./media/characters/typhek/palm.svg"
  18326. }
  18327. },
  18328. fist: {
  18329. height: math.unit(1.1, "feet"),
  18330. name: "Fist",
  18331. image: {
  18332. source: "./media/characters/typhek/fist.svg"
  18333. }
  18334. },
  18335. foot: {
  18336. height: math.unit(1.57, "feet"),
  18337. name: "Foot",
  18338. image: {
  18339. source: "./media/characters/typhek/foot.svg"
  18340. }
  18341. },
  18342. sole: {
  18343. height: math.unit(2.05, "feet"),
  18344. name: "Sole",
  18345. image: {
  18346. source: "./media/characters/typhek/sole.svg"
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Macro",
  18353. height: math.unit(40, "stories"),
  18354. default: true
  18355. },
  18356. {
  18357. name: "Megamacro",
  18358. height: math.unit(1, "mile")
  18359. },
  18360. {
  18361. name: "Gigamacro",
  18362. height: math.unit(4000, "solarradii")
  18363. },
  18364. {
  18365. name: "Universal",
  18366. height: math.unit(1.1, "universes")
  18367. }
  18368. ]
  18369. ))
  18370. characterMakers.push(() => makeCharacter(
  18371. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18372. {
  18373. side: {
  18374. height: math.unit(5 + 7 / 12, "feet"),
  18375. weight: math.unit(150, "lb"),
  18376. name: "Side",
  18377. image: {
  18378. source: "./media/characters/kassy/side.svg",
  18379. extra: 1280 / 1225,
  18380. bottom: 0.002
  18381. }
  18382. },
  18383. front: {
  18384. height: math.unit(5 + 7 / 12, "feet"),
  18385. weight: math.unit(150, "lb"),
  18386. name: "Front",
  18387. image: {
  18388. source: "./media/characters/kassy/front.svg",
  18389. extra: 1280 / 1225,
  18390. bottom: 0.025
  18391. }
  18392. },
  18393. back: {
  18394. height: math.unit(5 + 7 / 12, "feet"),
  18395. weight: math.unit(150, "lb"),
  18396. name: "Back",
  18397. image: {
  18398. source: "./media/characters/kassy/back.svg",
  18399. extra: 1280 / 1225,
  18400. bottom: 0.002
  18401. }
  18402. },
  18403. foot: {
  18404. height: math.unit(1.266, "feet"),
  18405. name: "Foot",
  18406. image: {
  18407. source: "./media/characters/kassy/foot.svg"
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(5 + 7 / 12, "feet")
  18415. },
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(137, "feet"),
  18419. default: true
  18420. },
  18421. {
  18422. name: "Megamacro",
  18423. height: math.unit(1, "mile")
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18429. {
  18430. front: {
  18431. height: math.unit(6 + 1 / 12, "feet"),
  18432. weight: math.unit(200, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/neil/front.svg",
  18436. extra: 1326 / 1250,
  18437. bottom: 0.023
  18438. }
  18439. },
  18440. },
  18441. [
  18442. {
  18443. name: "Normal",
  18444. height: math.unit(6 + 1 / 12, "feet"),
  18445. default: true
  18446. },
  18447. {
  18448. name: "Macro",
  18449. height: math.unit(200, "feet")
  18450. },
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18455. {
  18456. front: {
  18457. height: math.unit(5 + 9 / 12, "feet"),
  18458. weight: math.unit(190, "lb"),
  18459. name: "Front",
  18460. image: {
  18461. source: "./media/characters/atticus/front.svg",
  18462. extra: 2934 / 2785,
  18463. bottom: 0.025
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(5 + 9 / 12, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Macro",
  18475. height: math.unit(180, "feet")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18481. {
  18482. side: {
  18483. height: math.unit(9, "feet"),
  18484. weight: math.unit(650, "lb"),
  18485. name: "Side",
  18486. image: {
  18487. source: "./media/characters/milo/side.svg",
  18488. extra: 2644 / 2310,
  18489. bottom: 0.032
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(9, "feet"),
  18497. default: true
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(300, "feet")
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18507. {
  18508. side: {
  18509. height: math.unit(8, "meters"),
  18510. weight: math.unit(90000, "kg"),
  18511. name: "Side",
  18512. image: {
  18513. source: "./media/characters/ijzer/side.svg",
  18514. extra: 2756 / 1600,
  18515. bottom: 0.01
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Small",
  18522. height: math.unit(3, "meters")
  18523. },
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(8, "meters"),
  18527. default: true
  18528. },
  18529. {
  18530. name: "Normal+",
  18531. height: math.unit(10, "meters")
  18532. },
  18533. {
  18534. name: "Bigger",
  18535. height: math.unit(24, "meters")
  18536. },
  18537. {
  18538. name: "Huge",
  18539. height: math.unit(80, "meters")
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(6 + 2 / 12, "feet"),
  18548. weight: math.unit(153, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/luca-cervicum/front.svg",
  18552. extra: 370 / 327,
  18553. bottom: 0.015
  18554. }
  18555. },
  18556. back: {
  18557. height: math.unit(6 + 2 / 12, "feet"),
  18558. weight: math.unit(153, "lb"),
  18559. name: "Back",
  18560. image: {
  18561. source: "./media/characters/luca-cervicum/back.svg",
  18562. extra: 367 / 333,
  18563. bottom: 0.005
  18564. }
  18565. },
  18566. frontGear: {
  18567. height: math.unit(6 + 2 / 12, "feet"),
  18568. weight: math.unit(173, "lb"),
  18569. name: "Front (Gear)",
  18570. image: {
  18571. source: "./media/characters/luca-cervicum/front-gear.svg",
  18572. extra: 377 / 333,
  18573. bottom: 0.006
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(6 + 2 / 12, "feet"),
  18581. default: true
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(6 + 1 / 12, "feet"),
  18590. weight: math.unit(304, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/oliver/front.svg",
  18594. extra: 157 / 143,
  18595. bottom: 0.08
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(6 + 1 / 12, "feet"),
  18603. default: true
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(5 + 7 / 12, "feet"),
  18612. weight: math.unit(140, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/shane/front.svg",
  18616. extra: 304 / 289,
  18617. bottom: 0.005
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(5 + 7 / 12, "feet"),
  18625. default: true
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18631. {
  18632. front: {
  18633. height: math.unit(5 + 9 / 12, "feet"),
  18634. weight: math.unit(178, "lb"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/shin/front.svg",
  18638. extra: 159 / 151,
  18639. bottom: 0.015
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(5 + 9 / 12, "feet"),
  18647. default: true
  18648. },
  18649. ]
  18650. ))
  18651. characterMakers.push(() => makeCharacter(
  18652. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18653. {
  18654. front: {
  18655. height: math.unit(5 + 10 / 12, "feet"),
  18656. weight: math.unit(168, "lb"),
  18657. name: "Front",
  18658. image: {
  18659. source: "./media/characters/xerxes/front.svg",
  18660. extra: 282 / 260,
  18661. bottom: 0.045
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(5 + 10 / 12, "feet"),
  18669. default: true
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18675. {
  18676. front: {
  18677. height: math.unit(6 + 7 / 12, "feet"),
  18678. weight: math.unit(208, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/chaska/front.svg",
  18682. extra: 332 / 319,
  18683. bottom: 0.015
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(6 + 7 / 12, "feet"),
  18691. default: true
  18692. },
  18693. ]
  18694. ))
  18695. characterMakers.push(() => makeCharacter(
  18696. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18697. {
  18698. front: {
  18699. height: math.unit(5 + 8 / 12, "feet"),
  18700. weight: math.unit(208, "lb"),
  18701. name: "Front",
  18702. image: {
  18703. source: "./media/characters/enuk/front.svg",
  18704. extra: 437 / 406,
  18705. bottom: 0.02
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(5 + 8 / 12, "feet"),
  18713. default: true
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(5 + 10 / 12, "feet"),
  18722. weight: math.unit(252, "lb"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/bruun/front.svg",
  18726. extra: 197 / 187,
  18727. bottom: 0.012
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(5 + 10 / 12, "feet"),
  18735. default: true
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(6 + 10 / 12, "feet"),
  18744. weight: math.unit(255, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/alexeev/front.svg",
  18748. extra: 213 / 200,
  18749. bottom: 0.05
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(6 + 10 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(2 + 8 / 12, "feet"),
  18766. weight: math.unit(22, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/evelyn/front.svg",
  18770. extra: 208 / 180
  18771. }
  18772. },
  18773. },
  18774. [
  18775. {
  18776. name: "Normal",
  18777. height: math.unit(2 + 8 / 12, "feet"),
  18778. default: true
  18779. },
  18780. ]
  18781. ))
  18782. characterMakers.push(() => makeCharacter(
  18783. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18784. {
  18785. front: {
  18786. height: math.unit(5 + 9 / 12, "feet"),
  18787. weight: math.unit(139, "lb"),
  18788. name: "Front",
  18789. image: {
  18790. source: "./media/characters/inca/front.svg",
  18791. extra: 294 / 291,
  18792. bottom: 0.03
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(5 + 9 / 12, "feet"),
  18800. default: true
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18806. {
  18807. front: {
  18808. height: math.unit(5 + 1 / 12, "feet"),
  18809. weight: math.unit(84, "lb"),
  18810. name: "Front",
  18811. image: {
  18812. source: "./media/characters/magdalene/front.svg",
  18813. extra: 293 / 273
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(5 + 1 / 12, "feet"),
  18821. default: true
  18822. },
  18823. ]
  18824. ))
  18825. characterMakers.push(() => makeCharacter(
  18826. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18827. {
  18828. front: {
  18829. height: math.unit(6 + 3 / 12, "feet"),
  18830. weight: math.unit(185, "lb"),
  18831. name: "Front",
  18832. image: {
  18833. source: "./media/characters/mera/front.svg",
  18834. extra: 291 / 277,
  18835. bottom: 0.03
  18836. }
  18837. },
  18838. },
  18839. [
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(6 + 3 / 12, "feet"),
  18843. default: true
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18849. {
  18850. front: {
  18851. height: math.unit(6 + 7 / 12, "feet"),
  18852. weight: math.unit(160, "lb"),
  18853. name: "Front",
  18854. image: {
  18855. source: "./media/characters/ceres/front.svg",
  18856. extra: 1023 / 950,
  18857. bottom: 0.027
  18858. }
  18859. },
  18860. back: {
  18861. height: math.unit(6 + 7 / 12, "feet"),
  18862. weight: math.unit(160, "lb"),
  18863. name: "Back",
  18864. image: {
  18865. source: "./media/characters/ceres/back.svg",
  18866. extra: 1023 / 950
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(6 + 7 / 12, "feet"),
  18874. default: true
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18880. {
  18881. front: {
  18882. height: math.unit(5 + 10 / 12, "feet"),
  18883. weight: math.unit(150, "lb"),
  18884. name: "Front",
  18885. image: {
  18886. source: "./media/characters/kris/front.svg",
  18887. extra: 885 / 803,
  18888. bottom: 0.03
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Normal",
  18895. height: math.unit(5 + 10 / 12, "feet"),
  18896. default: true
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(7, "feet"),
  18905. weight: math.unit(120, "kg"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/taluthus/front.svg",
  18909. extra: 903 / 833,
  18910. bottom: 0.015
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(7, "feet"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Macro",
  18922. height: math.unit(300, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(5 + 9 / 12, "feet"),
  18931. weight: math.unit(145, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/dawn/front.svg",
  18935. extra: 2094 / 2016,
  18936. bottom: 0.025
  18937. }
  18938. },
  18939. back: {
  18940. height: math.unit(5 + 9 / 12, "feet"),
  18941. weight: math.unit(160, "lb"),
  18942. name: "Back",
  18943. image: {
  18944. source: "./media/characters/dawn/back.svg",
  18945. extra: 2112 / 2080,
  18946. bottom: 0.005
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(6 + 7 / 12, "feet"),
  18954. default: true
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18960. {
  18961. anthro: {
  18962. height: math.unit(8 + 3 / 12, "feet"),
  18963. weight: math.unit(450, "lb"),
  18964. name: "Anthro",
  18965. image: {
  18966. source: "./media/characters/arador/anthro.svg",
  18967. extra: 1835 / 1718,
  18968. bottom: 0.025
  18969. }
  18970. },
  18971. feral: {
  18972. height: math.unit(4, "feet"),
  18973. weight: math.unit(200, "lb"),
  18974. name: "Feral",
  18975. image: {
  18976. source: "./media/characters/arador/feral.svg",
  18977. extra: 1683 / 1514,
  18978. bottom: 0.07
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(8 + 3 / 12, "feet")
  18986. },
  18987. {
  18988. name: "Macro",
  18989. height: math.unit(82.5, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(5 + 10 / 12, "feet"),
  18999. weight: math.unit(125, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/dharsi/front.svg",
  19003. extra: 716 / 630,
  19004. bottom: 0.035
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Nano",
  19011. height: math.unit(100, "nm")
  19012. },
  19013. {
  19014. name: "Micro",
  19015. height: math.unit(2, "inches")
  19016. },
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(5 + 10 / 12, "feet"),
  19020. default: true
  19021. },
  19022. {
  19023. name: "Macro",
  19024. height: math.unit(1000, "feet")
  19025. },
  19026. {
  19027. name: "Megamacro",
  19028. height: math.unit(10, "miles")
  19029. },
  19030. {
  19031. name: "Gigamacro",
  19032. height: math.unit(3000, "miles")
  19033. },
  19034. {
  19035. name: "Teramacro",
  19036. height: math.unit(500000, "miles")
  19037. },
  19038. {
  19039. name: "Teramacro+",
  19040. height: math.unit(30, "galaxies")
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(6, "feet"),
  19049. weight: math.unit(150, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/deathy/front.svg",
  19053. extra: 1552 / 1463,
  19054. bottom: 0.025
  19055. }
  19056. },
  19057. side: {
  19058. height: math.unit(6, "feet"),
  19059. weight: math.unit(150, "lb"),
  19060. name: "Side",
  19061. image: {
  19062. source: "./media/characters/deathy/side.svg",
  19063. extra: 1604 / 1455,
  19064. bottom: 0.025
  19065. }
  19066. },
  19067. back: {
  19068. height: math.unit(6, "feet"),
  19069. weight: math.unit(150, "lb"),
  19070. name: "Back",
  19071. image: {
  19072. source: "./media/characters/deathy/back.svg",
  19073. extra: 1580 / 1463,
  19074. bottom: 0.005
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Micro",
  19081. height: math.unit(5, "millimeters")
  19082. },
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(6 + 5 / 12, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19092. {
  19093. front: {
  19094. height: math.unit(16, "feet"),
  19095. weight: math.unit(4000, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/juniper/front.svg",
  19099. bottom: 0.04
  19100. }
  19101. },
  19102. },
  19103. [
  19104. {
  19105. name: "Normal",
  19106. height: math.unit(16, "feet"),
  19107. default: true
  19108. },
  19109. ]
  19110. ))
  19111. characterMakers.push(() => makeCharacter(
  19112. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19113. {
  19114. front: {
  19115. height: math.unit(6, "feet"),
  19116. weight: math.unit(150, "lb"),
  19117. name: "Front",
  19118. image: {
  19119. source: "./media/characters/hipster/front.svg",
  19120. extra: 1312 / 1209,
  19121. bottom: 0.025
  19122. }
  19123. },
  19124. back: {
  19125. height: math.unit(6, "feet"),
  19126. weight: math.unit(150, "lb"),
  19127. name: "Back",
  19128. image: {
  19129. source: "./media/characters/hipster/back.svg",
  19130. extra: 1281 / 1196,
  19131. bottom: 0.01
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Micro",
  19138. height: math.unit(1, "mm")
  19139. },
  19140. {
  19141. name: "Normal",
  19142. height: math.unit(4, "inches"),
  19143. default: true
  19144. },
  19145. {
  19146. name: "Macro",
  19147. height: math.unit(500, "feet")
  19148. },
  19149. {
  19150. name: "Megamacro",
  19151. height: math.unit(1000, "miles")
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19157. {
  19158. front: {
  19159. height: math.unit(6, "feet"),
  19160. weight: math.unit(150, "lb"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/tendirmuldr/front.svg",
  19164. extra: 1878 / 1772,
  19165. bottom: 0.015
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Megamacro",
  19172. height: math.unit(1500, "miles"),
  19173. default: true
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19179. {
  19180. front: {
  19181. height: math.unit(14, "feet"),
  19182. weight: math.unit(12000, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/mort/front.svg",
  19186. extra: 365 / 318,
  19187. bottom: 0.01
  19188. }
  19189. },
  19190. side: {
  19191. height: math.unit(14, "feet"),
  19192. weight: math.unit(12000, "lb"),
  19193. name: "Side",
  19194. image: {
  19195. source: "./media/characters/mort/side.svg",
  19196. extra: 365 / 318,
  19197. bottom: 0.052
  19198. },
  19199. default: true
  19200. },
  19201. back: {
  19202. height: math.unit(14, "feet"),
  19203. weight: math.unit(12000, "lb"),
  19204. name: "Back",
  19205. image: {
  19206. source: "./media/characters/mort/back.svg",
  19207. extra: 371 / 332,
  19208. bottom: 0.18
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(14, "feet"),
  19216. default: true
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19222. {
  19223. front: {
  19224. height: math.unit(8, "feet"),
  19225. weight: math.unit(1, "ton"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/lycoa/front.svg",
  19229. extra: 1875 / 1789,
  19230. bottom: 0.022
  19231. }
  19232. },
  19233. back: {
  19234. height: math.unit(8, "feet"),
  19235. weight: math.unit(1, "ton"),
  19236. name: "Back",
  19237. image: {
  19238. source: "./media/characters/lycoa/back.svg",
  19239. extra: 1835 / 1781,
  19240. bottom: 0.03
  19241. }
  19242. },
  19243. head: {
  19244. height: math.unit(2.1, "feet"),
  19245. name: "Head",
  19246. image: {
  19247. source: "./media/characters/lycoa/head.svg"
  19248. }
  19249. },
  19250. tailmaw: {
  19251. height: math.unit(1.9, "feet"),
  19252. name: "Tailmaw",
  19253. image: {
  19254. source: "./media/characters/lycoa/tailmaw.svg"
  19255. }
  19256. },
  19257. tentacles: {
  19258. height: math.unit(2.1, "feet"),
  19259. name: "Tentacles",
  19260. image: {
  19261. source: "./media/characters/lycoa/tentacles.svg"
  19262. }
  19263. },
  19264. dick: {
  19265. height: math.unit(1.73, "feet"),
  19266. name: "Dick",
  19267. image: {
  19268. source: "./media/characters/lycoa/dick.svg"
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(8, "feet"),
  19276. default: true
  19277. },
  19278. {
  19279. name: "Macro",
  19280. height: math.unit(30, "feet")
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19286. {
  19287. front: {
  19288. height: math.unit(4 + 2 / 12, "feet"),
  19289. weight: math.unit(70, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/naldara/front.svg",
  19293. extra: 841 / 720,
  19294. bottom: 0.04
  19295. }
  19296. },
  19297. naga: {
  19298. height: math.unit(23, "feet"),
  19299. weight: math.unit(15000, "kg"),
  19300. name: "Naga",
  19301. image: {
  19302. source: "./media/characters/naldara/naga.svg",
  19303. extra: 3290/2959,
  19304. bottom: 124/3432
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(4 + 2 / 12, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19318. {
  19319. front: {
  19320. height: math.unit(13 + 7 / 12, "feet"),
  19321. weight: math.unit(1500, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/briar/front.svg",
  19325. extra: 626 / 596,
  19326. bottom: 0.08
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(13 + 7 / 12, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19340. {
  19341. side: {
  19342. height: math.unit(10, "feet"),
  19343. weight: math.unit(500, "lb"),
  19344. name: "Side",
  19345. image: {
  19346. source: "./media/characters/vanguard/side.svg",
  19347. extra: 502 / 425,
  19348. bottom: 0.087
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(10, "feet"),
  19356. default: true
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19362. {
  19363. front: {
  19364. height: math.unit(7.5, "feet"),
  19365. weight: math.unit(2, "lb"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/artemis/front.svg",
  19369. extra: 1192 / 1075,
  19370. bottom: 0.07
  19371. }
  19372. },
  19373. frontNsfw: {
  19374. height: math.unit(7.5, "feet"),
  19375. weight: math.unit(2, "lb"),
  19376. name: "Front (NSFW)",
  19377. image: {
  19378. source: "./media/characters/artemis/front-nsfw.svg",
  19379. extra: 1192 / 1075,
  19380. bottom: 0.07
  19381. }
  19382. },
  19383. frontNsfwer: {
  19384. height: math.unit(7.5, "feet"),
  19385. weight: math.unit(2, "lb"),
  19386. name: "Front (NSFW-er)",
  19387. image: {
  19388. source: "./media/characters/artemis/front-nsfwer.svg",
  19389. extra: 1192 / 1075,
  19390. bottom: 0.07
  19391. }
  19392. },
  19393. side: {
  19394. height: math.unit(7.5, "feet"),
  19395. weight: math.unit(2, "lb"),
  19396. name: "Side",
  19397. image: {
  19398. source: "./media/characters/artemis/side.svg",
  19399. extra: 1192 / 1075,
  19400. bottom: 0.07
  19401. }
  19402. },
  19403. sideNsfw: {
  19404. height: math.unit(7.5, "feet"),
  19405. weight: math.unit(2, "lb"),
  19406. name: "Side (NSFW)",
  19407. image: {
  19408. source: "./media/characters/artemis/side-nsfw.svg",
  19409. extra: 1192 / 1075,
  19410. bottom: 0.07
  19411. }
  19412. },
  19413. sideNsfwer: {
  19414. height: math.unit(7.5, "feet"),
  19415. weight: math.unit(2, "lb"),
  19416. name: "Side (NSFW-er)",
  19417. image: {
  19418. source: "./media/characters/artemis/side-nsfwer.svg",
  19419. extra: 1192 / 1075,
  19420. bottom: 0.07
  19421. }
  19422. },
  19423. maw: {
  19424. height: math.unit(1.1, "feet"),
  19425. name: "Maw",
  19426. image: {
  19427. source: "./media/characters/artemis/maw.svg"
  19428. }
  19429. },
  19430. stomach: {
  19431. height: math.unit(0.95, "feet"),
  19432. name: "Stomach",
  19433. image: {
  19434. source: "./media/characters/artemis/stomach.svg"
  19435. }
  19436. },
  19437. dickCanine: {
  19438. height: math.unit(1, "feet"),
  19439. name: "Dick (Canine)",
  19440. image: {
  19441. source: "./media/characters/artemis/dick-canine.svg"
  19442. }
  19443. },
  19444. dickEquine: {
  19445. height: math.unit(0.85, "feet"),
  19446. name: "Dick (Equine)",
  19447. image: {
  19448. source: "./media/characters/artemis/dick-equine.svg"
  19449. }
  19450. },
  19451. dickExotic: {
  19452. height: math.unit(0.85, "feet"),
  19453. name: "Dick (Exotic)",
  19454. image: {
  19455. source: "./media/characters/artemis/dick-exotic.svg"
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(7.5, "feet"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Enlarged",
  19467. height: math.unit(12, "feet")
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19473. {
  19474. front: {
  19475. height: math.unit(5 + 3 / 12, "feet"),
  19476. weight: math.unit(160, "lb"),
  19477. name: "Front",
  19478. image: {
  19479. source: "./media/characters/kira/front.svg",
  19480. extra: 906 / 786,
  19481. bottom: 0.01
  19482. }
  19483. },
  19484. back: {
  19485. height: math.unit(5 + 3 / 12, "feet"),
  19486. weight: math.unit(160, "lb"),
  19487. name: "Back",
  19488. image: {
  19489. source: "./media/characters/kira/back.svg",
  19490. extra: 882 / 757,
  19491. bottom: 0.005
  19492. }
  19493. },
  19494. frontDressed: {
  19495. height: math.unit(5 + 3 / 12, "feet"),
  19496. weight: math.unit(160, "lb"),
  19497. name: "Front (Dressed)",
  19498. image: {
  19499. source: "./media/characters/kira/front-dressed.svg",
  19500. extra: 906 / 786,
  19501. bottom: 0.01
  19502. }
  19503. },
  19504. beans: {
  19505. height: math.unit(0.92, "feet"),
  19506. name: "Beans",
  19507. image: {
  19508. source: "./media/characters/kira/beans.svg"
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Normal",
  19515. height: math.unit(5 + 3 / 12, "feet"),
  19516. default: true
  19517. },
  19518. ]
  19519. ))
  19520. characterMakers.push(() => makeCharacter(
  19521. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19522. {
  19523. front: {
  19524. height: math.unit(5 + 4 / 12, "feet"),
  19525. weight: math.unit(145, "lb"),
  19526. name: "Front",
  19527. image: {
  19528. source: "./media/characters/scramble/front.svg",
  19529. extra: 763 / 727,
  19530. bottom: 0.05
  19531. }
  19532. },
  19533. back: {
  19534. height: math.unit(5 + 4 / 12, "feet"),
  19535. weight: math.unit(145, "lb"),
  19536. name: "Back",
  19537. image: {
  19538. source: "./media/characters/scramble/back.svg",
  19539. extra: 826 / 737,
  19540. bottom: 0.002
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(5 + 4 / 12, "feet"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19554. {
  19555. side: {
  19556. height: math.unit(6 + 2 / 12, "feet"),
  19557. weight: math.unit(190, "lb"),
  19558. name: "Side",
  19559. image: {
  19560. source: "./media/characters/biscuit/side.svg",
  19561. extra: 858 / 791,
  19562. bottom: 0.044
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(6 + 2 / 12, "feet"),
  19570. default: true
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(5 + 2 / 12, "feet"),
  19579. weight: math.unit(120, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/poffin/front.svg",
  19583. extra: 786 / 680,
  19584. bottom: 0.005
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(5 + 2 / 12, "feet"),
  19592. default: true
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19598. {
  19599. front: {
  19600. height: math.unit(6 + 3 / 12, "feet"),
  19601. weight: math.unit(519, "lb"),
  19602. name: "Front",
  19603. image: {
  19604. source: "./media/characters/dhari/front.svg",
  19605. extra: 1048 / 946,
  19606. bottom: 0.015
  19607. }
  19608. },
  19609. back: {
  19610. height: math.unit(6 + 3 / 12, "feet"),
  19611. weight: math.unit(519, "lb"),
  19612. name: "Back",
  19613. image: {
  19614. source: "./media/characters/dhari/back.svg",
  19615. extra: 1048 / 931,
  19616. bottom: 0.005
  19617. }
  19618. },
  19619. frontDressed: {
  19620. height: math.unit(6 + 3 / 12, "feet"),
  19621. weight: math.unit(519, "lb"),
  19622. name: "Front (Dressed)",
  19623. image: {
  19624. source: "./media/characters/dhari/front-dressed.svg",
  19625. extra: 1713 / 1546,
  19626. bottom: 0.02
  19627. }
  19628. },
  19629. backDressed: {
  19630. height: math.unit(6 + 3 / 12, "feet"),
  19631. weight: math.unit(519, "lb"),
  19632. name: "Back (Dressed)",
  19633. image: {
  19634. source: "./media/characters/dhari/back-dressed.svg",
  19635. extra: 1699 / 1537,
  19636. bottom: 0.01
  19637. }
  19638. },
  19639. maw: {
  19640. height: math.unit(0.95, "feet"),
  19641. name: "Maw",
  19642. image: {
  19643. source: "./media/characters/dhari/maw.svg"
  19644. }
  19645. },
  19646. wereFront: {
  19647. height: math.unit(12 + 8 / 12, "feet"),
  19648. weight: math.unit(4000, "lb"),
  19649. name: "Front (Were)",
  19650. image: {
  19651. source: "./media/characters/dhari/were-front.svg",
  19652. extra: 1065 / 969,
  19653. bottom: 0.015
  19654. }
  19655. },
  19656. wereBack: {
  19657. height: math.unit(12 + 8 / 12, "feet"),
  19658. weight: math.unit(4000, "lb"),
  19659. name: "Back (Were)",
  19660. image: {
  19661. source: "./media/characters/dhari/were-back.svg",
  19662. extra: 1065 / 969,
  19663. bottom: 0.012
  19664. }
  19665. },
  19666. wereMaw: {
  19667. height: math.unit(0.625, "meters"),
  19668. name: "Maw (Were)",
  19669. image: {
  19670. source: "./media/characters/dhari/were-maw.svg"
  19671. }
  19672. },
  19673. },
  19674. [
  19675. {
  19676. name: "Normal",
  19677. height: math.unit(6 + 3 / 12, "feet"),
  19678. default: true
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19684. {
  19685. anthro: {
  19686. height: math.unit(5 + 7 / 12, "feet"),
  19687. weight: math.unit(175, "lb"),
  19688. name: "Anthro",
  19689. image: {
  19690. source: "./media/characters/rena-dyne/anthro.svg",
  19691. extra: 1849 / 1785,
  19692. bottom: 0.005
  19693. }
  19694. },
  19695. taur: {
  19696. height: math.unit(15 + 6 / 12, "feet"),
  19697. weight: math.unit(8000, "lb"),
  19698. name: "Taur",
  19699. image: {
  19700. source: "./media/characters/rena-dyne/taur.svg",
  19701. extra: 2315 / 2234,
  19702. bottom: 0.033
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(5 + 7 / 12, "feet"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19716. {
  19717. front: {
  19718. height: math.unit(8, "feet"),
  19719. weight: math.unit(600, "lb"),
  19720. name: "Front",
  19721. image: {
  19722. source: "./media/characters/weremeep/front.svg",
  19723. extra: 967 / 862,
  19724. bottom: 0.01
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(8, "feet"),
  19732. default: true
  19733. },
  19734. {
  19735. name: "Lorg",
  19736. height: math.unit(12, "feet")
  19737. },
  19738. {
  19739. name: "Oh Lawd She Comin'",
  19740. height: math.unit(20, "feet")
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19746. {
  19747. front: {
  19748. height: math.unit(4, "feet"),
  19749. weight: math.unit(90, "lb"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/reza/front.svg",
  19753. extra: 1183 / 1111,
  19754. bottom: 0.017
  19755. }
  19756. },
  19757. back: {
  19758. height: math.unit(4, "feet"),
  19759. weight: math.unit(90, "lb"),
  19760. name: "Back",
  19761. image: {
  19762. source: "./media/characters/reza/back.svg",
  19763. extra: 1183 / 1111,
  19764. bottom: 0.01
  19765. }
  19766. },
  19767. drake: {
  19768. height: math.unit(30, "feet"),
  19769. weight: math.unit(246960, "lb"),
  19770. name: "Drake",
  19771. image: {
  19772. source: "./media/characters/reza/drake.svg",
  19773. extra: 2350 / 2024,
  19774. bottom: 60.7 / 2403
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(4, "feet"),
  19782. default: true
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19788. {
  19789. side: {
  19790. height: math.unit(15, "feet"),
  19791. weight: math.unit(14, "tons"),
  19792. name: "Side",
  19793. image: {
  19794. source: "./media/characters/athea/side.svg",
  19795. extra: 960 / 540,
  19796. bottom: 0.003
  19797. }
  19798. },
  19799. sitting: {
  19800. height: math.unit(6 * 2.85, "feet"),
  19801. weight: math.unit(14, "tons"),
  19802. name: "Sitting",
  19803. image: {
  19804. source: "./media/characters/athea/sitting.svg",
  19805. extra: 621 / 581,
  19806. bottom: 0.075
  19807. }
  19808. },
  19809. maw: {
  19810. height: math.unit(7.59498031496063, "feet"),
  19811. name: "Maw",
  19812. image: {
  19813. source: "./media/characters/athea/maw.svg"
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Lap Cat",
  19820. height: math.unit(2.5, "feet")
  19821. },
  19822. {
  19823. name: "Minimacro",
  19824. height: math.unit(15, "feet"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Macro",
  19829. height: math.unit(120, "feet")
  19830. },
  19831. {
  19832. name: "Macro+",
  19833. height: math.unit(640, "feet")
  19834. },
  19835. {
  19836. name: "Colossus",
  19837. height: math.unit(2.2, "miles")
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19843. {
  19844. front: {
  19845. height: math.unit(8 + 8 / 12, "feet"),
  19846. weight: math.unit(130, "kg"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/seroko/front.svg",
  19850. extra: 1385 / 1280,
  19851. bottom: 0.025
  19852. }
  19853. },
  19854. back: {
  19855. height: math.unit(8 + 8 / 12, "feet"),
  19856. weight: math.unit(130, "kg"),
  19857. name: "Back",
  19858. image: {
  19859. source: "./media/characters/seroko/back.svg",
  19860. extra: 1369 / 1238,
  19861. bottom: 0.018
  19862. }
  19863. },
  19864. frontDressed: {
  19865. height: math.unit(8 + 8 / 12, "feet"),
  19866. weight: math.unit(130, "kg"),
  19867. name: "Front (Dressed)",
  19868. image: {
  19869. source: "./media/characters/seroko/front-dressed.svg",
  19870. extra: 1366 / 1275,
  19871. bottom: 0.03
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(8 + 8 / 12, "feet"),
  19879. default: true
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19885. {
  19886. front: {
  19887. height: math.unit(5.5, "feet"),
  19888. weight: math.unit(160, "lb"),
  19889. name: "Front",
  19890. image: {
  19891. source: "./media/characters/quatzi/front.svg",
  19892. extra: 2346 / 2242,
  19893. bottom: 0.015
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(5.5, "feet"),
  19901. default: true
  19902. },
  19903. {
  19904. name: "Big",
  19905. height: math.unit(7.7, "feet")
  19906. },
  19907. ]
  19908. ))
  19909. characterMakers.push(() => makeCharacter(
  19910. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19911. {
  19912. front: {
  19913. height: math.unit(5 + 11 / 12, "feet"),
  19914. weight: math.unit(180, "lb"),
  19915. name: "Front",
  19916. image: {
  19917. source: "./media/characters/sen/front.svg",
  19918. extra: 1321 / 1254,
  19919. bottom: 0.015
  19920. }
  19921. },
  19922. side: {
  19923. height: math.unit(5 + 11 / 12, "feet"),
  19924. weight: math.unit(180, "lb"),
  19925. name: "Side",
  19926. image: {
  19927. source: "./media/characters/sen/side.svg",
  19928. extra: 1321 / 1254,
  19929. bottom: 0.007
  19930. }
  19931. },
  19932. back: {
  19933. height: math.unit(5 + 11 / 12, "feet"),
  19934. weight: math.unit(180, "lb"),
  19935. name: "Back",
  19936. image: {
  19937. source: "./media/characters/sen/back.svg",
  19938. extra: 1321 / 1254
  19939. }
  19940. },
  19941. },
  19942. [
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(5 + 11 / 12, "feet"),
  19946. default: true
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(166.6, "cm"),
  19955. weight: math.unit(66.6, "kg"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/fruity/front.svg",
  19959. extra: 1510 / 1386,
  19960. bottom: 0.04
  19961. }
  19962. },
  19963. back: {
  19964. height: math.unit(166.6, "cm"),
  19965. weight: math.unit(66.6, "lb"),
  19966. name: "Back",
  19967. image: {
  19968. source: "./media/characters/fruity/back.svg",
  19969. extra: 1563 / 1435,
  19970. bottom: 0.005
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(166.6, "cm"),
  19978. default: true
  19979. },
  19980. {
  19981. name: "Demonic",
  19982. height: math.unit(166.6, "feet")
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19988. {
  19989. side: {
  19990. height: math.unit(10, "feet"),
  19991. weight: math.unit(500, "lb"),
  19992. name: "Side",
  19993. image: {
  19994. source: "./media/characters/zost/side.svg",
  19995. extra: 966 / 880,
  19996. bottom: 0.075
  19997. }
  19998. },
  19999. mawFront: {
  20000. height: math.unit(1.08, "meters"),
  20001. name: "Maw (Front)",
  20002. image: {
  20003. source: "./media/characters/zost/maw-front.svg"
  20004. }
  20005. },
  20006. mawSide: {
  20007. height: math.unit(2.66, "feet"),
  20008. name: "Maw (Side)",
  20009. image: {
  20010. source: "./media/characters/zost/maw-side.svg"
  20011. }
  20012. },
  20013. },
  20014. [
  20015. {
  20016. name: "Normal",
  20017. height: math.unit(10, "feet"),
  20018. default: true
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20024. {
  20025. front: {
  20026. height: math.unit(5 + 4 / 12, "feet"),
  20027. weight: math.unit(120, "lb"),
  20028. name: "Front",
  20029. image: {
  20030. source: "./media/characters/luci/front.svg",
  20031. extra: 1985 / 1884,
  20032. bottom: 0.04
  20033. }
  20034. },
  20035. back: {
  20036. height: math.unit(5 + 4 / 12, "feet"),
  20037. weight: math.unit(120, "lb"),
  20038. name: "Back",
  20039. image: {
  20040. source: "./media/characters/luci/back.svg",
  20041. extra: 1892 / 1791,
  20042. bottom: 0.002
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(5 + 4 / 12, "feet"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(1500, "feet"),
  20059. weight: math.unit(3.8e6, "tons"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/2th/front.svg",
  20063. extra: 3489 / 3350,
  20064. bottom: 0.1
  20065. }
  20066. },
  20067. foot: {
  20068. height: math.unit(461, "feet"),
  20069. name: "Foot",
  20070. image: {
  20071. source: "./media/characters/2th/foot.svg"
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "\"Micro\"",
  20078. height: math.unit(15 + 7 / 12, "feet")
  20079. },
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(1500, "feet"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Macro",
  20087. height: math.unit(5000, "feet")
  20088. },
  20089. {
  20090. name: "Megamacro",
  20091. height: math.unit(15, "miles")
  20092. },
  20093. {
  20094. name: "Gigamacro",
  20095. height: math.unit(4000, "miles")
  20096. },
  20097. {
  20098. name: "Galactic",
  20099. height: math.unit(50, "AU")
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(5 + 6 / 12, "feet"),
  20108. weight: math.unit(220, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/amethyst/front.svg",
  20112. extra: 2078 / 2040,
  20113. bottom: 0.045
  20114. }
  20115. },
  20116. back: {
  20117. height: math.unit(5 + 6 / 12, "feet"),
  20118. weight: math.unit(220, "lb"),
  20119. name: "Back",
  20120. image: {
  20121. source: "./media/characters/amethyst/back.svg",
  20122. extra: 2021 / 1989,
  20123. bottom: 0.02
  20124. }
  20125. },
  20126. },
  20127. [
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(5 + 6 / 12, "feet"),
  20131. default: true
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20137. {
  20138. front: {
  20139. height: math.unit(4 + 11 / 12, "feet"),
  20140. weight: math.unit(120, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/yumi-akiyama/front.svg",
  20144. extra: 1327 / 1235,
  20145. bottom: 0.02
  20146. }
  20147. },
  20148. back: {
  20149. height: math.unit(4 + 11 / 12, "feet"),
  20150. weight: math.unit(120, "lb"),
  20151. name: "Back",
  20152. image: {
  20153. source: "./media/characters/yumi-akiyama/back.svg",
  20154. extra: 1287 / 1245,
  20155. bottom: 0.002
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Galactic",
  20162. height: math.unit(50, "galaxies"),
  20163. default: true
  20164. },
  20165. {
  20166. name: "Universal",
  20167. height: math.unit(100, "universes")
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(8, "feet"),
  20176. weight: math.unit(500, "lb"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/rifter-yrmori/front.svg",
  20180. extra: 1180 / 1125,
  20181. bottom: 0.02
  20182. }
  20183. },
  20184. back: {
  20185. height: math.unit(8, "feet"),
  20186. weight: math.unit(500, "lb"),
  20187. name: "Back",
  20188. image: {
  20189. source: "./media/characters/rifter-yrmori/back.svg",
  20190. extra: 1190 / 1145,
  20191. bottom: 0.001
  20192. }
  20193. },
  20194. wings: {
  20195. height: math.unit(7.75, "feet"),
  20196. weight: math.unit(500, "lb"),
  20197. name: "Wings",
  20198. image: {
  20199. source: "./media/characters/rifter-yrmori/wings.svg",
  20200. extra: 1357 / 1285
  20201. }
  20202. },
  20203. maw: {
  20204. height: math.unit(0.8, "feet"),
  20205. name: "Maw",
  20206. image: {
  20207. source: "./media/characters/rifter-yrmori/maw.svg"
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(8, "feet"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Macro",
  20219. height: math.unit(42, "meters")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20225. {
  20226. were: {
  20227. height: math.unit(25 + 6 / 12, "feet"),
  20228. weight: math.unit(10000, "lb"),
  20229. name: "Were",
  20230. image: {
  20231. source: "./media/characters/tahajin/were.svg",
  20232. extra: 801 / 770,
  20233. bottom: 0.042
  20234. }
  20235. },
  20236. aquatic: {
  20237. height: math.unit(6 + 4 / 12, "feet"),
  20238. weight: math.unit(160, "lb"),
  20239. name: "Aquatic",
  20240. image: {
  20241. source: "./media/characters/tahajin/aquatic.svg",
  20242. extra: 572 / 542,
  20243. bottom: 0.04
  20244. }
  20245. },
  20246. chow: {
  20247. height: math.unit(8 + 11 / 12, "feet"),
  20248. weight: math.unit(450, "lb"),
  20249. name: "Chow",
  20250. image: {
  20251. source: "./media/characters/tahajin/chow.svg",
  20252. extra: 660 / 640,
  20253. bottom: 0.015
  20254. }
  20255. },
  20256. demiNaga: {
  20257. height: math.unit(6 + 8 / 12, "feet"),
  20258. weight: math.unit(300, "lb"),
  20259. name: "Demi Naga",
  20260. image: {
  20261. source: "./media/characters/tahajin/demi-naga.svg",
  20262. extra: 643 / 615,
  20263. bottom: 0.1
  20264. }
  20265. },
  20266. data: {
  20267. height: math.unit(5, "inches"),
  20268. weight: math.unit(0.1, "lb"),
  20269. name: "Data",
  20270. image: {
  20271. source: "./media/characters/tahajin/data.svg"
  20272. }
  20273. },
  20274. fluu: {
  20275. height: math.unit(5 + 7 / 12, "feet"),
  20276. weight: math.unit(140, "lb"),
  20277. name: "Fluu",
  20278. image: {
  20279. source: "./media/characters/tahajin/fluu.svg",
  20280. extra: 628 / 592,
  20281. bottom: 0.02
  20282. }
  20283. },
  20284. starWarrior: {
  20285. height: math.unit(4 + 5 / 12, "feet"),
  20286. weight: math.unit(50, "lb"),
  20287. name: "Star Warrior",
  20288. image: {
  20289. source: "./media/characters/tahajin/star-warrior.svg"
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(25 + 6 / 12, "feet"),
  20297. default: true
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20303. {
  20304. front: {
  20305. height: math.unit(8, "feet"),
  20306. weight: math.unit(350, "lb"),
  20307. name: "Front",
  20308. image: {
  20309. source: "./media/characters/gabira/front.svg",
  20310. extra: 608 / 580,
  20311. bottom: 0.03
  20312. }
  20313. },
  20314. back: {
  20315. height: math.unit(8, "feet"),
  20316. weight: math.unit(350, "lb"),
  20317. name: "Back",
  20318. image: {
  20319. source: "./media/characters/gabira/back.svg",
  20320. extra: 608 / 580,
  20321. bottom: 0.03
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(8, "feet"),
  20329. default: true
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(5 + 3 / 12, "feet"),
  20338. weight: math.unit(137, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/sasha-katraine/front.svg",
  20342. bottom: 0.045
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Micro",
  20349. height: math.unit(5, "inches")
  20350. },
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(5 + 3 / 12, "feet"),
  20354. default: true
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20360. {
  20361. side: {
  20362. height: math.unit(4, "inches"),
  20363. weight: math.unit(200, "grams"),
  20364. name: "Side",
  20365. image: {
  20366. source: "./media/characters/der/side.svg",
  20367. extra: 719 / 400,
  20368. bottom: 30.6 / 749.9187
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Micro",
  20375. height: math.unit(4, "inches"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20382. {
  20383. side: {
  20384. height: math.unit(30, "meters"),
  20385. weight: math.unit(700, "tonnes"),
  20386. name: "Side",
  20387. image: {
  20388. source: "./media/characters/fixerdragon/side.svg",
  20389. extra: (1293.0514 - 116.03) / 1106.86,
  20390. bottom: 116.03 / 1293.0514
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Planck",
  20397. height: math.unit(1.6e-35, "meters")
  20398. },
  20399. {
  20400. name: "Micro",
  20401. height: math.unit(0.4, "meters")
  20402. },
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(30, "meters"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Megamacro",
  20410. height: math.unit(1.2, "megameters")
  20411. },
  20412. {
  20413. name: "Teramacro",
  20414. height: math.unit(130, "terameters")
  20415. },
  20416. {
  20417. name: "Yottamacro",
  20418. height: math.unit(6200, "yottameters")
  20419. },
  20420. ]
  20421. ));
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20424. {
  20425. front: {
  20426. height: math.unit(8, "feet"),
  20427. weight: math.unit(250, "lb"),
  20428. name: "Front",
  20429. image: {
  20430. source: "./media/characters/kite/front.svg",
  20431. extra: 2796 / 2659,
  20432. bottom: 0.002
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(8, "feet"),
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(360, "feet")
  20445. },
  20446. {
  20447. name: "Megamacro",
  20448. height: math.unit(1500, "feet")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(5 + 10 / 12, "feet"),
  20457. weight: math.unit(150, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/poojawa-vynar/front.svg",
  20461. extra: (1506.1547 - 55) / 1356.6,
  20462. bottom: 55 / 1506.1547
  20463. }
  20464. },
  20465. frontTailless: {
  20466. height: math.unit(5 + 10 / 12, "feet"),
  20467. weight: math.unit(150, "lb"),
  20468. name: "Front (Tailless)",
  20469. image: {
  20470. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20471. extra: (1506.1547 - 55) / 1356.6,
  20472. bottom: 55 / 1506.1547
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(5 + 10 / 12, "feet"),
  20480. default: true
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20486. {
  20487. front: {
  20488. height: math.unit(293, "meters"),
  20489. weight: math.unit(70400, "tons"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/violette/front.svg",
  20493. extra: 1227 / 1180,
  20494. bottom: 0.005
  20495. }
  20496. },
  20497. back: {
  20498. height: math.unit(293, "meters"),
  20499. weight: math.unit(70400, "tons"),
  20500. name: "Back",
  20501. image: {
  20502. source: "./media/characters/violette/back.svg",
  20503. extra: 1227 / 1180,
  20504. bottom: 0.005
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(293, "meters"),
  20512. default: true
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(1050, "feet"),
  20521. weight: math.unit(200000, "tons"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/alessandra/front.svg",
  20525. extra: 960 / 912,
  20526. bottom: 0.06
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Macro",
  20533. height: math.unit(1050, "feet")
  20534. },
  20535. {
  20536. name: "Macro+",
  20537. height: math.unit(900, "meters"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20544. {
  20545. front: {
  20546. height: math.unit(5, "feet"),
  20547. weight: math.unit(187, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/person/front.svg",
  20551. extra: 3087 / 2945,
  20552. bottom: 91 / 3181
  20553. }
  20554. },
  20555. },
  20556. [
  20557. {
  20558. name: "Micro",
  20559. height: math.unit(3, "inches")
  20560. },
  20561. {
  20562. name: "Normal",
  20563. height: math.unit(5, "feet"),
  20564. default: true
  20565. },
  20566. {
  20567. name: "Macro",
  20568. height: math.unit(90, "feet")
  20569. },
  20570. {
  20571. name: "Max Size",
  20572. height: math.unit(280, "feet")
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20578. {
  20579. front: {
  20580. height: math.unit(4.5, "meters"),
  20581. weight: math.unit(3200, "lb"),
  20582. name: "Front",
  20583. image: {
  20584. source: "./media/characters/ty/front.svg",
  20585. extra: 1038 / 960,
  20586. bottom: 31.156 / 1068
  20587. }
  20588. },
  20589. back: {
  20590. height: math.unit(4.5, "meters"),
  20591. weight: math.unit(3200, "lb"),
  20592. name: "Back",
  20593. image: {
  20594. source: "./media/characters/ty/back.svg",
  20595. extra: 1044 / 966,
  20596. bottom: 7.48 / 1049
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(4.5, "meters"),
  20604. default: true
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(5 + 4 / 12, "feet"),
  20613. weight: math.unit(115, "lb"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/rocky/front.svg",
  20617. extra: 1012 / 975,
  20618. bottom: 54 / 1066
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(5 + 4 / 12, "feet"),
  20626. default: true
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20632. {
  20633. upright: {
  20634. height: math.unit(6, "meters"),
  20635. weight: math.unit(4000, "kg"),
  20636. name: "Upright",
  20637. image: {
  20638. source: "./media/characters/ruin/upright.svg",
  20639. extra: 668 / 661,
  20640. bottom: 42 / 799.8396
  20641. }
  20642. },
  20643. },
  20644. [
  20645. {
  20646. name: "Normal",
  20647. height: math.unit(6, "meters"),
  20648. default: true
  20649. },
  20650. ]
  20651. ))
  20652. characterMakers.push(() => makeCharacter(
  20653. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20654. {
  20655. front: {
  20656. height: math.unit(5, "feet"),
  20657. weight: math.unit(106, "lb"),
  20658. name: "Front",
  20659. image: {
  20660. source: "./media/characters/robin/front.svg",
  20661. extra: 862 / 799,
  20662. bottom: 42.4 / 914.8856
  20663. }
  20664. },
  20665. },
  20666. [
  20667. {
  20668. name: "Normal",
  20669. height: math.unit(5, "feet"),
  20670. default: true
  20671. },
  20672. ]
  20673. ))
  20674. characterMakers.push(() => makeCharacter(
  20675. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20676. {
  20677. side: {
  20678. height: math.unit(3, "feet"),
  20679. weight: math.unit(225, "lb"),
  20680. name: "Side",
  20681. image: {
  20682. source: "./media/characters/saian/side.svg",
  20683. extra: 566 / 356,
  20684. bottom: 79.7 / 643
  20685. }
  20686. },
  20687. maw: {
  20688. height: math.unit(2.85, "feet"),
  20689. name: "Maw",
  20690. image: {
  20691. source: "./media/characters/saian/maw.svg"
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(3, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20705. {
  20706. side: {
  20707. height: math.unit(8, "feet"),
  20708. weight: math.unit(300, "lb"),
  20709. name: "Side",
  20710. image: {
  20711. source: "./media/characters/equus-silvermane/side.svg",
  20712. extra: 2176 / 2050,
  20713. bottom: 65.7 / 2245
  20714. }
  20715. },
  20716. front: {
  20717. height: math.unit(8, "feet"),
  20718. weight: math.unit(300, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/equus-silvermane/front.svg",
  20722. extra: 4633 / 4400,
  20723. bottom: 71.3 / 4706.915
  20724. }
  20725. },
  20726. sideStepping: {
  20727. height: math.unit(8, "feet"),
  20728. weight: math.unit(300, "lb"),
  20729. name: "Side (Stepping)",
  20730. image: {
  20731. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20732. extra: 1968 / 1860,
  20733. bottom: 16.4 / 1989
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(8, "feet")
  20741. },
  20742. {
  20743. name: "Minimacro",
  20744. height: math.unit(75, "feet"),
  20745. default: true
  20746. },
  20747. {
  20748. name: "Macro",
  20749. height: math.unit(150, "feet")
  20750. },
  20751. {
  20752. name: "Macro+",
  20753. height: math.unit(1000, "feet")
  20754. },
  20755. {
  20756. name: "Megamacro",
  20757. height: math.unit(1, "mile")
  20758. },
  20759. ]
  20760. ))
  20761. characterMakers.push(() => makeCharacter(
  20762. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20763. {
  20764. side: {
  20765. height: math.unit(20, "feet"),
  20766. weight: math.unit(30000, "kg"),
  20767. name: "Side",
  20768. image: {
  20769. source: "./media/characters/windar/side.svg",
  20770. extra: 1491 / 1248,
  20771. bottom: 82.56 / 1568
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(20, "feet"),
  20779. default: true
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20785. {
  20786. side: {
  20787. height: math.unit(15.66, "feet"),
  20788. weight: math.unit(150, "lb"),
  20789. name: "Side",
  20790. image: {
  20791. source: "./media/characters/melody/side.svg",
  20792. extra: 1097 / 944,
  20793. bottom: 11.8 / 1109
  20794. }
  20795. },
  20796. sideOutfit: {
  20797. height: math.unit(15.66, "feet"),
  20798. weight: math.unit(150, "lb"),
  20799. name: "Side (Outfit)",
  20800. image: {
  20801. source: "./media/characters/melody/side-outfit.svg",
  20802. extra: 1097 / 944,
  20803. bottom: 11.8 / 1109
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(15.66, "feet"),
  20811. default: true
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20817. {
  20818. front: {
  20819. height: math.unit(8, "feet"),
  20820. weight: math.unit(325, "lb"),
  20821. name: "Front",
  20822. image: {
  20823. source: "./media/characters/windera/front.svg",
  20824. extra: 3180 / 2845,
  20825. bottom: 178 / 3365
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(8, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20839. {
  20840. front: {
  20841. height: math.unit(28.75, "feet"),
  20842. weight: math.unit(2000, "kg"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/sonear/front.svg",
  20846. extra: 1041.1 / 964.9,
  20847. bottom: 53.7 / 1096.6
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(28.75, "feet"),
  20855. default: true
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20861. {
  20862. side: {
  20863. height: math.unit(25.5, "feet"),
  20864. weight: math.unit(23000, "kg"),
  20865. name: "Side",
  20866. image: {
  20867. source: "./media/characters/kanara/side.svg"
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(25.5, "feet"),
  20875. default: true
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20881. {
  20882. side: {
  20883. height: math.unit(10, "feet"),
  20884. weight: math.unit(1000, "kg"),
  20885. name: "Side",
  20886. image: {
  20887. source: "./media/characters/ereus/side.svg",
  20888. extra: 1157 / 959,
  20889. bottom: 153 / 1312.5
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(10, "feet"),
  20897. default: true
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20903. {
  20904. side: {
  20905. height: math.unit(4.5, "feet"),
  20906. weight: math.unit(500, "lb"),
  20907. name: "Side",
  20908. image: {
  20909. source: "./media/characters/e-ter/side.svg",
  20910. extra: 1550 / 1248,
  20911. bottom: 146 / 1694
  20912. }
  20913. },
  20914. },
  20915. [
  20916. {
  20917. name: "Normal",
  20918. height: math.unit(4.5, "feet"),
  20919. default: true
  20920. },
  20921. ]
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20925. {
  20926. side: {
  20927. height: math.unit(9.7, "feet"),
  20928. weight: math.unit(4000, "kg"),
  20929. name: "Side",
  20930. image: {
  20931. source: "./media/characters/yamie/side.svg"
  20932. }
  20933. },
  20934. },
  20935. [
  20936. {
  20937. name: "Normal",
  20938. height: math.unit(9.7, "feet"),
  20939. default: true
  20940. },
  20941. ]
  20942. ))
  20943. characterMakers.push(() => makeCharacter(
  20944. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20945. {
  20946. front: {
  20947. height: math.unit(50, "feet"),
  20948. weight: math.unit(50000, "kg"),
  20949. name: "Front",
  20950. image: {
  20951. source: "./media/characters/anders/front.svg",
  20952. extra: 570 / 539,
  20953. bottom: 14.7 / 586.7
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Large",
  20960. height: math.unit(50, "feet")
  20961. },
  20962. {
  20963. name: "Macro",
  20964. height: math.unit(2000, "feet"),
  20965. default: true
  20966. },
  20967. {
  20968. name: "Megamacro",
  20969. height: math.unit(12, "miles")
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20975. {
  20976. front: {
  20977. height: math.unit(7 + 2 / 12, "feet"),
  20978. weight: math.unit(300, "lb"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/reban/front.svg",
  20982. extra: 516 / 487,
  20983. bottom: 42.82 / 558.356
  20984. }
  20985. },
  20986. dick: {
  20987. height: math.unit(7 / 5, "feet"),
  20988. name: "Dick",
  20989. image: {
  20990. source: "./media/characters/reban/dick.svg"
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Natural Height",
  20997. height: math.unit(7 + 2 / 12, "feet")
  20998. },
  20999. {
  21000. name: "Macro",
  21001. height: math.unit(500, "feet"),
  21002. default: true
  21003. },
  21004. {
  21005. name: "Canon Height",
  21006. height: math.unit(50, "AU")
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21012. {
  21013. front: {
  21014. height: math.unit(6, "feet"),
  21015. weight: math.unit(150, "lb"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/terrance-keayes/front.svg",
  21019. extra: 1.005,
  21020. bottom: 151 / 1615
  21021. }
  21022. },
  21023. side: {
  21024. height: math.unit(6, "feet"),
  21025. weight: math.unit(150, "lb"),
  21026. name: "Side",
  21027. image: {
  21028. source: "./media/characters/terrance-keayes/side.svg",
  21029. extra: 1.005,
  21030. bottom: 129.4 / 1544
  21031. }
  21032. },
  21033. back: {
  21034. height: math.unit(6, "feet"),
  21035. weight: math.unit(150, "lb"),
  21036. name: "Back",
  21037. image: {
  21038. source: "./media/characters/terrance-keayes/back.svg",
  21039. extra: 1.005,
  21040. bottom: 58.4 / 1557.3
  21041. }
  21042. },
  21043. dick: {
  21044. height: math.unit(6 * 0.208, "feet"),
  21045. name: "Dick",
  21046. image: {
  21047. source: "./media/characters/terrance-keayes/dick.svg"
  21048. }
  21049. },
  21050. },
  21051. [
  21052. {
  21053. name: "Canon Height",
  21054. height: math.unit(35, "miles"),
  21055. default: true
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21061. {
  21062. front: {
  21063. height: math.unit(6, "feet"),
  21064. weight: math.unit(150, "lb"),
  21065. name: "Front",
  21066. image: {
  21067. source: "./media/characters/ofelia/front.svg",
  21068. extra: 546 / 541,
  21069. bottom: 39 / 583
  21070. }
  21071. },
  21072. back: {
  21073. height: math.unit(6, "feet"),
  21074. weight: math.unit(150, "lb"),
  21075. name: "Back",
  21076. image: {
  21077. source: "./media/characters/ofelia/back.svg",
  21078. extra: 564 / 559.5,
  21079. bottom: 8.69 / 573.02
  21080. }
  21081. },
  21082. maw: {
  21083. height: math.unit(1, "feet"),
  21084. name: "Maw",
  21085. image: {
  21086. source: "./media/characters/ofelia/maw.svg"
  21087. }
  21088. },
  21089. foot: {
  21090. height: math.unit(1.949, "feet"),
  21091. name: "Foot",
  21092. image: {
  21093. source: "./media/characters/ofelia/foot.svg"
  21094. }
  21095. },
  21096. },
  21097. [
  21098. {
  21099. name: "Canon Height",
  21100. height: math.unit(2000, "miles"),
  21101. default: true
  21102. },
  21103. ]
  21104. ))
  21105. characterMakers.push(() => makeCharacter(
  21106. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21107. {
  21108. front: {
  21109. height: math.unit(6, "feet"),
  21110. weight: math.unit(150, "lb"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/samuel/front.svg",
  21114. extra: 265 / 258,
  21115. bottom: 2 / 266.1566
  21116. }
  21117. },
  21118. },
  21119. [
  21120. {
  21121. name: "Macro",
  21122. height: math.unit(100, "feet"),
  21123. default: true
  21124. },
  21125. {
  21126. name: "Full Size",
  21127. height: math.unit(1000, "miles")
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(6, "feet"),
  21136. weight: math.unit(300, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/beishir-kiel/front.svg",
  21140. extra: 569 / 547,
  21141. bottom: 41.9 / 609
  21142. }
  21143. },
  21144. maw: {
  21145. height: math.unit(6 * 0.202, "feet"),
  21146. name: "Maw",
  21147. image: {
  21148. source: "./media/characters/beishir-kiel/maw.svg"
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Macro",
  21155. height: math.unit(300, "feet"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(5 + 8 / 12, "feet"),
  21165. weight: math.unit(120, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/logan-grey/front.svg",
  21169. extra: 2539 / 2393,
  21170. bottom: 97.6 / 2636.37
  21171. }
  21172. },
  21173. frontAlt: {
  21174. height: math.unit(5 + 8 / 12, "feet"),
  21175. weight: math.unit(120, "lb"),
  21176. name: "Front (Alt)",
  21177. image: {
  21178. source: "./media/characters/logan-grey/front-alt.svg",
  21179. extra: 958 / 893,
  21180. bottom: 15 / 970.768
  21181. }
  21182. },
  21183. back: {
  21184. height: math.unit(5 + 8 / 12, "feet"),
  21185. weight: math.unit(120, "lb"),
  21186. name: "Back",
  21187. image: {
  21188. source: "./media/characters/logan-grey/back.svg",
  21189. extra: 958 / 893,
  21190. bottom: 2.1881 / 970.9788
  21191. }
  21192. },
  21193. dick: {
  21194. height: math.unit(1.437, "feet"),
  21195. name: "Dick",
  21196. image: {
  21197. source: "./media/characters/logan-grey/dick.svg"
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(5 + 8 / 12, "feet")
  21205. },
  21206. {
  21207. name: "The 500 Foot Femboy",
  21208. height: math.unit(500, "feet"),
  21209. default: true
  21210. },
  21211. {
  21212. name: "Megmacro",
  21213. height: math.unit(20, "miles")
  21214. },
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21219. {
  21220. front: {
  21221. height: math.unit(8 + 2 / 12, "feet"),
  21222. weight: math.unit(275, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/draganta/front.svg",
  21226. extra: 1177 / 1135,
  21227. bottom: 33.46 / 1212.1
  21228. }
  21229. },
  21230. },
  21231. [
  21232. {
  21233. name: "Normal",
  21234. height: math.unit(8 + 6 / 12, "feet"),
  21235. default: true
  21236. },
  21237. {
  21238. name: "Macro",
  21239. height: math.unit(150, "feet")
  21240. },
  21241. {
  21242. name: "Megamacro",
  21243. height: math.unit(1000, "miles")
  21244. },
  21245. ]
  21246. ))
  21247. characterMakers.push(() => makeCharacter(
  21248. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21249. {
  21250. front: {
  21251. height: math.unit(1.72, "m"),
  21252. weight: math.unit(80, "lb"),
  21253. name: "Front",
  21254. image: {
  21255. source: "./media/characters/voski/front.svg",
  21256. extra: 2076.22 / 2022.4,
  21257. bottom: 102.7 / 2177.3866
  21258. }
  21259. },
  21260. frontNsfw: {
  21261. height: math.unit(1.72, "m"),
  21262. weight: math.unit(80, "lb"),
  21263. name: "Front (NSFW)",
  21264. image: {
  21265. source: "./media/characters/voski/front-nsfw.svg",
  21266. extra: 2076.22 / 2022.4,
  21267. bottom: 102.7 / 2177.3866
  21268. }
  21269. },
  21270. back: {
  21271. height: math.unit(1.72, "m"),
  21272. weight: math.unit(80, "lb"),
  21273. name: "Back",
  21274. image: {
  21275. source: "./media/characters/voski/back.svg",
  21276. extra: 2104 / 2051,
  21277. bottom: 10.45 / 2113.63
  21278. }
  21279. },
  21280. },
  21281. [
  21282. {
  21283. name: "Normal",
  21284. height: math.unit(1.72, "m")
  21285. },
  21286. {
  21287. name: "Macro",
  21288. height: math.unit(55, "m"),
  21289. default: true
  21290. },
  21291. {
  21292. name: "Macro+",
  21293. height: math.unit(300, "m")
  21294. },
  21295. {
  21296. name: "Macro++",
  21297. height: math.unit(700, "m")
  21298. },
  21299. {
  21300. name: "Macro+++",
  21301. height: math.unit(4500, "m")
  21302. },
  21303. {
  21304. name: "Macro++++",
  21305. height: math.unit(45, "km")
  21306. },
  21307. {
  21308. name: "Macro+++++",
  21309. height: math.unit(1220, "km")
  21310. },
  21311. ]
  21312. ))
  21313. characterMakers.push(() => makeCharacter(
  21314. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21315. {
  21316. front: {
  21317. height: math.unit(2.3, "m"),
  21318. weight: math.unit(304, "kg"),
  21319. name: "Front",
  21320. image: {
  21321. source: "./media/characters/icowom-lee/front.svg",
  21322. extra: 985 / 955,
  21323. bottom: 25.4 / 1012
  21324. }
  21325. },
  21326. fronttentacles: {
  21327. height: math.unit(2.3, "m"),
  21328. weight: math.unit(304, "kg"),
  21329. name: "Front-tentacles",
  21330. image: {
  21331. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21332. extra: 985 / 955,
  21333. bottom: 25.4 / 1012
  21334. }
  21335. },
  21336. back: {
  21337. height: math.unit(2.3, "m"),
  21338. weight: math.unit(304, "kg"),
  21339. name: "Back",
  21340. image: {
  21341. source: "./media/characters/icowom-lee/back.svg",
  21342. extra: 975 / 954,
  21343. bottom: 9.5 / 985
  21344. }
  21345. },
  21346. backtentacles: {
  21347. height: math.unit(2.3, "m"),
  21348. weight: math.unit(304, "kg"),
  21349. name: "Back-tentacles",
  21350. image: {
  21351. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21352. extra: 975 / 954,
  21353. bottom: 9.5 / 985
  21354. }
  21355. },
  21356. frontDressed: {
  21357. height: math.unit(2.3, "m"),
  21358. weight: math.unit(304, "kg"),
  21359. name: "Front (Dressed)",
  21360. image: {
  21361. source: "./media/characters/icowom-lee/front-dressed.svg",
  21362. extra: 3076 / 2933,
  21363. bottom: 51.4 / 3125.1889
  21364. }
  21365. },
  21366. rump: {
  21367. height: math.unit(0.776, "meters"),
  21368. name: "Rump",
  21369. image: {
  21370. source: "./media/characters/icowom-lee/rump.svg"
  21371. }
  21372. },
  21373. genitals: {
  21374. height: math.unit(0.78, "meters"),
  21375. name: "Genitals",
  21376. image: {
  21377. source: "./media/characters/icowom-lee/genitals.svg"
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(2.3, "meters"),
  21385. default: true
  21386. },
  21387. {
  21388. name: "Macro",
  21389. height: math.unit(94, "meters"),
  21390. default: true
  21391. },
  21392. ]
  21393. ))
  21394. characterMakers.push(() => makeCharacter(
  21395. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21396. {
  21397. front: {
  21398. height: math.unit(22, "meters"),
  21399. weight: math.unit(21000, "kg"),
  21400. name: "Front",
  21401. image: {
  21402. source: "./media/characters/shock-diamond/front.svg",
  21403. extra: 2204 / 2053,
  21404. bottom: 65 / 2239.47
  21405. }
  21406. },
  21407. frontNude: {
  21408. height: math.unit(22, "meters"),
  21409. weight: math.unit(21000, "kg"),
  21410. name: "Front (Nude)",
  21411. image: {
  21412. source: "./media/characters/shock-diamond/front-nude.svg",
  21413. extra: 2514 / 2285,
  21414. bottom: 13 / 2527.56
  21415. }
  21416. },
  21417. },
  21418. [
  21419. {
  21420. name: "Normal",
  21421. height: math.unit(3, "meters")
  21422. },
  21423. {
  21424. name: "Macro",
  21425. height: math.unit(22, "meters"),
  21426. default: true
  21427. },
  21428. ]
  21429. ))
  21430. characterMakers.push(() => makeCharacter(
  21431. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21432. {
  21433. front: {
  21434. height: math.unit(5 + 4 / 12, "feet"),
  21435. weight: math.unit(120, "lb"),
  21436. name: "Front",
  21437. image: {
  21438. source: "./media/characters/rory/front.svg",
  21439. extra: 589 / 556,
  21440. bottom: 45.7 / 635.76
  21441. }
  21442. },
  21443. frontNude: {
  21444. height: math.unit(5 + 4 / 12, "feet"),
  21445. weight: math.unit(120, "lb"),
  21446. name: "Front (Nude)",
  21447. image: {
  21448. source: "./media/characters/rory/front-nude.svg",
  21449. extra: 589 / 556,
  21450. bottom: 45.7 / 635.76
  21451. }
  21452. },
  21453. side: {
  21454. height: math.unit(5 + 4 / 12, "feet"),
  21455. weight: math.unit(120, "lb"),
  21456. name: "Side",
  21457. image: {
  21458. source: "./media/characters/rory/side.svg",
  21459. extra: 597 / 564,
  21460. bottom: 55 / 653
  21461. }
  21462. },
  21463. back: {
  21464. height: math.unit(5 + 4 / 12, "feet"),
  21465. weight: math.unit(120, "lb"),
  21466. name: "Back",
  21467. image: {
  21468. source: "./media/characters/rory/back.svg",
  21469. extra: 620 / 585,
  21470. bottom: 8.86 / 630.43
  21471. }
  21472. },
  21473. dick: {
  21474. height: math.unit(0.86, "feet"),
  21475. name: "Dick",
  21476. image: {
  21477. source: "./media/characters/rory/dick.svg"
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(5 + 4 / 12, "feet"),
  21485. default: true
  21486. },
  21487. {
  21488. name: "Macro",
  21489. height: math.unit(100, "feet")
  21490. },
  21491. {
  21492. name: "Macro+",
  21493. height: math.unit(140, "feet")
  21494. },
  21495. {
  21496. name: "Macro++",
  21497. height: math.unit(300, "feet")
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(5 + 9 / 12, "feet"),
  21506. weight: math.unit(190, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/sprisk/front.svg",
  21510. extra: 1225 / 1180,
  21511. bottom: 42.7 / 1266.4
  21512. }
  21513. },
  21514. frontNsfw: {
  21515. height: math.unit(5 + 9 / 12, "feet"),
  21516. weight: math.unit(190, "lb"),
  21517. name: "Front (NSFW)",
  21518. image: {
  21519. source: "./media/characters/sprisk/front-nsfw.svg",
  21520. extra: 1225 / 1180,
  21521. bottom: 42.7 / 1266.4
  21522. }
  21523. },
  21524. back: {
  21525. height: math.unit(5 + 9 / 12, "feet"),
  21526. weight: math.unit(190, "lb"),
  21527. name: "Back",
  21528. image: {
  21529. source: "./media/characters/sprisk/back.svg",
  21530. extra: 1247 / 1200,
  21531. bottom: 5.6 / 1253.04
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Tiny",
  21538. height: math.unit(2, "inches")
  21539. },
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(5 + 9 / 12, "feet"),
  21543. default: true
  21544. },
  21545. {
  21546. name: "Mini Macro",
  21547. height: math.unit(18, "feet")
  21548. },
  21549. {
  21550. name: "Macro",
  21551. height: math.unit(100, "feet")
  21552. },
  21553. {
  21554. name: "MACRO",
  21555. height: math.unit(50, "miles")
  21556. },
  21557. {
  21558. name: "M A C R O",
  21559. height: math.unit(300, "miles")
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21565. {
  21566. side: {
  21567. height: math.unit(15.6, "meters"),
  21568. weight: math.unit(700000, "kg"),
  21569. name: "Side",
  21570. image: {
  21571. source: "./media/characters/bunsen/side.svg",
  21572. extra: 1644 / 358
  21573. }
  21574. },
  21575. foot: {
  21576. height: math.unit(1.611 * 1644 / 358, "meter"),
  21577. name: "Foot",
  21578. image: {
  21579. source: "./media/characters/bunsen/foot.svg"
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Small",
  21586. height: math.unit(10, "feet")
  21587. },
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(15.6, "meters"),
  21591. default: true
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21597. {
  21598. front: {
  21599. height: math.unit(4 + 11 / 12, "feet"),
  21600. weight: math.unit(140, "lb"),
  21601. name: "Front",
  21602. image: {
  21603. source: "./media/characters/sesh/front.svg",
  21604. extra: 3420 / 3231,
  21605. bottom: 72 / 3949.5
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(4 + 11 / 12, "feet")
  21613. },
  21614. {
  21615. name: "Grown",
  21616. height: math.unit(15, "feet"),
  21617. default: true
  21618. },
  21619. {
  21620. name: "Macro",
  21621. height: math.unit(1500, "feet")
  21622. },
  21623. {
  21624. name: "Megamacro",
  21625. height: math.unit(30, "miles")
  21626. },
  21627. {
  21628. name: "Continental",
  21629. height: math.unit(3000, "miles")
  21630. },
  21631. {
  21632. name: "Gravity Mass",
  21633. height: math.unit(300000, "miles")
  21634. },
  21635. {
  21636. name: "Planet Buster",
  21637. height: math.unit(30000000, "miles")
  21638. },
  21639. {
  21640. name: "Big",
  21641. height: math.unit(3000000000, "miles")
  21642. },
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21647. {
  21648. front: {
  21649. height: math.unit(9, "feet"),
  21650. weight: math.unit(350, "lb"),
  21651. name: "Front",
  21652. image: {
  21653. source: "./media/characters/pepper/front.svg",
  21654. extra: 1448 / 1312,
  21655. bottom: 9.4 / 1457.88
  21656. }
  21657. },
  21658. back: {
  21659. height: math.unit(9, "feet"),
  21660. weight: math.unit(350, "lb"),
  21661. name: "Back",
  21662. image: {
  21663. source: "./media/characters/pepper/back.svg",
  21664. extra: 1423 / 1300,
  21665. bottom: 4.6 / 1429
  21666. }
  21667. },
  21668. maw: {
  21669. height: math.unit(0.932, "feet"),
  21670. name: "Maw",
  21671. image: {
  21672. source: "./media/characters/pepper/maw.svg"
  21673. }
  21674. },
  21675. },
  21676. [
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(9, "feet"),
  21680. default: true
  21681. },
  21682. ]
  21683. ))
  21684. characterMakers.push(() => makeCharacter(
  21685. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21686. {
  21687. front: {
  21688. height: math.unit(6, "feet"),
  21689. weight: math.unit(150, "lb"),
  21690. name: "Front",
  21691. image: {
  21692. source: "./media/characters/maelstrom/front.svg",
  21693. extra: 2100 / 1883,
  21694. bottom: 94 / 2196.7
  21695. }
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Less Kaiju",
  21701. height: math.unit(200, "feet")
  21702. },
  21703. {
  21704. name: "Kaiju",
  21705. height: math.unit(400, "feet"),
  21706. default: true
  21707. },
  21708. {
  21709. name: "Kaiju-er",
  21710. height: math.unit(600, "feet")
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21716. {
  21717. front: {
  21718. height: math.unit(6 + 5 / 12, "feet"),
  21719. weight: math.unit(180, "lb"),
  21720. name: "Front",
  21721. image: {
  21722. source: "./media/characters/lexir/front.svg",
  21723. extra: 180 / 172,
  21724. bottom: 12 / 192
  21725. }
  21726. },
  21727. back: {
  21728. height: math.unit(6 + 5 / 12, "feet"),
  21729. weight: math.unit(180, "lb"),
  21730. name: "Back",
  21731. image: {
  21732. source: "./media/characters/lexir/back.svg",
  21733. extra: 183.84 / 175.5,
  21734. bottom: 3.1 / 187
  21735. }
  21736. },
  21737. },
  21738. [
  21739. {
  21740. name: "Very Smal",
  21741. height: math.unit(1, "nm")
  21742. },
  21743. {
  21744. name: "Normal",
  21745. height: math.unit(6 + 5 / 12, "feet"),
  21746. default: true
  21747. },
  21748. {
  21749. name: "Macro",
  21750. height: math.unit(1, "mile")
  21751. },
  21752. {
  21753. name: "Megamacro",
  21754. height: math.unit(50, "miles")
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21760. {
  21761. front: {
  21762. height: math.unit(1.5, "meters"),
  21763. weight: math.unit(100, "lb"),
  21764. name: "Front",
  21765. image: {
  21766. source: "./media/characters/maksio/front.svg",
  21767. extra: 1549 / 1531,
  21768. bottom: 123.7 / 1674.5429
  21769. }
  21770. },
  21771. back: {
  21772. height: math.unit(1.5, "meters"),
  21773. weight: math.unit(100, "lb"),
  21774. name: "Back",
  21775. image: {
  21776. source: "./media/characters/maksio/back.svg",
  21777. extra: 1541 / 1509,
  21778. bottom: 97 / 1639
  21779. }
  21780. },
  21781. hand: {
  21782. height: math.unit(0.621, "feet"),
  21783. name: "Hand",
  21784. image: {
  21785. source: "./media/characters/maksio/hand.svg"
  21786. }
  21787. },
  21788. foot: {
  21789. height: math.unit(1.611, "feet"),
  21790. name: "Foot",
  21791. image: {
  21792. source: "./media/characters/maksio/foot.svg"
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Shrunken",
  21799. height: math.unit(10, "cm")
  21800. },
  21801. {
  21802. name: "Normal",
  21803. height: math.unit(150, "cm"),
  21804. default: true
  21805. },
  21806. ]
  21807. ))
  21808. characterMakers.push(() => makeCharacter(
  21809. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21810. {
  21811. front: {
  21812. height: math.unit(100, "feet"),
  21813. name: "Front",
  21814. image: {
  21815. source: "./media/characters/erza-bear/front.svg",
  21816. extra: 2449 / 2390,
  21817. bottom: 46 / 2494
  21818. }
  21819. },
  21820. back: {
  21821. height: math.unit(100, "feet"),
  21822. name: "Back",
  21823. image: {
  21824. source: "./media/characters/erza-bear/back.svg",
  21825. extra: 2489 / 2430,
  21826. bottom: 85.4 / 2480
  21827. }
  21828. },
  21829. tail: {
  21830. height: math.unit(42, "feet"),
  21831. name: "Tail",
  21832. image: {
  21833. source: "./media/characters/erza-bear/tail.svg"
  21834. }
  21835. },
  21836. tongue: {
  21837. height: math.unit(8, "feet"),
  21838. name: "Tongue",
  21839. image: {
  21840. source: "./media/characters/erza-bear/tongue.svg"
  21841. }
  21842. },
  21843. dick: {
  21844. height: math.unit(10.5, "feet"),
  21845. name: "Dick",
  21846. image: {
  21847. source: "./media/characters/erza-bear/dick.svg"
  21848. }
  21849. },
  21850. dickVertical: {
  21851. height: math.unit(16.9, "feet"),
  21852. name: "Dick (Vertical)",
  21853. image: {
  21854. source: "./media/characters/erza-bear/dick-vertical.svg"
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Macro",
  21861. height: math.unit(100, "feet"),
  21862. default: true
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21868. {
  21869. front: {
  21870. height: math.unit(172, "cm"),
  21871. weight: math.unit(73, "kg"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/violet-flor/front.svg",
  21875. extra: 1530 / 1442,
  21876. bottom: 61.9 / 1588.8
  21877. }
  21878. },
  21879. back: {
  21880. height: math.unit(180, "cm"),
  21881. weight: math.unit(73, "kg"),
  21882. name: "Back",
  21883. image: {
  21884. source: "./media/characters/violet-flor/back.svg",
  21885. extra: 1692 / 1630,
  21886. bottom: 20 / 1712
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(172, "cm"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(6, "feet"),
  21903. weight: math.unit(220, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/lynn-rhea/front.svg",
  21907. extra: 310 / 273
  21908. }
  21909. },
  21910. back: {
  21911. height: math.unit(6, "feet"),
  21912. weight: math.unit(220, "lb"),
  21913. name: "Back",
  21914. image: {
  21915. source: "./media/characters/lynn-rhea/back.svg",
  21916. extra: 310 / 273
  21917. }
  21918. },
  21919. dicks: {
  21920. height: math.unit(0.9, "feet"),
  21921. name: "Dicks",
  21922. image: {
  21923. source: "./media/characters/lynn-rhea/dicks.svg"
  21924. }
  21925. },
  21926. slit: {
  21927. height: math.unit(0.4, "feet"),
  21928. name: "Slit",
  21929. image: {
  21930. source: "./media/characters/lynn-rhea/slit.svg"
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Micro",
  21937. height: math.unit(1, "inch")
  21938. },
  21939. {
  21940. name: "Macro",
  21941. height: math.unit(60, "feet"),
  21942. default: true
  21943. },
  21944. {
  21945. name: "Megamacro",
  21946. height: math.unit(2, "miles")
  21947. },
  21948. {
  21949. name: "Gigamacro",
  21950. height: math.unit(3, "earths")
  21951. },
  21952. {
  21953. name: "Galactic",
  21954. height: math.unit(0.8, "galaxies")
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21960. {
  21961. front: {
  21962. height: math.unit(1600, "feet"),
  21963. weight: math.unit(85758785169, "kg"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/valathos/front.svg",
  21967. extra: 1451 / 1339
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Macro",
  21974. height: math.unit(1600, "feet"),
  21975. default: true
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21981. {
  21982. front: {
  21983. height: math.unit(7 + 5 / 12, "feet"),
  21984. weight: math.unit(300, "lb"),
  21985. name: "Front",
  21986. image: {
  21987. source: "./media/characters/azula/front.svg",
  21988. extra: 3208 / 2880,
  21989. bottom: 80.2 / 3277
  21990. }
  21991. },
  21992. back: {
  21993. height: math.unit(7 + 5 / 12, "feet"),
  21994. weight: math.unit(300, "lb"),
  21995. name: "Back",
  21996. image: {
  21997. source: "./media/characters/azula/back.svg",
  21998. extra: 3169 / 2822,
  21999. bottom: 150.6 / 3321
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "Normal",
  22006. height: math.unit(7 + 5 / 12, "feet"),
  22007. default: true
  22008. },
  22009. {
  22010. name: "Big",
  22011. height: math.unit(20, "feet")
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22017. {
  22018. front: {
  22019. height: math.unit(5 + 1 / 12, "feet"),
  22020. weight: math.unit(110, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/rupert/front.svg",
  22024. extra: 1549 / 1495,
  22025. bottom: 54.2 / 1604.4
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(5 + 1 / 12, "feet"),
  22033. default: true
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(8 + 4 / 12, "feet"),
  22042. weight: math.unit(350, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/sheera-castellar/front.svg",
  22046. extra: 1957 / 1894,
  22047. bottom: 26.97 / 1975.017
  22048. }
  22049. },
  22050. side: {
  22051. height: math.unit(8 + 4 / 12, "feet"),
  22052. weight: math.unit(350, "lb"),
  22053. name: "Side",
  22054. image: {
  22055. source: "./media/characters/sheera-castellar/side.svg",
  22056. extra: 1957 / 1894
  22057. }
  22058. },
  22059. back: {
  22060. height: math.unit(8 + 4 / 12, "feet"),
  22061. weight: math.unit(350, "lb"),
  22062. name: "Back",
  22063. image: {
  22064. source: "./media/characters/sheera-castellar/back.svg",
  22065. extra: 1957 / 1894
  22066. }
  22067. },
  22068. angled: {
  22069. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22070. weight: math.unit(350, "lb"),
  22071. name: "Angled",
  22072. image: {
  22073. source: "./media/characters/sheera-castellar/angled.svg",
  22074. extra: 1807 / 1707,
  22075. bottom: 68 / 1875
  22076. }
  22077. },
  22078. genitals: {
  22079. height: math.unit(2.2, "feet"),
  22080. name: "Genitals",
  22081. image: {
  22082. source: "./media/characters/sheera-castellar/genitals.svg"
  22083. }
  22084. },
  22085. },
  22086. [
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(8 + 4 / 12, "feet")
  22090. },
  22091. {
  22092. name: "Macro",
  22093. height: math.unit(150, "feet"),
  22094. default: true
  22095. },
  22096. {
  22097. name: "Macro+",
  22098. height: math.unit(800, "feet")
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(6, "feet"),
  22107. weight: math.unit(150, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/jaipur/front.svg",
  22111. extra: 3860 / 3731,
  22112. bottom: 287 / 4140
  22113. }
  22114. },
  22115. back: {
  22116. height: math.unit(6, "feet"),
  22117. weight: math.unit(150, "lb"),
  22118. name: "Back",
  22119. image: {
  22120. source: "./media/characters/jaipur/back.svg",
  22121. extra: 4060 / 3930,
  22122. bottom: 151 / 4200
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Normal",
  22129. height: math.unit(1.85, "meters"),
  22130. default: true
  22131. },
  22132. {
  22133. name: "Macro",
  22134. height: math.unit(150, "meters")
  22135. },
  22136. {
  22137. name: "Macro+",
  22138. height: math.unit(0.5, "miles")
  22139. },
  22140. {
  22141. name: "Macro++",
  22142. height: math.unit(2.5, "miles")
  22143. },
  22144. {
  22145. name: "Macro+++",
  22146. height: math.unit(12, "miles")
  22147. },
  22148. {
  22149. name: "Macro++++",
  22150. height: math.unit(120, "miles")
  22151. },
  22152. {
  22153. name: "Macro+++++",
  22154. height: math.unit(1200, "miles")
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(6, "feet"),
  22163. weight: math.unit(150, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/sheila-wolf/front.svg",
  22167. extra: 1931 / 1808,
  22168. bottom: 29.5 / 1960
  22169. }
  22170. },
  22171. dick: {
  22172. height: math.unit(1.464, "feet"),
  22173. name: "Dick",
  22174. image: {
  22175. source: "./media/characters/sheila-wolf/dick.svg"
  22176. }
  22177. },
  22178. muzzle: {
  22179. height: math.unit(0.513, "feet"),
  22180. name: "Muzzle",
  22181. image: {
  22182. source: "./media/characters/sheila-wolf/muzzle.svg"
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(70, "feet"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(32, "meters"),
  22199. weight: math.unit(300000, "kg"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/almor/front.svg",
  22203. extra: 1408 / 1322,
  22204. bottom: 94.6 / 1506.5
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Macro",
  22211. height: math.unit(32, "meters"),
  22212. default: true
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(7, "feet"),
  22221. weight: math.unit(200, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/silver/front.svg",
  22225. extra: 472.1 / 450.5,
  22226. bottom: 26.5 / 499.424
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(7, "feet"),
  22234. default: true
  22235. },
  22236. {
  22237. name: "Macro",
  22238. height: math.unit(800, "feet")
  22239. },
  22240. {
  22241. name: "Megamacro",
  22242. height: math.unit(250, "miles")
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22248. {
  22249. front: {
  22250. height: math.unit(6, "feet"),
  22251. weight: math.unit(150, "lb"),
  22252. name: "Front",
  22253. image: {
  22254. source: "./media/characters/pliskin/front.svg",
  22255. extra: 1469 / 1359,
  22256. bottom: 70 / 1540
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Micro",
  22263. height: math.unit(3, "inches")
  22264. },
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(5 + 11 / 12, "feet"),
  22268. default: true
  22269. },
  22270. {
  22271. name: "Macro",
  22272. height: math.unit(120, "feet")
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(6, "feet"),
  22281. weight: math.unit(150, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/sammy/front.svg",
  22285. extra: 1193 / 1089,
  22286. bottom: 30.5 / 1226
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(1700, "feet"),
  22294. default: true
  22295. },
  22296. {
  22297. name: "Examacro",
  22298. height: math.unit(2.5e9, "lightyears")
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(21, "meters"),
  22307. weight: math.unit(12, "tonnes"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/kuru/front.svg",
  22311. extra: 4301 / 3785,
  22312. bottom: 371.3 / 4691
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(21, "meters"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(23, "meters"),
  22329. weight: math.unit(12.2, "tonnes"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/rakka/front.svg",
  22333. extra: 4670 / 4169,
  22334. bottom: 301 / 4968.7
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Macro",
  22341. height: math.unit(23, "meters"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(6, "feet"),
  22351. weight: math.unit(150, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/rhys-feline/front.svg",
  22355. extra: 2488 / 2308,
  22356. bottom: 35.67 / 2519.19
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Really Small",
  22363. height: math.unit(1, "nm")
  22364. },
  22365. {
  22366. name: "Micro",
  22367. height: math.unit(4, "inches")
  22368. },
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(4 + 10 / 12, "feet"),
  22372. default: true
  22373. },
  22374. {
  22375. name: "Macro",
  22376. height: math.unit(100, "feet")
  22377. },
  22378. {
  22379. name: "Megamacto",
  22380. height: math.unit(50, "miles")
  22381. },
  22382. ]
  22383. ))
  22384. characterMakers.push(() => makeCharacter(
  22385. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22386. {
  22387. side: {
  22388. height: math.unit(30, "feet"),
  22389. weight: math.unit(35000, "kg"),
  22390. name: "Side",
  22391. image: {
  22392. source: "./media/characters/alydar/side.svg",
  22393. extra: 234 / 222,
  22394. bottom: 6.5 / 241
  22395. }
  22396. },
  22397. front: {
  22398. height: math.unit(30, "feet"),
  22399. weight: math.unit(35000, "kg"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/alydar/front.svg",
  22403. extra: 223.37 / 210.2,
  22404. bottom: 22.3 / 246.76
  22405. }
  22406. },
  22407. top: {
  22408. height: math.unit(64.54, "feet"),
  22409. weight: math.unit(35000, "kg"),
  22410. name: "Top",
  22411. image: {
  22412. source: "./media/characters/alydar/top.svg"
  22413. }
  22414. },
  22415. anthro: {
  22416. height: math.unit(30, "feet"),
  22417. weight: math.unit(9000, "kg"),
  22418. name: "Anthro",
  22419. image: {
  22420. source: "./media/characters/alydar/anthro.svg",
  22421. extra: 432 / 421,
  22422. bottom: 7.18 / 440
  22423. }
  22424. },
  22425. maw: {
  22426. height: math.unit(11.693, "feet"),
  22427. name: "Maw",
  22428. image: {
  22429. source: "./media/characters/alydar/maw.svg"
  22430. }
  22431. },
  22432. head: {
  22433. height: math.unit(11.693, "feet"),
  22434. name: "Head",
  22435. image: {
  22436. source: "./media/characters/alydar/head.svg"
  22437. }
  22438. },
  22439. headAlt: {
  22440. height: math.unit(12.861, "feet"),
  22441. name: "Head (Alt)",
  22442. image: {
  22443. source: "./media/characters/alydar/head-alt.svg"
  22444. }
  22445. },
  22446. wing: {
  22447. height: math.unit(20.712, "feet"),
  22448. name: "Wing",
  22449. image: {
  22450. source: "./media/characters/alydar/wing.svg"
  22451. }
  22452. },
  22453. wingFeather: {
  22454. height: math.unit(9.662, "feet"),
  22455. name: "Wing Feather",
  22456. image: {
  22457. source: "./media/characters/alydar/wing-feather.svg"
  22458. }
  22459. },
  22460. countourFeather: {
  22461. height: math.unit(4.154, "feet"),
  22462. name: "Contour Feather",
  22463. image: {
  22464. source: "./media/characters/alydar/contour-feather.svg"
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Diplomatic",
  22471. height: math.unit(13, "feet"),
  22472. default: true
  22473. },
  22474. {
  22475. name: "Small",
  22476. height: math.unit(30, "feet")
  22477. },
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(95, "feet"),
  22481. default: true
  22482. },
  22483. {
  22484. name: "Large",
  22485. height: math.unit(285, "feet")
  22486. },
  22487. {
  22488. name: "Incomprehensible",
  22489. height: math.unit(450, "megameters")
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22495. {
  22496. side: {
  22497. height: math.unit(11, "feet"),
  22498. weight: math.unit(1750, "kg"),
  22499. name: "Side",
  22500. image: {
  22501. source: "./media/characters/selicia/side.svg",
  22502. extra: 440 / 396,
  22503. bottom: 24.8 / 465.979
  22504. }
  22505. },
  22506. maw: {
  22507. height: math.unit(4.665, "feet"),
  22508. name: "Maw",
  22509. image: {
  22510. source: "./media/characters/selicia/maw.svg"
  22511. }
  22512. },
  22513. },
  22514. [
  22515. {
  22516. name: "Normal",
  22517. height: math.unit(11, "feet"),
  22518. default: true
  22519. },
  22520. ]
  22521. ))
  22522. characterMakers.push(() => makeCharacter(
  22523. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22524. {
  22525. side: {
  22526. height: math.unit(2 + 6 / 12, "feet"),
  22527. weight: math.unit(30, "lb"),
  22528. name: "Side",
  22529. image: {
  22530. source: "./media/characters/layla/side.svg",
  22531. extra: 244 / 188,
  22532. bottom: 18.2 / 262.1
  22533. }
  22534. },
  22535. back: {
  22536. height: math.unit(2 + 6 / 12, "feet"),
  22537. weight: math.unit(30, "lb"),
  22538. name: "Back",
  22539. image: {
  22540. source: "./media/characters/layla/back.svg",
  22541. extra: 308 / 241.5,
  22542. bottom: 8.9 / 316.8
  22543. }
  22544. },
  22545. cumming: {
  22546. height: math.unit(2 + 6 / 12, "feet"),
  22547. weight: math.unit(30, "lb"),
  22548. name: "Cumming",
  22549. image: {
  22550. source: "./media/characters/layla/cumming.svg",
  22551. extra: 342 / 279,
  22552. bottom: 595 / 938
  22553. }
  22554. },
  22555. dickFlaccid: {
  22556. height: math.unit(2.595, "feet"),
  22557. name: "Flaccid Genitals",
  22558. image: {
  22559. source: "./media/characters/layla/dick-flaccid.svg"
  22560. }
  22561. },
  22562. dickErect: {
  22563. height: math.unit(2.359, "feet"),
  22564. name: "Erect Genitals",
  22565. image: {
  22566. source: "./media/characters/layla/dick-erect.svg"
  22567. }
  22568. },
  22569. },
  22570. [
  22571. {
  22572. name: "Micro",
  22573. height: math.unit(1, "inch")
  22574. },
  22575. {
  22576. name: "Small",
  22577. height: math.unit(1, "foot")
  22578. },
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(2 + 6 / 12, "feet"),
  22582. default: true
  22583. },
  22584. {
  22585. name: "Macro",
  22586. height: math.unit(200, "feet")
  22587. },
  22588. {
  22589. name: "Megamacro",
  22590. height: math.unit(1000, "miles")
  22591. },
  22592. {
  22593. name: "Planetary",
  22594. height: math.unit(8000, "miles")
  22595. },
  22596. {
  22597. name: "True Layla",
  22598. height: math.unit(200000 * 7, "multiverses")
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22604. {
  22605. back: {
  22606. height: math.unit(10.5, "feet"),
  22607. weight: math.unit(800, "lb"),
  22608. name: "Back",
  22609. image: {
  22610. source: "./media/characters/knox/back.svg",
  22611. extra: 1486 / 1089,
  22612. bottom: 107 / 1601.4
  22613. }
  22614. },
  22615. side: {
  22616. height: math.unit(10.5, "feet"),
  22617. weight: math.unit(800, "lb"),
  22618. name: "Side",
  22619. image: {
  22620. source: "./media/characters/knox/side.svg",
  22621. extra: 244 / 218,
  22622. bottom: 14 / 260
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Compact",
  22629. height: math.unit(10.5, "feet"),
  22630. default: true
  22631. },
  22632. {
  22633. name: "Dynamax",
  22634. height: math.unit(210, "feet")
  22635. },
  22636. {
  22637. name: "Full Macro",
  22638. height: math.unit(850, "feet")
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(6, "feet"),
  22647. weight: math.unit(152, "lb"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/shin-pikachu/front.svg",
  22651. extra: 1574 / 1480,
  22652. bottom: 53.3 / 1626
  22653. }
  22654. },
  22655. hand: {
  22656. height: math.unit(1.055, "feet"),
  22657. name: "Hand",
  22658. image: {
  22659. source: "./media/characters/shin-pikachu/hand.svg"
  22660. }
  22661. },
  22662. foot: {
  22663. height: math.unit(1.1, "feet"),
  22664. name: "Foot",
  22665. image: {
  22666. source: "./media/characters/shin-pikachu/foot.svg"
  22667. }
  22668. },
  22669. collar: {
  22670. height: math.unit(0.386, "feet"),
  22671. name: "Collar",
  22672. image: {
  22673. source: "./media/characters/shin-pikachu/collar.svg"
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Smallest",
  22680. height: math.unit(0.5, "inches")
  22681. },
  22682. {
  22683. name: "Micro",
  22684. height: math.unit(6, "inches")
  22685. },
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(6, "feet"),
  22689. default: true
  22690. },
  22691. {
  22692. name: "Macro",
  22693. height: math.unit(150, "feet")
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22699. {
  22700. front: {
  22701. height: math.unit(28, "feet"),
  22702. weight: math.unit(10500, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/kayda/front.svg",
  22706. extra: 1536 / 1428,
  22707. bottom: 68.7 / 1603
  22708. }
  22709. },
  22710. back: {
  22711. height: math.unit(28, "feet"),
  22712. weight: math.unit(10500, "lb"),
  22713. name: "Back",
  22714. image: {
  22715. source: "./media/characters/kayda/back.svg",
  22716. extra: 1557 / 1464,
  22717. bottom: 39.5 / 1597.49
  22718. }
  22719. },
  22720. dick: {
  22721. height: math.unit(3.858, "feet"),
  22722. name: "Dick",
  22723. image: {
  22724. source: "./media/characters/kayda/dick.svg"
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(28, "feet"),
  22732. default: true
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22738. {
  22739. front: {
  22740. height: math.unit(10 + 11 / 12, "feet"),
  22741. weight: math.unit(1400, "lb"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/brian/front.svg",
  22745. extra: 737 / 692,
  22746. bottom: 55.4 / 785
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "Normal",
  22753. height: math.unit(10 + 11 / 12, "feet"),
  22754. default: true
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(5 + 8 / 12, "feet"),
  22763. weight: math.unit(140, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/khemri/front.svg",
  22767. extra: 4780 / 4059,
  22768. bottom: 80.1 / 4859.25
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Micro",
  22775. height: math.unit(6, "inches")
  22776. },
  22777. {
  22778. name: "Normal",
  22779. height: math.unit(5 + 8 / 12, "feet"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22786. {
  22787. front: {
  22788. height: math.unit(13, "feet"),
  22789. weight: math.unit(1700, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/felix-braveheart/front.svg",
  22793. extra: 1222 / 1157,
  22794. bottom: 53.2 / 1280
  22795. }
  22796. },
  22797. back: {
  22798. height: math.unit(13, "feet"),
  22799. weight: math.unit(1700, "lb"),
  22800. name: "Back",
  22801. image: {
  22802. source: "./media/characters/felix-braveheart/back.svg",
  22803. extra: 1277 / 1203,
  22804. bottom: 50.2 / 1327
  22805. }
  22806. },
  22807. feral: {
  22808. height: math.unit(6, "feet"),
  22809. weight: math.unit(400, "lb"),
  22810. name: "Feral",
  22811. image: {
  22812. source: "./media/characters/felix-braveheart/feral.svg",
  22813. extra: 682 / 625,
  22814. bottom: 6.9 / 688
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Normal",
  22821. height: math.unit(13, "feet"),
  22822. default: true
  22823. },
  22824. ]
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22828. {
  22829. side: {
  22830. height: math.unit(5 + 11 / 12, "feet"),
  22831. weight: math.unit(1400, "lb"),
  22832. name: "Side",
  22833. image: {
  22834. source: "./media/characters/shadow-blade/side.svg",
  22835. extra: 1726 / 1267,
  22836. bottom: 58.4 / 1785
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Normal",
  22843. height: math.unit(5 + 11 / 12, "feet"),
  22844. default: true
  22845. },
  22846. ]
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22850. {
  22851. front: {
  22852. height: math.unit(1 + 6 / 12, "feet"),
  22853. weight: math.unit(25, "lb"),
  22854. name: "Front",
  22855. image: {
  22856. source: "./media/characters/karla-halldor/front.svg",
  22857. extra: 1459 / 1383,
  22858. bottom: 12 / 1472
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(1 + 6 / 12, "feet"),
  22866. default: true
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(6 + 2 / 12, "feet"),
  22875. weight: math.unit(160, "lb"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/ariam/front.svg",
  22879. extra: 714 / 617,
  22880. bottom: 23.4 / 737,
  22881. }
  22882. },
  22883. squatting: {
  22884. height: math.unit(4.1, "feet"),
  22885. weight: math.unit(160, "lb"),
  22886. name: "Squatting",
  22887. image: {
  22888. source: "./media/characters/ariam/squatting.svg",
  22889. extra: 2617 / 2112,
  22890. bottom: 61.2 / 2681,
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(6 + 2 / 12, "feet"),
  22898. default: true
  22899. },
  22900. {
  22901. name: "Normal+",
  22902. height: math.unit(4, "meters")
  22903. },
  22904. {
  22905. name: "Macro",
  22906. height: math.unit(50, "meters")
  22907. },
  22908. {
  22909. name: "Macro+",
  22910. height: math.unit(100, "meters")
  22911. },
  22912. {
  22913. name: "Megamacro",
  22914. height: math.unit(20, "km")
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(1.67, "meters"),
  22923. weight: math.unit(140, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22927. extra: 438 / 410,
  22928. bottom: 0.75 / 439
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Shrunken",
  22935. height: math.unit(7.6, "cm")
  22936. },
  22937. {
  22938. name: "Human Scale",
  22939. height: math.unit(1.67, "meters")
  22940. },
  22941. {
  22942. name: "Wolxi Scale",
  22943. height: math.unit(36.7, "meters"),
  22944. default: true
  22945. },
  22946. ]
  22947. ))
  22948. characterMakers.push(() => makeCharacter(
  22949. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22950. {
  22951. front: {
  22952. height: math.unit(1.73, "meters"),
  22953. weight: math.unit(240, "lb"),
  22954. name: "Front",
  22955. image: {
  22956. source: "./media/characters/izue-two-mothers/front.svg",
  22957. extra: 469 / 437,
  22958. bottom: 1.24 / 470.6
  22959. }
  22960. },
  22961. },
  22962. [
  22963. {
  22964. name: "Shrunken",
  22965. height: math.unit(7.86, "cm")
  22966. },
  22967. {
  22968. name: "Human Scale",
  22969. height: math.unit(1.73, "meters")
  22970. },
  22971. {
  22972. name: "Wolxi Scale",
  22973. height: math.unit(38, "meters"),
  22974. default: true
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22980. {
  22981. front: {
  22982. height: math.unit(1.55, "meters"),
  22983. weight: math.unit(120, "lb"),
  22984. name: "Front",
  22985. image: {
  22986. source: "./media/characters/teeku-love-shack/front.svg",
  22987. extra: 387 / 362,
  22988. bottom: 1.51 / 388
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Shrunken",
  22995. height: math.unit(7, "cm")
  22996. },
  22997. {
  22998. name: "Human Scale",
  22999. height: math.unit(1.55, "meters")
  23000. },
  23001. {
  23002. name: "Wolxi Scale",
  23003. height: math.unit(34.1, "meters"),
  23004. default: true
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23010. {
  23011. front: {
  23012. height: math.unit(1.83, "meters"),
  23013. weight: math.unit(135, "lb"),
  23014. name: "Front",
  23015. image: {
  23016. source: "./media/characters/dejma-the-red/front.svg",
  23017. extra: 480 / 458,
  23018. bottom: 1.8 / 482
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Shrunken",
  23025. height: math.unit(8.3, "cm")
  23026. },
  23027. {
  23028. name: "Human Scale",
  23029. height: math.unit(1.83, "meters")
  23030. },
  23031. {
  23032. name: "Wolxi Scale",
  23033. height: math.unit(40, "meters"),
  23034. default: true
  23035. },
  23036. ]
  23037. ))
  23038. characterMakers.push(() => makeCharacter(
  23039. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23040. {
  23041. front: {
  23042. height: math.unit(1.78, "meters"),
  23043. weight: math.unit(65, "kg"),
  23044. name: "Front",
  23045. image: {
  23046. source: "./media/characters/aki/front.svg",
  23047. extra: 452 / 415
  23048. }
  23049. },
  23050. frontNsfw: {
  23051. height: math.unit(1.78, "meters"),
  23052. weight: math.unit(65, "kg"),
  23053. name: "Front (NSFW)",
  23054. image: {
  23055. source: "./media/characters/aki/front-nsfw.svg",
  23056. extra: 452 / 415
  23057. }
  23058. },
  23059. back: {
  23060. height: math.unit(1.78, "meters"),
  23061. weight: math.unit(65, "kg"),
  23062. name: "Back",
  23063. image: {
  23064. source: "./media/characters/aki/back.svg",
  23065. extra: 452 / 415
  23066. }
  23067. },
  23068. rump: {
  23069. height: math.unit(2.05, "feet"),
  23070. name: "Rump",
  23071. image: {
  23072. source: "./media/characters/aki/rump.svg"
  23073. }
  23074. },
  23075. dick: {
  23076. height: math.unit(0.95, "feet"),
  23077. name: "Dick",
  23078. image: {
  23079. source: "./media/characters/aki/dick.svg"
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Micro",
  23086. height: math.unit(15, "cm")
  23087. },
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(178, "cm"),
  23091. default: true
  23092. },
  23093. {
  23094. name: "Macro",
  23095. height: math.unit(214, "m")
  23096. },
  23097. {
  23098. name: "Macro+",
  23099. height: math.unit(534, "m")
  23100. },
  23101. ]
  23102. ))
  23103. characterMakers.push(() => makeCharacter(
  23104. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23105. {
  23106. front: {
  23107. height: math.unit(5 + 5 / 12, "feet"),
  23108. weight: math.unit(120, "lb"),
  23109. name: "Front",
  23110. image: {
  23111. source: "./media/characters/ari/front.svg",
  23112. extra: 714.5 / 682,
  23113. bottom: 8 / 722.5
  23114. }
  23115. },
  23116. },
  23117. [
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(5 + 5 / 12, "feet")
  23121. },
  23122. {
  23123. name: "Macro",
  23124. height: math.unit(100, "feet"),
  23125. default: true
  23126. },
  23127. {
  23128. name: "Megamacro",
  23129. height: math.unit(100, "miles")
  23130. },
  23131. {
  23132. name: "Gigamacro",
  23133. height: math.unit(80000, "miles")
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23139. {
  23140. side: {
  23141. height: math.unit(9, "feet"),
  23142. weight: math.unit(400, "kg"),
  23143. name: "Side",
  23144. image: {
  23145. source: "./media/characters/bolt/side.svg",
  23146. extra: 1126 / 896,
  23147. bottom: 60 / 1187.3,
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Micro",
  23154. height: math.unit(5, "inches")
  23155. },
  23156. {
  23157. name: "Normal",
  23158. height: math.unit(9, "feet"),
  23159. default: true
  23160. },
  23161. {
  23162. name: "Macro",
  23163. height: math.unit(700, "feet")
  23164. },
  23165. {
  23166. name: "Max Size",
  23167. height: math.unit(1.52e22, "yottameters")
  23168. },
  23169. ]
  23170. ))
  23171. characterMakers.push(() => makeCharacter(
  23172. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23173. {
  23174. front: {
  23175. height: math.unit(4.53, "meters"),
  23176. weight: math.unit(3, "tons"),
  23177. name: "Front",
  23178. image: {
  23179. source: "./media/characters/draekon-sylviar/front.svg",
  23180. extra: 1228 / 1068,
  23181. bottom: 41 / 1270
  23182. }
  23183. },
  23184. tail: {
  23185. height: math.unit(1.772, "meter"),
  23186. name: "Tail",
  23187. image: {
  23188. source: "./media/characters/draekon-sylviar/tail.svg"
  23189. }
  23190. },
  23191. head: {
  23192. height: math.unit(1.331, "meter"),
  23193. name: "Head",
  23194. image: {
  23195. source: "./media/characters/draekon-sylviar/head.svg"
  23196. }
  23197. },
  23198. hand: {
  23199. height: math.unit(0.564, "meter"),
  23200. name: "Hand",
  23201. image: {
  23202. source: "./media/characters/draekon-sylviar/hand.svg"
  23203. }
  23204. },
  23205. foot: {
  23206. height: math.unit(0.621, "meter"),
  23207. name: "Foot",
  23208. image: {
  23209. source: "./media/characters/draekon-sylviar/foot.svg",
  23210. bottom: 32 / 324
  23211. }
  23212. },
  23213. dick: {
  23214. height: math.unit(61, "cm"),
  23215. name: "Dick",
  23216. image: {
  23217. source: "./media/characters/draekon-sylviar/dick.svg"
  23218. }
  23219. },
  23220. dickseparated: {
  23221. height: math.unit(61, "cm"),
  23222. name: "Dick-separated",
  23223. image: {
  23224. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23225. }
  23226. },
  23227. },
  23228. [
  23229. {
  23230. name: "Small",
  23231. height: math.unit(4.53 / 2, "meters"),
  23232. default: true
  23233. },
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(4.53, "meters"),
  23237. default: true
  23238. },
  23239. {
  23240. name: "Large",
  23241. height: math.unit(4.53 * 2, "meters"),
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23247. {
  23248. front: {
  23249. height: math.unit(6 + 2 / 12, "feet"),
  23250. weight: math.unit(180, "lb"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/brawler/front.svg",
  23254. extra: 3301 / 3027,
  23255. bottom: 138 / 3439
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(6 + 2 / 12, "feet"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(11, "feet"),
  23272. weight: math.unit(1000, "lb"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/alex/front.svg",
  23276. bottom: 44.5 / 620
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Micro",
  23283. height: math.unit(5, "inches")
  23284. },
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(11, "feet"),
  23288. default: true
  23289. },
  23290. {
  23291. name: "Macro",
  23292. height: math.unit(9.5e9, "feet")
  23293. },
  23294. {
  23295. name: "Max Size",
  23296. height: math.unit(1.4e283, "yottameters")
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23302. {
  23303. female: {
  23304. height: math.unit(29.9, "m"),
  23305. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23306. name: "Female",
  23307. image: {
  23308. source: "./media/characters/zenari/female.svg",
  23309. extra: 3281.6 / 3217,
  23310. bottom: 72.2 / 3353
  23311. }
  23312. },
  23313. male: {
  23314. height: math.unit(27.7, "m"),
  23315. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23316. name: "Male",
  23317. image: {
  23318. source: "./media/characters/zenari/male.svg",
  23319. extra: 3008 / 2991,
  23320. bottom: 54.6 / 3069
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Macro",
  23327. height: math.unit(29.7, "meters"),
  23328. default: true
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23334. {
  23335. female: {
  23336. height: math.unit(23.8, "m"),
  23337. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23338. name: "Female",
  23339. image: {
  23340. source: "./media/characters/mactarian/female.svg",
  23341. extra: 2662 / 2569,
  23342. bottom: 73 / 2736
  23343. }
  23344. },
  23345. male: {
  23346. height: math.unit(23.8, "m"),
  23347. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23348. name: "Male",
  23349. image: {
  23350. source: "./media/characters/mactarian/male.svg",
  23351. extra: 2673 / 2600,
  23352. bottom: 76 / 2750
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Macro",
  23359. height: math.unit(23.8, "meters"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23366. {
  23367. female: {
  23368. height: math.unit(19.3, "m"),
  23369. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23370. name: "Female",
  23371. image: {
  23372. source: "./media/characters/umok/female.svg",
  23373. extra: 2186 / 2078,
  23374. bottom: 87 / 2277
  23375. }
  23376. },
  23377. male: {
  23378. height: math.unit(19.5, "m"),
  23379. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23380. name: "Male",
  23381. image: {
  23382. source: "./media/characters/umok/male.svg",
  23383. extra: 2233 / 2140,
  23384. bottom: 24.4 / 2258
  23385. }
  23386. },
  23387. },
  23388. [
  23389. {
  23390. name: "Macro",
  23391. height: math.unit(19.3, "meters"),
  23392. default: true
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23398. {
  23399. female: {
  23400. height: math.unit(26.15, "m"),
  23401. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23402. name: "Female",
  23403. image: {
  23404. source: "./media/characters/joraxian/female.svg",
  23405. extra: 2912 / 2824,
  23406. bottom: 36 / 2956
  23407. }
  23408. },
  23409. male: {
  23410. height: math.unit(25.4, "m"),
  23411. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23412. name: "Male",
  23413. image: {
  23414. source: "./media/characters/joraxian/male.svg",
  23415. extra: 2877 / 2721,
  23416. bottom: 82 / 2967
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Macro",
  23423. height: math.unit(26.15, "meters"),
  23424. default: true
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23430. {
  23431. female: {
  23432. height: math.unit(21.6, "m"),
  23433. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23434. name: "Female",
  23435. image: {
  23436. source: "./media/characters/sthara/female.svg",
  23437. extra: 2516 / 2347,
  23438. bottom: 21.5 / 2537
  23439. }
  23440. },
  23441. male: {
  23442. height: math.unit(24, "m"),
  23443. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23444. name: "Male",
  23445. image: {
  23446. source: "./media/characters/sthara/male.svg",
  23447. extra: 2732 / 2607,
  23448. bottom: 23 / 2732
  23449. }
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Macro",
  23455. height: math.unit(21.6, "meters"),
  23456. default: true
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23462. {
  23463. front: {
  23464. height: math.unit(6 + 4 / 12, "feet"),
  23465. weight: math.unit(175, "lb"),
  23466. name: "Front",
  23467. image: {
  23468. source: "./media/characters/luka-bryzant/front.svg",
  23469. extra: 311 / 289,
  23470. bottom: 4 / 315
  23471. }
  23472. },
  23473. back: {
  23474. height: math.unit(6 + 4 / 12, "feet"),
  23475. weight: math.unit(175, "lb"),
  23476. name: "Back",
  23477. image: {
  23478. source: "./media/characters/luka-bryzant/back.svg",
  23479. extra: 311 / 289,
  23480. bottom: 3.8 / 313.7
  23481. }
  23482. },
  23483. },
  23484. [
  23485. {
  23486. name: "Micro",
  23487. height: math.unit(10, "inches")
  23488. },
  23489. {
  23490. name: "Normal",
  23491. height: math.unit(6 + 4 / 12, "feet"),
  23492. default: true
  23493. },
  23494. {
  23495. name: "Large",
  23496. height: math.unit(12, "feet")
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(5 + 7 / 12, "feet"),
  23505. weight: math.unit(185, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/aman-aquila/front.svg",
  23509. extra: 1013 / 976,
  23510. bottom: 45.6 / 1057
  23511. }
  23512. },
  23513. side: {
  23514. height: math.unit(5 + 7 / 12, "feet"),
  23515. weight: math.unit(185, "lb"),
  23516. name: "Side",
  23517. image: {
  23518. source: "./media/characters/aman-aquila/side.svg",
  23519. extra: 1054 / 1011,
  23520. bottom: 15 / 1070
  23521. }
  23522. },
  23523. back: {
  23524. height: math.unit(5 + 7 / 12, "feet"),
  23525. weight: math.unit(185, "lb"),
  23526. name: "Back",
  23527. image: {
  23528. source: "./media/characters/aman-aquila/back.svg",
  23529. extra: 1026 / 970,
  23530. bottom: 12 / 1039
  23531. }
  23532. },
  23533. head: {
  23534. height: math.unit(1.211, "feet"),
  23535. name: "Head",
  23536. image: {
  23537. source: "./media/characters/aman-aquila/head.svg",
  23538. }
  23539. },
  23540. },
  23541. [
  23542. {
  23543. name: "Minimicro",
  23544. height: math.unit(0.057, "inches")
  23545. },
  23546. {
  23547. name: "Micro",
  23548. height: math.unit(7, "inches")
  23549. },
  23550. {
  23551. name: "Mini",
  23552. height: math.unit(3 + 7 / 12, "feet")
  23553. },
  23554. {
  23555. name: "Normal",
  23556. height: math.unit(5 + 7 / 12, "feet"),
  23557. default: true
  23558. },
  23559. {
  23560. name: "Macro",
  23561. height: math.unit(157 + 7 / 12, "feet")
  23562. },
  23563. {
  23564. name: "Megamacro",
  23565. height: math.unit(1557 + 7 / 12, "feet")
  23566. },
  23567. {
  23568. name: "Gigamacro",
  23569. height: math.unit(15557 + 7 / 12, "feet")
  23570. },
  23571. ]
  23572. ))
  23573. characterMakers.push(() => makeCharacter(
  23574. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23575. {
  23576. front: {
  23577. height: math.unit(3 + 2 / 12, "inches"),
  23578. weight: math.unit(0.3, "ounces"),
  23579. name: "Front",
  23580. image: {
  23581. source: "./media/characters/hiphae/front.svg",
  23582. extra: 1931 / 1683,
  23583. bottom: 24 / 1955
  23584. }
  23585. },
  23586. },
  23587. [
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(3 + 1 / 2, "inches"),
  23591. default: true
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(5 + 10 / 12, "feet"),
  23600. weight: math.unit(165, "lb"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/nicky/front.svg",
  23604. extra: 3144 / 2886,
  23605. bottom: 45.6 / 3192
  23606. }
  23607. },
  23608. back: {
  23609. height: math.unit(5 + 10 / 12, "feet"),
  23610. weight: math.unit(165, "lb"),
  23611. name: "Back",
  23612. image: {
  23613. source: "./media/characters/nicky/back.svg",
  23614. extra: 3055 / 2804,
  23615. bottom: 28.4 / 3087
  23616. }
  23617. },
  23618. frontclothed: {
  23619. height: math.unit(5 + 10 / 12, "feet"),
  23620. weight: math.unit(165, "lb"),
  23621. name: "Front-clothed",
  23622. image: {
  23623. source: "./media/characters/nicky/front-clothed.svg",
  23624. extra: 3184.9 / 2926.9,
  23625. bottom: 86.5 / 3239.9
  23626. }
  23627. },
  23628. foot: {
  23629. height: math.unit(1.16, "feet"),
  23630. name: "Foot",
  23631. image: {
  23632. source: "./media/characters/nicky/foot.svg"
  23633. }
  23634. },
  23635. feet: {
  23636. height: math.unit(1.34, "feet"),
  23637. name: "Feet",
  23638. image: {
  23639. source: "./media/characters/nicky/feet.svg"
  23640. }
  23641. },
  23642. maw: {
  23643. height: math.unit(0.9, "feet"),
  23644. name: "Maw",
  23645. image: {
  23646. source: "./media/characters/nicky/maw.svg"
  23647. }
  23648. },
  23649. },
  23650. [
  23651. {
  23652. name: "Normal",
  23653. height: math.unit(5 + 10 / 12, "feet"),
  23654. default: true
  23655. },
  23656. {
  23657. name: "Macro",
  23658. height: math.unit(60, "feet")
  23659. },
  23660. {
  23661. name: "Megamacro",
  23662. height: math.unit(1, "mile")
  23663. },
  23664. ]
  23665. ))
  23666. characterMakers.push(() => makeCharacter(
  23667. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23668. {
  23669. side: {
  23670. height: math.unit(10, "feet"),
  23671. weight: math.unit(600, "lb"),
  23672. name: "Side",
  23673. image: {
  23674. source: "./media/characters/blair/side.svg",
  23675. bottom: 16.6 / 475,
  23676. extra: 458 / 431
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Micro",
  23683. height: math.unit(8, "inches")
  23684. },
  23685. {
  23686. name: "Normal",
  23687. height: math.unit(10, "feet"),
  23688. default: true
  23689. },
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(180, "feet")
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23698. {
  23699. front: {
  23700. height: math.unit(5 + 4 / 12, "feet"),
  23701. weight: math.unit(125, "lb"),
  23702. name: "Front",
  23703. image: {
  23704. source: "./media/characters/fisher/front.svg",
  23705. extra: 444 / 390,
  23706. bottom: 2 / 444.8
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Micro",
  23713. height: math.unit(4, "inches")
  23714. },
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(5 + 4 / 12, "feet"),
  23718. default: true
  23719. },
  23720. {
  23721. name: "Macro",
  23722. height: math.unit(100, "feet")
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23728. {
  23729. front: {
  23730. height: math.unit(6.71, "feet"),
  23731. weight: math.unit(200, "lb"),
  23732. capacity: math.unit(1000000, "people"),
  23733. name: "Front",
  23734. image: {
  23735. source: "./media/characters/gliss/front.svg",
  23736. extra: 2347 / 2231,
  23737. bottom: 113 / 2462
  23738. }
  23739. },
  23740. hammerspaceSize: {
  23741. height: math.unit(6.71 * 717, "feet"),
  23742. weight: math.unit(200, "lb"),
  23743. capacity: math.unit(1000000, "people"),
  23744. name: "Hammerspace Size",
  23745. image: {
  23746. source: "./media/characters/gliss/front.svg",
  23747. extra: 2347 / 2231,
  23748. bottom: 113 / 2462
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(6.71, "feet"),
  23756. default: true
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23762. {
  23763. side: {
  23764. height: math.unit(1.44, "m"),
  23765. weight: math.unit(80, "kg"),
  23766. name: "Side",
  23767. image: {
  23768. source: "./media/characters/dune-anderson/side.svg",
  23769. bottom: 49 / 1426
  23770. }
  23771. },
  23772. },
  23773. [
  23774. {
  23775. name: "Wolf-sized",
  23776. height: math.unit(1.44, "meters")
  23777. },
  23778. {
  23779. name: "Normal",
  23780. height: math.unit(5.05, "meters"),
  23781. default: true
  23782. },
  23783. {
  23784. name: "Big",
  23785. height: math.unit(14.4, "meters")
  23786. },
  23787. {
  23788. name: "Huge",
  23789. height: math.unit(144, "meters")
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23795. {
  23796. front: {
  23797. height: math.unit(7, "feet"),
  23798. weight: math.unit(425, "lb"),
  23799. name: "Front",
  23800. image: {
  23801. source: "./media/characters/hind/front.svg",
  23802. extra: 2091 / 1860,
  23803. bottom: 129 / 2220
  23804. }
  23805. },
  23806. back: {
  23807. height: math.unit(7, "feet"),
  23808. weight: math.unit(425, "lb"),
  23809. name: "Back",
  23810. image: {
  23811. source: "./media/characters/hind/back.svg",
  23812. extra: 2091 / 1860,
  23813. bottom: 24.6 / 2309
  23814. }
  23815. },
  23816. tail: {
  23817. height: math.unit(2.8, "feet"),
  23818. name: "Tail",
  23819. image: {
  23820. source: "./media/characters/hind/tail.svg"
  23821. }
  23822. },
  23823. head: {
  23824. height: math.unit(2.55, "feet"),
  23825. name: "Head",
  23826. image: {
  23827. source: "./media/characters/hind/head.svg"
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "XS",
  23834. height: math.unit(0.7, "feet")
  23835. },
  23836. {
  23837. name: "Normal",
  23838. height: math.unit(7, "feet"),
  23839. default: true
  23840. },
  23841. {
  23842. name: "XL",
  23843. height: math.unit(70, "feet")
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23849. {
  23850. front: {
  23851. height: math.unit(6, "feet"),
  23852. weight: math.unit(150, "lb"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/dylan-skaven/front.svg",
  23856. extra: 2318 / 2063,
  23857. bottom: 93.4 / 2410
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Nano",
  23864. height: math.unit(1, "mm")
  23865. },
  23866. {
  23867. name: "Micro",
  23868. height: math.unit(1, "cm")
  23869. },
  23870. {
  23871. name: "Normal",
  23872. height: math.unit(2.1, "meters"),
  23873. default: true
  23874. },
  23875. ]
  23876. ))
  23877. characterMakers.push(() => makeCharacter(
  23878. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23879. {
  23880. front: {
  23881. height: math.unit(7 + 5 / 12, "feet"),
  23882. weight: math.unit(357, "lb"),
  23883. name: "Front",
  23884. image: {
  23885. source: "./media/characters/solex-draconov/front.svg",
  23886. extra: 1993 / 1865,
  23887. bottom: 117 / 2111
  23888. }
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Natural Height",
  23894. height: math.unit(7 + 5 / 12, "feet"),
  23895. default: true
  23896. },
  23897. {
  23898. name: "Macro",
  23899. height: math.unit(350, "feet")
  23900. },
  23901. {
  23902. name: "Macro+",
  23903. height: math.unit(1000, "feet")
  23904. },
  23905. {
  23906. name: "Megamacro",
  23907. height: math.unit(20, "km")
  23908. },
  23909. {
  23910. name: "Megamacro+",
  23911. height: math.unit(1000, "km")
  23912. },
  23913. {
  23914. name: "Gigamacro",
  23915. height: math.unit(2.5, "Gm")
  23916. },
  23917. {
  23918. name: "Teramacro",
  23919. height: math.unit(15, "Tm")
  23920. },
  23921. {
  23922. name: "Galactic",
  23923. height: math.unit(30, "Zm")
  23924. },
  23925. {
  23926. name: "Universal",
  23927. height: math.unit(21000, "Ym")
  23928. },
  23929. {
  23930. name: "Omniversal",
  23931. height: math.unit(9.861e50, "Ym")
  23932. },
  23933. {
  23934. name: "Existential",
  23935. height: math.unit(1e300, "meters")
  23936. },
  23937. ]
  23938. ))
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23941. {
  23942. side: {
  23943. height: math.unit(25, "feet"),
  23944. weight: math.unit(90000, "lb"),
  23945. name: "Side",
  23946. image: {
  23947. source: "./media/characters/mandarax/side.svg",
  23948. extra: 614 / 332,
  23949. bottom: 55 / 630
  23950. }
  23951. },
  23952. head: {
  23953. height: math.unit(11.4, "feet"),
  23954. name: "Head",
  23955. image: {
  23956. source: "./media/characters/mandarax/head.svg"
  23957. }
  23958. },
  23959. belly: {
  23960. height: math.unit(33, "feet"),
  23961. name: "Belly",
  23962. capacity: math.unit(500, "people"),
  23963. image: {
  23964. source: "./media/characters/mandarax/belly.svg"
  23965. }
  23966. },
  23967. dick: {
  23968. height: math.unit(8.46, "feet"),
  23969. name: "Dick",
  23970. image: {
  23971. source: "./media/characters/mandarax/dick.svg"
  23972. }
  23973. },
  23974. top: {
  23975. height: math.unit(28, "meters"),
  23976. name: "Top",
  23977. image: {
  23978. source: "./media/characters/mandarax/top.svg"
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Normal",
  23985. height: math.unit(25, "feet"),
  23986. default: true
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23992. {
  23993. front: {
  23994. height: math.unit(5, "feet"),
  23995. weight: math.unit(90, "lb"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/pixil/front.svg",
  23999. extra: 2000 / 1618,
  24000. bottom: 12.3 / 2011
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Normal",
  24007. height: math.unit(5, "feet"),
  24008. default: true
  24009. },
  24010. {
  24011. name: "Megamacro",
  24012. height: math.unit(10, "miles"),
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(7 + 2 / 12, "feet"),
  24021. weight: math.unit(200, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/angel/front.svg",
  24025. extra: 1830 / 1737,
  24026. bottom: 22.6 / 1854,
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(7 + 2 / 12, "feet"),
  24034. default: true
  24035. },
  24036. {
  24037. name: "Macro",
  24038. height: math.unit(1000, "feet")
  24039. },
  24040. {
  24041. name: "Megamacro",
  24042. height: math.unit(2, "miles")
  24043. },
  24044. {
  24045. name: "Gigamacro",
  24046. height: math.unit(20, "earths")
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(5, "feet"),
  24055. weight: math.unit(180, "lb"),
  24056. name: "Front",
  24057. image: {
  24058. source: "./media/characters/mekana/front.svg",
  24059. extra: 1671 / 1605,
  24060. bottom: 3.5 / 1691
  24061. }
  24062. },
  24063. side: {
  24064. height: math.unit(5, "feet"),
  24065. weight: math.unit(180, "lb"),
  24066. name: "Side",
  24067. image: {
  24068. source: "./media/characters/mekana/side.svg",
  24069. extra: 1671 / 1605,
  24070. bottom: 3.5 / 1691
  24071. }
  24072. },
  24073. back: {
  24074. height: math.unit(5, "feet"),
  24075. weight: math.unit(180, "lb"),
  24076. name: "Back",
  24077. image: {
  24078. source: "./media/characters/mekana/back.svg",
  24079. extra: 1671 / 1605,
  24080. bottom: 3.5 / 1691
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Normal",
  24087. height: math.unit(5, "feet"),
  24088. default: true
  24089. },
  24090. ]
  24091. ))
  24092. characterMakers.push(() => makeCharacter(
  24093. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24094. {
  24095. front: {
  24096. height: math.unit(4 + 6 / 12, "feet"),
  24097. weight: math.unit(80, "lb"),
  24098. name: "Front",
  24099. image: {
  24100. source: "./media/characters/pixie/front.svg",
  24101. extra: 1924 / 1825,
  24102. bottom: 22.4 / 1946
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(4 + 6 / 12, "feet"),
  24110. default: true
  24111. },
  24112. {
  24113. name: "Macro",
  24114. height: math.unit(40, "feet")
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24120. {
  24121. front: {
  24122. height: math.unit(2.1, "meters"),
  24123. weight: math.unit(200, "lb"),
  24124. name: "Front",
  24125. image: {
  24126. source: "./media/characters/the-lascivious/front.svg",
  24127. extra: 1 / 0.893,
  24128. bottom: 3.5 / 573.7
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Human Scale",
  24135. height: math.unit(2.1, "meters")
  24136. },
  24137. {
  24138. name: "Wolxi Scale",
  24139. height: math.unit(46.2, "m"),
  24140. default: true
  24141. },
  24142. {
  24143. name: "Boinker of Buildings",
  24144. height: math.unit(10, "km")
  24145. },
  24146. {
  24147. name: "Shagger of Skyscrapers",
  24148. height: math.unit(40, "km")
  24149. },
  24150. {
  24151. name: "Banger of Boroughs",
  24152. height: math.unit(4000, "km")
  24153. },
  24154. {
  24155. name: "Screwer of States",
  24156. height: math.unit(100000, "km")
  24157. },
  24158. {
  24159. name: "Pounder of Planets",
  24160. height: math.unit(2000000, "km")
  24161. },
  24162. ]
  24163. ))
  24164. characterMakers.push(() => makeCharacter(
  24165. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24166. {
  24167. front: {
  24168. height: math.unit(6, "feet"),
  24169. weight: math.unit(150, "lb"),
  24170. name: "Front",
  24171. image: {
  24172. source: "./media/characters/aj/front.svg",
  24173. extra: 2039 / 1562,
  24174. bottom: 40 / 2079
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Normal",
  24181. height: math.unit(11 + 6 / 12, "feet"),
  24182. default: true
  24183. },
  24184. {
  24185. name: "Megamacro",
  24186. height: math.unit(60, "megameters")
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24192. {
  24193. side: {
  24194. height: math.unit(31 + 8/12, "feet"),
  24195. weight: math.unit(75000, "kg"),
  24196. name: "Side",
  24197. image: {
  24198. source: "./media/characters/koros/side.svg",
  24199. extra: 1442/1297,
  24200. bottom: 122.7/1562
  24201. }
  24202. },
  24203. dicksKingsCrown: {
  24204. height: math.unit(6, "feet"),
  24205. name: "Dicks (King's Crown)",
  24206. image: {
  24207. source: "./media/characters/koros/dicks-kings-crown.svg"
  24208. }
  24209. },
  24210. dicksTailSet: {
  24211. height: math.unit(3, "feet"),
  24212. name: "Dicks (Tail Set)",
  24213. image: {
  24214. source: "./media/characters/koros/dicks-tail-set.svg"
  24215. }
  24216. },
  24217. dickCumming: {
  24218. height: math.unit(7.98, "feet"),
  24219. name: "Dick (Cumming)",
  24220. image: {
  24221. source: "./media/characters/koros/dick-cumming.svg"
  24222. }
  24223. },
  24224. dicksBack: {
  24225. height: math.unit(5.9, "feet"),
  24226. name: "Dicks (Back)",
  24227. image: {
  24228. source: "./media/characters/koros/dicks-back.svg"
  24229. }
  24230. },
  24231. dicksFront: {
  24232. height: math.unit(3.72, "feet"),
  24233. name: "Dicks (Front)",
  24234. image: {
  24235. source: "./media/characters/koros/dicks-front.svg"
  24236. }
  24237. },
  24238. dicksPeeking: {
  24239. height: math.unit(3.0, "feet"),
  24240. name: "Dicks (Peeking)",
  24241. image: {
  24242. source: "./media/characters/koros/dicks-peeking.svg"
  24243. }
  24244. },
  24245. eye: {
  24246. height: math.unit(1.7, "feet"),
  24247. name: "Eye",
  24248. image: {
  24249. source: "./media/characters/koros/eye.svg"
  24250. }
  24251. },
  24252. headFront: {
  24253. height: math.unit(11.69, "feet"),
  24254. name: "Head (Front)",
  24255. image: {
  24256. source: "./media/characters/koros/head-front.svg"
  24257. }
  24258. },
  24259. headSide: {
  24260. height: math.unit(14, "feet"),
  24261. name: "Head (Side)",
  24262. image: {
  24263. source: "./media/characters/koros/head-side.svg"
  24264. }
  24265. },
  24266. leg: {
  24267. height: math.unit(17, "feet"),
  24268. name: "Leg",
  24269. image: {
  24270. source: "./media/characters/koros/leg.svg"
  24271. }
  24272. },
  24273. mawSide: {
  24274. height: math.unit(12.8, "feet"),
  24275. name: "Maw (Side)",
  24276. image: {
  24277. source: "./media/characters/koros/maw-side.svg"
  24278. }
  24279. },
  24280. mawSpitting: {
  24281. height: math.unit(17, "feet"),
  24282. name: "Maw (Spitting)",
  24283. image: {
  24284. source: "./media/characters/koros/maw-spitting.svg"
  24285. }
  24286. },
  24287. slit: {
  24288. height: math.unit(2.8, "feet"),
  24289. name: "Slit",
  24290. image: {
  24291. source: "./media/characters/koros/slit.svg"
  24292. }
  24293. },
  24294. stomach: {
  24295. height: math.unit(6.8, "feet"),
  24296. capacity: math.unit(20, "people"),
  24297. name: "Stomach",
  24298. image: {
  24299. source: "./media/characters/koros/stomach.svg"
  24300. }
  24301. },
  24302. wingspanBottom: {
  24303. height: math.unit(114, "feet"),
  24304. name: "Wingspan (Bottom)",
  24305. image: {
  24306. source: "./media/characters/koros/wingspan-bottom.svg"
  24307. }
  24308. },
  24309. wingspanTop: {
  24310. height: math.unit(104, "feet"),
  24311. name: "Wingspan (Top)",
  24312. image: {
  24313. source: "./media/characters/koros/wingspan-top.svg"
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(31 + 8/12, "feet"),
  24321. default: true
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(18 + 5/12, "feet"),
  24330. weight: math.unit(3750, "kg"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/vexx/front.svg",
  24334. extra: 426/396,
  24335. bottom: 31.5/458
  24336. }
  24337. },
  24338. maw: {
  24339. height: math.unit(6, "feet"),
  24340. name: "Maw",
  24341. image: {
  24342. source: "./media/characters/vexx/maw.svg"
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Normal",
  24349. height: math.unit(18 + 5/12, "feet"),
  24350. default: true
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(17 + 6/12, "feet"),
  24359. weight: math.unit(150, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/baadra/front.svg",
  24363. extra: 3137/2890,
  24364. bottom: 168.4/3305
  24365. }
  24366. },
  24367. back: {
  24368. height: math.unit(17 + 6/12, "feet"),
  24369. weight: math.unit(150, "lb"),
  24370. name: "Back",
  24371. image: {
  24372. source: "./media/characters/baadra/back.svg",
  24373. extra: 3142/2890,
  24374. bottom: 220/3371
  24375. }
  24376. },
  24377. head: {
  24378. height: math.unit(5.45, "feet"),
  24379. name: "Head",
  24380. image: {
  24381. source: "./media/characters/baadra/head.svg"
  24382. }
  24383. },
  24384. headAngry: {
  24385. height: math.unit(4.95, "feet"),
  24386. name: "Head (Angry)",
  24387. image: {
  24388. source: "./media/characters/baadra/head-angry.svg"
  24389. }
  24390. },
  24391. headOpen: {
  24392. height: math.unit(6, "feet"),
  24393. name: "Head (Open)",
  24394. image: {
  24395. source: "./media/characters/baadra/head-open.svg"
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(17 + 6/12, "feet"),
  24403. default: true
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24409. {
  24410. front: {
  24411. height: math.unit(7 + 3/12, "feet"),
  24412. weight: math.unit(180, "lb"),
  24413. name: "Front",
  24414. image: {
  24415. source: "./media/characters/juri/front.svg",
  24416. extra: 1401/1237,
  24417. bottom: 18.5/1418
  24418. }
  24419. },
  24420. side: {
  24421. height: math.unit(7 + 3/12, "feet"),
  24422. weight: math.unit(180, "lb"),
  24423. name: "Side",
  24424. image: {
  24425. source: "./media/characters/juri/side.svg",
  24426. extra: 1424/1242,
  24427. bottom: 18.5/1447
  24428. }
  24429. },
  24430. sitting: {
  24431. height: math.unit(6, "feet"),
  24432. weight: math.unit(180, "lb"),
  24433. name: "Sitting",
  24434. image: {
  24435. source: "./media/characters/juri/sitting.svg",
  24436. extra: 1270/1143,
  24437. bottom: 100/1343
  24438. }
  24439. },
  24440. back: {
  24441. height: math.unit(7 + 3/12, "feet"),
  24442. weight: math.unit(180, "lb"),
  24443. name: "Back",
  24444. image: {
  24445. source: "./media/characters/juri/back.svg",
  24446. extra: 1377/1240,
  24447. bottom: 23.7/1405
  24448. }
  24449. },
  24450. maw: {
  24451. height: math.unit(2.8, "feet"),
  24452. name: "Maw",
  24453. image: {
  24454. source: "./media/characters/juri/maw.svg"
  24455. }
  24456. },
  24457. stomach: {
  24458. height: math.unit(0.89, "feet"),
  24459. capacity: math.unit(4, "liters"),
  24460. name: "Stomach",
  24461. image: {
  24462. source: "./media/characters/juri/stomach.svg"
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(7 + 3/12, "feet"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24476. {
  24477. fox: {
  24478. height: math.unit(5 + 6/12, "feet"),
  24479. weight: math.unit(140, "lb"),
  24480. name: "Fox",
  24481. image: {
  24482. source: "./media/characters/maxene-sita/fox.svg",
  24483. extra: 146/138,
  24484. bottom: 2.1/148.19
  24485. }
  24486. },
  24487. kitsune: {
  24488. height: math.unit(10, "feet"),
  24489. weight: math.unit(800, "lb"),
  24490. name: "Kitsune",
  24491. image: {
  24492. source: "./media/characters/maxene-sita/kitsune.svg",
  24493. extra: 185/176,
  24494. bottom: 4.7/189.9
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Normal",
  24501. height: math.unit(5 + 6/12, "feet"),
  24502. default: true
  24503. },
  24504. ]
  24505. ))
  24506. characterMakers.push(() => makeCharacter(
  24507. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24508. {
  24509. front: {
  24510. height: math.unit(3 + 4/12, "feet"),
  24511. weight: math.unit(70, "lb"),
  24512. name: "Front",
  24513. image: {
  24514. source: "./media/characters/maia/front.svg",
  24515. extra: 227/219.5,
  24516. bottom: 40 / 267
  24517. }
  24518. },
  24519. back: {
  24520. height: math.unit(3 + 4/12, "feet"),
  24521. weight: math.unit(70, "lb"),
  24522. name: "Back",
  24523. image: {
  24524. source: "./media/characters/maia/back.svg",
  24525. extra: 237/225
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(3 + 4/12, "feet"),
  24533. default: true
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24539. {
  24540. front: {
  24541. height: math.unit(5 + 10/12, "feet"),
  24542. weight: math.unit(197, "lb"),
  24543. name: "Front",
  24544. image: {
  24545. source: "./media/characters/jabaro/front.svg",
  24546. extra: 225/216,
  24547. bottom: 5.06/230
  24548. }
  24549. },
  24550. back: {
  24551. height: math.unit(5 + 10/12, "feet"),
  24552. weight: math.unit(197, "lb"),
  24553. name: "Back",
  24554. image: {
  24555. source: "./media/characters/jabaro/back.svg",
  24556. extra: 225/219,
  24557. bottom: 1.9/227
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(5 + 10/12, "feet"),
  24565. default: true
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24571. {
  24572. front: {
  24573. height: math.unit(5 + 8/12, "feet"),
  24574. weight: math.unit(139, "lb"),
  24575. name: "Front",
  24576. image: {
  24577. source: "./media/characters/risa/front.svg",
  24578. extra: 270/260,
  24579. bottom: 11.2/282
  24580. }
  24581. },
  24582. back: {
  24583. height: math.unit(5 + 8/12, "feet"),
  24584. weight: math.unit(139, "lb"),
  24585. name: "Back",
  24586. image: {
  24587. source: "./media/characters/risa/back.svg",
  24588. extra: 264/255,
  24589. bottom: 4/268
  24590. }
  24591. },
  24592. },
  24593. [
  24594. {
  24595. name: "Normal",
  24596. height: math.unit(5 + 8/12, "feet"),
  24597. default: true
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24603. {
  24604. front: {
  24605. height: math.unit(2 + 11/12, "feet"),
  24606. weight: math.unit(30, "lb"),
  24607. name: "Front",
  24608. image: {
  24609. source: "./media/characters/weatley/front.svg",
  24610. bottom: 10.7/414,
  24611. extra: 403.5/362
  24612. }
  24613. },
  24614. back: {
  24615. height: math.unit(2 + 11/12, "feet"),
  24616. weight: math.unit(30, "lb"),
  24617. name: "Back",
  24618. image: {
  24619. source: "./media/characters/weatley/back.svg",
  24620. bottom: 10.7/414,
  24621. extra: 403.5/362
  24622. }
  24623. },
  24624. },
  24625. [
  24626. {
  24627. name: "Normal",
  24628. height: math.unit(2 + 11/12, "feet"),
  24629. default: true
  24630. },
  24631. ]
  24632. ))
  24633. characterMakers.push(() => makeCharacter(
  24634. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24635. {
  24636. front: {
  24637. height: math.unit(5 + 2/12, "feet"),
  24638. weight: math.unit(50, "kg"),
  24639. name: "Front",
  24640. image: {
  24641. source: "./media/characters/mercury-crescent/front.svg",
  24642. extra: 1088/1033,
  24643. bottom: 18.9/1109
  24644. }
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Normal",
  24650. height: math.unit(5 + 2/12, "feet"),
  24651. default: true
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24657. {
  24658. front: {
  24659. height: math.unit(2, "feet"),
  24660. weight: math.unit(15, "kg"),
  24661. name: "Front",
  24662. image: {
  24663. source: "./media/characters/diamond-jones/front.svg",
  24664. bottom: 16/568
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Normal",
  24671. height: math.unit(2, "feet"),
  24672. default: true
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24678. {
  24679. front: {
  24680. height: math.unit(3, "feet"),
  24681. weight: math.unit(30, "kg"),
  24682. name: "Front",
  24683. image: {
  24684. source: "./media/characters/sweet-bit/front.svg",
  24685. extra: 675/567,
  24686. bottom: 27.7/703
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Normal",
  24693. height: math.unit(3, "feet"),
  24694. default: true
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24700. {
  24701. side: {
  24702. height: math.unit(9.178, "feet"),
  24703. weight: math.unit(500, "lb"),
  24704. name: "Side",
  24705. image: {
  24706. source: "./media/characters/umbrazen/side.svg",
  24707. extra: 1730/1473,
  24708. bottom: 34.6/1765
  24709. }
  24710. },
  24711. },
  24712. [
  24713. {
  24714. name: "Normal",
  24715. height: math.unit(9.178, "feet"),
  24716. default: true
  24717. },
  24718. ]
  24719. ))
  24720. characterMakers.push(() => makeCharacter(
  24721. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24722. {
  24723. front: {
  24724. height: math.unit(10, "feet"),
  24725. weight: math.unit(750, "lb"),
  24726. name: "Front",
  24727. image: {
  24728. source: "./media/characters/arlist/front.svg",
  24729. extra: 961/778,
  24730. bottom: 6.2/986
  24731. }
  24732. },
  24733. },
  24734. [
  24735. {
  24736. name: "Normal",
  24737. height: math.unit(10, "feet"),
  24738. default: true
  24739. },
  24740. ]
  24741. ))
  24742. characterMakers.push(() => makeCharacter(
  24743. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24744. {
  24745. front: {
  24746. height: math.unit(5 + 1/12, "feet"),
  24747. weight: math.unit(110, "lb"),
  24748. name: "Front",
  24749. image: {
  24750. source: "./media/characters/aradel/front.svg",
  24751. extra: 324/303,
  24752. bottom: 3.6/329.4
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(5 + 1/12, "feet"),
  24760. default: true
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24766. {
  24767. front: {
  24768. height: math.unit(3 + 8/12, "feet"),
  24769. weight: math.unit(50, "lb"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/serryn/front.svg",
  24773. extra: 1792/1656,
  24774. bottom: 43.5/1840
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(3 + 8/12, "feet"),
  24782. default: true
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Xavier Thyme" },
  24788. {
  24789. front: {
  24790. height: math.unit(7 + 10/12, "feet"),
  24791. weight: math.unit(255, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/xavier-thyme/front.svg",
  24795. extra: 3733/3642,
  24796. bottom: 131/3869
  24797. }
  24798. },
  24799. frontRaven: {
  24800. height: math.unit(7 + 10/12, "feet"),
  24801. weight: math.unit(255, "lb"),
  24802. name: "Front (Raven)",
  24803. image: {
  24804. source: "./media/characters/xavier-thyme/front-raven.svg",
  24805. extra: 4385/3642,
  24806. bottom: 131/4517
  24807. }
  24808. },
  24809. },
  24810. [
  24811. {
  24812. name: "Normal",
  24813. height: math.unit(7 + 10/12, "feet"),
  24814. default: true
  24815. },
  24816. ]
  24817. ))
  24818. characterMakers.push(() => makeCharacter(
  24819. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24820. {
  24821. front: {
  24822. height: math.unit(1.6, "m"),
  24823. weight: math.unit(50, "kg"),
  24824. name: "Front",
  24825. image: {
  24826. source: "./media/characters/kiki/front.svg",
  24827. extra: 4682/3610,
  24828. bottom: 115/4777
  24829. }
  24830. },
  24831. },
  24832. [
  24833. {
  24834. name: "Normal",
  24835. height: math.unit(1.6, "meters"),
  24836. default: true
  24837. },
  24838. ]
  24839. ))
  24840. characterMakers.push(() => makeCharacter(
  24841. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24842. {
  24843. front: {
  24844. height: math.unit(50, "m"),
  24845. weight: math.unit(500, "tonnes"),
  24846. name: "Front",
  24847. image: {
  24848. source: "./media/characters/ryoko/front.svg",
  24849. extra: 4632/3926,
  24850. bottom: 193/4823
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Normal",
  24857. height: math.unit(50, "meters"),
  24858. default: true
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24864. {
  24865. front: {
  24866. height: math.unit(30, "m"),
  24867. weight: math.unit(22, "tonnes"),
  24868. name: "Front",
  24869. image: {
  24870. source: "./media/characters/elio/front.svg",
  24871. extra: 4582/3720,
  24872. bottom: 236/4828
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Normal",
  24879. height: math.unit(30, "meters"),
  24880. default: true
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24886. {
  24887. front: {
  24888. height: math.unit(6 + 3/12, "feet"),
  24889. weight: math.unit(120, "lb"),
  24890. name: "Front",
  24891. image: {
  24892. source: "./media/characters/azura/front.svg",
  24893. extra: 1149/1135,
  24894. bottom: 45/1194
  24895. }
  24896. },
  24897. frontClothed: {
  24898. height: math.unit(6 + 3/12, "feet"),
  24899. weight: math.unit(120, "lb"),
  24900. name: "Front (Clothed)",
  24901. image: {
  24902. source: "./media/characters/azura/front-clothed.svg",
  24903. extra: 1149/1135,
  24904. bottom: 45/1194
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(6 + 3/12, "feet"),
  24912. default: true
  24913. },
  24914. {
  24915. name: "Macro",
  24916. height: math.unit(20 + 6/12, "feet")
  24917. },
  24918. {
  24919. name: "Megamacro",
  24920. height: math.unit(12, "miles")
  24921. },
  24922. {
  24923. name: "Gigamacro",
  24924. height: math.unit(10000, "miles")
  24925. },
  24926. {
  24927. name: "Teramacro",
  24928. height: math.unit(900000, "miles")
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(12, "feet"),
  24937. weight: math.unit(1, "ton"),
  24938. capacity: math.unit(660000, "gallons"),
  24939. name: "Front",
  24940. image: {
  24941. source: "./media/characters/zeus/front.svg",
  24942. extra: 5005/4717,
  24943. bottom: 363/5388
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Normal",
  24950. height: math.unit(12, "feet")
  24951. },
  24952. {
  24953. name: "Preferred Size",
  24954. height: math.unit(0.5, "miles"),
  24955. default: true
  24956. },
  24957. {
  24958. name: "Giga Horse",
  24959. height: math.unit(300, "miles")
  24960. },
  24961. {
  24962. name: "Riding Planets",
  24963. height: math.unit(30, "megameters")
  24964. },
  24965. {
  24966. name: "Cosmic Giant",
  24967. height: math.unit(3, "zettameters")
  24968. },
  24969. {
  24970. name: "Breeding God",
  24971. height: math.unit(9.92e22, "yottameters")
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24977. {
  24978. side: {
  24979. height: math.unit(9, "feet"),
  24980. weight: math.unit(1500, "kg"),
  24981. name: "Side",
  24982. image: {
  24983. source: "./media/characters/fang/side.svg",
  24984. extra: 924/866,
  24985. bottom: 47.5/972.3
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Normal",
  24992. height: math.unit(9, "feet"),
  24993. default: true
  24994. },
  24995. {
  24996. name: "Macro",
  24997. height: math.unit(75 + 6/12, "feet")
  24998. },
  24999. {
  25000. name: "Teramacro",
  25001. height: math.unit(50000, "miles")
  25002. },
  25003. ]
  25004. ))
  25005. characterMakers.push(() => makeCharacter(
  25006. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25007. {
  25008. front: {
  25009. height: math.unit(10, "feet"),
  25010. weight: math.unit(2, "tons"),
  25011. name: "Front",
  25012. image: {
  25013. source: "./media/characters/rekhit/front.svg",
  25014. extra: 2796/2590,
  25015. bottom: 225/3022
  25016. }
  25017. },
  25018. },
  25019. [
  25020. {
  25021. name: "Normal",
  25022. height: math.unit(10, "feet"),
  25023. default: true
  25024. },
  25025. {
  25026. name: "Macro",
  25027. height: math.unit(500, "feet")
  25028. },
  25029. ]
  25030. ))
  25031. characterMakers.push(() => makeCharacter(
  25032. { name: "Dahlia Verrick" },
  25033. {
  25034. front: {
  25035. height: math.unit(7 + 6.451/12, "feet"),
  25036. weight: math.unit(310, "lb"),
  25037. name: "Front",
  25038. image: {
  25039. source: "./media/characters/dahlia-verrick/front.svg",
  25040. extra: 1488/1365,
  25041. bottom: 6.2/1495
  25042. }
  25043. },
  25044. back: {
  25045. height: math.unit(7 + 6.451/12, "feet"),
  25046. weight: math.unit(310, "lb"),
  25047. name: "Back",
  25048. image: {
  25049. source: "./media/characters/dahlia-verrick/back.svg",
  25050. extra: 1472/1351,
  25051. bottom: 5.28/1477
  25052. }
  25053. },
  25054. frontBusiness: {
  25055. height: math.unit(7 + 6.451/12, "feet"),
  25056. weight: math.unit(200, "lb"),
  25057. name: "Front (Business)",
  25058. image: {
  25059. source: "./media/characters/dahlia-verrick/front-business.svg",
  25060. extra: 1478/1381,
  25061. bottom: 5.5/1484
  25062. }
  25063. },
  25064. frontCasual: {
  25065. height: math.unit(7 + 6.451/12, "feet"),
  25066. weight: math.unit(200, "lb"),
  25067. name: "Front (Casual)",
  25068. image: {
  25069. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25070. extra: 1478/1381,
  25071. bottom: 5.5/1484
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Travel-Sized",
  25078. height: math.unit(7.45, "inches")
  25079. },
  25080. {
  25081. name: "Normal",
  25082. height: math.unit(7 + 6.451/12, "feet"),
  25083. default: true
  25084. },
  25085. {
  25086. name: "Hitting the Town",
  25087. height: math.unit(37 + 8/12, "feet")
  25088. },
  25089. {
  25090. name: "Stomp in the Suburbs",
  25091. height: math.unit(964 + 9.728/12, "feet")
  25092. },
  25093. {
  25094. name: "Sit on the City",
  25095. height: math.unit(61747 + 10.592/12, "feet")
  25096. },
  25097. {
  25098. name: "Glomp the Globe",
  25099. height: math.unit(252919327 + 4.832/12, "feet")
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25105. {
  25106. front: {
  25107. height: math.unit(6 + 4/12, "feet"),
  25108. weight: math.unit(320, "lb"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/balina-mahigan/front.svg",
  25112. extra: 447/428,
  25113. bottom: 18/466
  25114. }
  25115. },
  25116. back: {
  25117. height: math.unit(6 + 4/12, "feet"),
  25118. weight: math.unit(320, "lb"),
  25119. name: "Back",
  25120. image: {
  25121. source: "./media/characters/balina-mahigan/back.svg",
  25122. extra: 445/428,
  25123. bottom: 4.07/448
  25124. }
  25125. },
  25126. arm: {
  25127. height: math.unit(1.88, "feet"),
  25128. name: "Arm",
  25129. image: {
  25130. source: "./media/characters/balina-mahigan/arm.svg"
  25131. }
  25132. },
  25133. backPort: {
  25134. height: math.unit(0.685, "feet"),
  25135. name: "Back Port",
  25136. image: {
  25137. source: "./media/characters/balina-mahigan/back-port.svg"
  25138. }
  25139. },
  25140. hoofpaw: {
  25141. height: math.unit(1.41, "feet"),
  25142. name: "Hoofpaw",
  25143. image: {
  25144. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25145. }
  25146. },
  25147. leftHandBack: {
  25148. height: math.unit(0.938, "feet"),
  25149. name: "Left Hand (Back)",
  25150. image: {
  25151. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25152. }
  25153. },
  25154. leftHandFront: {
  25155. height: math.unit(0.938, "feet"),
  25156. name: "Left Hand (Front)",
  25157. image: {
  25158. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25159. }
  25160. },
  25161. rightHandBack: {
  25162. height: math.unit(0.95, "feet"),
  25163. name: "Right Hand (Back)",
  25164. image: {
  25165. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25166. }
  25167. },
  25168. rightHandFront: {
  25169. height: math.unit(0.95, "feet"),
  25170. name: "Right Hand (Front)",
  25171. image: {
  25172. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(6 + 4/12, "feet"),
  25180. default: true
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(6, "feet"),
  25189. weight: math.unit(320, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/balina-mejeri/front.svg",
  25193. extra: 517/488,
  25194. bottom: 44.2/561
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Normal",
  25201. height: math.unit(6 + 4/12, "feet")
  25202. },
  25203. {
  25204. name: "Business",
  25205. height: math.unit(155, "feet"),
  25206. default: true
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25212. {
  25213. kneeling: {
  25214. height: math.unit(6 + 4/12, "feet"),
  25215. weight: math.unit(300*20, "lb"),
  25216. name: "Kneeling",
  25217. image: {
  25218. source: "./media/characters/balbarian/kneeling.svg",
  25219. extra: 922/862,
  25220. bottom: 42.4/965
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(6 + 4/12, "feet")
  25228. },
  25229. {
  25230. name: "Treasured",
  25231. height: math.unit(18 + 9/12, "feet"),
  25232. default: true
  25233. },
  25234. {
  25235. name: "Macro",
  25236. height: math.unit(900, "feet")
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25242. {
  25243. front: {
  25244. height: math.unit(6 + 4/12, "feet"),
  25245. weight: math.unit(325, "lb"),
  25246. name: "Front",
  25247. image: {
  25248. source: "./media/characters/balina-amarini/front.svg",
  25249. extra: 415/403,
  25250. bottom: 19/433.4
  25251. }
  25252. },
  25253. back: {
  25254. height: math.unit(6 + 4/12, "feet"),
  25255. weight: math.unit(325, "lb"),
  25256. name: "Back",
  25257. image: {
  25258. source: "./media/characters/balina-amarini/back.svg",
  25259. extra: 415/403,
  25260. bottom: 13.5/432
  25261. }
  25262. },
  25263. overdrive: {
  25264. height: math.unit(6 + 4/12, "feet"),
  25265. weight: math.unit(400, "lb"),
  25266. name: "Overdrive",
  25267. image: {
  25268. source: "./media/characters/balina-amarini/overdrive.svg",
  25269. extra: 269/259,
  25270. bottom: 12/282
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Boom",
  25277. height: math.unit(9 + 10/12, "feet"),
  25278. default: true
  25279. },
  25280. {
  25281. name: "Macro",
  25282. height: math.unit(280, "feet")
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25288. {
  25289. goddess: {
  25290. height: math.unit(600, "feet"),
  25291. weight: math.unit(2000000, "tons"),
  25292. name: "Goddess",
  25293. image: {
  25294. source: "./media/characters/lady-kubwa/goddess.svg",
  25295. extra: 1240.5/1223,
  25296. bottom: 22/1263
  25297. }
  25298. },
  25299. goddesser: {
  25300. height: math.unit(900, "feet"),
  25301. weight: math.unit(20000000, "lb"),
  25302. name: "Goddess-er",
  25303. image: {
  25304. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25305. extra: 899/888,
  25306. bottom: 12.6/912
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Macro",
  25313. height: math.unit(600, "feet"),
  25314. default: true
  25315. },
  25316. {
  25317. name: "Megamacro",
  25318. height: math.unit(250, "miles")
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(7 + 7/12, "feet"),
  25327. weight: math.unit(250, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/tala-grovehorn/front.svg",
  25331. extra: 2636/2525,
  25332. bottom: 147/2781
  25333. }
  25334. },
  25335. back: {
  25336. height: math.unit(7 + 7/12, "feet"),
  25337. weight: math.unit(250, "lb"),
  25338. name: "Back",
  25339. image: {
  25340. source: "./media/characters/tala-grovehorn/back.svg",
  25341. extra: 2635/2539,
  25342. bottom: 100/2732.8
  25343. }
  25344. },
  25345. mouth: {
  25346. height: math.unit(1.15, "feet"),
  25347. name: "Mouth",
  25348. image: {
  25349. source: "./media/characters/tala-grovehorn/mouth.svg"
  25350. }
  25351. },
  25352. dick: {
  25353. height: math.unit(2.36, "feet"),
  25354. name: "Dick",
  25355. image: {
  25356. source: "./media/characters/tala-grovehorn/dick.svg"
  25357. }
  25358. },
  25359. slit: {
  25360. height: math.unit(0.61, "feet"),
  25361. name: "Slit",
  25362. image: {
  25363. source: "./media/characters/tala-grovehorn/slit.svg"
  25364. }
  25365. },
  25366. },
  25367. [
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(7 + 7/12, "feet"),
  25375. weight: math.unit(225, "lb"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/epona/front.svg",
  25379. extra: 2445/2290,
  25380. bottom: 251/2696
  25381. }
  25382. },
  25383. back: {
  25384. height: math.unit(7 + 7/12, "feet"),
  25385. weight: math.unit(225, "lb"),
  25386. name: "Back",
  25387. image: {
  25388. source: "./media/characters/epona/back.svg",
  25389. extra: 2546/2408,
  25390. bottom: 44/2589
  25391. }
  25392. },
  25393. genitals: {
  25394. height: math.unit(1.5, "feet"),
  25395. name: "Genitals",
  25396. image: {
  25397. source: "./media/characters/epona/genitals.svg"
  25398. }
  25399. },
  25400. },
  25401. [
  25402. {
  25403. name: "Normal",
  25404. height: math.unit(7 + 7/12, "feet")
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25410. {
  25411. front: {
  25412. height: math.unit(7, "feet"),
  25413. weight: math.unit(518, "lb"),
  25414. name: "Front",
  25415. image: {
  25416. source: "./media/characters/avia-bloodbourn/front.svg",
  25417. extra: 1466/1350,
  25418. bottom: 65/1527
  25419. }
  25420. },
  25421. },
  25422. [
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(9.35, "feet"),
  25430. weight: math.unit(600, "lb"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/amera/front.svg",
  25434. extra: 891/818,
  25435. bottom: 30/922.7
  25436. }
  25437. },
  25438. back: {
  25439. height: math.unit(9.35, "feet"),
  25440. weight: math.unit(600, "lb"),
  25441. name: "Back",
  25442. image: {
  25443. source: "./media/characters/amera/back.svg",
  25444. extra: 876/824,
  25445. bottom: 6.8/884
  25446. }
  25447. },
  25448. dick: {
  25449. height: math.unit(2.14, "feet"),
  25450. name: "Dick",
  25451. image: {
  25452. source: "./media/characters/amera/dick.svg"
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Normal",
  25459. height: math.unit(9.35, "feet"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25466. {
  25467. kneeling: {
  25468. height: math.unit(3 + 4/12, "feet"),
  25469. weight: math.unit(90, "lb"),
  25470. name: "Kneeling",
  25471. image: {
  25472. source: "./media/characters/rosewen/kneeling.svg",
  25473. extra: 1835/1571,
  25474. bottom: 27.7/1862
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(3 + 4/12, "feet"),
  25482. default: true
  25483. },
  25484. ]
  25485. ))
  25486. characterMakers.push(() => makeCharacter(
  25487. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25488. {
  25489. front: {
  25490. height: math.unit(5 + 10/12, "feet"),
  25491. weight: math.unit(200, "lb"),
  25492. name: "Front",
  25493. image: {
  25494. source: "./media/characters/sabah/front.svg",
  25495. extra: 849/763,
  25496. bottom: 33.9/881
  25497. }
  25498. },
  25499. },
  25500. [
  25501. {
  25502. name: "Normal",
  25503. height: math.unit(5 + 10/12, "feet"),
  25504. default: true
  25505. },
  25506. ]
  25507. ))
  25508. characterMakers.push(() => makeCharacter(
  25509. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25510. {
  25511. front: {
  25512. height: math.unit(3 + 5/12, "feet"),
  25513. weight: math.unit(40, "kg"),
  25514. name: "Front",
  25515. image: {
  25516. source: "./media/characters/purple-flame/front.svg",
  25517. extra: 1577/1412,
  25518. bottom: 97/1694
  25519. }
  25520. },
  25521. frontDressed: {
  25522. height: math.unit(3 + 5/12, "feet"),
  25523. weight: math.unit(40, "kg"),
  25524. name: "Front (Dressed)",
  25525. image: {
  25526. source: "./media/characters/purple-flame/front-dressed.svg",
  25527. extra: 1577/1412,
  25528. bottom: 97/1694
  25529. }
  25530. },
  25531. headphones: {
  25532. height: math.unit(0.85, "feet"),
  25533. name: "Headphones",
  25534. image: {
  25535. source: "./media/characters/purple-flame/headphones.svg"
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Really Small",
  25542. height: math.unit(5, "cm")
  25543. },
  25544. {
  25545. name: "Micro",
  25546. height: math.unit(1 + 5/12, "feet")
  25547. },
  25548. {
  25549. name: "Normal",
  25550. height: math.unit(3 + 5/12, "feet"),
  25551. default: true
  25552. },
  25553. {
  25554. name: "Minimacro",
  25555. height: math.unit(125, "feet")
  25556. },
  25557. {
  25558. name: "Macro",
  25559. height: math.unit(0.5, "miles")
  25560. },
  25561. {
  25562. name: "Megamacro",
  25563. height: math.unit(50, "miles")
  25564. },
  25565. {
  25566. name: "Gigantic",
  25567. height: math.unit(750, "miles")
  25568. },
  25569. {
  25570. name: "Planetary",
  25571. height: math.unit(15000, "miles")
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25577. {
  25578. front: {
  25579. height: math.unit(14, "feet"),
  25580. weight: math.unit(959, "lb"),
  25581. name: "Front",
  25582. image: {
  25583. source: "./media/characters/arsenal/front.svg",
  25584. extra: 2357/2157,
  25585. bottom: 93/2458
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Normal",
  25592. height: math.unit(14, "feet"),
  25593. default: true
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25599. {
  25600. front: {
  25601. height: math.unit(6, "feet"),
  25602. weight: math.unit(150, "lb"),
  25603. name: "Front",
  25604. image: {
  25605. source: "./media/characters/adira/front.svg",
  25606. extra: 1078/1029,
  25607. bottom: 87/1166
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Micro",
  25614. height: math.unit(4, "inches"),
  25615. default: true
  25616. },
  25617. {
  25618. name: "Macro",
  25619. height: math.unit(50, "feet")
  25620. },
  25621. ]
  25622. ))
  25623. characterMakers.push(() => makeCharacter(
  25624. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25625. {
  25626. front: {
  25627. height: math.unit(16, "feet"),
  25628. weight: math.unit(1000, "lb"),
  25629. name: "Front",
  25630. image: {
  25631. source: "./media/characters/grim/front.svg",
  25632. extra: 622/614,
  25633. bottom: 18.1/642
  25634. }
  25635. },
  25636. back: {
  25637. height: math.unit(16, "feet"),
  25638. weight: math.unit(1000, "lb"),
  25639. name: "Back",
  25640. image: {
  25641. source: "./media/characters/grim/back.svg",
  25642. extra: 610.6/602,
  25643. bottom: 40.8/652
  25644. }
  25645. },
  25646. hunched: {
  25647. height: math.unit(9.75, "feet"),
  25648. weight: math.unit(1000, "lb"),
  25649. name: "Hunched",
  25650. image: {
  25651. source: "./media/characters/grim/hunched.svg",
  25652. extra: 304/297,
  25653. bottom: 35.4/394
  25654. }
  25655. },
  25656. },
  25657. [
  25658. {
  25659. name: "Normal",
  25660. height: math.unit(16, "feet"),
  25661. default: true
  25662. },
  25663. ]
  25664. ))
  25665. //characters
  25666. function makeCharacters() {
  25667. const results = [];
  25668. characterMakers.forEach(character => {
  25669. results.push(character());
  25670. });
  25671. return results;
  25672. }