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

26353 líneas
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. }
  3601. }
  3602. },
  3603. [
  3604. {
  3605. name: "Small",
  3606. height: math.unit(5, "meters")
  3607. },
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(900, "meters"),
  3611. default: true
  3612. },
  3613. {
  3614. name: "Megamacro",
  3615. height: math.unit(135, "km")
  3616. },
  3617. {
  3618. name: "Gigamacro",
  3619. height: math.unit(20000, "km")
  3620. }
  3621. ]
  3622. ))
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3625. {
  3626. side: {
  3627. height: math.unit(28.35, "feet"),
  3628. weight: math.unit(99.75, "tons"),
  3629. name: "Side",
  3630. image: {
  3631. source: "./media/characters/asana-mech/side.svg",
  3632. extra: 923/699,
  3633. bottom: 50/975
  3634. }
  3635. },
  3636. chaingun: {
  3637. height: math.unit(7, "feet"),
  3638. weight: math.unit(2400, "lb"),
  3639. name: "Chaingun",
  3640. image: {
  3641. source: "./media/characters/asana-mech/chaingun.svg"
  3642. }
  3643. },
  3644. laser: {
  3645. height: math.unit(7.12, "feet"),
  3646. weight: math.unit(2000, "lb"),
  3647. name: "Laser",
  3648. image: {
  3649. source: "./media/characters/asana-mech/laser.svg"
  3650. }
  3651. },
  3652. },
  3653. [
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(28.35, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Macro",
  3661. height: math.unit(2500, "feet")
  3662. },
  3663. {
  3664. name: "Megamacro",
  3665. height: math.unit(25, "miles")
  3666. },
  3667. {
  3668. name: "Examacro",
  3669. height: math.unit(6e8, "lightyears")
  3670. },
  3671. ]
  3672. ))
  3673. characterMakers.push(() => makeCharacter(
  3674. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3675. {
  3676. front: {
  3677. height: math.unit(2, "meters"),
  3678. weight: math.unit(70, "kg"),
  3679. name: "Front",
  3680. image: {
  3681. source: "./media/characters/ashtrek/front.svg",
  3682. extra: 560 / 524,
  3683. bottom: 0.01
  3684. }
  3685. },
  3686. frontArmor: {
  3687. height: math.unit(2, "meters"),
  3688. weight: math.unit(76, "kg"),
  3689. name: "Front (Armor)",
  3690. image: {
  3691. source: "./media/characters/ashtrek/front-armor.svg",
  3692. extra: 561 / 527,
  3693. bottom: 0.01
  3694. }
  3695. },
  3696. side: {
  3697. height: math.unit(2, "meters"),
  3698. weight: math.unit(70, "kg"),
  3699. name: "Side",
  3700. image: {
  3701. source: "./media/characters/ashtrek/side.svg",
  3702. extra: 1717 / 1609,
  3703. bottom: 0.005
  3704. }
  3705. },
  3706. back: {
  3707. height: math.unit(2, "meters"),
  3708. weight: math.unit(70, "kg"),
  3709. name: "Back",
  3710. image: {
  3711. source: "./media/characters/ashtrek/back.svg",
  3712. extra: 1570 / 1501
  3713. }
  3714. },
  3715. },
  3716. [
  3717. {
  3718. name: "DEFCON 5",
  3719. height: math.unit(5, "meters")
  3720. },
  3721. {
  3722. name: "DEFCON 4",
  3723. height: math.unit(500, "meters"),
  3724. default: true
  3725. },
  3726. {
  3727. name: "DEFCON 3",
  3728. height: math.unit(5, "km")
  3729. },
  3730. {
  3731. name: "DEFCON 2",
  3732. height: math.unit(500, "km")
  3733. },
  3734. {
  3735. name: "DEFCON 1",
  3736. height: math.unit(500000, "km")
  3737. },
  3738. {
  3739. name: "DEFCON 0",
  3740. height: math.unit(3, "gigaparsecs")
  3741. },
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(2, "meters"),
  3749. weight: math.unit(76, "kg"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/gale/front.svg"
  3753. }
  3754. },
  3755. frontAlt1: {
  3756. height: math.unit(2, "meters"),
  3757. weight: math.unit(76, "kg"),
  3758. name: "Front (Alt 1)",
  3759. image: {
  3760. source: "./media/characters/gale/front-alt-1.svg"
  3761. }
  3762. },
  3763. frontAlt2: {
  3764. height: math.unit(2, "meters"),
  3765. weight: math.unit(76, "kg"),
  3766. name: "Front (Alt 2)",
  3767. image: {
  3768. source: "./media/characters/gale/front-alt-2.svg"
  3769. }
  3770. },
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(7, "feet")
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(150, "feet"),
  3780. default: true
  3781. },
  3782. {
  3783. name: "Macro+",
  3784. height: math.unit(300, "feet")
  3785. },
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3790. {
  3791. front: {
  3792. height: math.unit(2, "meters"),
  3793. weight: math.unit(76, "kg"),
  3794. name: "Front",
  3795. image: {
  3796. source: "./media/characters/draylen/front.svg"
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(150, "feet"),
  3804. default: true
  3805. }
  3806. ]
  3807. ))
  3808. characterMakers.push(() => makeCharacter(
  3809. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3810. {
  3811. front: {
  3812. height: math.unit(7 + 9 / 12, "feet"),
  3813. weight: math.unit(379, "lbs"),
  3814. name: "Front",
  3815. image: {
  3816. source: "./media/characters/chez/front.svg"
  3817. }
  3818. },
  3819. side: {
  3820. height: math.unit(7 + 9 / 12, "feet"),
  3821. weight: math.unit(379, "lbs"),
  3822. name: "Side",
  3823. image: {
  3824. source: "./media/characters/chez/side.svg"
  3825. }
  3826. }
  3827. },
  3828. [
  3829. {
  3830. name: "Normal",
  3831. height: math.unit(7 + 9 / 12, "feet"),
  3832. default: true
  3833. },
  3834. {
  3835. name: "God King",
  3836. height: math.unit(9750000, "meters")
  3837. }
  3838. ]
  3839. ))
  3840. characterMakers.push(() => makeCharacter(
  3841. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3842. {
  3843. front: {
  3844. height: math.unit(6, "feet"),
  3845. weight: math.unit(275, "lbs"),
  3846. name: "Front",
  3847. image: {
  3848. source: "./media/characters/kaylum/front.svg",
  3849. bottom: 0.01,
  3850. extra: 1166 / 1031
  3851. }
  3852. },
  3853. frontWingless: {
  3854. height: math.unit(6, "feet"),
  3855. weight: math.unit(275, "lbs"),
  3856. name: "Front (Wingless)",
  3857. image: {
  3858. source: "./media/characters/kaylum/front-wingless.svg",
  3859. bottom: 0.01,
  3860. extra: 1117 / 1031
  3861. }
  3862. }
  3863. },
  3864. [
  3865. {
  3866. name: "Normal",
  3867. height: math.unit(3.05, "meters")
  3868. },
  3869. {
  3870. name: "Master",
  3871. height: math.unit(5.5, "meters")
  3872. },
  3873. {
  3874. name: "Rampage",
  3875. height: math.unit(19, "meters")
  3876. },
  3877. {
  3878. name: "Macro Lite",
  3879. height: math.unit(37, "meters")
  3880. },
  3881. {
  3882. name: "Hyper Predator",
  3883. height: math.unit(61, "meters")
  3884. },
  3885. {
  3886. name: "Macro",
  3887. height: math.unit(138, "meters"),
  3888. default: true
  3889. }
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(6, "feet"),
  3897. weight: math.unit(150, "lbs"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/geta/front.svg"
  3901. }
  3902. }
  3903. },
  3904. [
  3905. {
  3906. name: "Micro",
  3907. height: math.unit(3, "inches"),
  3908. default: true
  3909. },
  3910. {
  3911. name: "Normal",
  3912. height: math.unit(5 + 5 / 12, "feet")
  3913. }
  3914. ]
  3915. ))
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3918. {
  3919. front: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(300, "lbs"),
  3922. name: "Front",
  3923. image: {
  3924. source: "./media/characters/tyrnn/front.svg"
  3925. }
  3926. }
  3927. },
  3928. [
  3929. {
  3930. name: "Main Height",
  3931. height: math.unit(355, "feet"),
  3932. default: true
  3933. },
  3934. {
  3935. name: "Fave. Height",
  3936. height: math.unit(2400, "feet")
  3937. }
  3938. ]
  3939. ))
  3940. characterMakers.push(() => makeCharacter(
  3941. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3942. {
  3943. front: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(300, "lbs"),
  3946. name: "Front",
  3947. image: {
  3948. source: "./media/characters/appledectomy/front.svg"
  3949. }
  3950. }
  3951. },
  3952. [
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(2500, "feet")
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(50, "miles"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Gigamacro",
  3964. height: math.unit(5000, "miles")
  3965. },
  3966. {
  3967. name: "Teramacro",
  3968. height: math.unit(250000, "miles")
  3969. },
  3970. ]
  3971. ))
  3972. characterMakers.push(() => makeCharacter(
  3973. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3974. {
  3975. front: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(200, "lbs"),
  3978. name: "Front",
  3979. image: {
  3980. source: "./media/characters/vulpes/front.svg",
  3981. extra: 573 / 543,
  3982. bottom: 0.033
  3983. }
  3984. },
  3985. side: {
  3986. height: math.unit(6, "feet"),
  3987. weight: math.unit(200, "lbs"),
  3988. name: "Side",
  3989. image: {
  3990. source: "./media/characters/vulpes/side.svg",
  3991. extra: 573 / 543,
  3992. bottom: 0.01
  3993. }
  3994. },
  3995. back: {
  3996. height: math.unit(6, "feet"),
  3997. weight: math.unit(200, "lbs"),
  3998. name: "Back",
  3999. image: {
  4000. source: "./media/characters/vulpes/back.svg",
  4001. extra: 573 / 543,
  4002. }
  4003. },
  4004. feet: {
  4005. height: math.unit(1.276, "feet"),
  4006. name: "Feet",
  4007. image: {
  4008. source: "./media/characters/vulpes/feet.svg"
  4009. }
  4010. },
  4011. maw: {
  4012. height: math.unit(1.18, "feet"),
  4013. name: "Maw",
  4014. image: {
  4015. source: "./media/characters/vulpes/maw.svg"
  4016. }
  4017. },
  4018. },
  4019. [
  4020. {
  4021. name: "Micro",
  4022. height: math.unit(2, "inches")
  4023. },
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(6.3, "feet")
  4027. },
  4028. {
  4029. name: "Macro",
  4030. height: math.unit(850, "feet")
  4031. },
  4032. {
  4033. name: "Megamacro",
  4034. height: math.unit(7500, "feet"),
  4035. default: true
  4036. },
  4037. {
  4038. name: "Gigamacro",
  4039. height: math.unit(570000, "miles")
  4040. }
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4045. {
  4046. front: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(210, "lbs"),
  4049. name: "Front",
  4050. image: {
  4051. source: "./media/characters/rain-fallen/front.svg"
  4052. }
  4053. },
  4054. side: {
  4055. height: math.unit(6, "feet"),
  4056. weight: math.unit(210, "lbs"),
  4057. name: "Side",
  4058. image: {
  4059. source: "./media/characters/rain-fallen/side.svg"
  4060. }
  4061. },
  4062. back: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(210, "lbs"),
  4065. name: "Back",
  4066. image: {
  4067. source: "./media/characters/rain-fallen/back.svg"
  4068. }
  4069. },
  4070. feral: {
  4071. height: math.unit(9, "feet"),
  4072. weight: math.unit(700, "lbs"),
  4073. name: "Feral",
  4074. image: {
  4075. source: "./media/characters/rain-fallen/feral.svg"
  4076. }
  4077. },
  4078. },
  4079. [
  4080. {
  4081. name: "Normal",
  4082. height: math.unit(5, "meter")
  4083. },
  4084. {
  4085. name: "Macro",
  4086. height: math.unit(150, "meter"),
  4087. default: true
  4088. },
  4089. {
  4090. name: "Megamacro",
  4091. height: math.unit(278e6, "meter")
  4092. },
  4093. {
  4094. name: "Gigamacro",
  4095. height: math.unit(2e9, "meter")
  4096. },
  4097. {
  4098. name: "Teramacro",
  4099. height: math.unit(8e12, "meter")
  4100. },
  4101. {
  4102. name: "Devourer",
  4103. height: math.unit(14, "zettameters")
  4104. },
  4105. {
  4106. name: "Scarlet King",
  4107. height: math.unit(18, "yottameters")
  4108. },
  4109. {
  4110. name: "Void",
  4111. height: math.unit(6.66e66, "yottameters")
  4112. }
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4117. {
  4118. standing: {
  4119. height: math.unit(6, "feet"),
  4120. weight: math.unit(180, "lbs"),
  4121. name: "Standing",
  4122. image: {
  4123. source: "./media/characters/zaakira/standing.svg"
  4124. }
  4125. },
  4126. laying: {
  4127. height: math.unit(3, "feet"),
  4128. weight: math.unit(180, "lbs"),
  4129. name: "Laying",
  4130. image: {
  4131. source: "./media/characters/zaakira/laying.svg"
  4132. }
  4133. },
  4134. },
  4135. [
  4136. {
  4137. name: "Normal",
  4138. height: math.unit(12, "feet")
  4139. },
  4140. {
  4141. name: "Macro",
  4142. height: math.unit(279, "feet"),
  4143. default: true
  4144. }
  4145. ]
  4146. ))
  4147. characterMakers.push(() => makeCharacter(
  4148. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4149. {
  4150. front: {
  4151. height: math.unit(6, "feet"),
  4152. weight: math.unit(250, "lbs"),
  4153. name: "Front",
  4154. image: {
  4155. source: "./media/characters/sigvald/front.svg",
  4156. extra: 1000 / 850
  4157. }
  4158. },
  4159. back: {
  4160. height: math.unit(6, "feet"),
  4161. weight: math.unit(250, "lbs"),
  4162. name: "Back",
  4163. image: {
  4164. source: "./media/characters/sigvald/back.svg"
  4165. }
  4166. },
  4167. },
  4168. [
  4169. {
  4170. name: "Normal",
  4171. height: math.unit(8, "feet")
  4172. },
  4173. {
  4174. name: "Large",
  4175. height: math.unit(12, "feet")
  4176. },
  4177. {
  4178. name: "Larger",
  4179. height: math.unit(20, "feet")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(150, "feet")
  4184. },
  4185. {
  4186. name: "Macro+",
  4187. height: math.unit(200, "feet"),
  4188. default: true
  4189. },
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4194. {
  4195. side: {
  4196. height: math.unit(12, "feet"),
  4197. weight: math.unit(2000, "kg"),
  4198. name: "Side",
  4199. image: {
  4200. source: "./media/characters/scott/side.svg",
  4201. extra: 754 / 724,
  4202. bottom: 0.069
  4203. }
  4204. },
  4205. upright: {
  4206. height: math.unit(12, "feet"),
  4207. weight: math.unit(2000, "kg"),
  4208. name: "Upright",
  4209. image: {
  4210. source: "./media/characters/scott/upright.svg",
  4211. extra: 3881 / 3722,
  4212. bottom: 0.05
  4213. }
  4214. },
  4215. },
  4216. [
  4217. {
  4218. name: "Normal",
  4219. height: math.unit(12, "feet"),
  4220. default: true
  4221. },
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4226. {
  4227. side: {
  4228. height: math.unit(8, "meters"),
  4229. weight: math.unit(84755, "lbs"),
  4230. name: "Side",
  4231. image: {
  4232. source: "./media/characters/tobias/side.svg",
  4233. extra: 1474 / 1096,
  4234. bottom: 38.9 / 1513.1235
  4235. }
  4236. },
  4237. },
  4238. [
  4239. {
  4240. name: "Normal",
  4241. height: math.unit(8, "meters"),
  4242. default: true
  4243. },
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4248. {
  4249. front: {
  4250. height: math.unit(5.5, "feet"),
  4251. weight: math.unit(400, "lbs"),
  4252. name: "Front",
  4253. image: {
  4254. source: "./media/characters/kieran/front.svg",
  4255. extra: 2694 / 2364,
  4256. bottom: 217 / 2908
  4257. }
  4258. },
  4259. side: {
  4260. height: math.unit(5.5, "feet"),
  4261. weight: math.unit(400, "lbs"),
  4262. name: "Side",
  4263. image: {
  4264. source: "./media/characters/kieran/side.svg",
  4265. extra: 875 / 777,
  4266. bottom: 84.6 / 959
  4267. }
  4268. },
  4269. },
  4270. [
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(5.5, "feet"),
  4274. default: true
  4275. },
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4280. {
  4281. side: {
  4282. height: math.unit(2, "meters"),
  4283. weight: math.unit(70, "kg"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/sanya/side.svg",
  4287. bottom: 0.02,
  4288. extra: 1.02
  4289. }
  4290. },
  4291. },
  4292. [
  4293. {
  4294. name: "Small",
  4295. height: math.unit(2, "meters")
  4296. },
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(3, "meters")
  4300. },
  4301. {
  4302. name: "Macro",
  4303. height: math.unit(16, "meters"),
  4304. default: true
  4305. },
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(2, "meters"),
  4313. weight: math.unit(120, "kg"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/miranda/front.svg",
  4317. extra: 195/185,
  4318. bottom: 10.9/206.5
  4319. }
  4320. },
  4321. back: {
  4322. height: math.unit(2, "meters"),
  4323. weight: math.unit(120, "kg"),
  4324. name: "Back",
  4325. image: {
  4326. source: "./media/characters/miranda/back.svg",
  4327. extra: 201/193,
  4328. bottom: 2.3/203.7
  4329. }
  4330. },
  4331. },
  4332. [
  4333. {
  4334. name: "Normal",
  4335. height: math.unit(10, "feet"),
  4336. default: true
  4337. }
  4338. ]
  4339. ))
  4340. characterMakers.push(() => makeCharacter(
  4341. { name: "James", species: ["deer"], tags: ["anthro"] },
  4342. {
  4343. side: {
  4344. height: math.unit(2, "meters"),
  4345. weight: math.unit(100, "kg"),
  4346. name: "Front",
  4347. image: {
  4348. source: "./media/characters/james/front.svg",
  4349. extra: 10 / 8.5
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(8.5, "feet"),
  4357. default: true
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4363. {
  4364. side: {
  4365. height: math.unit(9.5, "feet"),
  4366. weight: math.unit(2500, "lbs"),
  4367. name: "Side",
  4368. image: {
  4369. source: "./media/characters/heather/side.svg"
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(9.5, "feet"),
  4377. default: true
  4378. }
  4379. ]
  4380. ))
  4381. characterMakers.push(() => makeCharacter(
  4382. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4383. {
  4384. side: {
  4385. height: math.unit(6.5, "feet"),
  4386. weight: math.unit(400, "lbs"),
  4387. name: "Side",
  4388. image: {
  4389. source: "./media/characters/lukas/side.svg",
  4390. extra: 7.25 / 6.5
  4391. }
  4392. },
  4393. },
  4394. [
  4395. {
  4396. name: "Normal",
  4397. height: math.unit(6.5, "feet"),
  4398. default: true
  4399. }
  4400. ]
  4401. ))
  4402. characterMakers.push(() => makeCharacter(
  4403. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4404. {
  4405. side: {
  4406. height: math.unit(5, "feet"),
  4407. weight: math.unit(3000, "lbs"),
  4408. name: "Side",
  4409. image: {
  4410. source: "./media/characters/louise/side.svg"
  4411. }
  4412. },
  4413. },
  4414. [
  4415. {
  4416. name: "Normal",
  4417. height: math.unit(5, "feet"),
  4418. default: true
  4419. }
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4424. {
  4425. side: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(150, "lbs"),
  4428. name: "Side",
  4429. image: {
  4430. source: "./media/characters/ramona/side.svg"
  4431. }
  4432. },
  4433. },
  4434. [
  4435. {
  4436. name: "Normal",
  4437. height: math.unit(5.3, "meters"),
  4438. default: true
  4439. },
  4440. {
  4441. name: "Macro",
  4442. height: math.unit(20, "stories")
  4443. },
  4444. {
  4445. name: "Macro+",
  4446. height: math.unit(50, "stories")
  4447. },
  4448. ]
  4449. ))
  4450. characterMakers.push(() => makeCharacter(
  4451. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4452. {
  4453. standing: {
  4454. height: math.unit(5.75, "feet"),
  4455. weight: math.unit(160, "lbs"),
  4456. name: "Standing",
  4457. image: {
  4458. source: "./media/characters/deerpuff/standing.svg",
  4459. extra: 682 / 624
  4460. }
  4461. },
  4462. sitting: {
  4463. height: math.unit(5.75 / 1.79, "feet"),
  4464. weight: math.unit(160, "lbs"),
  4465. name: "Sitting",
  4466. image: {
  4467. source: "./media/characters/deerpuff/sitting.svg",
  4468. bottom: 44 / 400,
  4469. extra: 1
  4470. }
  4471. },
  4472. taurLaying: {
  4473. height: math.unit(6, "feet"),
  4474. weight: math.unit(400, "lbs"),
  4475. name: "Taur (Laying)",
  4476. image: {
  4477. source: "./media/characters/deerpuff/taur-laying.svg"
  4478. }
  4479. },
  4480. },
  4481. [
  4482. {
  4483. name: "Puffball",
  4484. height: math.unit(6, "inches")
  4485. },
  4486. {
  4487. name: "Normalpuff",
  4488. height: math.unit(5.75, "feet")
  4489. },
  4490. {
  4491. name: "Macropuff",
  4492. height: math.unit(1500, "feet"),
  4493. default: true
  4494. },
  4495. {
  4496. name: "Megapuff",
  4497. height: math.unit(500, "miles")
  4498. },
  4499. {
  4500. name: "Gigapuff",
  4501. height: math.unit(250000, "miles")
  4502. },
  4503. {
  4504. name: "Omegapuff",
  4505. height: math.unit(1000, "lightyears")
  4506. },
  4507. ]
  4508. ))
  4509. characterMakers.push(() => makeCharacter(
  4510. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4511. {
  4512. stomping: {
  4513. height: math.unit(6, "feet"),
  4514. weight: math.unit(170, "lbs"),
  4515. name: "Stomping",
  4516. image: {
  4517. source: "./media/characters/vivian/stomping.svg"
  4518. }
  4519. },
  4520. sitting: {
  4521. height: math.unit(6 / 1.75, "feet"),
  4522. weight: math.unit(170, "lbs"),
  4523. name: "Sitting",
  4524. image: {
  4525. source: "./media/characters/vivian/sitting.svg",
  4526. bottom: 1 / 6.4,
  4527. extra: 1,
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Normal",
  4534. height: math.unit(7, "feet"),
  4535. default: true
  4536. },
  4537. {
  4538. name: "Macro",
  4539. height: math.unit(10, "stories")
  4540. },
  4541. {
  4542. name: "Macro+",
  4543. height: math.unit(30, "stories")
  4544. },
  4545. {
  4546. name: "Megamacro",
  4547. height: math.unit(10, "miles")
  4548. },
  4549. {
  4550. name: "Megamacro+",
  4551. height: math.unit(2750000, "meters")
  4552. },
  4553. ]
  4554. ))
  4555. characterMakers.push(() => makeCharacter(
  4556. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4557. {
  4558. front: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(160, "lbs"),
  4561. name: "Front",
  4562. image: {
  4563. source: "./media/characters/prince/front.svg",
  4564. extra: 3400 / 3000
  4565. }
  4566. },
  4567. jumping: {
  4568. height: math.unit(6, "feet"),
  4569. weight: math.unit(160, "lbs"),
  4570. name: "Jumping",
  4571. image: {
  4572. source: "./media/characters/prince/jump.svg",
  4573. extra: 2555 / 2134
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(7.75, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Not cute",
  4585. height: math.unit(17, "feet")
  4586. },
  4587. {
  4588. name: "I said NOT",
  4589. height: math.unit(91, "feet")
  4590. },
  4591. {
  4592. name: "Please stop",
  4593. height: math.unit(560, "feet")
  4594. },
  4595. {
  4596. name: "What have you done",
  4597. height: math.unit(2200, "feet")
  4598. },
  4599. {
  4600. name: "Deer God",
  4601. height: math.unit(3.6, "miles")
  4602. },
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4607. {
  4608. standing: {
  4609. height: math.unit(6, "feet"),
  4610. weight: math.unit(300, "lbs"),
  4611. name: "Standing",
  4612. image: {
  4613. source: "./media/characters/psymon/standing.svg",
  4614. extra: 1888 / 1810,
  4615. bottom: 0.05
  4616. }
  4617. },
  4618. slithering: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(300, "lbs"),
  4621. name: "Slithering",
  4622. image: {
  4623. source: "./media/characters/psymon/slithering.svg",
  4624. extra: 1330 / 1224
  4625. }
  4626. },
  4627. slitheringAlt: {
  4628. height: math.unit(6, "feet"),
  4629. weight: math.unit(300, "lbs"),
  4630. name: "Slithering (Alt)",
  4631. image: {
  4632. source: "./media/characters/psymon/slithering-alt.svg",
  4633. extra: 1330 / 1224
  4634. }
  4635. },
  4636. },
  4637. [
  4638. {
  4639. name: "Normal",
  4640. height: math.unit(11.25, "feet"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Large",
  4645. height: math.unit(27, "feet")
  4646. },
  4647. {
  4648. name: "Giant",
  4649. height: math.unit(87, "feet")
  4650. },
  4651. {
  4652. name: "Macro",
  4653. height: math.unit(365, "feet")
  4654. },
  4655. {
  4656. name: "Megamacro",
  4657. height: math.unit(3, "miles")
  4658. },
  4659. {
  4660. name: "World Serpent",
  4661. height: math.unit(8000, "miles")
  4662. },
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(180, "lbs"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/daimos/front.svg",
  4674. extra: 4160 / 3897,
  4675. bottom: 0.021
  4676. }
  4677. }
  4678. },
  4679. [
  4680. {
  4681. name: "Normal",
  4682. height: math.unit(8, "feet"),
  4683. default: true
  4684. },
  4685. {
  4686. name: "Big Dog",
  4687. height: math.unit(22, "feet")
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(127, "feet")
  4692. },
  4693. {
  4694. name: "Megamacro",
  4695. height: math.unit(3600, "feet")
  4696. },
  4697. ]
  4698. ))
  4699. characterMakers.push(() => makeCharacter(
  4700. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4701. {
  4702. side: {
  4703. height: math.unit(6, "feet"),
  4704. weight: math.unit(180, "lbs"),
  4705. name: "Side",
  4706. image: {
  4707. source: "./media/characters/blake/side.svg",
  4708. extra: 1212 / 1120,
  4709. bottom: 0.05
  4710. }
  4711. },
  4712. crouched: {
  4713. height: math.unit(6 * 0.57, "feet"),
  4714. weight: math.unit(180, "lbs"),
  4715. name: "Crouched",
  4716. image: {
  4717. source: "./media/characters/blake/crouched.svg",
  4718. extra: 840 / 587,
  4719. bottom: 0.04
  4720. }
  4721. },
  4722. bent: {
  4723. height: math.unit(6 * 0.75, "feet"),
  4724. weight: math.unit(180, "lbs"),
  4725. name: "Bent",
  4726. image: {
  4727. source: "./media/characters/blake/bent.svg",
  4728. extra: 592 / 544,
  4729. bottom: 0.035
  4730. }
  4731. },
  4732. },
  4733. [
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(8 + 1 / 6, "feet"),
  4737. default: true
  4738. },
  4739. {
  4740. name: "Big Backside",
  4741. height: math.unit(37, "feet")
  4742. },
  4743. {
  4744. name: "Subway Shredder",
  4745. height: math.unit(72, "feet")
  4746. },
  4747. {
  4748. name: "City Carver",
  4749. height: math.unit(1675, "feet")
  4750. },
  4751. {
  4752. name: "Tectonic Tweaker",
  4753. height: math.unit(2300, "miles")
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4759. {
  4760. front: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(180, "lbs"),
  4763. name: "Front",
  4764. image: {
  4765. source: "./media/characters/guisetto/front.svg",
  4766. extra: 856 / 817,
  4767. bottom: 0.06
  4768. }
  4769. },
  4770. airborne: {
  4771. height: math.unit(6, "feet"),
  4772. weight: math.unit(180, "lbs"),
  4773. name: "Airborne",
  4774. image: {
  4775. source: "./media/characters/guisetto/airborne.svg",
  4776. extra: 584 / 525
  4777. }
  4778. },
  4779. },
  4780. [
  4781. {
  4782. name: "Normal",
  4783. height: math.unit(10 + 11 / 12, "feet"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Large",
  4788. height: math.unit(35, "feet")
  4789. },
  4790. {
  4791. name: "Macro",
  4792. height: math.unit(475, "feet")
  4793. },
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(180, "lbs"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/luxor/front.svg",
  4805. extra: 2940 / 2152
  4806. }
  4807. },
  4808. back: {
  4809. height: math.unit(6, "feet"),
  4810. weight: math.unit(180, "lbs"),
  4811. name: "Back",
  4812. image: {
  4813. source: "./media/characters/luxor/back.svg",
  4814. extra: 1083 / 960
  4815. }
  4816. },
  4817. },
  4818. [
  4819. {
  4820. name: "Normal",
  4821. height: math.unit(5 + 5 / 6, "feet"),
  4822. default: true
  4823. },
  4824. {
  4825. name: "Lamp",
  4826. height: math.unit(50, "feet")
  4827. },
  4828. {
  4829. name: "Lämp",
  4830. height: math.unit(300, "feet")
  4831. },
  4832. {
  4833. name: "The sun is a lamp",
  4834. height: math.unit(250000, "miles")
  4835. },
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4840. {
  4841. front: {
  4842. height: math.unit(6, "feet"),
  4843. weight: math.unit(50, "lbs"),
  4844. name: "Front",
  4845. image: {
  4846. source: "./media/characters/huoyan/front.svg"
  4847. }
  4848. },
  4849. side: {
  4850. height: math.unit(6, "feet"),
  4851. weight: math.unit(180, "lbs"),
  4852. name: "Side",
  4853. image: {
  4854. source: "./media/characters/huoyan/side.svg"
  4855. }
  4856. },
  4857. },
  4858. [
  4859. {
  4860. name: "Chef",
  4861. height: math.unit(9, "feet")
  4862. },
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(65, "feet"),
  4866. default: true
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(780, "feet")
  4871. },
  4872. {
  4873. name: "Flaming Mountain",
  4874. height: math.unit(4.8, "miles")
  4875. },
  4876. {
  4877. name: "Celestial",
  4878. height: math.unit(765000, "miles")
  4879. },
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4884. {
  4885. front: {
  4886. height: math.unit(5 + 3 / 4, "feet"),
  4887. weight: math.unit(120, "lbs"),
  4888. name: "Front",
  4889. image: {
  4890. source: "./media/characters/tails/front.svg"
  4891. }
  4892. }
  4893. },
  4894. [
  4895. {
  4896. name: "Normal",
  4897. height: math.unit(5 + 3 / 4, "feet"),
  4898. default: true
  4899. }
  4900. ]
  4901. ))
  4902. characterMakers.push(() => makeCharacter(
  4903. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4904. {
  4905. front: {
  4906. height: math.unit(4, "feet"),
  4907. weight: math.unit(50, "lbs"),
  4908. name: "Front",
  4909. image: {
  4910. source: "./media/characters/rainy/front.svg"
  4911. }
  4912. }
  4913. },
  4914. [
  4915. {
  4916. name: "Macro",
  4917. height: math.unit(800, "feet"),
  4918. default: true
  4919. }
  4920. ]
  4921. ))
  4922. characterMakers.push(() => makeCharacter(
  4923. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4924. {
  4925. front: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(150, "lbs"),
  4928. name: "Front",
  4929. image: {
  4930. source: "./media/characters/rainier/front.svg"
  4931. }
  4932. }
  4933. },
  4934. [
  4935. {
  4936. name: "Micro",
  4937. height: math.unit(2, "mm"),
  4938. default: true
  4939. }
  4940. ]
  4941. ))
  4942. characterMakers.push(() => makeCharacter(
  4943. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4944. {
  4945. front: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(180, "lbs"),
  4948. name: "Front",
  4949. image: {
  4950. source: "./media/characters/andy/front.svg"
  4951. }
  4952. }
  4953. },
  4954. [
  4955. {
  4956. name: "Normal",
  4957. height: math.unit(8, "feet"),
  4958. default: true
  4959. },
  4960. {
  4961. name: "Macro",
  4962. height: math.unit(1000, "feet")
  4963. },
  4964. {
  4965. name: "Megamacro",
  4966. height: math.unit(5, "miles")
  4967. },
  4968. {
  4969. name: "Gigamacro",
  4970. height: math.unit(5000, "miles")
  4971. },
  4972. ]
  4973. ))
  4974. characterMakers.push(() => makeCharacter(
  4975. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4976. {
  4977. front: {
  4978. height: math.unit(6, "feet"),
  4979. weight: math.unit(210, "lbs"),
  4980. name: "Front",
  4981. image: {
  4982. source: "./media/characters/cimmaron/front-sfw.svg",
  4983. extra: 701 / 676,
  4984. bottom: 0.046
  4985. }
  4986. },
  4987. back: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(210, "lbs"),
  4990. name: "Back",
  4991. image: {
  4992. source: "./media/characters/cimmaron/back-sfw.svg",
  4993. extra: 701 / 676,
  4994. bottom: 0.046
  4995. }
  4996. },
  4997. frontNsfw: {
  4998. height: math.unit(6, "feet"),
  4999. weight: math.unit(210, "lbs"),
  5000. name: "Front (NSFW)",
  5001. image: {
  5002. source: "./media/characters/cimmaron/front-nsfw.svg",
  5003. extra: 701 / 676,
  5004. bottom: 0.046
  5005. }
  5006. },
  5007. backNsfw: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(210, "lbs"),
  5010. name: "Back (NSFW)",
  5011. image: {
  5012. source: "./media/characters/cimmaron/back-nsfw.svg",
  5013. extra: 701 / 676,
  5014. bottom: 0.046
  5015. }
  5016. },
  5017. dick: {
  5018. height: math.unit(1.714, "feet"),
  5019. name: "Dick",
  5020. image: {
  5021. source: "./media/characters/cimmaron/dick.svg"
  5022. }
  5023. },
  5024. },
  5025. [
  5026. {
  5027. name: "Normal",
  5028. height: math.unit(6, "feet"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Macro Mayor",
  5033. height: math.unit(350, "meters")
  5034. },
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5039. {
  5040. front: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(200, "lbs"),
  5043. name: "Front",
  5044. image: {
  5045. source: "./media/characters/akari/front.svg",
  5046. extra: 962 / 901,
  5047. bottom: 0.04
  5048. }
  5049. }
  5050. },
  5051. [
  5052. {
  5053. name: "Micro",
  5054. height: math.unit(5, "inches"),
  5055. default: true
  5056. },
  5057. {
  5058. name: "Normal",
  5059. height: math.unit(7, "feet")
  5060. },
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5065. {
  5066. front: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(140, "lbs"),
  5069. name: "Front",
  5070. image: {
  5071. source: "./media/characters/cynosura/front.svg",
  5072. extra: 896 / 847
  5073. }
  5074. },
  5075. back: {
  5076. height: math.unit(6, "feet"),
  5077. weight: math.unit(140, "lbs"),
  5078. name: "Back",
  5079. image: {
  5080. source: "./media/characters/cynosura/back.svg",
  5081. extra: 1365 / 1250
  5082. }
  5083. },
  5084. },
  5085. [
  5086. {
  5087. name: "Micro",
  5088. height: math.unit(4, "inches")
  5089. },
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(5.75, "feet"),
  5093. default: true
  5094. },
  5095. {
  5096. name: "Tall",
  5097. height: math.unit(10, "feet")
  5098. },
  5099. {
  5100. name: "Big",
  5101. height: math.unit(20, "feet")
  5102. },
  5103. {
  5104. name: "Macro",
  5105. height: math.unit(50, "feet")
  5106. },
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(170, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/gin/front.svg",
  5118. extra: 1.053,
  5119. bottom: 0.025
  5120. }
  5121. },
  5122. foot: {
  5123. height: math.unit(6 / 4.25, "feet"),
  5124. name: "Foot",
  5125. image: {
  5126. source: "./media/characters/gin/foot.svg"
  5127. }
  5128. },
  5129. sole: {
  5130. height: math.unit(6 / 4.40, "feet"),
  5131. name: "Sole",
  5132. image: {
  5133. source: "./media/characters/gin/sole.svg"
  5134. }
  5135. },
  5136. },
  5137. [
  5138. {
  5139. name: "Normal",
  5140. height: math.unit(13 + 2 / 12, "feet")
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(1500, "feet")
  5145. },
  5146. {
  5147. name: "Megamacro",
  5148. height: math.unit(200, "miles"),
  5149. default: true
  5150. },
  5151. {
  5152. name: "Gigamacro",
  5153. height: math.unit(500, "megameters")
  5154. },
  5155. {
  5156. name: "Teramacro",
  5157. height: math.unit(15, "lightyears")
  5158. }
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5163. {
  5164. front: {
  5165. height: math.unit(6 + 1 / 6, "feet"),
  5166. weight: math.unit(178, "lbs"),
  5167. name: "Front",
  5168. image: {
  5169. source: "./media/characters/guy/front.svg"
  5170. }
  5171. }
  5172. },
  5173. [
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(6 + 1 / 6, "feet"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Large",
  5181. height: math.unit(25 + 7 / 12, "feet")
  5182. },
  5183. {
  5184. name: "Macro",
  5185. height: math.unit(60 + 9 / 12, "feet")
  5186. },
  5187. {
  5188. name: "Macro+",
  5189. height: math.unit(246, "feet")
  5190. },
  5191. {
  5192. name: "Macro++",
  5193. height: math.unit(878, "feet")
  5194. }
  5195. ]
  5196. ))
  5197. characterMakers.push(() => makeCharacter(
  5198. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5199. {
  5200. front: {
  5201. height: math.unit(9, "feet"),
  5202. weight: math.unit(800, "lbs"),
  5203. name: "Front",
  5204. image: {
  5205. source: "./media/characters/tiberius/front.svg",
  5206. extra: 2295 / 2071
  5207. }
  5208. },
  5209. back: {
  5210. height: math.unit(9, "feet"),
  5211. weight: math.unit(800, "lbs"),
  5212. name: "Back",
  5213. image: {
  5214. source: "./media/characters/tiberius/back.svg",
  5215. extra: 2373 / 2160
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(9, "feet"),
  5223. default: true
  5224. }
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5229. {
  5230. front: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(600, "lbs"),
  5233. name: "Front",
  5234. image: {
  5235. source: "./media/characters/surgo/front.svg",
  5236. extra: 3591 / 2227
  5237. }
  5238. },
  5239. back: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(600, "lbs"),
  5242. name: "Back",
  5243. image: {
  5244. source: "./media/characters/surgo/back.svg",
  5245. extra: 3557 / 2228
  5246. }
  5247. },
  5248. laying: {
  5249. height: math.unit(6 * 0.85, "feet"),
  5250. weight: math.unit(600, "lbs"),
  5251. name: "Laying",
  5252. image: {
  5253. source: "./media/characters/surgo/laying.svg"
  5254. }
  5255. },
  5256. },
  5257. [
  5258. {
  5259. name: "Normal",
  5260. height: math.unit(6, "feet"),
  5261. default: true
  5262. }
  5263. ]
  5264. ))
  5265. characterMakers.push(() => makeCharacter(
  5266. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5267. {
  5268. side: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(150, "lbs"),
  5271. name: "Side",
  5272. image: {
  5273. source: "./media/characters/cibus/side.svg",
  5274. extra: 800 / 400
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(6, "feet"),
  5282. default: true
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(240, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/nibbles/front.svg"
  5295. }
  5296. },
  5297. side: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(240, "lbs"),
  5300. name: "Side",
  5301. image: {
  5302. source: "./media/characters/nibbles/side.svg"
  5303. }
  5304. },
  5305. },
  5306. [
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(9, "feet"),
  5310. default: true
  5311. }
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5316. {
  5317. side: {
  5318. height: math.unit(5 + 1 / 6, "feet"),
  5319. weight: math.unit(130, "lbs"),
  5320. name: "Side",
  5321. image: {
  5322. source: "./media/characters/rikky/side.svg"
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(5 + 1 / 6, "feet")
  5330. },
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(152, "feet"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Megamacro",
  5338. height: math.unit(7, "miles")
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5344. {
  5345. side: {
  5346. height: math.unit(370, "cm"),
  5347. weight: math.unit(350, "lbs"),
  5348. name: "Side",
  5349. image: {
  5350. source: "./media/characters/malfressa/side.svg"
  5351. }
  5352. },
  5353. walking: {
  5354. height: math.unit(370, "cm"),
  5355. weight: math.unit(350, "lbs"),
  5356. name: "Walking",
  5357. image: {
  5358. source: "./media/characters/malfressa/walking.svg"
  5359. }
  5360. },
  5361. feral: {
  5362. height: math.unit(2500, "cm"),
  5363. weight: math.unit(100000, "lbs"),
  5364. name: "Feral",
  5365. image: {
  5366. source: "./media/characters/malfressa/feral.svg",
  5367. extra: 2108 / 837,
  5368. bottom: 0.02
  5369. }
  5370. },
  5371. },
  5372. [
  5373. {
  5374. name: "Normal",
  5375. height: math.unit(370, "cm")
  5376. },
  5377. {
  5378. name: "Macro",
  5379. height: math.unit(300, "meters"),
  5380. default: true
  5381. }
  5382. ]
  5383. ))
  5384. characterMakers.push(() => makeCharacter(
  5385. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5386. {
  5387. front: {
  5388. height: math.unit(6, "feet"),
  5389. weight: math.unit(60, "kg"),
  5390. name: "Front",
  5391. image: {
  5392. source: "./media/characters/jaro/front.svg"
  5393. }
  5394. },
  5395. back: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(60, "kg"),
  5398. name: "Back",
  5399. image: {
  5400. source: "./media/characters/jaro/back.svg"
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Micro",
  5407. height: math.unit(7, "inches")
  5408. },
  5409. {
  5410. name: "Normal",
  5411. height: math.unit(5.5, "feet"),
  5412. default: true
  5413. },
  5414. {
  5415. name: "Minimacro",
  5416. height: math.unit(20, "feet")
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(200, "meters")
  5421. }
  5422. ]
  5423. ))
  5424. characterMakers.push(() => makeCharacter(
  5425. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5426. {
  5427. front: {
  5428. height: math.unit(6, "feet"),
  5429. weight: math.unit(195, "lb"),
  5430. name: "Front",
  5431. image: {
  5432. source: "./media/characters/rogue/front.svg"
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Macro",
  5439. height: math.unit(90, "feet"),
  5440. default: true
  5441. },
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(5 + 8 / 12, "feet"),
  5449. weight: math.unit(140, "lb"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/piper/front.svg",
  5453. extra: 3928 / 3681
  5454. }
  5455. },
  5456. },
  5457. [
  5458. {
  5459. name: "Micro",
  5460. height: math.unit(2, "inches")
  5461. },
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(5 + 8 / 12, "feet")
  5465. },
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(250, "feet"),
  5469. default: true
  5470. },
  5471. {
  5472. name: "Megamacro",
  5473. height: math.unit(7, "miles")
  5474. },
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5479. {
  5480. front: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(220, "lb"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/gemini/front.svg"
  5486. }
  5487. },
  5488. back: {
  5489. height: math.unit(6, "feet"),
  5490. weight: math.unit(220, "lb"),
  5491. name: "Back",
  5492. image: {
  5493. source: "./media/characters/gemini/back.svg"
  5494. }
  5495. },
  5496. kneeling: {
  5497. height: math.unit(6 / 1.5, "feet"),
  5498. weight: math.unit(220, "lb"),
  5499. name: "Kneeling",
  5500. image: {
  5501. source: "./media/characters/gemini/kneeling.svg",
  5502. bottom: 0.02
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Macro",
  5509. height: math.unit(300, "meters"),
  5510. default: true
  5511. },
  5512. {
  5513. name: "Megamacro",
  5514. height: math.unit(6900, "meters")
  5515. },
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5520. {
  5521. anthro: {
  5522. height: math.unit(2.35, "meters"),
  5523. weight: math.unit(73, "kg"),
  5524. name: "Anthro",
  5525. image: {
  5526. source: "./media/characters/alicia/anthro.svg",
  5527. extra: 2571 / 2385,
  5528. bottom: 75 / 2648
  5529. }
  5530. },
  5531. paw: {
  5532. height: math.unit(1.32, "feet"),
  5533. name: "Paw",
  5534. image: {
  5535. source: "./media/characters/alicia/paw.svg"
  5536. }
  5537. },
  5538. feral: {
  5539. height: math.unit(1.69, "meters"),
  5540. weight: math.unit(73, "kg"),
  5541. name: "Feral",
  5542. image: {
  5543. source: "./media/characters/alicia/feral.svg",
  5544. extra: 2123 / 1715,
  5545. bottom: 222 / 2349
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(2.35, "meters")
  5553. },
  5554. {
  5555. name: "Macro",
  5556. height: math.unit(60, "meters"),
  5557. default: true
  5558. },
  5559. {
  5560. name: "Megamacro",
  5561. height: math.unit(10000, "kilometers")
  5562. },
  5563. ]
  5564. ))
  5565. characterMakers.push(() => makeCharacter(
  5566. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5567. {
  5568. front: {
  5569. height: math.unit(7, "feet"),
  5570. weight: math.unit(250, "lbs"),
  5571. name: "Front",
  5572. image: {
  5573. source: "./media/characters/archy/front.svg"
  5574. }
  5575. }
  5576. },
  5577. [
  5578. {
  5579. name: "Micro",
  5580. height: math.unit(1, "inch")
  5581. },
  5582. {
  5583. name: "Shorty",
  5584. height: math.unit(5, "feet")
  5585. },
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(7, "feet")
  5589. },
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(600, "meters"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Megamacro",
  5597. height: math.unit(1, "mile")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(1.65, "meters"),
  5606. weight: math.unit(74, "kg"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/berri/front.svg",
  5610. extra: 857 / 837,
  5611. bottom: 18 / 877
  5612. }
  5613. },
  5614. bum: {
  5615. height: math.unit(1.46, "feet"),
  5616. name: "Bum",
  5617. image: {
  5618. source: "./media/characters/berri/bum.svg"
  5619. }
  5620. },
  5621. mouth: {
  5622. height: math.unit(0.44, "feet"),
  5623. name: "Mouth",
  5624. image: {
  5625. source: "./media/characters/berri/mouth.svg"
  5626. }
  5627. },
  5628. paw: {
  5629. height: math.unit(0.826, "feet"),
  5630. name: "Paw",
  5631. image: {
  5632. source: "./media/characters/berri/paw.svg"
  5633. }
  5634. },
  5635. },
  5636. [
  5637. {
  5638. name: "Normal",
  5639. height: math.unit(1.65, "meters")
  5640. },
  5641. {
  5642. name: "Macro",
  5643. height: math.unit(60, "m"),
  5644. default: true
  5645. },
  5646. {
  5647. name: "Megamacro",
  5648. height: math.unit(9.213, "km")
  5649. },
  5650. {
  5651. name: "Planet Eater",
  5652. height: math.unit(489, "megameters")
  5653. },
  5654. {
  5655. name: "Teramacro",
  5656. height: math.unit(2471635000000, "meters")
  5657. },
  5658. {
  5659. name: "Examacro",
  5660. height: math.unit(8.0624e+26, "meters")
  5661. }
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5666. {
  5667. front: {
  5668. height: math.unit(1.72, "meters"),
  5669. weight: math.unit(68, "kg"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/lexi/front.svg"
  5673. }
  5674. }
  5675. },
  5676. [
  5677. {
  5678. name: "Very Smol",
  5679. height: math.unit(10, "mm")
  5680. },
  5681. {
  5682. name: "Micro",
  5683. height: math.unit(6.8, "cm"),
  5684. default: true
  5685. },
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(1.72, "m")
  5689. }
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(1.69, "meters"),
  5697. weight: math.unit(68, "kg"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/martin/front.svg",
  5701. extra: 596 / 581
  5702. }
  5703. }
  5704. },
  5705. [
  5706. {
  5707. name: "Micro",
  5708. height: math.unit(6.85, "cm"),
  5709. default: true
  5710. },
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(1.69, "m")
  5714. }
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5719. {
  5720. front: {
  5721. height: math.unit(1.69, "meters"),
  5722. weight: math.unit(68, "kg"),
  5723. name: "Front",
  5724. image: {
  5725. source: "./media/characters/juno/front.svg"
  5726. }
  5727. }
  5728. },
  5729. [
  5730. {
  5731. name: "Micro",
  5732. height: math.unit(7, "cm")
  5733. },
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(1.89, "m")
  5737. },
  5738. {
  5739. name: "Macro",
  5740. height: math.unit(353, "meters"),
  5741. default: true
  5742. }
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5747. {
  5748. front: {
  5749. height: math.unit(1.93, "meters"),
  5750. weight: math.unit(83, "kg"),
  5751. name: "Front",
  5752. image: {
  5753. source: "./media/characters/samantha/front.svg"
  5754. }
  5755. },
  5756. frontClothed: {
  5757. height: math.unit(1.93, "meters"),
  5758. weight: math.unit(83, "kg"),
  5759. name: "Front (Clothed)",
  5760. image: {
  5761. source: "./media/characters/samantha/front-clothed.svg"
  5762. }
  5763. },
  5764. back: {
  5765. height: math.unit(1.93, "meters"),
  5766. weight: math.unit(83, "kg"),
  5767. name: "Back",
  5768. image: {
  5769. source: "./media/characters/samantha/back.svg"
  5770. }
  5771. },
  5772. },
  5773. [
  5774. {
  5775. name: "Normal",
  5776. height: math.unit(1.93, "m")
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(74, "meters"),
  5781. default: true
  5782. },
  5783. {
  5784. name: "Macro+",
  5785. height: math.unit(223, "meters"),
  5786. },
  5787. {
  5788. name: "Megamacro",
  5789. height: math.unit(8381, "meters"),
  5790. },
  5791. {
  5792. name: "Megamacro+",
  5793. height: math.unit(12000, "kilometers")
  5794. },
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(1.92, "meters"),
  5802. weight: math.unit(80, "kg"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/dr-clay/front.svg"
  5806. }
  5807. },
  5808. frontClothed: {
  5809. height: math.unit(1.92, "meters"),
  5810. weight: math.unit(80, "kg"),
  5811. name: "Front (Clothed)",
  5812. image: {
  5813. source: "./media/characters/dr-clay/front-clothed.svg"
  5814. }
  5815. }
  5816. },
  5817. [
  5818. {
  5819. name: "Normal",
  5820. height: math.unit(1.92, "m")
  5821. },
  5822. {
  5823. name: "Macro",
  5824. height: math.unit(214, "meters"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Macro+",
  5829. height: math.unit(12.237, "meters"),
  5830. },
  5831. {
  5832. name: "Megamacro",
  5833. height: math.unit(557, "megameters"),
  5834. },
  5835. {
  5836. name: "Unimaginable",
  5837. height: math.unit(120e9, "lightyears")
  5838. },
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5843. {
  5844. front: {
  5845. height: math.unit(2, "meters"),
  5846. weight: math.unit(80, "kg"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5850. }
  5851. }
  5852. },
  5853. [
  5854. {
  5855. name: "Teramacro",
  5856. height: math.unit(500000, "lightyears"),
  5857. default: true
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(2, "meters"),
  5866. weight: math.unit(150, "kg"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/vemus/front.svg",
  5870. extra: 2384 / 2084,
  5871. bottom: 0.0123
  5872. }
  5873. }
  5874. },
  5875. [
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(3.75, "meters"),
  5879. default: true
  5880. },
  5881. {
  5882. name: "Big",
  5883. height: math.unit(8, "meters")
  5884. },
  5885. {
  5886. name: "Macro",
  5887. height: math.unit(100, "meters")
  5888. },
  5889. {
  5890. name: "Macro+",
  5891. height: math.unit(1500, "meters")
  5892. },
  5893. {
  5894. name: "Stellar",
  5895. height: math.unit(14e8, "meters")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(2, "meters"),
  5904. weight: math.unit(70, "kg"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/beherit/front.svg",
  5908. extra: 1408 / 1242
  5909. }
  5910. }
  5911. },
  5912. [
  5913. {
  5914. name: "Normal",
  5915. height: math.unit(6, "feet")
  5916. },
  5917. {
  5918. name: "Lorg",
  5919. height: math.unit(25, "feet"),
  5920. default: true
  5921. },
  5922. {
  5923. name: "Lorger",
  5924. height: math.unit(75, "feet")
  5925. },
  5926. {
  5927. name: "Macro",
  5928. height: math.unit(200, "meters")
  5929. },
  5930. ]
  5931. ))
  5932. characterMakers.push(() => makeCharacter(
  5933. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5934. {
  5935. front: {
  5936. height: math.unit(2, "meters"),
  5937. weight: math.unit(150, "kg"),
  5938. name: "Front",
  5939. image: {
  5940. source: "./media/characters/everett/front.svg",
  5941. extra: 2038 / 1737,
  5942. bottom: 0.03
  5943. }
  5944. },
  5945. paw: {
  5946. height: math.unit(2 / 3.6, "meters"),
  5947. name: "Paw",
  5948. image: {
  5949. source: "./media/characters/everett/paw.svg"
  5950. }
  5951. },
  5952. },
  5953. [
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(15, "feet"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Lorg",
  5961. height: math.unit(70, "feet"),
  5962. default: true
  5963. },
  5964. {
  5965. name: "Lorger",
  5966. height: math.unit(250, "feet")
  5967. },
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(500, "meters")
  5971. },
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5976. {
  5977. front: {
  5978. height: math.unit(2, "meters"),
  5979. weight: math.unit(86, "kg"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/rose-lion/front.svg"
  5983. }
  5984. },
  5985. bent: {
  5986. height: math.unit(2 / 1.4288, "meters"),
  5987. weight: math.unit(86, "kg"),
  5988. name: "Bent",
  5989. image: {
  5990. source: "./media/characters/rose-lion/bent.svg"
  5991. }
  5992. }
  5993. },
  5994. [
  5995. {
  5996. name: "Mini-Micro",
  5997. height: math.unit(1, "cm")
  5998. },
  5999. {
  6000. name: "Micro",
  6001. height: math.unit(3.5, "inches"),
  6002. default: true
  6003. },
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(6 + 1 / 6, "feet")
  6007. },
  6008. {
  6009. name: "Mini-Macro",
  6010. height: math.unit(9 + 10 / 12, "feet")
  6011. },
  6012. ]
  6013. ))
  6014. characterMakers.push(() => makeCharacter(
  6015. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6016. {
  6017. front: {
  6018. height: math.unit(2, "meters"),
  6019. weight: math.unit(350, "lbs"),
  6020. name: "Front",
  6021. image: {
  6022. source: "./media/characters/regal/front.svg"
  6023. }
  6024. },
  6025. back: {
  6026. height: math.unit(2, "meters"),
  6027. weight: math.unit(350, "lbs"),
  6028. name: "Back",
  6029. image: {
  6030. source: "./media/characters/regal/back.svg"
  6031. }
  6032. },
  6033. },
  6034. [
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(350, "feet"),
  6038. default: true
  6039. }
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6044. {
  6045. front: {
  6046. height: math.unit(4 + 11 / 12, "feet"),
  6047. weight: math.unit(100, "lbs"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/opal/front.svg"
  6051. }
  6052. },
  6053. frontAlt: {
  6054. height: math.unit(4 + 11 / 12, "feet"),
  6055. weight: math.unit(100, "lbs"),
  6056. name: "Front (Alt)",
  6057. image: {
  6058. source: "./media/characters/opal/front-alt.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Small",
  6065. height: math.unit(4 + 11 / 12, "feet")
  6066. },
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(20, "feet"),
  6070. default: true
  6071. },
  6072. {
  6073. name: "Macro",
  6074. height: math.unit(120, "feet")
  6075. },
  6076. {
  6077. name: "Megamacro",
  6078. height: math.unit(80, "miles")
  6079. },
  6080. {
  6081. name: "True Size",
  6082. height: math.unit(100000, "lightyears")
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(200, "lbs"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/vector-wuff/front.svg"
  6095. }
  6096. }
  6097. },
  6098. [
  6099. {
  6100. name: "Normal",
  6101. height: math.unit(2.8, "meters")
  6102. },
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(450, "meters"),
  6106. default: true
  6107. },
  6108. {
  6109. name: "Megamacro",
  6110. height: math.unit(15, "kilometers")
  6111. }
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6116. {
  6117. front: {
  6118. height: math.unit(6, "feet"),
  6119. weight: math.unit(256, "lbs"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/dannik/front.svg"
  6123. }
  6124. }
  6125. },
  6126. [
  6127. {
  6128. name: "Macro",
  6129. height: math.unit(69.57, "meters"),
  6130. default: true
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6136. {
  6137. front: {
  6138. height: math.unit(6, "feet"),
  6139. weight: math.unit(120, "lbs"),
  6140. name: "Front",
  6141. image: {
  6142. source: "./media/characters/azura-saharah/front.svg"
  6143. }
  6144. },
  6145. back: {
  6146. height: math.unit(6, "feet"),
  6147. weight: math.unit(120, "lbs"),
  6148. name: "Back",
  6149. image: {
  6150. source: "./media/characters/azura-saharah/back.svg"
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Macro",
  6157. height: math.unit(100, "feet"),
  6158. default: true
  6159. },
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6164. {
  6165. side: {
  6166. height: math.unit(5 + 4 / 12, "feet"),
  6167. weight: math.unit(163, "lbs"),
  6168. name: "Side",
  6169. image: {
  6170. source: "./media/characters/kennedy/side.svg"
  6171. }
  6172. }
  6173. },
  6174. [
  6175. {
  6176. name: "Standard Doggo",
  6177. height: math.unit(5 + 4 / 12, "feet")
  6178. },
  6179. {
  6180. name: "Big Doggo",
  6181. height: math.unit(25 + 3 / 12, "feet"),
  6182. default: true
  6183. },
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6188. {
  6189. front: {
  6190. height: math.unit(6, "feet"),
  6191. weight: math.unit(90, "lbs"),
  6192. name: "Front",
  6193. image: {
  6194. source: "./media/characters/odi-lunar/front.svg"
  6195. }
  6196. }
  6197. },
  6198. [
  6199. {
  6200. name: "Micro",
  6201. height: math.unit(3, "inches"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(5.5, "feet")
  6207. }
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6212. {
  6213. back: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(220, "lbs"),
  6216. name: "Back",
  6217. image: {
  6218. source: "./media/characters/mandake/back.svg"
  6219. }
  6220. }
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(7, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(78, "feet")
  6231. },
  6232. {
  6233. name: "Macro+",
  6234. height: math.unit(300, "meters")
  6235. },
  6236. {
  6237. name: "Macro++",
  6238. height: math.unit(2400, "feet")
  6239. },
  6240. {
  6241. name: "Megamacro",
  6242. height: math.unit(5167, "meters")
  6243. },
  6244. {
  6245. name: "Gigamacro",
  6246. height: math.unit(41769, "miles")
  6247. },
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6252. {
  6253. front: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(120, "lbs"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/yozey/front.svg"
  6259. }
  6260. },
  6261. frontAlt: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(120, "lbs"),
  6264. name: "Front (Alt)",
  6265. image: {
  6266. source: "./media/characters/yozey/front-alt.svg"
  6267. }
  6268. },
  6269. side: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(120, "lbs"),
  6272. name: "Side",
  6273. image: {
  6274. source: "./media/characters/yozey/side.svg"
  6275. }
  6276. },
  6277. },
  6278. [
  6279. {
  6280. name: "Micro",
  6281. height: math.unit(3, "inches"),
  6282. default: true
  6283. },
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(6, "feet")
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6292. {
  6293. front: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(103, "lbs"),
  6296. name: "Front",
  6297. image: {
  6298. source: "./media/characters/valeska-voss/front.svg"
  6299. }
  6300. }
  6301. },
  6302. [
  6303. {
  6304. name: "Mini-Sized Sub",
  6305. height: math.unit(3.1, "inches")
  6306. },
  6307. {
  6308. name: "Mid-Sized Sub",
  6309. height: math.unit(6.2, "inches")
  6310. },
  6311. {
  6312. name: "Full-Sized Sub",
  6313. height: math.unit(9.3, "inches")
  6314. },
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(5 + 2 / 12, "foot"),
  6318. default: true
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(160, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/gene-zeta/front.svg",
  6331. bottom: 0.03,
  6332. extra: 1
  6333. }
  6334. }
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(6.25, "foot"),
  6340. default: true
  6341. },
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(350, "lbs"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/razinox/front.svg",
  6353. extra: 1686 / 1548,
  6354. bottom: 28.2 / 1868
  6355. }
  6356. },
  6357. back: {
  6358. height: math.unit(6, "feet"),
  6359. weight: math.unit(350, "lbs"),
  6360. name: "Back",
  6361. image: {
  6362. source: "./media/characters/razinox/back.svg",
  6363. extra: 1660 / 1590,
  6364. bottom: 15 / 1665
  6365. }
  6366. },
  6367. },
  6368. [
  6369. {
  6370. name: "Normal",
  6371. height: math.unit(10 + 8 / 12, "foot")
  6372. },
  6373. {
  6374. name: "Minimacro",
  6375. height: math.unit(15, "foot")
  6376. },
  6377. {
  6378. name: "Macro",
  6379. height: math.unit(60, "foot"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(5, "miles")
  6385. },
  6386. {
  6387. name: "Gigamacro",
  6388. height: math.unit(6000, "miles")
  6389. },
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(150, "lbs"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/cobalt/front.svg"
  6401. }
  6402. }
  6403. },
  6404. [
  6405. {
  6406. name: "Normal",
  6407. height: math.unit(8 + 1 / 12, "foot")
  6408. },
  6409. {
  6410. name: "Macro",
  6411. height: math.unit(111, "foot"),
  6412. default: true
  6413. },
  6414. {
  6415. name: "Supracosmic",
  6416. height: math.unit(1e42, "feet")
  6417. },
  6418. ]
  6419. ))
  6420. characterMakers.push(() => makeCharacter(
  6421. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6422. {
  6423. front: {
  6424. height: math.unit(6, "feet"),
  6425. weight: math.unit(140, "lbs"),
  6426. name: "Front",
  6427. image: {
  6428. source: "./media/characters/amanda/front.svg"
  6429. }
  6430. }
  6431. },
  6432. [
  6433. {
  6434. name: "Micro",
  6435. height: math.unit(5, "inches"),
  6436. default: true
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(5.59, "feet"),
  6445. weight: math.unit(250, "lbs"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/teal/front.svg"
  6449. }
  6450. },
  6451. frontAlt: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(250, "lbs"),
  6454. name: "Front (Alt)",
  6455. image: {
  6456. source: "./media/characters/teal/front-alt.svg",
  6457. bottom: 0.04,
  6458. extra: 1
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Normal",
  6465. height: math.unit(12, "feet"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(300, "feet")
  6471. },
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6476. {
  6477. frontCat: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(180, "lbs"),
  6480. name: "Front (Cat)",
  6481. image: {
  6482. source: "./media/characters/ravin-amulet/front-cat.svg"
  6483. }
  6484. },
  6485. frontCatAlt: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(180, "lbs"),
  6488. name: "Front (Alt, Cat)",
  6489. image: {
  6490. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6491. }
  6492. },
  6493. frontWerewolf: {
  6494. height: math.unit(6 * 1.2, "feet"),
  6495. weight: math.unit(225, "lbs"),
  6496. name: "Front (Werewolf)",
  6497. image: {
  6498. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6499. }
  6500. },
  6501. backWerewolf: {
  6502. height: math.unit(6 * 1.2, "feet"),
  6503. weight: math.unit(225, "lbs"),
  6504. name: "Back (Werewolf)",
  6505. image: {
  6506. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6507. }
  6508. },
  6509. },
  6510. [
  6511. {
  6512. name: "Nano",
  6513. height: math.unit(1, "micrometer")
  6514. },
  6515. {
  6516. name: "Micro",
  6517. height: math.unit(1, "inch")
  6518. },
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(6, "feet"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(60, "feet")
  6527. }
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(165, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/fluoresce/front.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Micro",
  6545. height: math.unit(6, "cm")
  6546. },
  6547. {
  6548. name: "Normal",
  6549. height: math.unit(5 + 7 / 12, "feet"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Macro",
  6554. height: math.unit(56, "feet")
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(1.9, "miles")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(9 + 6 / 12, "feet"),
  6567. weight: math.unit(523, "lbs"),
  6568. name: "Side",
  6569. image: {
  6570. source: "./media/characters/aurora/side.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(9 + 6 / 12, "feet")
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(96, "feet"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Macro+",
  6586. height: math.unit(243, "feet")
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(194, "cm"),
  6595. weight: math.unit(90, "kg"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/ranek/front.svg"
  6599. }
  6600. },
  6601. side: {
  6602. height: math.unit(194, "cm"),
  6603. weight: math.unit(90, "kg"),
  6604. name: "Side",
  6605. image: {
  6606. source: "./media/characters/ranek/side.svg"
  6607. }
  6608. },
  6609. back: {
  6610. height: math.unit(194, "cm"),
  6611. weight: math.unit(90, "kg"),
  6612. name: "Back",
  6613. image: {
  6614. source: "./media/characters/ranek/back.svg"
  6615. }
  6616. },
  6617. feral: {
  6618. height: math.unit(30, "cm"),
  6619. weight: math.unit(1.6, "lbs"),
  6620. name: "Feral",
  6621. image: {
  6622. source: "./media/characters/ranek/feral.svg"
  6623. }
  6624. },
  6625. },
  6626. [
  6627. {
  6628. name: "Normal",
  6629. height: math.unit(194, "cm"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Macro",
  6634. height: math.unit(100, "meters")
  6635. },
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6640. {
  6641. front: {
  6642. height: math.unit(5 + 6 / 12, "feet"),
  6643. weight: math.unit(153, "lbs"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/andrew-cooper/front.svg"
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Nano",
  6653. height: math.unit(1, "mm")
  6654. },
  6655. {
  6656. name: "Micro",
  6657. height: math.unit(2, "inches")
  6658. },
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(5 + 6 / 12, "feet"),
  6662. default: true
  6663. }
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(180, "lbs"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/akane-sato/front.svg",
  6675. extra: 1219 / 1140
  6676. }
  6677. },
  6678. back: {
  6679. height: math.unit(6, "feet"),
  6680. weight: math.unit(180, "lbs"),
  6681. name: "Back",
  6682. image: {
  6683. source: "./media/characters/akane-sato/back.svg",
  6684. extra: 1219 / 1170
  6685. }
  6686. },
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(2.5, "meters")
  6692. },
  6693. {
  6694. name: "Macro",
  6695. height: math.unit(250, "meters"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Megamacro",
  6700. height: math.unit(25, "km")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(65, "kg"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/rook/front.svg",
  6713. extra: 960 / 950
  6714. }
  6715. }
  6716. },
  6717. [
  6718. {
  6719. name: "Normal",
  6720. height: math.unit(8.8, "feet")
  6721. },
  6722. {
  6723. name: "Macro",
  6724. height: math.unit(88, "feet"),
  6725. default: true
  6726. },
  6727. {
  6728. name: "Megamacro",
  6729. height: math.unit(8, "miles")
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(12 + 2 / 12, "feet"),
  6738. weight: math.unit(808, "lbs"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/prodigy/front.svg"
  6742. }
  6743. }
  6744. },
  6745. [
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(12 + 2 / 12, "feet"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Macro",
  6753. height: math.unit(143, "feet")
  6754. },
  6755. {
  6756. name: "Macro+",
  6757. height: math.unit(400, "feet")
  6758. },
  6759. ]
  6760. ))
  6761. characterMakers.push(() => makeCharacter(
  6762. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6763. {
  6764. front: {
  6765. height: math.unit(6, "feet"),
  6766. weight: math.unit(225, "lbs"),
  6767. name: "Front",
  6768. image: {
  6769. source: "./media/characters/daniel/front.svg"
  6770. }
  6771. },
  6772. leaning: {
  6773. height: math.unit(6, "feet"),
  6774. weight: math.unit(225, "lbs"),
  6775. name: "Leaning",
  6776. image: {
  6777. source: "./media/characters/daniel/leaning.svg"
  6778. }
  6779. },
  6780. },
  6781. [
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(1000, "feet"),
  6785. default: true
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(6, "feet"),
  6794. weight: math.unit(88, "lbs"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/chiros/front.svg",
  6798. extra: 306 / 226
  6799. }
  6800. },
  6801. side: {
  6802. height: math.unit(6, "feet"),
  6803. weight: math.unit(88, "lbs"),
  6804. name: "Side",
  6805. image: {
  6806. source: "./media/characters/chiros/side.svg",
  6807. extra: 306 / 226
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(6, "cm"),
  6815. default: true
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6821. {
  6822. front: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(100, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/selka/front.svg",
  6828. extra: 947 / 887
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(5, "cm"),
  6836. default: true
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(8 + 3 / 12, "feet"),
  6845. weight: math.unit(424, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/verin/front.svg",
  6849. extra: 1845 / 1550
  6850. }
  6851. },
  6852. frontArmored: {
  6853. height: math.unit(8 + 3 / 12, "feet"),
  6854. weight: math.unit(424, "lbs"),
  6855. name: "Front (Armored)",
  6856. image: {
  6857. source: "./media/characters/verin/front-armor.svg",
  6858. extra: 1845 / 1550,
  6859. bottom: 0.01
  6860. }
  6861. },
  6862. back: {
  6863. height: math.unit(8 + 3 / 12, "feet"),
  6864. weight: math.unit(424, "lbs"),
  6865. name: "Back",
  6866. image: {
  6867. source: "./media/characters/verin/back.svg",
  6868. bottom: 0.1,
  6869. extra: 1
  6870. }
  6871. },
  6872. foot: {
  6873. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6874. name: "Foot",
  6875. image: {
  6876. source: "./media/characters/verin/foot.svg"
  6877. }
  6878. },
  6879. },
  6880. [
  6881. {
  6882. name: "Normal",
  6883. height: math.unit(8 + 3 / 12, "feet")
  6884. },
  6885. {
  6886. name: "Minimacro",
  6887. height: math.unit(21, "feet"),
  6888. default: true
  6889. },
  6890. {
  6891. name: "Macro",
  6892. height: math.unit(626, "feet")
  6893. },
  6894. ]
  6895. ))
  6896. characterMakers.push(() => makeCharacter(
  6897. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6898. {
  6899. front: {
  6900. height: math.unit(2.718, "meters"),
  6901. weight: math.unit(150, "lbs"),
  6902. name: "Front",
  6903. image: {
  6904. source: "./media/characters/sovrim-terraquian/front.svg"
  6905. }
  6906. },
  6907. back: {
  6908. height: math.unit(2.718, "meters"),
  6909. weight: math.unit(150, "lbs"),
  6910. name: "Back",
  6911. image: {
  6912. source: "./media/characters/sovrim-terraquian/back.svg"
  6913. }
  6914. }
  6915. },
  6916. [
  6917. {
  6918. name: "Micro",
  6919. height: math.unit(2, "inches")
  6920. },
  6921. {
  6922. name: "Small",
  6923. height: math.unit(1, "meter")
  6924. },
  6925. {
  6926. name: "Normal",
  6927. height: math.unit(Math.E, "meters"),
  6928. default: true
  6929. },
  6930. {
  6931. name: "Macro",
  6932. height: math.unit(20, "meters")
  6933. },
  6934. {
  6935. name: "Macro+",
  6936. height: math.unit(400, "meters")
  6937. },
  6938. ]
  6939. ))
  6940. characterMakers.push(() => makeCharacter(
  6941. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6942. {
  6943. front: {
  6944. height: math.unit(7, "feet"),
  6945. weight: math.unit(489, "lbs"),
  6946. name: "Front",
  6947. image: {
  6948. source: "./media/characters/reece-silvermane/front.svg",
  6949. bottom: 0.02,
  6950. extra: 1
  6951. }
  6952. },
  6953. },
  6954. [
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(1.5, "miles"),
  6958. default: true
  6959. },
  6960. ]
  6961. ))
  6962. characterMakers.push(() => makeCharacter(
  6963. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6964. {
  6965. front: {
  6966. height: math.unit(6, "feet"),
  6967. weight: math.unit(78, "kg"),
  6968. name: "Front",
  6969. image: {
  6970. source: "./media/characters/kane/front.svg",
  6971. extra: 978 / 899
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(2.1, "m"),
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(1, "km"),
  6983. default: true
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6989. {
  6990. front: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(200, "kg"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/tegon/front.svg",
  6996. bottom: 0.01,
  6997. extra: 1
  6998. }
  6999. },
  7000. },
  7001. [
  7002. {
  7003. name: "Micro",
  7004. height: math.unit(1, "inch")
  7005. },
  7006. {
  7007. name: "Normal",
  7008. height: math.unit(6 + 3 / 12, "feet"),
  7009. default: true
  7010. },
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(300, "feet")
  7014. },
  7015. {
  7016. name: "Megamacro",
  7017. height: math.unit(69, "miles")
  7018. },
  7019. ]
  7020. ))
  7021. characterMakers.push(() => makeCharacter(
  7022. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7023. {
  7024. side: {
  7025. height: math.unit(6, "feet"),
  7026. weight: math.unit(2304, "lbs"),
  7027. name: "Side",
  7028. image: {
  7029. source: "./media/characters/arcturax/side.svg",
  7030. extra: 790 / 376,
  7031. bottom: 0.01
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Micro",
  7038. height: math.unit(2, "inch")
  7039. },
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(6, "feet")
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(39, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Megamacro",
  7051. height: math.unit(7, "miles")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(50, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/sentri/front.svg",
  7064. extra: 1750 / 1570,
  7065. bottom: 0.025
  7066. }
  7067. },
  7068. frontAlt: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(50, "lbs"),
  7071. name: "Front (Alt)",
  7072. image: {
  7073. source: "./media/characters/sentri/front-alt.svg",
  7074. extra: 1750 / 1570,
  7075. bottom: 0.025
  7076. }
  7077. },
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(15, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(2500, "feet")
  7088. }
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(5 + 8 / 12, "feet"),
  7096. weight: math.unit(130, "lbs"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/corvin/front.svg",
  7100. extra: 1803 / 1629
  7101. }
  7102. },
  7103. frontShirt: {
  7104. height: math.unit(5 + 8 / 12, "feet"),
  7105. weight: math.unit(130, "lbs"),
  7106. name: "Front (Shirt)",
  7107. image: {
  7108. source: "./media/characters/corvin/front-shirt.svg",
  7109. extra: 1803 / 1629
  7110. }
  7111. },
  7112. frontPoncho: {
  7113. height: math.unit(5 + 8 / 12, "feet"),
  7114. weight: math.unit(130, "lbs"),
  7115. name: "Front (Poncho)",
  7116. image: {
  7117. source: "./media/characters/corvin/front-poncho.svg",
  7118. extra: 1803 / 1629
  7119. }
  7120. },
  7121. side: {
  7122. height: math.unit(5 + 8 / 12, "feet"),
  7123. weight: math.unit(130, "lbs"),
  7124. name: "Side",
  7125. image: {
  7126. source: "./media/characters/corvin/side.svg",
  7127. extra: 1012 / 945
  7128. }
  7129. },
  7130. back: {
  7131. height: math.unit(5 + 8 / 12, "feet"),
  7132. weight: math.unit(130, "lbs"),
  7133. name: "Back",
  7134. image: {
  7135. source: "./media/characters/corvin/back.svg",
  7136. extra: 1803 / 1629
  7137. }
  7138. },
  7139. },
  7140. [
  7141. {
  7142. name: "Micro",
  7143. height: math.unit(3, "inches")
  7144. },
  7145. {
  7146. name: "Normal",
  7147. height: math.unit(5 + 8 / 12, "feet")
  7148. },
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(300, "feet"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Megamacro",
  7156. height: math.unit(500, "miles")
  7157. }
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7162. {
  7163. front: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(135, "lbs"),
  7166. name: "Front",
  7167. image: {
  7168. source: "./media/characters/q/front.svg",
  7169. extra: 854 / 752,
  7170. bottom: 0.005
  7171. }
  7172. },
  7173. back: {
  7174. height: math.unit(6, "feet"),
  7175. weight: math.unit(130, "lbs"),
  7176. name: "Back",
  7177. image: {
  7178. source: "./media/characters/q/back.svg",
  7179. extra: 854 / 752
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(90, "feet"),
  7187. default: true
  7188. },
  7189. {
  7190. name: "Extra Macro",
  7191. height: math.unit(300, "feet"),
  7192. },
  7193. {
  7194. name: "BIG WALF",
  7195. height: math.unit(750, "feet"),
  7196. },
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7201. {
  7202. front: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(150, "lbs"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/carley/front.svg",
  7208. extra: 3927 / 3540,
  7209. bottom: 0.03
  7210. }
  7211. }
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(6 + 3 / 12, "feet")
  7217. },
  7218. {
  7219. name: "Macro",
  7220. height: math.unit(185, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(8, "miles"),
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(3, "feet"),
  7234. weight: math.unit(28, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/citrine/front.svg"
  7238. }
  7239. }
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(3, "feet"),
  7245. default: true
  7246. }
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7251. {
  7252. front: {
  7253. height: math.unit(14, "feet"),
  7254. weight: math.unit(1450, "kg"),
  7255. capacity: math.unit(15, "people"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/aura-starwind/front.svg",
  7259. extra: 1455 / 1335
  7260. }
  7261. },
  7262. side: {
  7263. height: math.unit(14, "feet"),
  7264. weight: math.unit(1450, "kg"),
  7265. capacity: math.unit(15, "people"),
  7266. name: "Side",
  7267. image: {
  7268. source: "./media/characters/aura-starwind/side.svg",
  7269. extra: 1654 / 1497
  7270. }
  7271. },
  7272. taur: {
  7273. height: math.unit(18, "feet"),
  7274. weight: math.unit(5500, "kg"),
  7275. capacity: math.unit(50, "people"),
  7276. name: "Taur",
  7277. image: {
  7278. source: "./media/characters/aura-starwind/taur.svg",
  7279. extra: 1760 / 1650
  7280. }
  7281. },
  7282. feral: {
  7283. height: math.unit(46, "feet"),
  7284. weight: math.unit(25000, "kg"),
  7285. capacity: math.unit(120, "people"),
  7286. name: "Feral",
  7287. image: {
  7288. source: "./media/characters/aura-starwind/feral.svg"
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(14, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(50, "meters")
  7301. },
  7302. {
  7303. name: "Megamacro",
  7304. height: math.unit(5000, "meters")
  7305. },
  7306. {
  7307. name: "Gigamacro",
  7308. height: math.unit(100000, "kilometers")
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(2 + 7 / 12, "feet"),
  7317. weight: math.unit(32, "lbs"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/rivet/front.svg",
  7321. extra: 1716 / 1658,
  7322. bottom: 0.03
  7323. }
  7324. },
  7325. foot: {
  7326. height: math.unit(0.551, "feet"),
  7327. name: "Rivet's Foot",
  7328. image: {
  7329. source: "./media/characters/rivet/foot.svg"
  7330. },
  7331. rename: true
  7332. }
  7333. },
  7334. [
  7335. {
  7336. name: "Micro",
  7337. height: math.unit(1.5, "inches"),
  7338. },
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(2 + 7 / 12, "feet"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(85, "feet")
  7347. },
  7348. {
  7349. name: "Megamacro",
  7350. height: math.unit(2.2, "km")
  7351. }
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(5 + 9 / 12, "feet"),
  7359. weight: math.unit(150, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/coffee/front.svg",
  7363. extra: 3666 / 3032,
  7364. bottom: 0.04
  7365. }
  7366. },
  7367. foot: {
  7368. height: math.unit(1.29, "feet"),
  7369. name: "Foot",
  7370. image: {
  7371. source: "./media/characters/coffee/foot.svg"
  7372. }
  7373. },
  7374. },
  7375. [
  7376. {
  7377. name: "Micro",
  7378. height: math.unit(2, "inches"),
  7379. },
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(5 + 9 / 12, "feet"),
  7383. default: true
  7384. },
  7385. {
  7386. name: "Macro",
  7387. height: math.unit(800, "feet")
  7388. },
  7389. {
  7390. name: "Megamacro",
  7391. height: math.unit(25, "miles")
  7392. }
  7393. ]
  7394. ))
  7395. characterMakers.push(() => makeCharacter(
  7396. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7397. {
  7398. front: {
  7399. height: math.unit(6, "feet"),
  7400. weight: math.unit(200, "lbs"),
  7401. name: "Front",
  7402. image: {
  7403. source: "./media/characters/chari-gal/front.svg",
  7404. extra: 1568 / 1385,
  7405. bottom: 0.047
  7406. }
  7407. },
  7408. gigantamax: {
  7409. height: math.unit(6 * 16, "feet"),
  7410. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7411. name: "Gigantamax",
  7412. image: {
  7413. source: "./media/characters/chari-gal/gigantamax.svg",
  7414. extra: 1124 / 888,
  7415. bottom: 0.03
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(5 + 7 / 12, "feet")
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(200, "feet"),
  7427. default: true
  7428. }
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(150, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/nova/front.svg",
  7440. extra: 5000 / 4722,
  7441. bottom: 0.02
  7442. }
  7443. }
  7444. },
  7445. [
  7446. {
  7447. name: "Micro-",
  7448. height: math.unit(0.8, "inches")
  7449. },
  7450. {
  7451. name: "Micro",
  7452. height: math.unit(2, "inches"),
  7453. default: true
  7454. },
  7455. ]
  7456. ))
  7457. characterMakers.push(() => makeCharacter(
  7458. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7459. {
  7460. front: {
  7461. height: math.unit(3 + 1 / 12, "feet"),
  7462. weight: math.unit(21.7, "lbs"),
  7463. name: "Front",
  7464. image: {
  7465. source: "./media/characters/argent/front.svg",
  7466. extra: 1471 / 1331,
  7467. bottom: 100.8 / 1575.5
  7468. }
  7469. }
  7470. },
  7471. [
  7472. {
  7473. name: "Micro",
  7474. height: math.unit(2, "inches")
  7475. },
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(3 + 1 / 12, "feet"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(120, "feet")
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7489. {
  7490. lamp: {
  7491. height: math.unit(7 * 1559 / 989, "feet"),
  7492. name: "Magic Lamp",
  7493. image: {
  7494. source: "./media/characters/mira-al-cul/lamp.svg",
  7495. extra: 1617 / 1559
  7496. }
  7497. },
  7498. front: {
  7499. height: math.unit(7, "feet"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/mira-al-cul/front.svg",
  7503. extra: 1044 / 990
  7504. }
  7505. },
  7506. },
  7507. [
  7508. {
  7509. name: "Heavily Restricted",
  7510. height: math.unit(7 * 1559 / 989, "feet")
  7511. },
  7512. {
  7513. name: "Freshly Freed",
  7514. height: math.unit(50 * 1559 / 989, "feet")
  7515. },
  7516. {
  7517. name: "World Encompassing",
  7518. height: math.unit(10000 * 1559 / 989, "miles")
  7519. },
  7520. {
  7521. name: "Galactic",
  7522. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7523. },
  7524. {
  7525. name: "Palmed Universe",
  7526. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7527. default: true
  7528. },
  7529. {
  7530. name: "Multiversal Matriarch",
  7531. height: math.unit(8.87e10, "yottameters")
  7532. },
  7533. {
  7534. name: "Void Mother",
  7535. height: math.unit(3.14e110, "yottaparsecs")
  7536. },
  7537. ]
  7538. ))
  7539. characterMakers.push(() => makeCharacter(
  7540. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7541. {
  7542. front: {
  7543. height: math.unit(17 + 1 / 12, "feet"),
  7544. weight: math.unit(476.2 * 5, "lbs"),
  7545. name: "Front",
  7546. image: {
  7547. source: "./media/characters/kuro-shi-uchū/front.svg",
  7548. extra: 2329 / 1835,
  7549. bottom: 0.02
  7550. }
  7551. },
  7552. },
  7553. [
  7554. {
  7555. name: "Micro",
  7556. height: math.unit(2, "inches")
  7557. },
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(12, "meters")
  7561. },
  7562. {
  7563. name: "Planetary",
  7564. height: math.unit(0.00929, "AU"),
  7565. default: true
  7566. },
  7567. {
  7568. name: "Universal",
  7569. height: math.unit(20, "gigaparsecs")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(5 + 2 / 12, "feet"),
  7578. weight: math.unit(120, "lbs"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/katherine/front.svg",
  7582. extra: 2075 / 1969
  7583. }
  7584. },
  7585. dress: {
  7586. height: math.unit(5 + 2 / 12, "feet"),
  7587. weight: math.unit(120, "lbs"),
  7588. name: "Dress",
  7589. image: {
  7590. source: "./media/characters/katherine/dress.svg",
  7591. extra: 2258 / 2064
  7592. }
  7593. },
  7594. },
  7595. [
  7596. {
  7597. name: "Micro",
  7598. height: math.unit(1, "inches"),
  7599. default: true
  7600. },
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(5 + 2 / 12, "feet")
  7604. },
  7605. {
  7606. name: "Macro",
  7607. height: math.unit(100, "meters")
  7608. },
  7609. {
  7610. name: "Megamacro",
  7611. height: math.unit(80, "miles")
  7612. },
  7613. ]
  7614. ))
  7615. characterMakers.push(() => makeCharacter(
  7616. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7617. {
  7618. front: {
  7619. height: math.unit(7 + 8 / 12, "feet"),
  7620. weight: math.unit(250, "lbs"),
  7621. name: "Front",
  7622. image: {
  7623. source: "./media/characters/yevis/front.svg",
  7624. extra: 1938 / 1755
  7625. }
  7626. }
  7627. },
  7628. [
  7629. {
  7630. name: "Mortal",
  7631. height: math.unit(7 + 8 / 12, "feet")
  7632. },
  7633. {
  7634. name: "Battle",
  7635. height: math.unit(25 + 11 / 12, "feet")
  7636. },
  7637. {
  7638. name: "Wrath",
  7639. height: math.unit(1654 + 11 / 12, "feet")
  7640. },
  7641. {
  7642. name: "Planet Destroyer",
  7643. height: math.unit(12000, "miles")
  7644. },
  7645. {
  7646. name: "Galaxy Conqueror",
  7647. height: math.unit(1.45, "zettameters"),
  7648. default: true
  7649. },
  7650. {
  7651. name: "Universal War",
  7652. height: math.unit(184, "gigaparsecs")
  7653. },
  7654. {
  7655. name: "Eternity War",
  7656. height: math.unit(1.98e55, "yottaparsecs")
  7657. },
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(5 + 8 / 12, "feet"),
  7665. weight: math.unit(63, "kg"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/xavier/front.svg",
  7669. extra: 944 / 883
  7670. }
  7671. },
  7672. frontStretch: {
  7673. height: math.unit(5 + 8 / 12, "feet"),
  7674. weight: math.unit(63, "kg"),
  7675. name: "Stretching",
  7676. image: {
  7677. source: "./media/characters/xavier/front-stretch.svg",
  7678. extra: 962 / 820
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(5 + 8 / 12, "feet")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(100, "meters"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "McLargeHuge",
  7694. height: math.unit(10, "miles")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(5 + 5 / 12, "feet"),
  7703. weight: math.unit(150, "lb"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/joshii/front.svg"
  7707. }
  7708. },
  7709. foot: {
  7710. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7711. name: "Foot",
  7712. image: {
  7713. source: "./media/characters/joshii/foot.svg"
  7714. }
  7715. },
  7716. },
  7717. [
  7718. {
  7719. name: "Micro",
  7720. height: math.unit(2, "inches")
  7721. },
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(5 + 5 / 12, "feet"),
  7725. default: true
  7726. },
  7727. {
  7728. name: "Macro",
  7729. height: math.unit(785, "feet")
  7730. },
  7731. {
  7732. name: "Megamacro",
  7733. height: math.unit(24.5, "miles")
  7734. },
  7735. ]
  7736. ))
  7737. characterMakers.push(() => makeCharacter(
  7738. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7739. {
  7740. front: {
  7741. height: math.unit(6, "feet"),
  7742. weight: math.unit(150, "lb"),
  7743. name: "Front",
  7744. image: {
  7745. source: "./media/characters/goddess-elizabeth/front.svg",
  7746. extra: 1800 / 1525,
  7747. bottom: 0.005
  7748. }
  7749. },
  7750. foot: {
  7751. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7752. name: "Foot",
  7753. image: {
  7754. source: "./media/characters/goddess-elizabeth/foot.svg"
  7755. }
  7756. },
  7757. mouth: {
  7758. height: math.unit(6, "feet"),
  7759. name: "Mouth",
  7760. image: {
  7761. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7762. }
  7763. },
  7764. },
  7765. [
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(12, "feet")
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(80, "miles"),
  7773. default: true
  7774. },
  7775. {
  7776. name: "Macro",
  7777. height: math.unit(15000, "parsecs")
  7778. },
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(5 + 9 / 12, "feet"),
  7786. weight: math.unit(144, "lb"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/kara/front.svg"
  7790. }
  7791. },
  7792. feet: {
  7793. height: math.unit(6 / 6.765, "feet"),
  7794. name: "Kara's Feet",
  7795. rename: true,
  7796. image: {
  7797. source: "./media/characters/kara/feet.svg"
  7798. }
  7799. },
  7800. },
  7801. [
  7802. {
  7803. name: "Normal",
  7804. height: math.unit(5 + 9 / 12, "feet")
  7805. },
  7806. {
  7807. name: "Macro",
  7808. height: math.unit(174, "feet"),
  7809. default: true
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(18, "feet"),
  7818. weight: math.unit(4050, "lb"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/tyrone/front.svg",
  7822. extra: 2520 / 2402,
  7823. bottom: 0.025
  7824. }
  7825. },
  7826. },
  7827. [
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(18, "feet"),
  7831. default: true
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(300, "feet")
  7836. },
  7837. ]
  7838. ))
  7839. characterMakers.push(() => makeCharacter(
  7840. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7841. {
  7842. front: {
  7843. height: math.unit(7 + 8 / 12, "feet"),
  7844. weight: math.unit(120, "lb"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/danny/front.svg",
  7848. extra: 1490 / 1350
  7849. }
  7850. },
  7851. back: {
  7852. height: math.unit(7 + 8 / 12, "feet"),
  7853. weight: math.unit(120, "lb"),
  7854. name: "Back",
  7855. image: {
  7856. source: "./media/characters/danny/back.svg",
  7857. extra: 1490 / 1350
  7858. }
  7859. },
  7860. },
  7861. [
  7862. {
  7863. name: "Normal",
  7864. height: math.unit(7 + 8 / 12, "feet"),
  7865. default: true
  7866. },
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(3.5, "inches"),
  7874. weight: math.unit(19, "grams"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/mallow/front.svg",
  7878. extra: 471 / 431
  7879. }
  7880. },
  7881. back: {
  7882. height: math.unit(3.5, "inches"),
  7883. weight: math.unit(19, "grams"),
  7884. name: "Back",
  7885. image: {
  7886. source: "./media/characters/mallow/back.svg",
  7887. extra: 471 / 431
  7888. }
  7889. },
  7890. },
  7891. [
  7892. {
  7893. name: "Normal",
  7894. height: math.unit(3.5, "inches"),
  7895. default: true
  7896. },
  7897. ]
  7898. ))
  7899. characterMakers.push(() => makeCharacter(
  7900. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7901. {
  7902. front: {
  7903. height: math.unit(9, "feet"),
  7904. weight: math.unit(230, "kg"),
  7905. name: "Front",
  7906. image: {
  7907. source: "./media/characters/starry-aqua/front.svg"
  7908. }
  7909. },
  7910. back: {
  7911. height: math.unit(9, "feet"),
  7912. weight: math.unit(230, "kg"),
  7913. name: "Back",
  7914. image: {
  7915. source: "./media/characters/starry-aqua/back.svg"
  7916. }
  7917. },
  7918. hand: {
  7919. height: math.unit(9 * 0.1168, "feet"),
  7920. name: "Hand",
  7921. image: {
  7922. source: "./media/characters/starry-aqua/hand.svg"
  7923. }
  7924. },
  7925. foot: {
  7926. height: math.unit(9 * 0.18, "feet"),
  7927. name: "Foot",
  7928. image: {
  7929. source: "./media/characters/starry-aqua/foot.svg"
  7930. }
  7931. }
  7932. },
  7933. [
  7934. {
  7935. name: "Micro",
  7936. height: math.unit(3, "inches")
  7937. },
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(9, "feet")
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(300, "feet"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Megamacro",
  7949. height: math.unit(3200, "feet")
  7950. }
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(6, "feet"),
  7958. weight: math.unit(230, "lb"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/luka/front.svg",
  7962. extra: 1,
  7963. bottom: 0.025
  7964. }
  7965. },
  7966. },
  7967. [
  7968. {
  7969. name: "Normal",
  7970. height: math.unit(12 + 8 / 12, "feet"),
  7971. default: true
  7972. },
  7973. {
  7974. name: "Minimacro",
  7975. height: math.unit(20, "feet")
  7976. },
  7977. {
  7978. name: "Macro",
  7979. height: math.unit(250, "feet")
  7980. },
  7981. {
  7982. name: "Megamacro",
  7983. height: math.unit(5, "miles")
  7984. },
  7985. {
  7986. name: "Gigamacro",
  7987. height: math.unit(8000, "miles")
  7988. },
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7993. {
  7994. front: {
  7995. height: math.unit(6, "feet"),
  7996. weight: math.unit(150, "lb"),
  7997. name: "Front",
  7998. image: {
  7999. source: "./media/characters/natalie-nightring/front.svg",
  8000. extra: 1,
  8001. bottom: 0.06
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Uh Oh",
  8008. height: math.unit(0.1, "mm")
  8009. },
  8010. {
  8011. name: "Small",
  8012. height: math.unit(3, "inches")
  8013. },
  8014. {
  8015. name: "Human Scale",
  8016. height: math.unit(6, "feet")
  8017. },
  8018. {
  8019. name: "Librarian",
  8020. height: math.unit(50, "feet"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Immense",
  8025. height: math.unit(200, "miles")
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(180, "lbs"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/danni-rosie/front.svg",
  8038. extra: 1260 / 1128,
  8039. bottom: 0.022
  8040. }
  8041. },
  8042. },
  8043. [
  8044. {
  8045. name: "Micro",
  8046. height: math.unit(2, "inches"),
  8047. default: true
  8048. },
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8053. {
  8054. front: {
  8055. height: math.unit(5 + 9 / 12, "feet"),
  8056. weight: math.unit(220, "lb"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/samantha-kruse/front.svg",
  8060. extra: (985 / 935),
  8061. bottom: 0.03
  8062. }
  8063. },
  8064. frontUndressed: {
  8065. height: math.unit(5 + 9 / 12, "feet"),
  8066. weight: math.unit(220, "lb"),
  8067. name: "Front (Undressed)",
  8068. image: {
  8069. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8070. extra: (973 / 923),
  8071. bottom: 0.025
  8072. }
  8073. },
  8074. fat: {
  8075. height: math.unit(5 + 9 / 12, "feet"),
  8076. weight: math.unit(900, "lb"),
  8077. name: "Front (Fat)",
  8078. image: {
  8079. source: "./media/characters/samantha-kruse/fat.svg",
  8080. extra: 2688 / 2561
  8081. }
  8082. },
  8083. },
  8084. [
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(5 + 9 / 12, "feet"),
  8088. default: true
  8089. }
  8090. ]
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8094. {
  8095. back: {
  8096. height: math.unit(5 + 4 / 12, "feet"),
  8097. weight: math.unit(4963, "lb"),
  8098. name: "Back",
  8099. image: {
  8100. source: "./media/characters/amelia-rosie/back.svg",
  8101. extra: 1113 / 963,
  8102. bottom: 0.01
  8103. }
  8104. },
  8105. },
  8106. [
  8107. {
  8108. name: "Level 0",
  8109. height: math.unit(5 + 4 / 12, "feet")
  8110. },
  8111. {
  8112. name: "Level 1",
  8113. height: math.unit(164597, "feet"),
  8114. default: true
  8115. },
  8116. {
  8117. name: "Level 2",
  8118. height: math.unit(956243, "miles")
  8119. },
  8120. {
  8121. name: "Level 3",
  8122. height: math.unit(29421709423, "miles")
  8123. },
  8124. {
  8125. name: "Level 4",
  8126. height: math.unit(154, "lightyears")
  8127. },
  8128. {
  8129. name: "Level 5",
  8130. height: math.unit(4738272, "lightyears")
  8131. },
  8132. {
  8133. name: "Level 6",
  8134. height: math.unit(145787152896, "lightyears")
  8135. },
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(5 + 11 / 12, "feet"),
  8143. weight: math.unit(65, "kg"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/rook-kitara/front.svg",
  8147. extra: 1347 / 1274,
  8148. bottom: 0.005
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Totally Unfair",
  8155. height: math.unit(1.8, "mm")
  8156. },
  8157. {
  8158. name: "Lap Rookie",
  8159. height: math.unit(1.4, "feet")
  8160. },
  8161. {
  8162. name: "Normal",
  8163. height: math.unit(5 + 11 / 12, "feet"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "How Did This Happen",
  8168. height: math.unit(80, "miles")
  8169. }
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(7, "feet"),
  8177. weight: math.unit(300, "lb"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/pisces/front.svg",
  8181. extra: 2255 / 2115,
  8182. bottom: 0.03
  8183. }
  8184. },
  8185. back: {
  8186. height: math.unit(7, "feet"),
  8187. weight: math.unit(300, "lb"),
  8188. name: "Back",
  8189. image: {
  8190. source: "./media/characters/pisces/back.svg",
  8191. extra: 2146 / 2055,
  8192. bottom: 0.04
  8193. }
  8194. },
  8195. },
  8196. [
  8197. {
  8198. name: "Normal",
  8199. height: math.unit(7, "feet"),
  8200. default: true
  8201. },
  8202. {
  8203. name: "Swimming Pool",
  8204. height: math.unit(12.2, "meters")
  8205. },
  8206. {
  8207. name: "Olympic Swimming Pool",
  8208. height: math.unit(56.3, "meters")
  8209. },
  8210. {
  8211. name: "Lake Superior",
  8212. height: math.unit(93900, "meters")
  8213. },
  8214. {
  8215. name: "Mediterranean Sea",
  8216. height: math.unit(644457, "meters")
  8217. },
  8218. {
  8219. name: "World's Oceans",
  8220. height: math.unit(4567491, "meters")
  8221. },
  8222. ]
  8223. ))
  8224. characterMakers.push(() => makeCharacter(
  8225. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8226. {
  8227. front: {
  8228. height: math.unit(2.3, "meters"),
  8229. weight: math.unit(120, "kg"),
  8230. name: "Front",
  8231. image: {
  8232. source: "./media/characters/zelas/front.svg"
  8233. }
  8234. },
  8235. side: {
  8236. height: math.unit(2.3, "meters"),
  8237. weight: math.unit(120, "kg"),
  8238. name: "Side",
  8239. image: {
  8240. source: "./media/characters/zelas/side.svg"
  8241. }
  8242. },
  8243. back: {
  8244. height: math.unit(2.3, "meters"),
  8245. weight: math.unit(120, "kg"),
  8246. name: "Back",
  8247. image: {
  8248. source: "./media/characters/zelas/back.svg"
  8249. }
  8250. },
  8251. foot: {
  8252. height: math.unit(1.116, "feet"),
  8253. name: "Foot",
  8254. image: {
  8255. source: "./media/characters/zelas/foot.svg"
  8256. }
  8257. },
  8258. },
  8259. [
  8260. {
  8261. name: "Normal",
  8262. height: math.unit(2.3, "meters")
  8263. },
  8264. {
  8265. name: "Macro",
  8266. height: math.unit(30, "meters"),
  8267. default: true
  8268. },
  8269. ]
  8270. ))
  8271. characterMakers.push(() => makeCharacter(
  8272. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8273. {
  8274. front: {
  8275. height: math.unit(1, "inch"),
  8276. weight: math.unit(0.21, "grams"),
  8277. name: "Front",
  8278. image: {
  8279. source: "./media/characters/talbot/front.svg",
  8280. extra: 594 / 544
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Micro",
  8287. height: math.unit(1, "inch"),
  8288. default: true
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8294. {
  8295. front: {
  8296. height: math.unit(3 + 3 / 12, "feet"),
  8297. weight: math.unit(51.8, "lb"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/fliss/front.svg",
  8301. extra: 840 / 640
  8302. }
  8303. },
  8304. },
  8305. [
  8306. {
  8307. name: "Teeny Tiny",
  8308. height: math.unit(1, "mm")
  8309. },
  8310. {
  8311. name: "Small",
  8312. height: math.unit(1, "inch"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Standard Sylveon",
  8317. height: math.unit(3 + 3 / 12, "feet")
  8318. },
  8319. {
  8320. name: "Large Nuisance",
  8321. height: math.unit(33, "feet")
  8322. },
  8323. {
  8324. name: "City Filler",
  8325. height: math.unit(3000, "feet")
  8326. },
  8327. {
  8328. name: "New Horizon",
  8329. height: math.unit(6000, "miles")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(5, "cm"),
  8338. weight: math.unit(1.94, "g"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/fleta/front.svg",
  8342. extra: 835 / 803
  8343. }
  8344. },
  8345. back: {
  8346. height: math.unit(5, "cm"),
  8347. weight: math.unit(1.94, "g"),
  8348. name: "Back",
  8349. image: {
  8350. source: "./media/characters/fleta/back.svg",
  8351. extra: 835 / 803
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Micro",
  8358. height: math.unit(5, "cm"),
  8359. default: true
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8365. {
  8366. front: {
  8367. height: math.unit(6, "feet"),
  8368. weight: math.unit(225, "lb"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/dominic/front.svg",
  8372. extra: 1770 / 1620,
  8373. bottom: 0.025
  8374. }
  8375. },
  8376. back: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(225, "lb"),
  8379. name: "Back",
  8380. image: {
  8381. source: "./media/characters/dominic/back.svg",
  8382. extra: 1745 / 1620,
  8383. bottom: 0.065
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Nano",
  8390. height: math.unit(0.1, "mm")
  8391. },
  8392. {
  8393. name: "Micro-",
  8394. height: math.unit(1, "mm")
  8395. },
  8396. {
  8397. name: "Micro",
  8398. height: math.unit(4, "inches")
  8399. },
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(6 + 4 / 12, "feet"),
  8403. default: true
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(115, "feet")
  8408. },
  8409. {
  8410. name: "Macro+",
  8411. height: math.unit(955, "feet")
  8412. },
  8413. {
  8414. name: "Megamacro",
  8415. height: math.unit(8990, "feet")
  8416. },
  8417. {
  8418. name: "Gigmacro",
  8419. height: math.unit(9310, "miles")
  8420. },
  8421. {
  8422. name: "Teramacro",
  8423. height: math.unit(1567005010, "miles")
  8424. },
  8425. {
  8426. name: "Examacro",
  8427. height: math.unit(1425, "parsecs")
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(400, "feet"),
  8436. weight: math.unit(44444444, "lb"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/major-colonel/front.svg"
  8440. }
  8441. },
  8442. back: {
  8443. height: math.unit(400, "feet"),
  8444. weight: math.unit(44444444, "lb"),
  8445. name: "Back",
  8446. image: {
  8447. source: "./media/characters/major-colonel/back.svg"
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Macro",
  8454. height: math.unit(400, "feet"),
  8455. default: true
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8461. {
  8462. catFront: {
  8463. height: math.unit(6, "feet"),
  8464. weight: math.unit(120, "lb"),
  8465. name: "Front (Cat Side)",
  8466. image: {
  8467. source: "./media/characters/axel-lycan/cat-front.svg",
  8468. extra: 430 / 402,
  8469. bottom: 43 / 472.35
  8470. }
  8471. },
  8472. catBack: {
  8473. height: math.unit(6, "feet"),
  8474. weight: math.unit(120, "lb"),
  8475. name: "Back (Cat Side)",
  8476. image: {
  8477. source: "./media/characters/axel-lycan/cat-back.svg",
  8478. extra: 447 / 419,
  8479. bottom: 23.3 / 469
  8480. }
  8481. },
  8482. wolfFront: {
  8483. height: math.unit(6, "feet"),
  8484. weight: math.unit(120, "lb"),
  8485. name: "Front (Wolf Side)",
  8486. image: {
  8487. source: "./media/characters/axel-lycan/wolf-front.svg",
  8488. extra: 485 / 456,
  8489. bottom: 19 / 504
  8490. }
  8491. },
  8492. wolfBack: {
  8493. height: math.unit(6, "feet"),
  8494. weight: math.unit(120, "lb"),
  8495. name: "Back (Wolf Side)",
  8496. image: {
  8497. source: "./media/characters/axel-lycan/wolf-back.svg",
  8498. extra: 475 / 438,
  8499. bottom: 39.2 / 514
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Macro",
  8506. height: math.unit(1, "km"),
  8507. default: true
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(5 + 9 / 12, "feet"),
  8516. weight: math.unit(175, "lb"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/vanrel-hyena/front.svg",
  8520. extra: 1086 / 1010,
  8521. bottom: 0.04
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(5 + 9 / 12, "feet"),
  8529. default: true
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(103, "lb"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/abbott-absol/front.svg",
  8542. extra: 2010 / 1842
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Megamicro",
  8549. height: math.unit(0.1, "mm")
  8550. },
  8551. {
  8552. name: "Micro",
  8553. height: math.unit(1, "inch")
  8554. },
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(6, "feet"),
  8558. default: true
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(264, "lb"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/hector/front.svg",
  8571. extra: 2280 / 2130,
  8572. bottom: 0.07
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Normal",
  8579. height: math.unit(12.25, "foot"),
  8580. default: true
  8581. },
  8582. {
  8583. name: "Macro",
  8584. height: math.unit(160, "feet")
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(150, "lb"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/sal/front.svg",
  8597. extra: 1846 / 1699,
  8598. bottom: 0.04
  8599. }
  8600. },
  8601. },
  8602. [
  8603. {
  8604. name: "Megamacro",
  8605. height: math.unit(10, "miles"),
  8606. default: true
  8607. },
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8612. {
  8613. front: {
  8614. height: math.unit(3, "meters"),
  8615. weight: math.unit(450, "kg"),
  8616. name: "front",
  8617. image: {
  8618. source: "./media/characters/ranger/front.svg",
  8619. extra: 2401 / 2243,
  8620. bottom: 0.05
  8621. }
  8622. },
  8623. },
  8624. [
  8625. {
  8626. name: "Normal",
  8627. height: math.unit(3, "meters"),
  8628. default: true
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(14, "feet"),
  8637. weight: math.unit(800, "kg"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/theresa/front.svg",
  8641. extra: 3575 / 3346,
  8642. bottom: 0.03
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Normal",
  8649. height: math.unit(14, "feet"),
  8650. default: true
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8656. {
  8657. front: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(3, "kg"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/ine/front.svg",
  8663. extra: 678 / 539,
  8664. bottom: 0.023
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Normal",
  8671. height: math.unit(2.265, "feet"),
  8672. default: true
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(5, "feet"),
  8681. weight: math.unit(30, "kg"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/vial/front.svg",
  8685. extra: 1365 / 1277,
  8686. bottom: 0.04
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(5, "feet"),
  8694. default: true
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8700. {
  8701. side: {
  8702. height: math.unit(3.4, "meters"),
  8703. weight: math.unit(1000, "lb"),
  8704. name: "Side",
  8705. image: {
  8706. source: "./media/characters/rovoska/side.svg",
  8707. extra: 4403 / 1515
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(3.4, "meters"),
  8715. default: true
  8716. },
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(8, "feet"),
  8724. weight: math.unit(315, "lb"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/gunner-rotthbauer/front.svg"
  8728. }
  8729. },
  8730. back: {
  8731. height: math.unit(8, "feet"),
  8732. weight: math.unit(315, "lb"),
  8733. name: "Back",
  8734. image: {
  8735. source: "./media/characters/gunner-rotthbauer/back.svg"
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Micro",
  8742. height: math.unit(3.5, "inches")
  8743. },
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(8, "feet"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Macro",
  8751. height: math.unit(250, "feet")
  8752. },
  8753. {
  8754. name: "Megamacro",
  8755. height: math.unit(1, "AU")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(5 + 5 / 12, "feet"),
  8764. weight: math.unit(140, "lb"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/allatia/front.svg",
  8768. extra: 1227 / 1180,
  8769. bottom: 0.027
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(5 + 5 / 12, "feet")
  8777. },
  8778. {
  8779. name: "Macro",
  8780. height: math.unit(250, "feet"),
  8781. default: true
  8782. },
  8783. {
  8784. name: "Megamacro",
  8785. height: math.unit(8, "miles")
  8786. }
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(6, "feet"),
  8794. weight: math.unit(120, "lb"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/tene/front.svg",
  8798. extra: 1728 / 1578,
  8799. bottom: 0.022
  8800. }
  8801. },
  8802. stomping: {
  8803. height: math.unit(2.025, "meters"),
  8804. weight: math.unit(120, "lb"),
  8805. name: "Stomping",
  8806. image: {
  8807. source: "./media/characters/tene/stomping.svg",
  8808. extra: 938 / 873,
  8809. bottom: 0.01
  8810. }
  8811. },
  8812. sitting: {
  8813. height: math.unit(1, "meter"),
  8814. weight: math.unit(120, "lb"),
  8815. name: "Sitting",
  8816. image: {
  8817. source: "./media/characters/tene/sitting.svg",
  8818. extra: 437 / 415,
  8819. bottom: 0.1
  8820. }
  8821. },
  8822. feral: {
  8823. height: math.unit(3.9, "feet"),
  8824. weight: math.unit(250, "lb"),
  8825. name: "Feral",
  8826. image: {
  8827. source: "./media/characters/tene/feral.svg",
  8828. extra: 717 / 458,
  8829. bottom: 0.179
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Normal",
  8836. height: math.unit(6, "feet")
  8837. },
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(300, "feet"),
  8841. default: true
  8842. },
  8843. {
  8844. name: "Megamacro",
  8845. height: math.unit(5, "miles")
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8851. {
  8852. side: {
  8853. height: math.unit(6, "feet"),
  8854. name: "Side",
  8855. image: {
  8856. source: "./media/characters/evander/side.svg",
  8857. extra: 877 / 477
  8858. }
  8859. },
  8860. },
  8861. [
  8862. {
  8863. name: "Normal",
  8864. height: math.unit(0.83, "meters"),
  8865. default: true
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8871. {
  8872. front: {
  8873. height: math.unit(12, "feet"),
  8874. weight: math.unit(1000, "lb"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8878. extra: 1762 / 1611
  8879. }
  8880. },
  8881. back: {
  8882. height: math.unit(12, "feet"),
  8883. weight: math.unit(1000, "lb"),
  8884. name: "Back",
  8885. image: {
  8886. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8887. extra: 1762 / 1611
  8888. }
  8889. },
  8890. },
  8891. [
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(12, "feet"),
  8895. default: true
  8896. },
  8897. {
  8898. name: "Kaiju",
  8899. height: math.unit(150, "feet")
  8900. },
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8905. {
  8906. front: {
  8907. height: math.unit(6, "feet"),
  8908. weight: math.unit(150, "lb"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/zero-alurus/front.svg"
  8912. }
  8913. },
  8914. back: {
  8915. height: math.unit(6, "feet"),
  8916. weight: math.unit(150, "lb"),
  8917. name: "Back",
  8918. image: {
  8919. source: "./media/characters/zero-alurus/back.svg"
  8920. }
  8921. },
  8922. },
  8923. [
  8924. {
  8925. name: "Normal",
  8926. height: math.unit(5 + 10 / 12, "feet")
  8927. },
  8928. {
  8929. name: "Macro",
  8930. height: math.unit(60, "feet"),
  8931. default: true
  8932. },
  8933. {
  8934. name: "Macro+",
  8935. height: math.unit(450, "feet")
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(6, "feet"),
  8944. weight: math.unit(200, "lb"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/mega-shi/front.svg",
  8948. extra: 1279 / 1250,
  8949. bottom: 0.02
  8950. }
  8951. },
  8952. back: {
  8953. height: math.unit(6, "feet"),
  8954. weight: math.unit(200, "lb"),
  8955. name: "Back",
  8956. image: {
  8957. source: "./media/characters/mega-shi/back.svg",
  8958. extra: 1279 / 1250,
  8959. bottom: 0.02
  8960. }
  8961. },
  8962. },
  8963. [
  8964. {
  8965. name: "Micro",
  8966. height: math.unit(16 + 6 / 12, "feet")
  8967. },
  8968. {
  8969. name: "Third Dimension",
  8970. height: math.unit(40, "meters")
  8971. },
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(660, "feet"),
  8975. default: true
  8976. },
  8977. {
  8978. name: "Megamacro",
  8979. height: math.unit(10, "miles")
  8980. },
  8981. {
  8982. name: "Planetary Launch",
  8983. height: math.unit(500, "miles")
  8984. },
  8985. {
  8986. name: "Interstellar",
  8987. height: math.unit(1e9, "miles")
  8988. },
  8989. {
  8990. name: "Leaving the Universe",
  8991. height: math.unit(1, "gigaparsec")
  8992. },
  8993. {
  8994. name: "Travelling Universes",
  8995. height: math.unit(30e15, "parsecs")
  8996. },
  8997. ]
  8998. ))
  8999. characterMakers.push(() => makeCharacter(
  9000. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9001. {
  9002. front: {
  9003. height: math.unit(6, "feet"),
  9004. weight: math.unit(150, "lb"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/odyssey/front.svg",
  9008. extra: 1782 / 1582,
  9009. bottom: 0.01
  9010. }
  9011. },
  9012. side: {
  9013. height: math.unit(5.7, "feet"),
  9014. weight: math.unit(140, "lb"),
  9015. name: "Side",
  9016. image: {
  9017. source: "./media/characters/odyssey/side.svg",
  9018. extra: 6462 / 5700
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(5 + 4 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(1, "km")
  9030. },
  9031. {
  9032. name: "Megamacro",
  9033. height: math.unit(3000, "km")
  9034. },
  9035. {
  9036. name: "Gigamacro",
  9037. height: math.unit(1, "AU"),
  9038. default: true
  9039. },
  9040. {
  9041. name: "Omniversal",
  9042. height: math.unit(100e14, "lightyears")
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9048. {
  9049. front: {
  9050. height: math.unit(6, "feet"),
  9051. weight: math.unit(300, "lb"),
  9052. name: "Front",
  9053. image: {
  9054. source: "./media/characters/mekuto/front.svg",
  9055. extra: 921 / 832,
  9056. bottom: 0.03
  9057. }
  9058. },
  9059. hand: {
  9060. height: math.unit(6 / 10.24, "feet"),
  9061. name: "Hand",
  9062. image: {
  9063. source: "./media/characters/mekuto/hand.svg"
  9064. }
  9065. },
  9066. foot: {
  9067. height: math.unit(6 / 5.05, "feet"),
  9068. name: "Foot",
  9069. image: {
  9070. source: "./media/characters/mekuto/foot.svg"
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Minimicro",
  9077. height: math.unit(0.2, "inches")
  9078. },
  9079. {
  9080. name: "Micro",
  9081. height: math.unit(1.5, "inches")
  9082. },
  9083. {
  9084. name: "Normal",
  9085. height: math.unit(5 + 11 / 12, "feet"),
  9086. default: true
  9087. },
  9088. {
  9089. name: "Minimacro",
  9090. height: math.unit(17 + 9 / 12, "feet")
  9091. },
  9092. {
  9093. name: "Macro",
  9094. height: math.unit(177.5, "feet")
  9095. },
  9096. {
  9097. name: "Megamacro",
  9098. height: math.unit(152, "miles")
  9099. },
  9100. ]
  9101. ))
  9102. characterMakers.push(() => makeCharacter(
  9103. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9104. {
  9105. front: {
  9106. height: math.unit(6.5, "inches"),
  9107. weight: math.unit(13, "oz"),
  9108. name: "Front",
  9109. image: {
  9110. source: "./media/characters/dafydd-tomos/front.svg",
  9111. extra: 2990 / 2603,
  9112. bottom: 0.03
  9113. }
  9114. },
  9115. },
  9116. [
  9117. {
  9118. name: "Micro",
  9119. height: math.unit(6.5, "inches"),
  9120. default: true
  9121. },
  9122. ]
  9123. ))
  9124. characterMakers.push(() => makeCharacter(
  9125. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9126. {
  9127. front: {
  9128. height: math.unit(6, "feet"),
  9129. weight: math.unit(150, "lb"),
  9130. name: "Front",
  9131. image: {
  9132. source: "./media/characters/splinter/front.svg",
  9133. extra: 2990 / 2882,
  9134. bottom: 0.04
  9135. }
  9136. },
  9137. back: {
  9138. height: math.unit(6, "feet"),
  9139. weight: math.unit(150, "lb"),
  9140. name: "Back",
  9141. image: {
  9142. source: "./media/characters/splinter/back.svg",
  9143. extra: 2990 / 2882,
  9144. bottom: 0.04
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Normal",
  9151. height: math.unit(6, "feet")
  9152. },
  9153. {
  9154. name: "Macro",
  9155. height: math.unit(230, "meters"),
  9156. default: true
  9157. },
  9158. ]
  9159. ))
  9160. characterMakers.push(() => makeCharacter(
  9161. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9162. {
  9163. front: {
  9164. height: math.unit(4 + 10 / 12, "feet"),
  9165. weight: math.unit(480, "lb"),
  9166. name: "Front",
  9167. image: {
  9168. source: "./media/characters/snow-gabumon/front.svg",
  9169. extra: 1140 / 963,
  9170. bottom: 0.058
  9171. }
  9172. },
  9173. back: {
  9174. height: math.unit(4 + 10 / 12, "feet"),
  9175. weight: math.unit(480, "lb"),
  9176. name: "Back",
  9177. image: {
  9178. source: "./media/characters/snow-gabumon/back.svg",
  9179. extra: 1115 / 962,
  9180. bottom: 0.041
  9181. }
  9182. },
  9183. frontUndresed: {
  9184. height: math.unit(4 + 10 / 12, "feet"),
  9185. weight: math.unit(480, "lb"),
  9186. name: "Front (Undressed)",
  9187. image: {
  9188. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9189. extra: 1061 / 960,
  9190. bottom: 0.045
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Micro",
  9197. height: math.unit(1, "inch")
  9198. },
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(4 + 10 / 12, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(200, "feet")
  9207. },
  9208. {
  9209. name: "Megamacro",
  9210. height: math.unit(120, "miles")
  9211. },
  9212. {
  9213. name: "Gigamacro",
  9214. height: math.unit(9800, "miles")
  9215. },
  9216. ]
  9217. ))
  9218. characterMakers.push(() => makeCharacter(
  9219. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9220. {
  9221. front: {
  9222. height: math.unit(1.7, "meters"),
  9223. weight: math.unit(140, "lb"),
  9224. name: "Front",
  9225. image: {
  9226. source: "./media/characters/moody/front.svg",
  9227. extra: 3226 / 3007,
  9228. bottom: 0.087
  9229. }
  9230. },
  9231. },
  9232. [
  9233. {
  9234. name: "Micro",
  9235. height: math.unit(1, "mm")
  9236. },
  9237. {
  9238. name: "Normal",
  9239. height: math.unit(1.7, "meters"),
  9240. default: true
  9241. },
  9242. {
  9243. name: "Macro",
  9244. height: math.unit(80, "meters")
  9245. },
  9246. {
  9247. name: "Macro+",
  9248. height: math.unit(500, "meters")
  9249. },
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(6, "feet"),
  9257. weight: math.unit(150, "lb"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/zyas/front.svg",
  9261. extra: 1180 / 1120,
  9262. bottom: 0.045
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(10, "feet"),
  9270. default: true
  9271. },
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(500, "feet")
  9275. },
  9276. {
  9277. name: "Megamacro",
  9278. height: math.unit(5, "miles")
  9279. },
  9280. {
  9281. name: "Teramacro",
  9282. height: math.unit(150000, "miles")
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(6, "feet"),
  9291. weight: math.unit(150, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/cuon/front.svg",
  9295. extra: 1390 / 1320,
  9296. bottom: 0.008
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Micro",
  9303. height: math.unit(3, "inches")
  9304. },
  9305. {
  9306. name: "Normal",
  9307. height: math.unit(18 + 9 / 12, "feet"),
  9308. default: true
  9309. },
  9310. {
  9311. name: "Macro",
  9312. height: math.unit(360, "feet")
  9313. },
  9314. {
  9315. name: "Megamacro",
  9316. height: math.unit(360, "miles")
  9317. },
  9318. ]
  9319. ))
  9320. characterMakers.push(() => makeCharacter(
  9321. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9322. {
  9323. front: {
  9324. height: math.unit(2.4, "meters"),
  9325. weight: math.unit(70, "kg"),
  9326. name: "Front",
  9327. image: {
  9328. source: "./media/characters/nyanuxk/front.svg",
  9329. extra: 1172 / 1084,
  9330. bottom: 0.065
  9331. }
  9332. },
  9333. side: {
  9334. height: math.unit(2.4, "meters"),
  9335. weight: math.unit(70, "kg"),
  9336. name: "Side",
  9337. image: {
  9338. source: "./media/characters/nyanuxk/side.svg",
  9339. extra: 1190 / 1132,
  9340. bottom: 0.007
  9341. }
  9342. },
  9343. back: {
  9344. height: math.unit(2.4, "meters"),
  9345. weight: math.unit(70, "kg"),
  9346. name: "Back",
  9347. image: {
  9348. source: "./media/characters/nyanuxk/back.svg",
  9349. extra: 1200 / 1141,
  9350. bottom: 0.015
  9351. }
  9352. },
  9353. foot: {
  9354. height: math.unit(0.52, "meters"),
  9355. name: "Foot",
  9356. image: {
  9357. source: "./media/characters/nyanuxk/foot.svg"
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Micro",
  9364. height: math.unit(2, "cm")
  9365. },
  9366. {
  9367. name: "Normal",
  9368. height: math.unit(2.4, "meters"),
  9369. default: true
  9370. },
  9371. {
  9372. name: "Smaller Macro",
  9373. height: math.unit(120, "meters")
  9374. },
  9375. {
  9376. name: "Bigger Macro",
  9377. height: math.unit(1.2, "km")
  9378. },
  9379. {
  9380. name: "Megamacro",
  9381. height: math.unit(15, "kilometers")
  9382. },
  9383. {
  9384. name: "Gigamacro",
  9385. height: math.unit(2000, "km")
  9386. },
  9387. {
  9388. name: "Teramacro",
  9389. height: math.unit(500000, "km")
  9390. },
  9391. ]
  9392. ))
  9393. characterMakers.push(() => makeCharacter(
  9394. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9395. {
  9396. side: {
  9397. height: math.unit(6, "feet"),
  9398. name: "Side",
  9399. image: {
  9400. source: "./media/characters/ailbhe/side.svg",
  9401. extra: 757 / 464,
  9402. bottom: 0.041
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(1.07, "meters"),
  9410. default: true
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9416. {
  9417. front: {
  9418. height: math.unit(6, "feet"),
  9419. weight: math.unit(120, "kg"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/zevulfius/front.svg",
  9423. extra: 965 / 903
  9424. }
  9425. },
  9426. side: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(120, "kg"),
  9429. name: "Side",
  9430. image: {
  9431. source: "./media/characters/zevulfius/side.svg",
  9432. extra: 939 / 900
  9433. }
  9434. },
  9435. back: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(120, "kg"),
  9438. name: "Back",
  9439. image: {
  9440. source: "./media/characters/zevulfius/back.svg",
  9441. extra: 918 / 854,
  9442. bottom: 0.005
  9443. }
  9444. },
  9445. foot: {
  9446. height: math.unit(6 / 3.72, "feet"),
  9447. name: "Foot",
  9448. image: {
  9449. source: "./media/characters/zevulfius/foot.svg"
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Macro",
  9456. height: math.unit(750, "meters")
  9457. },
  9458. {
  9459. name: "Megamacro",
  9460. height: math.unit(20, "km"),
  9461. default: true
  9462. },
  9463. {
  9464. name: "Gigamacro",
  9465. height: math.unit(2000, "km")
  9466. },
  9467. {
  9468. name: "Teramacro",
  9469. height: math.unit(250000, "km")
  9470. },
  9471. ]
  9472. ))
  9473. characterMakers.push(() => makeCharacter(
  9474. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9475. {
  9476. front: {
  9477. height: math.unit(100, "feet"),
  9478. weight: math.unit(350, "kg"),
  9479. name: "Front",
  9480. image: {
  9481. source: "./media/characters/rikes/front.svg",
  9482. extra: 1565 / 1483,
  9483. bottom: 0.017
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Macro",
  9490. height: math.unit(100, "feet"),
  9491. default: true
  9492. },
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9497. {
  9498. anthro: {
  9499. height: math.unit(8, "feet"),
  9500. weight: math.unit(120, "kg"),
  9501. name: "Anthro",
  9502. image: {
  9503. source: "./media/characters/adam-silver-mane/anthro.svg",
  9504. extra: 5743 / 5339,
  9505. bottom: 0.07
  9506. }
  9507. },
  9508. taur: {
  9509. height: math.unit(16, "feet"),
  9510. weight: math.unit(1500, "kg"),
  9511. name: "Taur",
  9512. image: {
  9513. source: "./media/characters/adam-silver-mane/taur.svg",
  9514. extra: 1713 / 1571,
  9515. bottom: 0.01
  9516. }
  9517. },
  9518. },
  9519. [
  9520. {
  9521. name: "Normal",
  9522. height: math.unit(8, "feet")
  9523. },
  9524. {
  9525. name: "Minimacro",
  9526. height: math.unit(80, "feet")
  9527. },
  9528. {
  9529. name: "Macro",
  9530. height: math.unit(800, "feet"),
  9531. default: true
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(8000, "feet")
  9536. },
  9537. {
  9538. name: "Gigamacro",
  9539. height: math.unit(800, "miles")
  9540. },
  9541. {
  9542. name: "Teramacro",
  9543. height: math.unit(80000, "miles")
  9544. },
  9545. {
  9546. name: "Celestial",
  9547. height: math.unit(8e6, "miles")
  9548. },
  9549. {
  9550. name: "Star Dragon",
  9551. height: math.unit(800000, "parsecs")
  9552. },
  9553. {
  9554. name: "Godly",
  9555. height: math.unit(800, "teraparsecs")
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(6, "feet"),
  9564. weight: math.unit(150, "lb"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/ky'owin/front.svg",
  9568. extra: 3888 / 3068,
  9569. bottom: 0.015
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(6 + 8 / 12, "feet")
  9577. },
  9578. {
  9579. name: "Large",
  9580. height: math.unit(68, "feet")
  9581. },
  9582. {
  9583. name: "Macro",
  9584. height: math.unit(132, "feet")
  9585. },
  9586. {
  9587. name: "Macro+",
  9588. height: math.unit(340, "feet")
  9589. },
  9590. {
  9591. name: "Macro++",
  9592. height: math.unit(680, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Megamacro",
  9597. height: math.unit(1, "mile")
  9598. },
  9599. {
  9600. name: "Megamacro+",
  9601. height: math.unit(10, "miles")
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(4, "feet"),
  9610. weight: math.unit(50, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/mal/front.svg",
  9614. extra: 785 / 724,
  9615. bottom: 0.07
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Micro",
  9622. height: math.unit(4, "inches")
  9623. },
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(4, "feet"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Macro",
  9631. height: math.unit(200, "feet")
  9632. },
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(150, "lb"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/jordan-deware/front.svg",
  9644. extra: 1191 / 1012
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Nano",
  9651. height: math.unit(0.01, "mm")
  9652. },
  9653. {
  9654. name: "Minimicro",
  9655. height: math.unit(1, "mm")
  9656. },
  9657. {
  9658. name: "Micro",
  9659. height: math.unit(0.5, "inches")
  9660. },
  9661. {
  9662. name: "Normal",
  9663. height: math.unit(4, "feet"),
  9664. default: true
  9665. },
  9666. {
  9667. name: "Minimacro",
  9668. height: math.unit(40, "meters")
  9669. },
  9670. {
  9671. name: "Small Macro",
  9672. height: math.unit(400, "meters")
  9673. },
  9674. {
  9675. name: "Macro",
  9676. height: math.unit(4, "miles")
  9677. },
  9678. {
  9679. name: "Megamacro",
  9680. height: math.unit(40, "miles")
  9681. },
  9682. {
  9683. name: "Megamacro+",
  9684. height: math.unit(400, "miles")
  9685. },
  9686. {
  9687. name: "Gigamacro",
  9688. height: math.unit(400000, "miles")
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9694. {
  9695. side: {
  9696. height: math.unit(6, "feet"),
  9697. weight: math.unit(150, "lb"),
  9698. name: "Side",
  9699. image: {
  9700. source: "./media/characters/kimiko/side.svg",
  9701. extra: 600 / 358
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(15, "feet"),
  9709. default: true
  9710. },
  9711. {
  9712. name: "Macro",
  9713. height: math.unit(220, "feet")
  9714. },
  9715. {
  9716. name: "Macro+",
  9717. height: math.unit(1450, "feet")
  9718. },
  9719. {
  9720. name: "Megamacro",
  9721. height: math.unit(11500, "feet")
  9722. },
  9723. {
  9724. name: "Gigamacro",
  9725. height: math.unit(9500, "miles")
  9726. },
  9727. {
  9728. name: "Teramacro",
  9729. height: math.unit(2208005005, "miles")
  9730. },
  9731. {
  9732. name: "Examacro",
  9733. height: math.unit(2750, "parsecs")
  9734. },
  9735. {
  9736. name: "Zettamacro",
  9737. height: math.unit(101500, "parsecs")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(6, "feet"),
  9746. weight: math.unit(70, "kg"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/andrew-sleepy/front.svg"
  9750. }
  9751. },
  9752. side: {
  9753. height: math.unit(6, "feet"),
  9754. weight: math.unit(70, "kg"),
  9755. name: "Side",
  9756. image: {
  9757. source: "./media/characters/andrew-sleepy/side.svg"
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(1, "mm"),
  9765. default: true
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9771. {
  9772. front: {
  9773. height: math.unit(6, "feet"),
  9774. weight: math.unit(150, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/judio/front.svg",
  9778. extra: 1258 / 1110
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(5 + 6 / 12, "feet")
  9786. },
  9787. {
  9788. name: "Macro",
  9789. height: math.unit(1000, "feet"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Megamacro",
  9794. height: math.unit(10, "miles")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(6, "feet"),
  9803. weight: math.unit(68, "kg"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/nomaxice/front.svg",
  9807. extra: 1498 / 1073,
  9808. bottom: 0.075
  9809. }
  9810. },
  9811. foot: {
  9812. height: math.unit(1.1, "feet"),
  9813. name: "Foot",
  9814. image: {
  9815. source: "./media/characters/nomaxice/foot.svg"
  9816. }
  9817. },
  9818. },
  9819. [
  9820. {
  9821. name: "Micro",
  9822. height: math.unit(8, "cm")
  9823. },
  9824. {
  9825. name: "Norm",
  9826. height: math.unit(1.82, "m")
  9827. },
  9828. {
  9829. name: "Norm+",
  9830. height: math.unit(8.8, "feet")
  9831. },
  9832. {
  9833. name: "Big",
  9834. height: math.unit(8, "meters"),
  9835. default: true
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(18, "meters")
  9840. },
  9841. {
  9842. name: "Macro+",
  9843. height: math.unit(88, "meters")
  9844. },
  9845. ]
  9846. ))
  9847. characterMakers.push(() => makeCharacter(
  9848. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9849. {
  9850. front: {
  9851. height: math.unit(12, "feet"),
  9852. weight: math.unit(1.5, "tons"),
  9853. name: "Front",
  9854. image: {
  9855. source: "./media/characters/dydros/front.svg",
  9856. extra: 863 / 800,
  9857. bottom: 0.015
  9858. }
  9859. },
  9860. back: {
  9861. height: math.unit(12, "feet"),
  9862. weight: math.unit(1.5, "tons"),
  9863. name: "Back",
  9864. image: {
  9865. source: "./media/characters/dydros/back.svg",
  9866. extra: 900 / 843,
  9867. bottom: 0.005
  9868. }
  9869. },
  9870. },
  9871. [
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(12, "feet"),
  9875. default: true
  9876. },
  9877. ]
  9878. ))
  9879. characterMakers.push(() => makeCharacter(
  9880. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9881. {
  9882. front: {
  9883. height: math.unit(6, "feet"),
  9884. weight: math.unit(100, "kg"),
  9885. name: "Front",
  9886. image: {
  9887. source: "./media/characters/riggi/front.svg",
  9888. extra: 5787 / 5303
  9889. }
  9890. },
  9891. hyper: {
  9892. height: math.unit(6 * 5 / 3, "feet"),
  9893. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9894. name: "Hyper",
  9895. image: {
  9896. source: "./media/characters/riggi/hyper.svg",
  9897. extra: 3595 / 3485
  9898. }
  9899. },
  9900. },
  9901. [
  9902. {
  9903. name: "Small Macro",
  9904. height: math.unit(50, "feet")
  9905. },
  9906. {
  9907. name: "Default",
  9908. height: math.unit(200, "feet"),
  9909. default: true
  9910. },
  9911. {
  9912. name: "Loom",
  9913. height: math.unit(10000, "feet")
  9914. },
  9915. {
  9916. name: "Cruising Altitude",
  9917. height: math.unit(30000, "feet")
  9918. },
  9919. {
  9920. name: "Megamacro",
  9921. height: math.unit(100, "miles")
  9922. },
  9923. {
  9924. name: "Continent Sized",
  9925. height: math.unit(2800, "miles")
  9926. },
  9927. {
  9928. name: "Earth Sized",
  9929. height: math.unit(8000, "miles")
  9930. },
  9931. ]
  9932. ))
  9933. characterMakers.push(() => makeCharacter(
  9934. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9935. {
  9936. front: {
  9937. height: math.unit(6, "feet"),
  9938. weight: math.unit(250, "lb"),
  9939. name: "Front",
  9940. image: {
  9941. source: "./media/characters/alexi/front.svg",
  9942. extra: 3483 / 3291,
  9943. bottom: 0.04
  9944. }
  9945. },
  9946. back: {
  9947. height: math.unit(6, "feet"),
  9948. weight: math.unit(250, "lb"),
  9949. name: "Back",
  9950. image: {
  9951. source: "./media/characters/alexi/back.svg",
  9952. extra: 3533 / 3356,
  9953. bottom: 0.021
  9954. }
  9955. },
  9956. frontTransforming: {
  9957. height: math.unit(8.58, "feet"),
  9958. weight: math.unit(1300, "lb"),
  9959. name: "Transforming",
  9960. image: {
  9961. source: "./media/characters/alexi/front-transforming.svg",
  9962. extra: 437 / 409,
  9963. bottom: 19 / 458.66
  9964. }
  9965. },
  9966. frontTransformed: {
  9967. height: math.unit(12.5, "feet"),
  9968. weight: math.unit(4000, "lb"),
  9969. name: "Transformed",
  9970. image: {
  9971. source: "./media/characters/alexi/front-transformed.svg",
  9972. extra: 639 / 614,
  9973. bottom: 30.55 / 671
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(3, "meters"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Minimacro",
  9985. height: math.unit(30, "meters")
  9986. },
  9987. {
  9988. name: "Macro",
  9989. height: math.unit(500, "meters")
  9990. },
  9991. {
  9992. name: "Megamacro",
  9993. height: math.unit(9000, "km")
  9994. },
  9995. {
  9996. name: "Teramacro",
  9997. height: math.unit(384000, "km")
  9998. },
  9999. ]
  10000. ))
  10001. characterMakers.push(() => makeCharacter(
  10002. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10003. {
  10004. front: {
  10005. height: math.unit(6, "feet"),
  10006. weight: math.unit(150, "lb"),
  10007. name: "Front",
  10008. image: {
  10009. source: "./media/characters/kayroo/front.svg",
  10010. extra: 1153 / 1038,
  10011. bottom: 0.06
  10012. }
  10013. },
  10014. foot: {
  10015. height: math.unit(6, "feet"),
  10016. weight: math.unit(150, "lb"),
  10017. name: "Foot",
  10018. image: {
  10019. source: "./media/characters/kayroo/foot.svg"
  10020. }
  10021. },
  10022. },
  10023. [
  10024. {
  10025. name: "Normal",
  10026. height: math.unit(8, "feet"),
  10027. default: true
  10028. },
  10029. {
  10030. name: "Minimacro",
  10031. height: math.unit(250, "feet")
  10032. },
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(2800, "feet")
  10036. },
  10037. {
  10038. name: "Megamacro",
  10039. height: math.unit(5200, "feet")
  10040. },
  10041. {
  10042. name: "Gigamacro",
  10043. height: math.unit(27000, "feet")
  10044. },
  10045. {
  10046. name: "Omega",
  10047. height: math.unit(45000, "feet")
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(18, "feet"),
  10056. weight: math.unit(5800, "lb"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/rhys/front.svg",
  10060. extra: 3386 / 3090,
  10061. bottom: 0.07
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Normal",
  10068. height: math.unit(18, "feet"),
  10069. default: true
  10070. },
  10071. {
  10072. name: "Working Size",
  10073. height: math.unit(200, "feet")
  10074. },
  10075. {
  10076. name: "Demolition Size",
  10077. height: math.unit(2000, "feet")
  10078. },
  10079. {
  10080. name: "Maximum Licensed Size",
  10081. height: math.unit(5, "miles")
  10082. },
  10083. {
  10084. name: "Maximum Observed Size",
  10085. height: math.unit(10, "yottameters")
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10091. {
  10092. front: {
  10093. height: math.unit(6, "feet"),
  10094. weight: math.unit(250, "lb"),
  10095. name: "Front",
  10096. image: {
  10097. source: "./media/characters/toto/front.svg",
  10098. extra: 527 / 479,
  10099. bottom: 0.05
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Micro",
  10106. height: math.unit(3, "feet")
  10107. },
  10108. {
  10109. name: "Normal",
  10110. height: math.unit(10, "feet")
  10111. },
  10112. {
  10113. name: "Macro",
  10114. height: math.unit(150, "feet"),
  10115. default: true
  10116. },
  10117. {
  10118. name: "Megamacro",
  10119. height: math.unit(1200, "feet")
  10120. },
  10121. ]
  10122. ))
  10123. characterMakers.push(() => makeCharacter(
  10124. { name: "King", species: ["lion"], tags: ["anthro"] },
  10125. {
  10126. back: {
  10127. height: math.unit(6, "feet"),
  10128. weight: math.unit(150, "lb"),
  10129. name: "Back",
  10130. image: {
  10131. source: "./media/characters/king/back.svg"
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Micro",
  10138. height: math.unit(2, "inches")
  10139. },
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(8, "feet")
  10143. },
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(200, "feet"),
  10147. default: true
  10148. },
  10149. {
  10150. name: "Megamacro",
  10151. height: math.unit(50, "miles")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10157. {
  10158. anthro: {
  10159. height: math.unit(6 + 5 / 12, "feet"),
  10160. weight: math.unit(280, "lb"),
  10161. name: "Anthro",
  10162. image: {
  10163. source: "./media/characters/cordite/anthro.svg",
  10164. extra: 1986 / 1905,
  10165. bottom: 0.025
  10166. }
  10167. },
  10168. feral: {
  10169. height: math.unit(2, "feet"),
  10170. weight: math.unit(90, "lb"),
  10171. name: "Feral",
  10172. image: {
  10173. source: "./media/characters/cordite/feral.svg",
  10174. extra: 1260 / 755,
  10175. bottom: 0.05
  10176. }
  10177. },
  10178. },
  10179. [
  10180. {
  10181. name: "Normal",
  10182. height: math.unit(6 + 5 / 12, "feet"),
  10183. default: true
  10184. },
  10185. ]
  10186. ))
  10187. characterMakers.push(() => makeCharacter(
  10188. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10189. {
  10190. front: {
  10191. height: math.unit(6, "feet"),
  10192. weight: math.unit(150, "lb"),
  10193. name: "Front",
  10194. image: {
  10195. source: "./media/characters/pianostrong/front.svg",
  10196. extra: 6577 / 6254,
  10197. bottom: 0.02
  10198. }
  10199. },
  10200. side: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(150, "lb"),
  10203. name: "Side",
  10204. image: {
  10205. source: "./media/characters/pianostrong/side.svg",
  10206. extra: 6106 / 5730
  10207. }
  10208. },
  10209. back: {
  10210. height: math.unit(6, "feet"),
  10211. weight: math.unit(150, "lb"),
  10212. name: "Back",
  10213. image: {
  10214. source: "./media/characters/pianostrong/back.svg",
  10215. extra: 6085 / 5733,
  10216. bottom: 0.01
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(100, "feet")
  10224. },
  10225. {
  10226. name: "Macro+",
  10227. height: math.unit(300, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Macro++",
  10232. height: math.unit(1000, "feet")
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(150, "lb"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/kona/front.svg",
  10245. extra: 2960 / 2629,
  10246. bottom: 0.005
  10247. }
  10248. },
  10249. },
  10250. [
  10251. {
  10252. name: "Normal",
  10253. height: math.unit(11 + 8 / 12, "feet")
  10254. },
  10255. {
  10256. name: "Macro",
  10257. height: math.unit(850, "feet"),
  10258. default: true
  10259. },
  10260. {
  10261. name: "Macro+",
  10262. height: math.unit(1.5, "km"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Megamacro",
  10267. height: math.unit(80, "miles")
  10268. },
  10269. {
  10270. name: "Gigamacro",
  10271. height: math.unit(3500, "miles")
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10277. {
  10278. side: {
  10279. height: math.unit(1.9, "meters"),
  10280. weight: math.unit(326, "kg"),
  10281. name: "Side",
  10282. image: {
  10283. source: "./media/characters/levi/side.svg",
  10284. extra: 1704 / 1334,
  10285. bottom: 0.02
  10286. }
  10287. },
  10288. },
  10289. [
  10290. {
  10291. name: "Normal",
  10292. height: math.unit(1.9, "meters"),
  10293. default: true
  10294. },
  10295. {
  10296. name: "Macro",
  10297. height: math.unit(20, "meters")
  10298. },
  10299. {
  10300. name: "Macro+",
  10301. height: math.unit(200, "meters")
  10302. },
  10303. {
  10304. name: "Megamacro",
  10305. height: math.unit(2, "km")
  10306. },
  10307. {
  10308. name: "Megamacro+",
  10309. height: math.unit(20, "km")
  10310. },
  10311. {
  10312. name: "Gigamacro",
  10313. height: math.unit(2500, "km")
  10314. },
  10315. {
  10316. name: "Gigamacro+",
  10317. height: math.unit(120000, "km")
  10318. },
  10319. {
  10320. name: "Teramacro",
  10321. height: math.unit(7.77e6, "km")
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10327. {
  10328. front: {
  10329. height: math.unit(6 + 4 / 12, "feet"),
  10330. weight: math.unit(188, "lb"),
  10331. name: "Front",
  10332. image: {
  10333. source: "./media/characters/bmc/front.svg",
  10334. extra: 1067 / 1022,
  10335. bottom: 0.047
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Human-sized",
  10342. height: math.unit(6 + 4 / 12, "feet")
  10343. },
  10344. {
  10345. name: "Small",
  10346. height: math.unit(250, "feet")
  10347. },
  10348. {
  10349. name: "Normal",
  10350. height: math.unit(1250, "feet"),
  10351. default: true
  10352. },
  10353. {
  10354. name: "Good Day",
  10355. height: math.unit(88, "miles")
  10356. },
  10357. {
  10358. name: "Largest Measured Size",
  10359. height: math.unit(11.2e6, "lightyears")
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10365. {
  10366. front: {
  10367. height: math.unit(20, "feet"),
  10368. weight: math.unit(2016, "kg"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/sven-the-kaiju/front.svg",
  10372. extra: 1479 / 1449,
  10373. bottom: 0.05
  10374. }
  10375. },
  10376. },
  10377. [
  10378. {
  10379. name: "Fairy",
  10380. height: math.unit(6, "inches")
  10381. },
  10382. {
  10383. name: "Normal",
  10384. height: math.unit(20, "feet"),
  10385. default: true
  10386. },
  10387. {
  10388. name: "Rampage",
  10389. height: math.unit(200, "feet")
  10390. },
  10391. {
  10392. name: "Archfey Forest Guardian",
  10393. height: math.unit(1, "mile")
  10394. },
  10395. ]
  10396. ))
  10397. characterMakers.push(() => makeCharacter(
  10398. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10399. {
  10400. front: {
  10401. height: math.unit(4, "meters"),
  10402. weight: math.unit(2, "tons"),
  10403. name: "Front",
  10404. image: {
  10405. source: "./media/characters/marik/front.svg",
  10406. extra: 1057 / 1003,
  10407. bottom: 0.08
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(4, "meters"),
  10415. default: true
  10416. },
  10417. {
  10418. name: "Macro",
  10419. height: math.unit(20, "meters")
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(50, "km")
  10424. },
  10425. {
  10426. name: "Gigamacro",
  10427. height: math.unit(100, "km")
  10428. },
  10429. {
  10430. name: "Alpha Macro",
  10431. height: math.unit(7.88e7, "yottameters")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(110, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/mel/front.svg",
  10444. extra: 736 / 617,
  10445. bottom: 0.017
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Pico",
  10452. height: math.unit(3, "pm")
  10453. },
  10454. {
  10455. name: "Nano",
  10456. height: math.unit(3, "nm")
  10457. },
  10458. {
  10459. name: "Micro",
  10460. height: math.unit(0.3, "mm"),
  10461. default: true
  10462. },
  10463. {
  10464. name: "Micro+",
  10465. height: math.unit(3, "mm")
  10466. },
  10467. {
  10468. name: "Normal",
  10469. height: math.unit(5 + 10.5 / 12, "feet")
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10475. {
  10476. kaiju: {
  10477. height: math.unit(1.75, "meters"),
  10478. weight: math.unit(55, "kg"),
  10479. name: "Kaiju",
  10480. image: {
  10481. source: "./media/characters/lykonous/kaiju.svg",
  10482. extra: 1055 / 946,
  10483. bottom: 0.135
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(2.5, "meters"),
  10491. default: true
  10492. },
  10493. {
  10494. name: "Kaiju Dragon",
  10495. height: math.unit(60, "meters")
  10496. },
  10497. {
  10498. name: "Mega Kaiju",
  10499. height: math.unit(120, "km")
  10500. },
  10501. {
  10502. name: "Giga Kaiju",
  10503. height: math.unit(200, "megameters")
  10504. },
  10505. {
  10506. name: "Terra Kaiju",
  10507. height: math.unit(400, "gigameters")
  10508. },
  10509. {
  10510. name: "Kaiju Dragon God",
  10511. height: math.unit(13000, "exaparsecs")
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(6, "feet"),
  10520. weight: math.unit(150, "lb"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/blü/front.svg",
  10524. extra: 1883 / 1564,
  10525. bottom: 0.031
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(13, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Big Boi",
  10537. height: math.unit(150, "meters")
  10538. },
  10539. {
  10540. name: "Mini Stomper",
  10541. height: math.unit(300, "meters")
  10542. },
  10543. {
  10544. name: "Macro",
  10545. height: math.unit(1000, "meters")
  10546. },
  10547. {
  10548. name: "Megamacro",
  10549. height: math.unit(11000, "meters")
  10550. },
  10551. {
  10552. name: "Gigamacro",
  10553. height: math.unit(11000, "km")
  10554. },
  10555. {
  10556. name: "Teramacro",
  10557. height: math.unit(420000, "km")
  10558. },
  10559. {
  10560. name: "Examacro",
  10561. height: math.unit(120, "parsecs")
  10562. },
  10563. {
  10564. name: "God Tho",
  10565. height: math.unit(98000000000, "parsecs")
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10571. {
  10572. taurFront: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(200, "lb"),
  10575. name: "Taur (Front)",
  10576. image: {
  10577. source: "./media/characters/scales/taur-front.svg",
  10578. extra: 1,
  10579. bottom: 0.05
  10580. }
  10581. },
  10582. taurBack: {
  10583. height: math.unit(6, "feet"),
  10584. weight: math.unit(200, "lb"),
  10585. name: "Taur (Back)",
  10586. image: {
  10587. source: "./media/characters/scales/taur-back.svg",
  10588. extra: 1,
  10589. bottom: 0.08
  10590. }
  10591. },
  10592. anthro: {
  10593. height: math.unit(6 * 7 / 12, "feet"),
  10594. weight: math.unit(100, "lb"),
  10595. name: "Anthro",
  10596. image: {
  10597. source: "./media/characters/scales/anthro.svg",
  10598. extra: 1,
  10599. bottom: 0.06
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Normal",
  10606. height: math.unit(12, "feet"),
  10607. default: true
  10608. },
  10609. ]
  10610. ))
  10611. characterMakers.push(() => makeCharacter(
  10612. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10613. {
  10614. front: {
  10615. height: math.unit(6, "feet"),
  10616. weight: math.unit(150, "lb"),
  10617. name: "Front",
  10618. image: {
  10619. source: "./media/characters/koragos/front.svg",
  10620. extra: 841 / 794,
  10621. bottom: 0.035
  10622. }
  10623. },
  10624. back: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Back",
  10628. image: {
  10629. source: "./media/characters/koragos/back.svg",
  10630. extra: 841 / 810,
  10631. bottom: 0.022
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(6 + 11 / 12, "feet"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Macro",
  10643. height: math.unit(490, "feet")
  10644. },
  10645. {
  10646. name: "Megamacro",
  10647. height: math.unit(10, "miles")
  10648. },
  10649. {
  10650. name: "Gigamacro",
  10651. height: math.unit(50, "miles")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(250, "lb"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/xylrem/front.svg",
  10664. extra: 3323 / 3050,
  10665. bottom: 0.065
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Micro",
  10672. height: math.unit(4, "feet")
  10673. },
  10674. {
  10675. name: "Normal",
  10676. height: math.unit(16, "feet"),
  10677. default: true
  10678. },
  10679. {
  10680. name: "Macro",
  10681. height: math.unit(2720, "feet")
  10682. },
  10683. {
  10684. name: "Megamacro",
  10685. height: math.unit(25000, "miles")
  10686. },
  10687. ]
  10688. ))
  10689. characterMakers.push(() => makeCharacter(
  10690. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10691. {
  10692. front: {
  10693. height: math.unit(8, "feet"),
  10694. weight: math.unit(250, "kg"),
  10695. name: "Front",
  10696. image: {
  10697. source: "./media/characters/ikideru/front.svg",
  10698. extra: 930 / 870,
  10699. bottom: 0.087
  10700. }
  10701. },
  10702. back: {
  10703. height: math.unit(8, "feet"),
  10704. weight: math.unit(250, "kg"),
  10705. name: "Back",
  10706. image: {
  10707. source: "./media/characters/ikideru/back.svg",
  10708. extra: 919 / 852,
  10709. bottom: 0.055
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Rare",
  10716. height: math.unit(8, "feet"),
  10717. default: true
  10718. },
  10719. {
  10720. name: "Playful Loom",
  10721. height: math.unit(80, "feet")
  10722. },
  10723. {
  10724. name: "City Leaner",
  10725. height: math.unit(230, "feet")
  10726. },
  10727. {
  10728. name: "Megamacro",
  10729. height: math.unit(2500, "feet")
  10730. },
  10731. {
  10732. name: "Gigamacro",
  10733. height: math.unit(26400, "feet")
  10734. },
  10735. {
  10736. name: "Tectonic Shifter",
  10737. height: math.unit(1.7, "megameters")
  10738. },
  10739. {
  10740. name: "Planet Carer",
  10741. height: math.unit(21, "megameters")
  10742. },
  10743. {
  10744. name: "God",
  10745. height: math.unit(11157.22, "parsecs")
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10751. {
  10752. front: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(120, "lb"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/neo/front.svg"
  10758. }
  10759. },
  10760. },
  10761. [
  10762. {
  10763. name: "Micro",
  10764. height: math.unit(2, "inches"),
  10765. default: true
  10766. },
  10767. {
  10768. name: "Human Size",
  10769. height: math.unit(5 + 8 / 12, "feet")
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(13 + 10 / 12, "feet"),
  10778. weight: math.unit(5320, "lb"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/chauncey-chantz/front.svg",
  10782. extra: 1587 / 1435,
  10783. bottom: 0.02
  10784. }
  10785. },
  10786. },
  10787. [
  10788. {
  10789. name: "Normal",
  10790. height: math.unit(13 + 10 / 12, "feet"),
  10791. default: true
  10792. },
  10793. {
  10794. name: "Macro",
  10795. height: math.unit(45, "feet")
  10796. },
  10797. {
  10798. name: "Megamacro",
  10799. height: math.unit(250, "miles")
  10800. },
  10801. {
  10802. name: "Planetary",
  10803. height: math.unit(10000, "miles")
  10804. },
  10805. {
  10806. name: "Galactic",
  10807. height: math.unit(40000, "parsecs")
  10808. },
  10809. {
  10810. name: "Universal",
  10811. height: math.unit(1, "yottameter")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10817. {
  10818. front: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/epifox/front.svg",
  10824. extra: 1,
  10825. bottom: 0.075
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Micro",
  10832. height: math.unit(6, "inches")
  10833. },
  10834. {
  10835. name: "Normal",
  10836. height: math.unit(12, "feet"),
  10837. default: true
  10838. },
  10839. {
  10840. name: "Macro",
  10841. height: math.unit(3810, "feet")
  10842. },
  10843. {
  10844. name: "Megamacro",
  10845. height: math.unit(500, "miles")
  10846. },
  10847. ]
  10848. ))
  10849. characterMakers.push(() => makeCharacter(
  10850. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10851. {
  10852. front: {
  10853. height: math.unit(1.8796, "m"),
  10854. weight: math.unit(230, "lb"),
  10855. name: "Front",
  10856. image: {
  10857. source: "./media/characters/colin-t/front.svg",
  10858. extra: 1272 / 1193,
  10859. bottom: 0.07
  10860. }
  10861. },
  10862. },
  10863. [
  10864. {
  10865. name: "Micro",
  10866. height: math.unit(0.571, "meters")
  10867. },
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(1.8796, "meters"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Tall",
  10875. height: math.unit(4, "meters")
  10876. },
  10877. {
  10878. name: "Macro",
  10879. height: math.unit(67.241, "meters")
  10880. },
  10881. {
  10882. name: "Megamacro",
  10883. height: math.unit(371.856, "meters")
  10884. },
  10885. {
  10886. name: "Planetary",
  10887. height: math.unit(12631.5689, "km")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(1.85, "meters"),
  10896. weight: math.unit(80, "kg"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/matvei/front.svg",
  10900. extra: 614 / 594,
  10901. bottom: 0.01
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Normal",
  10908. height: math.unit(1.85, "meters"),
  10909. default: true
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(5 + 9 / 12, "feet"),
  10918. weight: math.unit(70, "lb"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/quincy/front.svg",
  10922. extra: 3041 / 2751
  10923. }
  10924. },
  10925. back: {
  10926. height: math.unit(5 + 9 / 12, "feet"),
  10927. weight: math.unit(70, "lb"),
  10928. name: "Back",
  10929. image: {
  10930. source: "./media/characters/quincy/back.svg",
  10931. extra: 3041 / 2751
  10932. }
  10933. },
  10934. flying: {
  10935. height: math.unit(5 + 4 / 12, "feet"),
  10936. weight: math.unit(70, "lb"),
  10937. name: "Flying",
  10938. image: {
  10939. source: "./media/characters/quincy/flying.svg",
  10940. extra: 1044 / 930
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Micro",
  10947. height: math.unit(3, "cm")
  10948. },
  10949. {
  10950. name: "Normal",
  10951. height: math.unit(5 + 9 / 12, "feet")
  10952. },
  10953. {
  10954. name: "Macro",
  10955. height: math.unit(200, "meters"),
  10956. default: true
  10957. },
  10958. {
  10959. name: "Megamacro",
  10960. height: math.unit(1000, "meters")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(4 + 7 / 12, "feet"),
  10969. weight: math.unit(150, "lb"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/vanrel/front.svg",
  10973. extra: 1,
  10974. bottom: 0.02
  10975. }
  10976. },
  10977. elemental: {
  10978. height: math.unit(3, "feet"),
  10979. weight: math.unit(150, "lb"),
  10980. name: "Elemental",
  10981. image: {
  10982. source: "./media/characters/vanrel/elemental.svg",
  10983. extra: 192.3 / 162.8,
  10984. bottom: 1.79 / 194.17
  10985. }
  10986. },
  10987. side: {
  10988. height: math.unit(4 + 7 / 12, "feet"),
  10989. weight: math.unit(150, "lb"),
  10990. name: "Side",
  10991. image: {
  10992. source: "./media/characters/vanrel/side.svg",
  10993. extra: 1,
  10994. bottom: 0.025
  10995. }
  10996. },
  10997. tome: {
  10998. height: math.unit(1.35, "feet"),
  10999. weight: math.unit(10, "lb"),
  11000. name: "Vanrel's Tome",
  11001. rename: true,
  11002. image: {
  11003. source: "./media/characters/vanrel/tome.svg"
  11004. }
  11005. },
  11006. beans: {
  11007. height: math.unit(0.89, "feet"),
  11008. name: "Beans",
  11009. image: {
  11010. source: "./media/characters/vanrel/beans.svg"
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(4 + 7 / 12, "feet"),
  11018. default: true
  11019. },
  11020. ]
  11021. ))
  11022. characterMakers.push(() => makeCharacter(
  11023. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11024. {
  11025. front: {
  11026. height: math.unit(7 + 5 / 12, "feet"),
  11027. weight: math.unit(150, "lb"),
  11028. name: "Front",
  11029. image: {
  11030. source: "./media/characters/kuiper-vanrel/front.svg",
  11031. extra: 1118 / 1068,
  11032. bottom: 0.09
  11033. }
  11034. },
  11035. foot: {
  11036. height: math.unit(0.55, "meters"),
  11037. name: "Foot",
  11038. image: {
  11039. source: "./media/characters/kuiper-vanrel/foot.svg",
  11040. }
  11041. },
  11042. battle: {
  11043. height: math.unit(6.824, "feet"),
  11044. weight: math.unit(150, "lb"),
  11045. name: "Battle",
  11046. image: {
  11047. source: "./media/characters/kuiper-vanrel/battle.svg",
  11048. extra: 1466 / 1327,
  11049. bottom: 29 / 1492.5
  11050. }
  11051. },
  11052. },
  11053. [
  11054. {
  11055. name: "Normal",
  11056. height: math.unit(7 + 5 / 12, "feet"),
  11057. default: true
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11063. {
  11064. front: {
  11065. height: math.unit(8 + 5 / 12, "feet"),
  11066. weight: math.unit(150, "lb"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/keset-vanrel/front.svg",
  11070. extra: 1150 / 1084,
  11071. bottom: 0.05
  11072. }
  11073. },
  11074. hand: {
  11075. height: math.unit(0.6, "meters"),
  11076. name: "Hand",
  11077. image: {
  11078. source: "./media/characters/keset-vanrel/hand.svg"
  11079. }
  11080. },
  11081. foot: {
  11082. height: math.unit(0.94978, "meters"),
  11083. name: "Foot",
  11084. image: {
  11085. source: "./media/characters/keset-vanrel/foot.svg"
  11086. }
  11087. },
  11088. battle: {
  11089. height: math.unit(7.408, "feet"),
  11090. weight: math.unit(150, "lb"),
  11091. name: "Battle",
  11092. image: {
  11093. source: "./media/characters/keset-vanrel/battle.svg",
  11094. extra: 1890 / 1386,
  11095. bottom: 73.28 / 1970
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(8 + 5 / 12, "feet"),
  11103. default: true
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(150, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/neos/front.svg",
  11116. extra: 1696 / 992,
  11117. bottom: 0.14
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Normal",
  11124. height: math.unit(54, "cm"),
  11125. default: true
  11126. },
  11127. {
  11128. name: "Macro",
  11129. height: math.unit(100, "m")
  11130. },
  11131. {
  11132. name: "Megamacro",
  11133. height: math.unit(10, "km")
  11134. },
  11135. {
  11136. name: "Megamacro+",
  11137. height: math.unit(100, "km")
  11138. },
  11139. {
  11140. name: "Gigamacro",
  11141. height: math.unit(100, "Mm")
  11142. },
  11143. {
  11144. name: "Teramacro",
  11145. height: math.unit(100, "Gm")
  11146. },
  11147. {
  11148. name: "Examacro",
  11149. height: math.unit(100, "Em")
  11150. },
  11151. {
  11152. name: "Godly",
  11153. height: math.unit(10000, "Ym")
  11154. },
  11155. {
  11156. name: "Beyond Godly",
  11157. height: math.unit(25, "multiverses")
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11163. {
  11164. feminine: {
  11165. height: math.unit(5, "feet"),
  11166. weight: math.unit(100, "lb"),
  11167. name: "Feminine",
  11168. image: {
  11169. source: "./media/characters/sammy-mouse/feminine.svg",
  11170. extra: 2526 / 2425,
  11171. bottom: 0.123
  11172. }
  11173. },
  11174. masculine: {
  11175. height: math.unit(5, "feet"),
  11176. weight: math.unit(100, "lb"),
  11177. name: "Masculine",
  11178. image: {
  11179. source: "./media/characters/sammy-mouse/masculine.svg",
  11180. extra: 2526 / 2425,
  11181. bottom: 0.123
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Micro",
  11188. height: math.unit(5, "inches")
  11189. },
  11190. {
  11191. name: "Normal",
  11192. height: math.unit(5, "feet"),
  11193. default: true
  11194. },
  11195. {
  11196. name: "Macro",
  11197. height: math.unit(60, "feet")
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11203. {
  11204. front: {
  11205. height: math.unit(4, "feet"),
  11206. weight: math.unit(50, "lb"),
  11207. name: "Front",
  11208. image: {
  11209. source: "./media/characters/kole/front.svg",
  11210. extra: 1423 / 1303,
  11211. bottom: 0.025
  11212. }
  11213. },
  11214. back: {
  11215. height: math.unit(4, "feet"),
  11216. weight: math.unit(50, "lb"),
  11217. name: "Back",
  11218. image: {
  11219. source: "./media/characters/kole/back.svg",
  11220. extra: 1426 / 1280,
  11221. bottom: 0.02
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(4, "feet"),
  11229. default: true
  11230. },
  11231. ]
  11232. ))
  11233. characterMakers.push(() => makeCharacter(
  11234. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11235. {
  11236. front: {
  11237. height: math.unit(2 + 6 / 12, "feet"),
  11238. weight: math.unit(20, "lb"),
  11239. name: "Front",
  11240. image: {
  11241. source: "./media/characters/rufran/front.svg",
  11242. extra: 2041 / 1839,
  11243. bottom: 0.055
  11244. }
  11245. },
  11246. back: {
  11247. height: math.unit(2 + 6 / 12, "feet"),
  11248. weight: math.unit(20, "lb"),
  11249. name: "Back",
  11250. image: {
  11251. source: "./media/characters/rufran/back.svg",
  11252. extra: 2054 / 1839,
  11253. bottom: 0.01
  11254. }
  11255. },
  11256. hand: {
  11257. height: math.unit(0.2166, "meters"),
  11258. name: "Hand",
  11259. image: {
  11260. source: "./media/characters/rufran/hand.svg"
  11261. }
  11262. },
  11263. foot: {
  11264. height: math.unit(0.185, "meters"),
  11265. name: "Foot",
  11266. image: {
  11267. source: "./media/characters/rufran/foot.svg"
  11268. }
  11269. },
  11270. },
  11271. [
  11272. {
  11273. name: "Micro",
  11274. height: math.unit(1, "inch")
  11275. },
  11276. {
  11277. name: "Normal",
  11278. height: math.unit(2 + 6 / 12, "feet"),
  11279. default: true
  11280. },
  11281. {
  11282. name: "Big",
  11283. height: math.unit(60, "feet")
  11284. },
  11285. {
  11286. name: "Macro",
  11287. height: math.unit(325, "feet")
  11288. },
  11289. ]
  11290. ))
  11291. characterMakers.push(() => makeCharacter(
  11292. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11293. {
  11294. front: {
  11295. height: math.unit(0.3, "meters"),
  11296. weight: math.unit(3.5, "kg"),
  11297. name: "Front",
  11298. image: {
  11299. source: "./media/characters/chip/front.svg",
  11300. extra: 748 / 674
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Micro",
  11307. height: math.unit(1, "inch"),
  11308. default: true
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11314. {
  11315. side: {
  11316. height: math.unit(2.3, "meters"),
  11317. weight: math.unit(3500, "lb"),
  11318. name: "Side",
  11319. image: {
  11320. source: "./media/characters/torvid/side.svg",
  11321. extra: 1972 / 722,
  11322. bottom: 0.035
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(2.3, "meters"),
  11330. default: true
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(2, "meters"),
  11339. weight: math.unit(150.5, "kg"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/susan/front.svg",
  11343. extra: 693 / 635,
  11344. bottom: 0.05
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Megamacro",
  11351. height: math.unit(505, "miles"),
  11352. default: true
  11353. },
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11358. {
  11359. front: {
  11360. height: math.unit(6, "feet"),
  11361. weight: math.unit(150, "lb"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/raindrops/front.svg",
  11365. extra: 2655 / 2461,
  11366. bottom: 0.02
  11367. }
  11368. },
  11369. back: {
  11370. height: math.unit(6, "feet"),
  11371. weight: math.unit(150, "lb"),
  11372. name: "Back",
  11373. image: {
  11374. source: "./media/characters/raindrops/back.svg",
  11375. extra: 2574 / 2400,
  11376. bottom: 0.03
  11377. }
  11378. },
  11379. },
  11380. [
  11381. {
  11382. name: "Micro",
  11383. height: math.unit(6, "inches")
  11384. },
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(6 + 2 / 12, "feet")
  11388. },
  11389. {
  11390. name: "Macro",
  11391. height: math.unit(131, "feet"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Megamacro",
  11396. height: math.unit(15, "miles")
  11397. },
  11398. {
  11399. name: "Gigamacro",
  11400. height: math.unit(4000, "miles")
  11401. },
  11402. {
  11403. name: "Teramacro",
  11404. height: math.unit(315000, "miles")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(2.794, "meters"),
  11413. weight: math.unit(325, "kg"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/tezwa/front.svg",
  11417. extra: 2083 / 1906,
  11418. bottom: 0.031
  11419. }
  11420. },
  11421. foot: {
  11422. height: math.unit(0.687, "meters"),
  11423. name: "Foot",
  11424. image: {
  11425. source: "./media/characters/tezwa/foot.svg"
  11426. }
  11427. },
  11428. },
  11429. [
  11430. {
  11431. name: "Normal",
  11432. height: math.unit(9 + 2 / 12, "feet"),
  11433. default: true
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11439. {
  11440. front: {
  11441. height: math.unit(58, "feet"),
  11442. weight: math.unit(89000, "lb"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/typhus/front.svg",
  11446. extra: 816 / 800,
  11447. bottom: 0.065
  11448. }
  11449. },
  11450. },
  11451. [
  11452. {
  11453. name: "Macro",
  11454. height: math.unit(58, "feet"),
  11455. default: true
  11456. },
  11457. ]
  11458. ))
  11459. characterMakers.push(() => makeCharacter(
  11460. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11461. {
  11462. front: {
  11463. height: math.unit(12, "feet"),
  11464. weight: math.unit(6, "tonnes"),
  11465. name: "Front",
  11466. image: {
  11467. source: "./media/characters/lyra-von-wulf/front.svg",
  11468. extra: 1,
  11469. bottom: 0.10
  11470. }
  11471. },
  11472. frontMecha: {
  11473. height: math.unit(12, "feet"),
  11474. weight: math.unit(12, "tonnes"),
  11475. name: "Front (Mecha)",
  11476. image: {
  11477. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11478. extra: 1,
  11479. bottom: 0.042
  11480. }
  11481. },
  11482. maw: {
  11483. height: math.unit(2.2, "feet"),
  11484. name: "Maw",
  11485. image: {
  11486. source: "./media/characters/lyra-von-wulf/maw.svg"
  11487. }
  11488. },
  11489. },
  11490. [
  11491. {
  11492. name: "Normal",
  11493. height: math.unit(12, "feet"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Classic",
  11498. height: math.unit(50, "feet")
  11499. },
  11500. {
  11501. name: "Macro",
  11502. height: math.unit(500, "feet")
  11503. },
  11504. {
  11505. name: "Megamacro",
  11506. height: math.unit(1, "mile")
  11507. },
  11508. {
  11509. name: "Gigamacro",
  11510. height: math.unit(400, "miles")
  11511. },
  11512. {
  11513. name: "Teramacro",
  11514. height: math.unit(22000, "miles")
  11515. },
  11516. {
  11517. name: "Solarmacro",
  11518. height: math.unit(8600000, "miles")
  11519. },
  11520. {
  11521. name: "Galactic",
  11522. height: math.unit(1057000, "lightyears")
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11528. {
  11529. front: {
  11530. height: math.unit(6 + 10 / 12, "feet"),
  11531. weight: math.unit(150, "lb"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/dixon/front.svg",
  11535. extra: 3361 / 3209,
  11536. bottom: 0.01
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(6 + 10 / 12, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Big",
  11548. height: math.unit(12, "meters")
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(500, "meters")
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(2, "km")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(185, "cm"),
  11565. weight: math.unit(68, "kg"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/kauko/front.svg",
  11569. extra: 1455 / 1421,
  11570. bottom: 0.03
  11571. }
  11572. },
  11573. back: {
  11574. height: math.unit(185, "cm"),
  11575. weight: math.unit(68, "kg"),
  11576. name: "Back",
  11577. image: {
  11578. source: "./media/characters/kauko/back.svg",
  11579. extra: 1455 / 1421,
  11580. bottom: 0.004
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(185, "cm"),
  11588. default: true
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11594. {
  11595. front: {
  11596. height: math.unit(6, "feet"),
  11597. weight: math.unit(150, "kg"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/varg/front.svg",
  11601. extra: 1108 / 1018,
  11602. bottom: 0.0375
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(5, "meters")
  11610. },
  11611. {
  11612. name: "Macro",
  11613. height: math.unit(200, "meters")
  11614. },
  11615. {
  11616. name: "Megamacro",
  11617. height: math.unit(20, "kilometers")
  11618. },
  11619. {
  11620. name: "True Size",
  11621. height: math.unit(211, "km"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Gigamacro",
  11626. height: math.unit(1000, "km")
  11627. },
  11628. {
  11629. name: "Gigamacro+",
  11630. height: math.unit(8000, "km")
  11631. },
  11632. {
  11633. name: "Teramacro",
  11634. height: math.unit(1000000, "km")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(7 + 7 / 12, "feet"),
  11643. weight: math.unit(267, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/dayza/front.svg",
  11647. extra: 1262 / 1200,
  11648. bottom: 0.035
  11649. }
  11650. },
  11651. side: {
  11652. height: math.unit(7 + 7 / 12, "feet"),
  11653. weight: math.unit(267, "lb"),
  11654. name: "Side",
  11655. image: {
  11656. source: "./media/characters/dayza/side.svg",
  11657. extra: 1295 / 1245,
  11658. bottom: 0.05
  11659. }
  11660. },
  11661. back: {
  11662. height: math.unit(7 + 7 / 12, "feet"),
  11663. weight: math.unit(267, "lb"),
  11664. name: "Back",
  11665. image: {
  11666. source: "./media/characters/dayza/back.svg",
  11667. extra: 1241 / 1170
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(7 + 7 / 12, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Macro",
  11679. height: math.unit(155, "feet")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(6 + 5 / 12, "feet"),
  11688. weight: math.unit(160, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/xanthos/front.svg",
  11692. extra: 1,
  11693. bottom: 0.04
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6 + 5 / 12, "feet"),
  11698. weight: math.unit(160, "lb"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/xanthos/back.svg",
  11702. extra: 1,
  11703. bottom: 0.03
  11704. }
  11705. },
  11706. hand: {
  11707. height: math.unit(0.928, "feet"),
  11708. name: "Hand",
  11709. image: {
  11710. source: "./media/characters/xanthos/hand.svg"
  11711. }
  11712. },
  11713. foot: {
  11714. height: math.unit(1.286, "feet"),
  11715. name: "Foot",
  11716. image: {
  11717. source: "./media/characters/xanthos/foot.svg"
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(6 + 5 / 12, "feet"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Normal+",
  11729. height: math.unit(6, "meters")
  11730. },
  11731. {
  11732. name: "Macro",
  11733. height: math.unit(40, "feet")
  11734. },
  11735. {
  11736. name: "Macro+",
  11737. height: math.unit(200, "meters")
  11738. },
  11739. {
  11740. name: "Megamacro",
  11741. height: math.unit(20, "km")
  11742. },
  11743. {
  11744. name: "Megamacro+",
  11745. height: math.unit(100, "km")
  11746. },
  11747. ]
  11748. ))
  11749. characterMakers.push(() => makeCharacter(
  11750. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11751. {
  11752. front: {
  11753. height: math.unit(6 + 3 / 12, "feet"),
  11754. weight: math.unit(215, "lb"),
  11755. name: "Front",
  11756. image: {
  11757. source: "./media/characters/grynn/front.svg",
  11758. extra: 4627 / 4209,
  11759. bottom: 0.047
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Micro",
  11766. height: math.unit(6, "inches")
  11767. },
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(6 + 3 / 12, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Big",
  11775. height: math.unit(104, "feet")
  11776. },
  11777. {
  11778. name: "Macro",
  11779. height: math.unit(944, "feet")
  11780. },
  11781. {
  11782. name: "Macro+",
  11783. height: math.unit(9480, "feet")
  11784. },
  11785. {
  11786. name: "Megamacro",
  11787. height: math.unit(78752, "feet")
  11788. },
  11789. {
  11790. name: "Megamacro+",
  11791. height: math.unit(630128, "feet")
  11792. },
  11793. {
  11794. name: "Megamacro++",
  11795. height: math.unit(3150695, "feet")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11801. {
  11802. front: {
  11803. height: math.unit(7 + 5 / 12, "feet"),
  11804. weight: math.unit(450, "lb"),
  11805. name: "Front",
  11806. image: {
  11807. source: "./media/characters/mocha-aura/front.svg",
  11808. extra: 1907 / 1817,
  11809. bottom: 0.04
  11810. }
  11811. },
  11812. back: {
  11813. height: math.unit(7 + 5 / 12, "feet"),
  11814. weight: math.unit(450, "lb"),
  11815. name: "Back",
  11816. image: {
  11817. source: "./media/characters/mocha-aura/back.svg",
  11818. extra: 1900 / 1825,
  11819. bottom: 0.045
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Nano",
  11826. height: math.unit(1, "nm")
  11827. },
  11828. {
  11829. name: "Megamicro",
  11830. height: math.unit(1, "mm")
  11831. },
  11832. {
  11833. name: "Micro",
  11834. height: math.unit(3, "inches")
  11835. },
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(7 + 5 / 12, "feet"),
  11839. default: true
  11840. },
  11841. {
  11842. name: "Macro",
  11843. height: math.unit(30, "feet")
  11844. },
  11845. {
  11846. name: "Megamacro",
  11847. height: math.unit(3500, "feet")
  11848. },
  11849. {
  11850. name: "Teramacro",
  11851. height: math.unit(500000, "miles")
  11852. },
  11853. {
  11854. name: "Petamacro",
  11855. height: math.unit(50000000000000000, "parsecs")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11861. {
  11862. front: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(150, "lb"),
  11865. name: "Front",
  11866. image: {
  11867. source: "./media/characters/ilisha-devya/front.svg",
  11868. extra: 1,
  11869. bottom: 0.175
  11870. }
  11871. },
  11872. back: {
  11873. height: math.unit(6, "feet"),
  11874. weight: math.unit(150, "lb"),
  11875. name: "Back",
  11876. image: {
  11877. source: "./media/characters/ilisha-devya/back.svg",
  11878. extra: 1,
  11879. bottom: 0.015
  11880. }
  11881. },
  11882. },
  11883. [
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(500, "feet"),
  11887. default: true
  11888. },
  11889. {
  11890. name: "Megamacro",
  11891. height: math.unit(10, "miles")
  11892. },
  11893. {
  11894. name: "Gigamacro",
  11895. height: math.unit(100000, "miles")
  11896. },
  11897. {
  11898. name: "Examacro",
  11899. height: math.unit(1e9, "lightyears")
  11900. },
  11901. {
  11902. name: "Omniversal",
  11903. height: math.unit(1e33, "lightyears")
  11904. },
  11905. {
  11906. name: "Beyond Infinite",
  11907. height: math.unit(1e100, "lightyears")
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11913. {
  11914. Side: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(150, "lb"),
  11917. name: "Side",
  11918. image: {
  11919. source: "./media/characters/mira/side.svg",
  11920. extra: 900 / 799,
  11921. bottom: 0.02
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Human Size",
  11928. height: math.unit(6, "feet")
  11929. },
  11930. {
  11931. name: "Macro",
  11932. height: math.unit(100, "feet"),
  11933. default: true
  11934. },
  11935. {
  11936. name: "Megamacro",
  11937. height: math.unit(10, "miles")
  11938. },
  11939. {
  11940. name: "Gigamacro",
  11941. height: math.unit(25000, "miles")
  11942. },
  11943. {
  11944. name: "Teramacro",
  11945. height: math.unit(300, "AU")
  11946. },
  11947. {
  11948. name: "Full Size",
  11949. height: math.unit(4.5e10, "lightyears")
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11955. {
  11956. front: {
  11957. height: math.unit(6, "feet"),
  11958. weight: math.unit(150, "lb"),
  11959. name: "Front",
  11960. image: {
  11961. source: "./media/characters/holly/front.svg",
  11962. extra: 639 / 606
  11963. }
  11964. },
  11965. back: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(150, "lb"),
  11968. name: "Back",
  11969. image: {
  11970. source: "./media/characters/holly/back.svg",
  11971. extra: 623 / 598
  11972. }
  11973. },
  11974. frontWorking: {
  11975. height: math.unit(6, "feet"),
  11976. weight: math.unit(150, "lb"),
  11977. name: "Front (Working)",
  11978. image: {
  11979. source: "./media/characters/holly/front-working.svg",
  11980. extra: 607 / 577,
  11981. bottom: 0.048
  11982. }
  11983. },
  11984. },
  11985. [
  11986. {
  11987. name: "Normal",
  11988. height: math.unit(12 + 3 / 12, "feet"),
  11989. default: true
  11990. },
  11991. ]
  11992. ))
  11993. characterMakers.push(() => makeCharacter(
  11994. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11995. {
  11996. front: {
  11997. height: math.unit(6, "feet"),
  11998. weight: math.unit(150, "lb"),
  11999. name: "Front",
  12000. image: {
  12001. source: "./media/characters/porter/front.svg",
  12002. extra: 1,
  12003. bottom: 0.01
  12004. }
  12005. },
  12006. frontRobes: {
  12007. height: math.unit(6, "feet"),
  12008. weight: math.unit(150, "lb"),
  12009. name: "Front (Robes)",
  12010. image: {
  12011. source: "./media/characters/porter/front-robes.svg",
  12012. extra: 1.01,
  12013. bottom: 0.01
  12014. }
  12015. },
  12016. },
  12017. [
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(11 + 9 / 12, "feet"),
  12021. default: true
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12027. {
  12028. legendary: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(150, "lb"),
  12031. name: "Legendary",
  12032. image: {
  12033. source: "./media/characters/lucy/legendary.svg",
  12034. extra: 1355 / 1100,
  12035. bottom: 0.045
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Legendary",
  12042. height: math.unit(86882 * 2, "miles"),
  12043. default: true
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(150, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/drusilla/front.svg",
  12056. extra: 678 / 635,
  12057. bottom: 0.03
  12058. }
  12059. },
  12060. back: {
  12061. height: math.unit(6, "feet"),
  12062. weight: math.unit(150, "lb"),
  12063. name: "Back",
  12064. image: {
  12065. source: "./media/characters/drusilla/back.svg",
  12066. extra: 678 / 635,
  12067. bottom: 0.005
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Macro",
  12074. height: math.unit(100, "feet")
  12075. },
  12076. {
  12077. name: "Canon Height",
  12078. height: math.unit(2000, "feet"),
  12079. default: true
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12085. {
  12086. front: {
  12087. height: math.unit(6, "feet"),
  12088. weight: math.unit(180, "lb"),
  12089. name: "Front",
  12090. image: {
  12091. source: "./media/characters/renard-thatch/front.svg",
  12092. extra: 2411 / 2275,
  12093. bottom: 0.01
  12094. }
  12095. },
  12096. frontPosing: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(180, "lb"),
  12099. name: "Front (Posing)",
  12100. image: {
  12101. source: "./media/characters/renard-thatch/front-posing.svg",
  12102. extra: 2381 / 2261,
  12103. bottom: 0.01
  12104. }
  12105. },
  12106. back: {
  12107. height: math.unit(6, "feet"),
  12108. weight: math.unit(180, "lb"),
  12109. name: "Back",
  12110. image: {
  12111. source: "./media/characters/renard-thatch/back.svg",
  12112. extra: 2428 / 2288
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Micro",
  12119. height: math.unit(3, "inches")
  12120. },
  12121. {
  12122. name: "Default",
  12123. height: math.unit(6, "feet"),
  12124. default: true
  12125. },
  12126. {
  12127. name: "Macro",
  12128. height: math.unit(75, "feet")
  12129. },
  12130. ]
  12131. ))
  12132. characterMakers.push(() => makeCharacter(
  12133. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12134. {
  12135. front: {
  12136. height: math.unit(1450, "feet"),
  12137. weight: math.unit(1.21e6, "tons"),
  12138. name: "Front",
  12139. image: {
  12140. source: "./media/characters/sekvra/front.svg",
  12141. extra: 1,
  12142. bottom: 0.03
  12143. }
  12144. },
  12145. frontClothed: {
  12146. height: math.unit(1450, "feet"),
  12147. weight: math.unit(1.21e6, "tons"),
  12148. name: "Front (Clothed)",
  12149. image: {
  12150. source: "./media/characters/sekvra/front-clothed.svg",
  12151. extra: 1,
  12152. bottom: 0.03
  12153. }
  12154. },
  12155. side: {
  12156. height: math.unit(1450, "feet"),
  12157. weight: math.unit(1.21e6, "tons"),
  12158. name: "Side",
  12159. image: {
  12160. source: "./media/characters/sekvra/side.svg",
  12161. extra: 1,
  12162. bottom: 0.025
  12163. }
  12164. },
  12165. back: {
  12166. height: math.unit(1450, "feet"),
  12167. weight: math.unit(1.21e6, "tons"),
  12168. name: "Back",
  12169. image: {
  12170. source: "./media/characters/sekvra/back.svg",
  12171. extra: 1,
  12172. bottom: 0.005
  12173. }
  12174. },
  12175. },
  12176. [
  12177. {
  12178. name: "Macro",
  12179. height: math.unit(1450, "feet"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Megamacro",
  12184. height: math.unit(15000, "feet")
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12190. {
  12191. front: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(150, "lb"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/carmine/front.svg",
  12197. extra: 1,
  12198. bottom: 0.035
  12199. }
  12200. },
  12201. frontArmor: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(150, "lb"),
  12204. name: "Front (Armor)",
  12205. image: {
  12206. source: "./media/characters/carmine/front-armor.svg",
  12207. extra: 1,
  12208. bottom: 0.035
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Large",
  12215. height: math.unit(1, "mile")
  12216. },
  12217. {
  12218. name: "Huge",
  12219. height: math.unit(40, "miles"),
  12220. default: true
  12221. },
  12222. {
  12223. name: "Colossal",
  12224. height: math.unit(2500, "miles")
  12225. },
  12226. ]
  12227. ))
  12228. characterMakers.push(() => makeCharacter(
  12229. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12230. {
  12231. front: {
  12232. height: math.unit(6, "feet"),
  12233. weight: math.unit(150, "lb"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/elyssia/front.svg",
  12237. extra: 2201 / 2035,
  12238. bottom: 0.05
  12239. }
  12240. },
  12241. frontClothed: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front (Clothed)",
  12245. image: {
  12246. source: "./media/characters/elyssia/front-clothed.svg",
  12247. extra: 2201 / 2035,
  12248. bottom: 0.05
  12249. }
  12250. },
  12251. back: {
  12252. height: math.unit(6, "feet"),
  12253. weight: math.unit(150, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/elyssia/back.svg",
  12257. extra: 2201 / 2035,
  12258. bottom: 0.013
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Smaller",
  12265. height: math.unit(150, "feet")
  12266. },
  12267. {
  12268. name: "Standard",
  12269. height: math.unit(1400, "feet"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Distracted",
  12274. height: math.unit(15000, "feet")
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(7 + 4 / 12, "feet"),
  12283. weight: math.unit(500, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/geno-maxwell/front.svg",
  12287. extra: 2207 / 2040,
  12288. bottom: 0.015
  12289. }
  12290. },
  12291. },
  12292. [
  12293. {
  12294. name: "Micro",
  12295. height: math.unit(3, "inches")
  12296. },
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(7 + 4 / 12, "feet"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Macro",
  12304. height: math.unit(220, "feet")
  12305. },
  12306. {
  12307. name: "Megamacro",
  12308. height: math.unit(11, "miles")
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12314. {
  12315. front: {
  12316. height: math.unit(7 + 4 / 12, "feet"),
  12317. weight: math.unit(500, "lb"),
  12318. name: "Front",
  12319. image: {
  12320. source: "./media/characters/regena-maxwell/front.svg",
  12321. extra: 3115 / 2770,
  12322. bottom: 0.02
  12323. }
  12324. },
  12325. },
  12326. [
  12327. {
  12328. name: "Normal",
  12329. height: math.unit(7 + 4 / 12, "feet"),
  12330. default: true
  12331. },
  12332. {
  12333. name: "Macro",
  12334. height: math.unit(220, "feet")
  12335. },
  12336. {
  12337. name: "Megamacro",
  12338. height: math.unit(11, "miles")
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12344. {
  12345. front: {
  12346. height: math.unit(6, "feet"),
  12347. weight: math.unit(150, "lb"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12351. extra: 860 / 690,
  12352. bottom: 0.03
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Normal",
  12359. height: math.unit(1.7, "meters"),
  12360. default: true
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(150, "lb"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/quilly/front.svg",
  12373. extra: 890 / 776
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Gigamacro",
  12380. height: math.unit(404090, "miles"),
  12381. default: true
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12387. {
  12388. front: {
  12389. height: math.unit(7 + 8 / 12, "feet"),
  12390. weight: math.unit(350, "lb"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/tempest/front.svg",
  12394. extra: 1175 / 1086,
  12395. bottom: 0.02
  12396. }
  12397. },
  12398. },
  12399. [
  12400. {
  12401. name: "Normal",
  12402. height: math.unit(7 + 8 / 12, "feet"),
  12403. default: true
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12409. {
  12410. side: {
  12411. height: math.unit(4 + 5 / 12, "feet"),
  12412. weight: math.unit(80, "lb"),
  12413. name: "Side",
  12414. image: {
  12415. source: "./media/characters/rodger/side.svg",
  12416. extra: 1235 / 1118
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Micro",
  12423. height: math.unit(1, "inch")
  12424. },
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(4 + 5 / 12, "feet"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(120, "feet")
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(6, "feet"),
  12441. weight: math.unit(150, "lb"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/danyel/front.svg",
  12445. extra: 1185 / 1123,
  12446. bottom: 0.05
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Shrunken",
  12453. height: math.unit(0.5, "mm")
  12454. },
  12455. {
  12456. name: "Micro",
  12457. height: math.unit(1, "mm"),
  12458. default: true
  12459. },
  12460. {
  12461. name: "Upsized",
  12462. height: math.unit(5 + 5 / 12, "feet")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12468. {
  12469. front: {
  12470. height: math.unit(5 + 6 / 12, "feet"),
  12471. weight: math.unit(200, "lb"),
  12472. name: "Front",
  12473. image: {
  12474. source: "./media/characters/vivian-bijoux/front.svg",
  12475. extra: 1,
  12476. bottom: 0.072
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Normal",
  12483. height: math.unit(5 + 6 / 12, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Bad Dream",
  12488. height: math.unit(500, "feet")
  12489. },
  12490. {
  12491. name: "Nightmare",
  12492. height: math.unit(500, "miles")
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12498. {
  12499. front: {
  12500. height: math.unit(6 + 1 / 12, "feet"),
  12501. weight: math.unit(260, "lb"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/zeta/front.svg",
  12505. extra: 1968 / 1889,
  12506. bottom: 0.06
  12507. }
  12508. },
  12509. back: {
  12510. height: math.unit(6 + 1 / 12, "feet"),
  12511. weight: math.unit(260, "lb"),
  12512. name: "Back",
  12513. image: {
  12514. source: "./media/characters/zeta/back.svg",
  12515. extra: 1944 / 1858,
  12516. bottom: 0.03
  12517. }
  12518. },
  12519. hand: {
  12520. height: math.unit(1.112, "feet"),
  12521. name: "Hand",
  12522. image: {
  12523. source: "./media/characters/zeta/hand.svg"
  12524. }
  12525. },
  12526. foot: {
  12527. height: math.unit(1.48, "feet"),
  12528. name: "Foot",
  12529. image: {
  12530. source: "./media/characters/zeta/foot.svg"
  12531. }
  12532. },
  12533. },
  12534. [
  12535. {
  12536. name: "Micro",
  12537. height: math.unit(6, "inches")
  12538. },
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(6 + 1 / 12, "feet"),
  12542. default: true
  12543. },
  12544. {
  12545. name: "Macro",
  12546. height: math.unit(20, "feet")
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12552. {
  12553. front: {
  12554. height: math.unit(6, "feet"),
  12555. weight: math.unit(150, "lb"),
  12556. name: "Front",
  12557. image: {
  12558. source: "./media/characters/jamie-larsen/front.svg",
  12559. extra: 962 / 933,
  12560. bottom: 0.02
  12561. }
  12562. },
  12563. back: {
  12564. height: math.unit(6, "feet"),
  12565. weight: math.unit(150, "lb"),
  12566. name: "Back",
  12567. image: {
  12568. source: "./media/characters/jamie-larsen/back.svg",
  12569. extra: 997 / 946
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Macro",
  12576. height: math.unit(28 + 7 / 12, "feet"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Macro+",
  12581. height: math.unit(180, "feet")
  12582. },
  12583. {
  12584. name: "Megamacro",
  12585. height: math.unit(10, "miles")
  12586. },
  12587. {
  12588. name: "Gigamacro",
  12589. height: math.unit(200000, "miles")
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12595. {
  12596. front: {
  12597. height: math.unit(6, "feet"),
  12598. weight: math.unit(120, "lb"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/vance/front.svg",
  12602. extra: 1980 / 1890,
  12603. bottom: 0.09
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(6, "feet"),
  12608. weight: math.unit(120, "lb"),
  12609. name: "Back",
  12610. image: {
  12611. source: "./media/characters/vance/back.svg",
  12612. extra: 2081 / 1994,
  12613. bottom: 0.014
  12614. }
  12615. },
  12616. hand: {
  12617. height: math.unit(0.88, "feet"),
  12618. name: "Hand",
  12619. image: {
  12620. source: "./media/characters/vance/hand.svg"
  12621. }
  12622. },
  12623. foot: {
  12624. height: math.unit(0.64, "feet"),
  12625. name: "Foot",
  12626. image: {
  12627. source: "./media/characters/vance/foot.svg"
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Small",
  12634. height: math.unit(90, "feet"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Macro",
  12639. height: math.unit(100, "meters")
  12640. },
  12641. {
  12642. name: "Megamacro",
  12643. height: math.unit(15, "miles")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(180, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/xochitl/front.svg",
  12656. extra: 2297 / 2261,
  12657. bottom: 0.065
  12658. }
  12659. },
  12660. back: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(180, "lb"),
  12663. name: "Back",
  12664. image: {
  12665. source: "./media/characters/xochitl/back.svg",
  12666. extra: 2386 / 2354,
  12667. bottom: 0.01
  12668. }
  12669. },
  12670. foot: {
  12671. height: math.unit(6 / 5 * 1.15, "feet"),
  12672. weight: math.unit(150, "lb"),
  12673. name: "Foot",
  12674. image: {
  12675. source: "./media/characters/xochitl/foot.svg"
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Macro",
  12682. height: math.unit(80, "feet")
  12683. },
  12684. {
  12685. name: "Macro+",
  12686. height: math.unit(400, "feet"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Gigamacro",
  12691. height: math.unit(80000, "miles")
  12692. },
  12693. {
  12694. name: "Gigamacro+",
  12695. height: math.unit(400000, "miles")
  12696. },
  12697. {
  12698. name: "Teramacro",
  12699. height: math.unit(300, "AU")
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(6, "feet"),
  12708. weight: math.unit(150, "lb"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/vincent/front.svg",
  12712. extra: 1130 / 1080,
  12713. bottom: 0.055
  12714. }
  12715. },
  12716. beak: {
  12717. height: math.unit(6 * 0.1, "feet"),
  12718. name: "Beak",
  12719. image: {
  12720. source: "./media/characters/vincent/beak.svg"
  12721. }
  12722. },
  12723. hand: {
  12724. height: math.unit(6 * 0.85, "feet"),
  12725. weight: math.unit(150, "lb"),
  12726. name: "Hand",
  12727. image: {
  12728. source: "./media/characters/vincent/hand.svg"
  12729. }
  12730. },
  12731. foot: {
  12732. height: math.unit(6 * 0.19, "feet"),
  12733. weight: math.unit(150, "lb"),
  12734. name: "Foot",
  12735. image: {
  12736. source: "./media/characters/vincent/foot.svg"
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Base",
  12743. height: math.unit(6 + 5 / 12, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Macro",
  12748. height: math.unit(300, "feet")
  12749. },
  12750. {
  12751. name: "Megamacro",
  12752. height: math.unit(2, "miles")
  12753. },
  12754. {
  12755. name: "Gigamacro",
  12756. height: math.unit(1000, "miles")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12762. {
  12763. front: {
  12764. height: math.unit(6 + 2 / 12, "feet"),
  12765. weight: math.unit(265, "lb"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/jay/front.svg",
  12769. extra: 1510 / 1430,
  12770. bottom: 0.042
  12771. }
  12772. },
  12773. back: {
  12774. height: math.unit(6 + 2 / 12, "feet"),
  12775. weight: math.unit(265, "lb"),
  12776. name: "Back",
  12777. image: {
  12778. source: "./media/characters/jay/back.svg",
  12779. extra: 1510 / 1430,
  12780. bottom: 0.025
  12781. }
  12782. },
  12783. clothed: {
  12784. height: math.unit(6 + 2 / 12, "feet"),
  12785. weight: math.unit(265, "lb"),
  12786. name: "Front (Clothed)",
  12787. image: {
  12788. source: "./media/characters/jay/clothed.svg",
  12789. extra: 744 / 699,
  12790. bottom: 0.043
  12791. }
  12792. },
  12793. head: {
  12794. height: math.unit(1.772, "feet"),
  12795. name: "Head",
  12796. image: {
  12797. source: "./media/characters/jay/head.svg"
  12798. }
  12799. },
  12800. sizeRay: {
  12801. height: math.unit(1.331, "feet"),
  12802. name: "Size Ray",
  12803. image: {
  12804. source: "./media/characters/jay/size-ray.svg"
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Micro",
  12811. height: math.unit(1, "inch")
  12812. },
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(6 + 2 / 12, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(1, "mile")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(100, "miles")
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(2, "meters"),
  12833. weight: math.unit(500, "kg"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/coatl/front.svg",
  12837. extra: 3948 / 3500,
  12838. bottom: 0.082
  12839. }
  12840. },
  12841. },
  12842. [
  12843. {
  12844. name: "Normal",
  12845. height: math.unit(4, "meters")
  12846. },
  12847. {
  12848. name: "Macro",
  12849. height: math.unit(100, "meters"),
  12850. default: true
  12851. },
  12852. {
  12853. name: "Macro+",
  12854. height: math.unit(300, "meters")
  12855. },
  12856. {
  12857. name: "Megamacro",
  12858. height: math.unit(3, "gigameters")
  12859. },
  12860. {
  12861. name: "Megamacro+",
  12862. height: math.unit(300, "terameters")
  12863. },
  12864. {
  12865. name: "Megamacro++",
  12866. height: math.unit(3, "lightyears")
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(50, "kg"),
  12876. name: "front",
  12877. image: {
  12878. source: "./media/characters/shiroryu/front.svg",
  12879. extra: 1990 / 1935
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Mortal Mingling",
  12886. height: math.unit(3, "meters")
  12887. },
  12888. {
  12889. name: "Kaiju-ish",
  12890. height: math.unit(250, "meters")
  12891. },
  12892. {
  12893. name: "Somewhat Godly",
  12894. height: math.unit(400, "km"),
  12895. default: true
  12896. },
  12897. {
  12898. name: "Planetary",
  12899. height: math.unit(300, "megameters")
  12900. },
  12901. {
  12902. name: "Galaxy-dwarfing",
  12903. height: math.unit(450, "kiloparsecs")
  12904. },
  12905. {
  12906. name: "Universe Eater",
  12907. height: math.unit(150, "gigaparsecs")
  12908. },
  12909. {
  12910. name: "Almost Immeasurable",
  12911. height: math.unit(1.3e266, "yottaparsecs")
  12912. },
  12913. ]
  12914. ))
  12915. characterMakers.push(() => makeCharacter(
  12916. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12917. {
  12918. front: {
  12919. height: math.unit(6, "feet"),
  12920. weight: math.unit(150, "lb"),
  12921. name: "Front",
  12922. image: {
  12923. source: "./media/characters/umeko/front.svg",
  12924. extra: 1,
  12925. bottom: 0.019
  12926. }
  12927. },
  12928. frontArmored: {
  12929. height: math.unit(6, "feet"),
  12930. weight: math.unit(150, "lb"),
  12931. name: "Front (Armored)",
  12932. image: {
  12933. source: "./media/characters/umeko/front-armored.svg",
  12934. extra: 1,
  12935. bottom: 0.021
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Macro",
  12942. height: math.unit(220, "feet"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Guardian Dragon",
  12947. height: math.unit(50, "miles")
  12948. },
  12949. {
  12950. name: "Cosmic",
  12951. height: math.unit(800000, "miles")
  12952. },
  12953. ]
  12954. ))
  12955. characterMakers.push(() => makeCharacter(
  12956. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12957. {
  12958. front: {
  12959. height: math.unit(6, "feet"),
  12960. weight: math.unit(150, "lb"),
  12961. name: "Front",
  12962. image: {
  12963. source: "./media/characters/cassidy/front.svg",
  12964. extra: 1,
  12965. bottom: 0.043
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Canon Height",
  12972. height: math.unit(120, "feet"),
  12973. default: true
  12974. },
  12975. {
  12976. name: "Macro+",
  12977. height: math.unit(400, "feet")
  12978. },
  12979. {
  12980. name: "Macro++",
  12981. height: math.unit(4000, "feet")
  12982. },
  12983. {
  12984. name: "Megamacro",
  12985. height: math.unit(3, "miles")
  12986. },
  12987. ]
  12988. ))
  12989. characterMakers.push(() => makeCharacter(
  12990. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12991. {
  12992. front: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Front",
  12996. image: {
  12997. source: "./media/characters/isaac/front.svg",
  12998. extra: 896 / 815,
  12999. bottom: 0.11
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Human Size",
  13006. height: math.unit(8, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(400, "feet")
  13012. },
  13013. {
  13014. name: "Megamacro",
  13015. height: math.unit(50, "miles")
  13016. },
  13017. {
  13018. name: "Canon Height",
  13019. height: math.unit(200, "AU")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(72, "kg"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/sleekit/front.svg",
  13032. extra: 4693 / 4487,
  13033. bottom: 0.012
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Minimum Height",
  13040. height: math.unit(10, "meters")
  13041. },
  13042. {
  13043. name: "Smaller",
  13044. height: math.unit(25, "meters")
  13045. },
  13046. {
  13047. name: "Larger",
  13048. height: math.unit(38, "meters"),
  13049. default: true
  13050. },
  13051. {
  13052. name: "Maximum height",
  13053. height: math.unit(100, "meters")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/nillia/front.svg",
  13066. extra: 2195 / 2037,
  13067. bottom: 0.005
  13068. }
  13069. },
  13070. back: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Back",
  13074. image: {
  13075. source: "./media/characters/nillia/back.svg",
  13076. extra: 2195 / 2037,
  13077. bottom: 0.005
  13078. }
  13079. },
  13080. },
  13081. [
  13082. {
  13083. name: "Canon Height",
  13084. height: math.unit(489, "feet"),
  13085. default: true
  13086. }
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13091. {
  13092. front: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/mesmyriza/front.svg",
  13098. extra: 2067 / 1784,
  13099. bottom: 0.035
  13100. }
  13101. },
  13102. foot: {
  13103. height: math.unit(6 / (250 / 35), "feet"),
  13104. name: "Foot",
  13105. image: {
  13106. source: "./media/characters/mesmyriza/foot.svg"
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Macro",
  13113. height: math.unit(457, "meters"),
  13114. default: true
  13115. },
  13116. {
  13117. name: "Megamacro",
  13118. height: math.unit(8, "megameters")
  13119. },
  13120. ]
  13121. ))
  13122. characterMakers.push(() => makeCharacter(
  13123. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13124. {
  13125. front: {
  13126. height: math.unit(6, "feet"),
  13127. weight: math.unit(250, "lb"),
  13128. name: "Front",
  13129. image: {
  13130. source: "./media/characters/saudade/front.svg",
  13131. extra: 1172 / 1139,
  13132. bottom: 0.035
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Micro",
  13139. height: math.unit(3, "inches")
  13140. },
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(6, "feet"),
  13144. default: true
  13145. },
  13146. {
  13147. name: "Macro",
  13148. height: math.unit(50, "feet")
  13149. },
  13150. {
  13151. name: "Megamacro",
  13152. height: math.unit(2800, "feet")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(5 + 4 / 12, "feet"),
  13161. weight: math.unit(100, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/keireer/front.svg",
  13165. extra: 716 / 666,
  13166. bottom: 0.05
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Normal",
  13173. height: math.unit(5 + 4 / 12, "feet"),
  13174. default: true
  13175. },
  13176. ]
  13177. ))
  13178. characterMakers.push(() => makeCharacter(
  13179. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13180. {
  13181. front: {
  13182. height: math.unit(6, "feet"),
  13183. weight: math.unit(90, "kg"),
  13184. name: "Front",
  13185. image: {
  13186. source: "./media/characters/mirja/front.svg",
  13187. extra: 1789 / 1683,
  13188. bottom: 0.05
  13189. }
  13190. },
  13191. frontDressed: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(90, "lb"),
  13194. name: "Front (Dressed)",
  13195. image: {
  13196. source: "./media/characters/mirja/front-dressed.svg",
  13197. extra: 1789 / 1683,
  13198. bottom: 0.05
  13199. }
  13200. },
  13201. back: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(90, "lb"),
  13204. name: "Back",
  13205. image: {
  13206. source: "./media/characters/mirja/back.svg",
  13207. extra: 953 / 917,
  13208. bottom: 0.017
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "\"Incognito\"",
  13215. height: math.unit(3, "meters")
  13216. },
  13217. {
  13218. name: "Strolling Size",
  13219. height: math.unit(15, "km")
  13220. },
  13221. {
  13222. name: "Larger Strolling Size",
  13223. height: math.unit(400, "km")
  13224. },
  13225. {
  13226. name: "Preferred Size",
  13227. height: math.unit(5000, "km")
  13228. },
  13229. {
  13230. name: "True Size",
  13231. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13232. default: true
  13233. },
  13234. ]
  13235. ))
  13236. characterMakers.push(() => makeCharacter(
  13237. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13238. {
  13239. front: {
  13240. height: math.unit(15, "feet"),
  13241. weight: math.unit(880, "kg"),
  13242. name: "Front",
  13243. image: {
  13244. source: "./media/characters/nightraver/front.svg",
  13245. extra: 2444 / 2160,
  13246. bottom: 0.027
  13247. }
  13248. },
  13249. back: {
  13250. height: math.unit(15, "feet"),
  13251. weight: math.unit(880, "kg"),
  13252. name: "Back",
  13253. image: {
  13254. source: "./media/characters/nightraver/back.svg",
  13255. extra: 2309 / 2180,
  13256. bottom: 0.005
  13257. }
  13258. },
  13259. sole: {
  13260. height: math.unit(2.878, "feet"),
  13261. name: "Sole",
  13262. image: {
  13263. source: "./media/characters/nightraver/sole.svg"
  13264. }
  13265. },
  13266. foot: {
  13267. height: math.unit(2.285, "feet"),
  13268. name: "Foot",
  13269. image: {
  13270. source: "./media/characters/nightraver/foot.svg"
  13271. }
  13272. },
  13273. maw: {
  13274. height: math.unit(2.67, "feet"),
  13275. name: "Maw",
  13276. image: {
  13277. source: "./media/characters/nightraver/maw.svg"
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Micro",
  13284. height: math.unit(1, "cm")
  13285. },
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(15, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(300, "feet")
  13294. },
  13295. {
  13296. name: "Megamacro",
  13297. height: math.unit(300, "miles")
  13298. },
  13299. {
  13300. name: "Gigamacro",
  13301. height: math.unit(10000, "miles")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13307. {
  13308. side: {
  13309. height: math.unit(2, "inches"),
  13310. weight: math.unit(5, "grams"),
  13311. name: "Side",
  13312. image: {
  13313. source: "./media/characters/arc/side.svg"
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Micro",
  13320. height: math.unit(2, "inches"),
  13321. default: true
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13327. {
  13328. front: {
  13329. height: math.unit(1.1938, "meters"),
  13330. weight: math.unit(54, "kg"),
  13331. name: "Front",
  13332. image: {
  13333. source: "./media/characters/nebula-shahar/front.svg",
  13334. extra: 1642 / 1436,
  13335. bottom: 0.06
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Megamicro",
  13342. height: math.unit(0.3, "mm")
  13343. },
  13344. {
  13345. name: "Micro",
  13346. height: math.unit(3, "cm")
  13347. },
  13348. {
  13349. name: "Normal",
  13350. height: math.unit(138, "cm"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(30, "m")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(5.24, "feet"),
  13364. weight: math.unit(150, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/shayla/front.svg",
  13368. extra: 1512 / 1414,
  13369. bottom: 0.01
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(5.24, "feet"),
  13374. weight: math.unit(150, "lb"),
  13375. name: "Back",
  13376. image: {
  13377. source: "./media/characters/shayla/back.svg",
  13378. extra: 1512 / 1414
  13379. }
  13380. },
  13381. hand: {
  13382. height: math.unit(0.7781496062992126, "feet"),
  13383. name: "Hand",
  13384. image: {
  13385. source: "./media/characters/shayla/hand.svg"
  13386. }
  13387. },
  13388. foot: {
  13389. height: math.unit(1.4206036745406823, "feet"),
  13390. name: "Foot",
  13391. image: {
  13392. source: "./media/characters/shayla/foot.svg"
  13393. }
  13394. },
  13395. },
  13396. [
  13397. {
  13398. name: "Micro",
  13399. height: math.unit(0.32, "feet")
  13400. },
  13401. {
  13402. name: "Normal",
  13403. height: math.unit(5.24, "feet"),
  13404. default: true
  13405. },
  13406. {
  13407. name: "Macro",
  13408. height: math.unit(492.12, "feet")
  13409. },
  13410. {
  13411. name: "Megamacro",
  13412. height: math.unit(186.41, "miles")
  13413. },
  13414. ]
  13415. ))
  13416. characterMakers.push(() => makeCharacter(
  13417. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13418. {
  13419. front: {
  13420. height: math.unit(2.2, "m"),
  13421. weight: math.unit(120, "kg"),
  13422. name: "Front",
  13423. image: {
  13424. source: "./media/characters/pia-jr/front.svg",
  13425. extra: 1000 / 970,
  13426. bottom: 0.035
  13427. }
  13428. },
  13429. hand: {
  13430. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13431. name: "Hand",
  13432. image: {
  13433. source: "./media/characters/pia-jr/hand.svg"
  13434. }
  13435. },
  13436. paw: {
  13437. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13438. name: "Paw",
  13439. image: {
  13440. source: "./media/characters/pia-jr/paw.svg"
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Micro",
  13447. height: math.unit(1.2, "cm")
  13448. },
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(2.2, "m"),
  13452. default: true
  13453. },
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(180, "m")
  13457. },
  13458. {
  13459. name: "Megamacro",
  13460. height: math.unit(420, "km")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(2, "m"),
  13469. weight: math.unit(115, "kg"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/pia-sr/front.svg",
  13473. extra: 760 / 730,
  13474. bottom: 0.015
  13475. }
  13476. },
  13477. back: {
  13478. height: math.unit(2, "m"),
  13479. weight: math.unit(115, "kg"),
  13480. name: "Back",
  13481. image: {
  13482. source: "./media/characters/pia-sr/back.svg",
  13483. extra: 760 / 730,
  13484. bottom: 0.01
  13485. }
  13486. },
  13487. hand: {
  13488. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13489. name: "Hand",
  13490. image: {
  13491. source: "./media/characters/pia-sr/hand.svg"
  13492. }
  13493. },
  13494. foot: {
  13495. height: math.unit(1.83, "feet"),
  13496. name: "Foot",
  13497. image: {
  13498. source: "./media/characters/pia-sr/foot.svg"
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Micro",
  13505. height: math.unit(88, "mm")
  13506. },
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(2, "m"),
  13510. default: true
  13511. },
  13512. {
  13513. name: "Macro",
  13514. height: math.unit(200, "m")
  13515. },
  13516. {
  13517. name: "Megamacro",
  13518. height: math.unit(420, "km")
  13519. },
  13520. ]
  13521. ))
  13522. characterMakers.push(() => makeCharacter(
  13523. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13524. {
  13525. front: {
  13526. height: math.unit(8 + 2 / 12, "feet"),
  13527. weight: math.unit(300, "lb"),
  13528. name: "Front",
  13529. image: {
  13530. source: "./media/characters/kibibyte/front.svg",
  13531. extra: 2221 / 2098,
  13532. bottom: 0.04
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Normal",
  13539. height: math.unit(8 + 2 / 12, "feet"),
  13540. default: true
  13541. },
  13542. {
  13543. name: "Socialable Macro",
  13544. height: math.unit(50, "feet")
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(300, "feet")
  13549. },
  13550. {
  13551. name: "Megamacro",
  13552. height: math.unit(500, "miles")
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/felix/front.svg",
  13565. extra: 762 / 722,
  13566. bottom: 0.02
  13567. }
  13568. },
  13569. frontClothed: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(150, "lb"),
  13572. name: "Front (Clothed)",
  13573. image: {
  13574. source: "./media/characters/felix/front-clothed.svg",
  13575. extra: 762 / 722,
  13576. bottom: 0.02
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Normal",
  13583. height: math.unit(6 + 8 / 12, "feet"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Macro",
  13588. height: math.unit(2600, "feet")
  13589. },
  13590. {
  13591. name: "Megamacro",
  13592. height: math.unit(450, "miles")
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6 + 1 / 12, "feet"),
  13601. weight: math.unit(250, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/tobo/front.svg",
  13605. extra: 608 / 586,
  13606. bottom: 0.023
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(6 + 1 / 12, "feet"),
  13611. weight: math.unit(250, "lb"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/tobo/back.svg",
  13615. extra: 608 / 586
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Nano",
  13622. height: math.unit(2, "nm")
  13623. },
  13624. {
  13625. name: "Megamicro",
  13626. height: math.unit(0.1, "mm")
  13627. },
  13628. {
  13629. name: "Micro",
  13630. height: math.unit(1, "inch"),
  13631. default: true
  13632. },
  13633. {
  13634. name: "Human-sized",
  13635. height: math.unit(6 + 1 / 12, "feet")
  13636. },
  13637. {
  13638. name: "Macro",
  13639. height: math.unit(250, "feet")
  13640. },
  13641. {
  13642. name: "Megamacro",
  13643. height: math.unit(75, "miles")
  13644. },
  13645. {
  13646. name: "Texas-sized",
  13647. height: math.unit(750, "miles")
  13648. },
  13649. {
  13650. name: "Teramacro",
  13651. height: math.unit(50000, "miles")
  13652. },
  13653. ]
  13654. ))
  13655. characterMakers.push(() => makeCharacter(
  13656. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13657. {
  13658. front: {
  13659. height: math.unit(6, "feet"),
  13660. weight: math.unit(269, "lb"),
  13661. name: "Front",
  13662. image: {
  13663. source: "./media/characters/danny-kapowsky/front.svg",
  13664. extra: 766 / 736,
  13665. bottom: 0.044
  13666. }
  13667. },
  13668. back: {
  13669. height: math.unit(6, "feet"),
  13670. weight: math.unit(269, "lb"),
  13671. name: "Back",
  13672. image: {
  13673. source: "./media/characters/danny-kapowsky/back.svg",
  13674. extra: 797 / 760,
  13675. bottom: 0.025
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Macro",
  13682. height: math.unit(150, "feet"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Macro+",
  13687. height: math.unit(200, "feet")
  13688. },
  13689. {
  13690. name: "Macro++",
  13691. height: math.unit(300, "feet")
  13692. },
  13693. {
  13694. name: "Macro+++",
  13695. height: math.unit(400, "feet")
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13701. {
  13702. side: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(170, "lb"),
  13705. name: "Side",
  13706. image: {
  13707. source: "./media/characters/finn/side.svg",
  13708. extra: 1953 / 1807,
  13709. bottom: 0.057
  13710. }
  13711. },
  13712. },
  13713. [
  13714. {
  13715. name: "Megamacro",
  13716. height: math.unit(14445, "feet"),
  13717. default: true
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(5 + 6 / 12, "feet"),
  13726. weight: math.unit(125, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/roy/front.svg",
  13730. extra: 1,
  13731. bottom: 0.11
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Micro",
  13738. height: math.unit(3, "inches"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Normal",
  13743. height: math.unit(5 + 6 / 12, "feet")
  13744. },
  13745. {
  13746. name: "Lesser Macro",
  13747. height: math.unit(60, "feet")
  13748. },
  13749. {
  13750. name: "Greater Macro",
  13751. height: math.unit(120, "feet")
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13757. {
  13758. front: {
  13759. height: math.unit(6, "feet"),
  13760. weight: math.unit(100, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/aevsivs/front.svg",
  13764. extra: 1,
  13765. bottom: 0.03
  13766. }
  13767. },
  13768. back: {
  13769. height: math.unit(6, "feet"),
  13770. weight: math.unit(100, "lb"),
  13771. name: "Back",
  13772. image: {
  13773. source: "./media/characters/aevsivs/back.svg"
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Micro",
  13780. height: math.unit(2, "inches"),
  13781. default: true
  13782. },
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(5, "feet")
  13786. },
  13787. ]
  13788. ))
  13789. characterMakers.push(() => makeCharacter(
  13790. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13791. {
  13792. front: {
  13793. height: math.unit(5 + 7 / 12, "feet"),
  13794. weight: math.unit(159, "lb"),
  13795. name: "Front",
  13796. image: {
  13797. source: "./media/characters/hildegard/front.svg",
  13798. extra: 289 / 269,
  13799. bottom: 7.63/297.8
  13800. }
  13801. },
  13802. back: {
  13803. height: math.unit(5 + 7 / 12, "feet"),
  13804. weight: math.unit(159, "lb"),
  13805. name: "Back",
  13806. image: {
  13807. source: "./media/characters/hildegard/back.svg",
  13808. extra: 280/260,
  13809. bottom: 2.3/282
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Normal",
  13816. height: math.unit(5 + 7 / 12, "feet"),
  13817. default: true
  13818. },
  13819. ]
  13820. ))
  13821. characterMakers.push(() => makeCharacter(
  13822. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13823. {
  13824. bernard: {
  13825. height: math.unit(2 + 7 / 12, "feet"),
  13826. weight: math.unit(66, "lb"),
  13827. name: "Bernard",
  13828. rename: true,
  13829. image: {
  13830. source: "./media/characters/bernard-wilder/bernard.svg",
  13831. extra: 192 / 128,
  13832. bottom: 0.05
  13833. }
  13834. },
  13835. wilder: {
  13836. height: math.unit(5 + 8 / 12, "feet"),
  13837. weight: math.unit(143, "lb"),
  13838. name: "Wilder",
  13839. rename: true,
  13840. image: {
  13841. source: "./media/characters/bernard-wilder/wilder.svg",
  13842. extra: 361 / 312,
  13843. bottom: 0.02
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(2 + 7 / 12, "feet"),
  13851. default: true
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13857. {
  13858. anthro: {
  13859. height: math.unit(6 + 1 / 12, "feet"),
  13860. weight: math.unit(155, "lb"),
  13861. name: "Anthro",
  13862. image: {
  13863. source: "./media/characters/hearth/anthro.svg",
  13864. extra: 260 / 250,
  13865. bottom: 0.02
  13866. }
  13867. },
  13868. feral: {
  13869. height: math.unit(3.78, "feet"),
  13870. weight: math.unit(35, "kg"),
  13871. name: "Feral",
  13872. image: {
  13873. source: "./media/characters/hearth/feral.svg",
  13874. extra: 153 / 135,
  13875. bottom: 0.03
  13876. }
  13877. },
  13878. },
  13879. [
  13880. {
  13881. name: "Normal",
  13882. height: math.unit(6 + 1 / 12, "feet"),
  13883. default: true
  13884. },
  13885. ]
  13886. ))
  13887. characterMakers.push(() => makeCharacter(
  13888. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13889. {
  13890. front: {
  13891. height: math.unit(6, "feet"),
  13892. weight: math.unit(182, "lb"),
  13893. name: "Front",
  13894. image: {
  13895. source: "./media/characters/ingrid/front.svg",
  13896. extra: 294 / 268,
  13897. bottom: 0.027
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Normal",
  13904. height: math.unit(6, "feet"),
  13905. default: true
  13906. },
  13907. ]
  13908. ))
  13909. characterMakers.push(() => makeCharacter(
  13910. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13911. {
  13912. eevee: {
  13913. height: math.unit(2 + 10 / 12, "feet"),
  13914. weight: math.unit(86, "lb"),
  13915. name: "Malgam",
  13916. image: {
  13917. source: "./media/characters/malgam/eevee.svg",
  13918. extra: 218 / 180,
  13919. bottom: 0.2
  13920. }
  13921. },
  13922. sylveon: {
  13923. height: math.unit(4, "feet"),
  13924. weight: math.unit(101, "lb"),
  13925. name: "Future Malgam",
  13926. rename: true,
  13927. image: {
  13928. source: "./media/characters/malgam/sylveon.svg",
  13929. extra: 371 / 325,
  13930. bottom: 0.015
  13931. }
  13932. },
  13933. gigantamax: {
  13934. height: math.unit(50, "feet"),
  13935. name: "Gigantamax Malgam",
  13936. rename: true,
  13937. image: {
  13938. source: "./media/characters/malgam/gigantamax.svg"
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(2 + 10 / 12, "feet"),
  13946. default: true
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(5 + 11 / 12, "feet"),
  13955. weight: math.unit(188, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/fleur/front.svg",
  13959. extra: 309 / 283,
  13960. bottom: 0.007
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Normal",
  13967. height: math.unit(5 + 11 / 12, "feet"),
  13968. default: true
  13969. },
  13970. ]
  13971. ))
  13972. characterMakers.push(() => makeCharacter(
  13973. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13974. {
  13975. front: {
  13976. height: math.unit(5 + 4 / 12, "feet"),
  13977. weight: math.unit(122, "lb"),
  13978. name: "Front",
  13979. image: {
  13980. source: "./media/characters/jude/front.svg",
  13981. extra: 288 / 273,
  13982. bottom: 0.03
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Normal",
  13989. height: math.unit(5 + 4 / 12, "feet"),
  13990. default: true
  13991. },
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13996. {
  13997. front: {
  13998. height: math.unit(5 + 11 / 12, "feet"),
  13999. weight: math.unit(190, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/seara/front.svg",
  14003. extra: 1,
  14004. bottom: 0.05
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(5 + 11 / 12, "feet"),
  14012. default: true
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(16 + 5 / 12, "feet"),
  14021. weight: math.unit(524, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/caspian/front.svg",
  14025. extra: 1,
  14026. bottom: 0.04
  14027. }
  14028. },
  14029. },
  14030. [
  14031. {
  14032. name: "Normal",
  14033. height: math.unit(16 + 5 / 12, "feet"),
  14034. default: true
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(5 + 7 / 12, "feet"),
  14043. weight: math.unit(170, "lb"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/mika/front.svg",
  14047. extra: 1,
  14048. bottom: 0.016
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(5 + 7 / 12, "feet"),
  14056. default: true
  14057. },
  14058. ]
  14059. ))
  14060. characterMakers.push(() => makeCharacter(
  14061. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14062. {
  14063. front: {
  14064. height: math.unit(6 + 2 / 12, "feet"),
  14065. weight: math.unit(268, "lb"),
  14066. name: "Front",
  14067. image: {
  14068. source: "./media/characters/sol/front.svg",
  14069. extra: 247 / 231,
  14070. bottom: 0.05
  14071. }
  14072. },
  14073. },
  14074. [
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(6 + 2 / 12, "feet"),
  14078. default: true
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14084. {
  14085. buizel: {
  14086. height: math.unit(2 + 5 / 12, "feet"),
  14087. weight: math.unit(87, "lb"),
  14088. name: "Buizel",
  14089. image: {
  14090. source: "./media/characters/umiko/buizel.svg",
  14091. extra: 172 / 157,
  14092. bottom: 0.01
  14093. }
  14094. },
  14095. floatzel: {
  14096. height: math.unit(5 + 9 / 12, "feet"),
  14097. weight: math.unit(250, "lb"),
  14098. name: "Floatzel",
  14099. image: {
  14100. source: "./media/characters/umiko/floatzel.svg",
  14101. extra: 262 / 248
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(2 + 5 / 12, "feet"),
  14109. default: true
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(6 + 2 / 12, "feet"),
  14118. weight: math.unit(146, "lb"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/iliac/front.svg",
  14122. extra: 389 / 365,
  14123. bottom: 0.035
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Normal",
  14130. height: math.unit(6 + 2 / 12, "feet"),
  14131. default: true
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14137. {
  14138. front: {
  14139. height: math.unit(6, "feet"),
  14140. weight: math.unit(170, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/topaz/front.svg",
  14144. extra: 317 / 303,
  14145. bottom: 0.055
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Normal",
  14152. height: math.unit(6, "feet"),
  14153. default: true
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(5 + 11 / 12, "feet"),
  14162. weight: math.unit(144, "lb"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/gabriel/front.svg",
  14166. extra: 285 / 262,
  14167. bottom: 0.004
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(5 + 11 / 12, "feet"),
  14175. default: true
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14181. {
  14182. side: {
  14183. height: math.unit(6 + 5 / 12, "feet"),
  14184. weight: math.unit(300, "lb"),
  14185. name: "Side",
  14186. image: {
  14187. source: "./media/characters/tempest-suicune/side.svg",
  14188. extra: 195 / 154,
  14189. bottom: 0.04
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(6 + 5 / 12, "feet"),
  14197. default: true
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14203. {
  14204. front: {
  14205. height: math.unit(7 + 2 / 12, "feet"),
  14206. weight: math.unit(322, "lb"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/vulcan/front.svg",
  14210. extra: 154 / 147,
  14211. bottom: 0.04
  14212. }
  14213. },
  14214. },
  14215. [
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(7 + 2 / 12, "feet"),
  14219. default: true
  14220. },
  14221. ]
  14222. ))
  14223. characterMakers.push(() => makeCharacter(
  14224. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14225. {
  14226. front: {
  14227. height: math.unit(5 + 10 / 12, "feet"),
  14228. weight: math.unit(264, "lb"),
  14229. name: "Front",
  14230. image: {
  14231. source: "./media/characters/gault/front.svg",
  14232. extra: 161 / 140,
  14233. bottom: 0.028
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(5 + 10 / 12, "feet"),
  14241. default: true
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(6, "feet"),
  14250. weight: math.unit(150, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/shard/front.svg",
  14254. extra: 273 / 238,
  14255. bottom: 0.02
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(3 + 6 / 12, "feet"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(5 + 11 / 12, "feet"),
  14272. weight: math.unit(146, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/ashe/front.svg",
  14276. extra: 400 / 373,
  14277. bottom: 0.01
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(5 + 11 / 12, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(5 + 5 / 12, "feet"),
  14294. weight: math.unit(135, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/beatrix/front.svg",
  14298. extra: 392 / 379,
  14299. bottom: 0.01
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(6, "feet"),
  14307. default: true
  14308. },
  14309. ]
  14310. ))
  14311. characterMakers.push(() => makeCharacter(
  14312. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14313. {
  14314. front: {
  14315. height: math.unit(6, "feet"),
  14316. weight: math.unit(150, "lb"),
  14317. name: "Front",
  14318. image: {
  14319. source: "./media/characters/ignatius/front.svg",
  14320. extra: 245 / 222,
  14321. bottom: 0.01
  14322. }
  14323. },
  14324. },
  14325. [
  14326. {
  14327. name: "Normal",
  14328. height: math.unit(5 + 5 / 12, "feet"),
  14329. default: true
  14330. },
  14331. ]
  14332. ))
  14333. characterMakers.push(() => makeCharacter(
  14334. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14335. {
  14336. front: {
  14337. height: math.unit(6 + 2 / 12, "feet"),
  14338. weight: math.unit(138, "lb"),
  14339. name: "Front",
  14340. image: {
  14341. source: "./media/characters/mei-li/front.svg",
  14342. extra: 237 / 229,
  14343. bottom: 0.03
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(6 + 2 / 12, "feet"),
  14351. default: true
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(2 + 4 / 12, "feet"),
  14360. weight: math.unit(62, "lb"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/puru/front.svg",
  14364. extra: 206 / 149,
  14365. bottom: 0.06
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Normal",
  14372. height: math.unit(2 + 4 / 12, "feet"),
  14373. default: true
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14379. {
  14380. taur: {
  14381. height: math.unit(11, "feet"),
  14382. weight: math.unit(500, "lb"),
  14383. name: "Taur",
  14384. image: {
  14385. source: "./media/characters/kee/taur.svg",
  14386. extra: 1,
  14387. bottom: 0.04
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(11, "feet"),
  14395. default: true
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14401. {
  14402. anthro: {
  14403. height: math.unit(7, "feet"),
  14404. weight: math.unit(190, "lb"),
  14405. name: "Anthro",
  14406. image: {
  14407. source: "./media/characters/cobalt-dracha/anthro.svg",
  14408. extra: 231 / 225,
  14409. bottom: 0.04
  14410. }
  14411. },
  14412. feral: {
  14413. height: math.unit(9 + 7 / 12, "feet"),
  14414. weight: math.unit(294, "lb"),
  14415. name: "Feral",
  14416. image: {
  14417. source: "./media/characters/cobalt-dracha/feral.svg",
  14418. extra: 692 / 633,
  14419. bottom: 0.05
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Normal",
  14426. height: math.unit(7, "feet"),
  14427. default: true
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14433. {
  14434. fallen: {
  14435. height: math.unit(11 + 8 / 12, "feet"),
  14436. weight: math.unit(485, "lb"),
  14437. name: "Java (Fallen)",
  14438. rename: true,
  14439. image: {
  14440. source: "./media/characters/java/fallen.svg",
  14441. extra: 226 / 208,
  14442. bottom: 0.005
  14443. }
  14444. },
  14445. godkin: {
  14446. height: math.unit(10 + 6 / 12, "feet"),
  14447. weight: math.unit(328, "lb"),
  14448. name: "Java (Godkin)",
  14449. rename: true,
  14450. image: {
  14451. source: "./media/characters/java/godkin.svg",
  14452. extra: 270 / 262,
  14453. bottom: 0.02
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(11 + 8 / 12, "feet"),
  14461. default: true
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(7 + 8 / 12, "feet"),
  14470. weight: math.unit(320, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/skoll/front.svg",
  14474. extra: 232 / 220,
  14475. bottom: 0.02
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Normal",
  14482. height: math.unit(7 + 8 / 12, "feet"),
  14483. default: true
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14489. {
  14490. front: {
  14491. height: math.unit(5 + 9 / 12, "feet"),
  14492. weight: math.unit(170, "lb"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/purna/front.svg",
  14496. extra: 239 / 229,
  14497. bottom: 0.01
  14498. }
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(5 + 9 / 12, "feet"),
  14505. default: true
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14511. {
  14512. front: {
  14513. height: math.unit(5 + 9 / 12, "feet"),
  14514. weight: math.unit(142, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/kuva/front.svg",
  14518. extra: 281 / 271,
  14519. bottom: 0.006
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Normal",
  14526. height: math.unit(5 + 9 / 12, "feet"),
  14527. default: true
  14528. },
  14529. ]
  14530. ))
  14531. characterMakers.push(() => makeCharacter(
  14532. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14533. {
  14534. anthro: {
  14535. height: math.unit(9 + 2 / 12, "feet"),
  14536. weight: math.unit(270, "lb"),
  14537. name: "Anthro",
  14538. image: {
  14539. source: "./media/characters/embra/anthro.svg",
  14540. extra: 200 / 187,
  14541. bottom: 0.02
  14542. }
  14543. },
  14544. feral: {
  14545. height: math.unit(18 + 8 / 12, "feet"),
  14546. weight: math.unit(576, "lb"),
  14547. name: "Feral",
  14548. image: {
  14549. source: "./media/characters/embra/feral.svg",
  14550. extra: 152 / 137,
  14551. bottom: 0.037
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(9 + 2 / 12, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14565. {
  14566. anthro: {
  14567. height: math.unit(10 + 9 / 12, "feet"),
  14568. weight: math.unit(224, "lb"),
  14569. name: "Anthro",
  14570. image: {
  14571. source: "./media/characters/grottos/anthro.svg",
  14572. extra: 350 / 332,
  14573. bottom: 0.045
  14574. }
  14575. },
  14576. feral: {
  14577. height: math.unit(20 + 7 / 12, "feet"),
  14578. weight: math.unit(629, "lb"),
  14579. name: "Feral",
  14580. image: {
  14581. source: "./media/characters/grottos/feral.svg",
  14582. extra: 207 / 190,
  14583. bottom: 0.05
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(10 + 9 / 12, "feet"),
  14591. default: true
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14597. {
  14598. anthro: {
  14599. height: math.unit(9 + 6 / 12, "feet"),
  14600. weight: math.unit(298, "lb"),
  14601. name: "Anthro",
  14602. image: {
  14603. source: "./media/characters/frifna/anthro.svg",
  14604. extra: 282 / 269,
  14605. bottom: 0.015
  14606. }
  14607. },
  14608. feral: {
  14609. height: math.unit(16 + 2 / 12, "feet"),
  14610. weight: math.unit(624, "lb"),
  14611. name: "Feral",
  14612. image: {
  14613. source: "./media/characters/frifna/feral.svg"
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(9 + 6 / 12, "feet"),
  14621. default: true
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(6 + 2 / 12, "feet"),
  14630. weight: math.unit(168, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/elise/front.svg",
  14634. extra: 276 / 271
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(6 + 2 / 12, "feet"),
  14642. default: true
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14648. {
  14649. front: {
  14650. height: math.unit(5 + 10 / 12, "feet"),
  14651. weight: math.unit(210, "lb"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/glade/front.svg",
  14655. extra: 258 / 247,
  14656. bottom: 0.008
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(5 + 10 / 12, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(5 + 10 / 12, "feet"),
  14673. weight: math.unit(129, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/rina/front.svg",
  14677. extra: 266 / 255,
  14678. bottom: 0.005
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Normal",
  14685. height: math.unit(5 + 10 / 12, "feet"),
  14686. default: true
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(6 + 1 / 12, "feet"),
  14695. weight: math.unit(192, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/veronica/front.svg",
  14699. extra: 319 / 309,
  14700. bottom: 0.005
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(6 + 1 / 12, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(9 + 3 / 12, "feet"),
  14717. weight: math.unit(1100, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/braxton/front.svg",
  14721. extra: 1057 / 984,
  14722. bottom: 0.05
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(9 + 3 / 12, "feet")
  14730. },
  14731. {
  14732. name: "Giant",
  14733. height: math.unit(300, "feet"),
  14734. default: true
  14735. },
  14736. {
  14737. name: "Macro",
  14738. height: math.unit(700, "feet")
  14739. },
  14740. {
  14741. name: "Megamacro",
  14742. height: math.unit(6000, "feet")
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14748. {
  14749. front: {
  14750. height: math.unit(6 + 7 / 12, "feet"),
  14751. weight: math.unit(150, "lb"),
  14752. name: "Front",
  14753. image: {
  14754. source: "./media/characters/blue-feyonics/front.svg",
  14755. extra: 1403 / 1306,
  14756. bottom: 0.047
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(6 + 7 / 12, "feet"),
  14764. default: true
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14770. {
  14771. front: {
  14772. height: math.unit(1.8, "meters"),
  14773. weight: math.unit(60, "kg"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/maxwell/front.svg",
  14777. extra: 2060 / 1873
  14778. }
  14779. },
  14780. },
  14781. [
  14782. {
  14783. name: "Micro",
  14784. height: math.unit(1, "mm")
  14785. },
  14786. {
  14787. name: "Normal",
  14788. height: math.unit(1.8, "meter"),
  14789. default: true
  14790. },
  14791. {
  14792. name: "Macro",
  14793. height: math.unit(30, "meters")
  14794. },
  14795. {
  14796. name: "Megamacro",
  14797. height: math.unit(10, "km")
  14798. },
  14799. ]
  14800. ))
  14801. characterMakers.push(() => makeCharacter(
  14802. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14803. {
  14804. front: {
  14805. height: math.unit(6, "feet"),
  14806. weight: math.unit(150, "lb"),
  14807. name: "Front",
  14808. image: {
  14809. source: "./media/characters/jack/front.svg",
  14810. extra: 1754 / 1640,
  14811. bottom: 0.01
  14812. }
  14813. },
  14814. },
  14815. [
  14816. {
  14817. name: "Normal",
  14818. height: math.unit(80000, "feet"),
  14819. default: true
  14820. },
  14821. {
  14822. name: "Max size",
  14823. height: math.unit(10, "lightyears")
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14829. {
  14830. upright: {
  14831. height: math.unit(7, "feet"),
  14832. weight: math.unit(170, "lb"),
  14833. name: "Upright",
  14834. image: {
  14835. source: "./media/characters/cafat/upright.svg",
  14836. bottom: 0.01
  14837. }
  14838. },
  14839. uprightFull: {
  14840. height: math.unit(7, "feet"),
  14841. weight: math.unit(170, "lb"),
  14842. name: "Upright (Full)",
  14843. image: {
  14844. source: "./media/characters/cafat/upright-full.svg",
  14845. bottom: 0.01
  14846. }
  14847. },
  14848. side: {
  14849. height: math.unit(5, "feet"),
  14850. weight: math.unit(150, "lb"),
  14851. name: "Side",
  14852. image: {
  14853. source: "./media/characters/cafat/side.svg"
  14854. }
  14855. },
  14856. },
  14857. [
  14858. {
  14859. name: "Small",
  14860. height: math.unit(7, "feet"),
  14861. default: true
  14862. },
  14863. {
  14864. name: "Large",
  14865. height: math.unit(15.5, "feet")
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14871. {
  14872. front: {
  14873. height: math.unit(6, "feet"),
  14874. weight: math.unit(150, "lb"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/verin-raharra/front.svg",
  14878. extra: 5019 / 4835,
  14879. bottom: 0.023
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Normal",
  14886. height: math.unit(7 + 5 / 12, "feet"),
  14887. default: true
  14888. },
  14889. {
  14890. name: "Upsized",
  14891. height: math.unit(20, "feet")
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14897. {
  14898. front: {
  14899. height: math.unit(7, "feet"),
  14900. weight: math.unit(230, "lb"),
  14901. name: "Front",
  14902. image: {
  14903. source: "./media/characters/nakata/front.svg",
  14904. extra: 1.005,
  14905. bottom: 0.01
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(7, "feet"),
  14913. default: true
  14914. },
  14915. {
  14916. name: "Big",
  14917. height: math.unit(14, "feet")
  14918. },
  14919. {
  14920. name: "Macro",
  14921. height: math.unit(400, "feet")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(4.91, "feet"),
  14930. weight: math.unit(100, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/lily/front.svg",
  14934. extra: 1585 / 1415,
  14935. bottom: 0.02
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Normal",
  14942. height: math.unit(4.91, "feet"),
  14943. default: true
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14949. {
  14950. laying: {
  14951. height: math.unit(4 + 4 / 12, "feet"),
  14952. weight: math.unit(600, "lb"),
  14953. name: "Laying",
  14954. image: {
  14955. source: "./media/characters/sheila/laying.svg",
  14956. extra: 1333 / 1265,
  14957. bottom: 0.16
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Normal",
  14964. height: math.unit(4 + 4 / 12, "feet"),
  14965. default: true
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(190, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/sax/front.svg",
  14978. extra: 1187 / 973,
  14979. bottom: 0.042
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Micro",
  14986. height: math.unit(4, "inches"),
  14987. default: true
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14993. {
  14994. front: {
  14995. height: math.unit(6, "feet"),
  14996. weight: math.unit(150, "lb"),
  14997. name: "Front",
  14998. image: {
  14999. source: "./media/characters/pandora/front.svg",
  15000. extra: 2720 / 2556,
  15001. bottom: 0.015
  15002. }
  15003. },
  15004. back: {
  15005. height: math.unit(6, "feet"),
  15006. weight: math.unit(150, "lb"),
  15007. name: "Back",
  15008. image: {
  15009. source: "./media/characters/pandora/back.svg",
  15010. extra: 2720 / 2556,
  15011. bottom: 0.01
  15012. }
  15013. },
  15014. beans: {
  15015. height: math.unit(6 / 8, "feet"),
  15016. name: "Beans",
  15017. image: {
  15018. source: "./media/characters/pandora/beans.svg"
  15019. }
  15020. },
  15021. skirt: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(150, "lb"),
  15024. name: "Skirt",
  15025. image: {
  15026. source: "./media/characters/pandora/skirt.svg",
  15027. extra: 1622 / 1525,
  15028. bottom: 0.015
  15029. }
  15030. },
  15031. hoodie: {
  15032. height: math.unit(6, "feet"),
  15033. weight: math.unit(150, "lb"),
  15034. name: "Hoodie",
  15035. image: {
  15036. source: "./media/characters/pandora/hoodie.svg",
  15037. extra: 1622 / 1525,
  15038. bottom: 0.015
  15039. }
  15040. },
  15041. casual: {
  15042. height: math.unit(6, "feet"),
  15043. weight: math.unit(150, "lb"),
  15044. name: "Casual",
  15045. image: {
  15046. source: "./media/characters/pandora/casual.svg",
  15047. extra: 1622 / 1525,
  15048. bottom: 0.015
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(6, "feet")
  15056. },
  15057. {
  15058. name: "Big Steppy",
  15059. height: math.unit(1, "km"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15066. {
  15067. side: {
  15068. height: math.unit(10, "feet"),
  15069. weight: math.unit(800, "kg"),
  15070. name: "Side",
  15071. image: {
  15072. source: "./media/characters/venio-darcony/side.svg",
  15073. extra: 1373 / 1003,
  15074. bottom: 0.037
  15075. }
  15076. },
  15077. front: {
  15078. height: math.unit(19, "feet"),
  15079. weight: math.unit(800, "kg"),
  15080. name: "Front",
  15081. image: {
  15082. source: "./media/characters/venio-darcony/front.svg"
  15083. }
  15084. },
  15085. back: {
  15086. height: math.unit(19, "feet"),
  15087. weight: math.unit(800, "kg"),
  15088. name: "Back",
  15089. image: {
  15090. source: "./media/characters/venio-darcony/back.svg"
  15091. }
  15092. },
  15093. sideNsfw: {
  15094. height: math.unit(10, "feet"),
  15095. weight: math.unit(800, "kg"),
  15096. name: "Side (NSFW)",
  15097. image: {
  15098. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15099. extra: 1373 / 1003,
  15100. bottom: 0.037
  15101. }
  15102. },
  15103. frontNsfw: {
  15104. height: math.unit(19, "feet"),
  15105. weight: math.unit(800, "kg"),
  15106. name: "Front (NSFW)",
  15107. image: {
  15108. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15109. }
  15110. },
  15111. backNsfw: {
  15112. height: math.unit(19, "feet"),
  15113. weight: math.unit(800, "kg"),
  15114. name: "Back (NSFW)",
  15115. image: {
  15116. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15117. }
  15118. },
  15119. sideArmored: {
  15120. height: math.unit(10, "feet"),
  15121. weight: math.unit(800, "kg"),
  15122. name: "Side (Armored)",
  15123. image: {
  15124. source: "./media/characters/venio-darcony/side-armored.svg",
  15125. extra: 1373 / 1003,
  15126. bottom: 0.037
  15127. }
  15128. },
  15129. frontArmored: {
  15130. height: math.unit(19, "feet"),
  15131. weight: math.unit(900, "kg"),
  15132. name: "Front (Armored)",
  15133. image: {
  15134. source: "./media/characters/venio-darcony/front-armored.svg"
  15135. }
  15136. },
  15137. backArmored: {
  15138. height: math.unit(19, "feet"),
  15139. weight: math.unit(900, "kg"),
  15140. name: "Back (Armored)",
  15141. image: {
  15142. source: "./media/characters/venio-darcony/back-armored.svg"
  15143. }
  15144. },
  15145. sword: {
  15146. height: math.unit(10, "feet"),
  15147. weight: math.unit(50, "lb"),
  15148. name: "Sword",
  15149. image: {
  15150. source: "./media/characters/venio-darcony/sword.svg"
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Normal",
  15157. height: math.unit(10, "feet")
  15158. },
  15159. {
  15160. name: "Macro",
  15161. height: math.unit(130, "feet"),
  15162. default: true
  15163. },
  15164. {
  15165. name: "Macro+",
  15166. height: math.unit(240, "feet")
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15172. {
  15173. front: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Front",
  15177. image: {
  15178. source: "./media/characters/veski/front.svg",
  15179. extra: 1299 / 1225,
  15180. bottom: 0.04
  15181. }
  15182. },
  15183. back: {
  15184. height: math.unit(6, "feet"),
  15185. weight: math.unit(150, "lb"),
  15186. name: "Back",
  15187. image: {
  15188. source: "./media/characters/veski/back.svg",
  15189. extra: 1299 / 1225,
  15190. bottom: 0.008
  15191. }
  15192. },
  15193. maw: {
  15194. height: math.unit(1.5 * 1.21, "feet"),
  15195. name: "Maw",
  15196. image: {
  15197. source: "./media/characters/veski/maw.svg"
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Macro",
  15204. height: math.unit(2, "km"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(5 + 7 / 12, "feet"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/isabelle/front.svg",
  15217. extra: 2130 / 1976,
  15218. bottom: 0.05
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Supermicro",
  15225. height: math.unit(10, "micrometers")
  15226. },
  15227. {
  15228. name: "Micro",
  15229. height: math.unit(1, "inch")
  15230. },
  15231. {
  15232. name: "Tiny",
  15233. height: math.unit(5, "inches")
  15234. },
  15235. {
  15236. name: "Standard",
  15237. height: math.unit(5 + 7 / 12, "inches")
  15238. },
  15239. {
  15240. name: "Macro",
  15241. height: math.unit(80, "meters"),
  15242. default: true
  15243. },
  15244. {
  15245. name: "Megamacro",
  15246. height: math.unit(250, "meters")
  15247. },
  15248. {
  15249. name: "Gigamacro",
  15250. height: math.unit(5, "km")
  15251. },
  15252. {
  15253. name: "Cosmic",
  15254. height: math.unit(2.5e6, "miles")
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15260. {
  15261. front: {
  15262. height: math.unit(6, "feet"),
  15263. weight: math.unit(150, "lb"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/hanzo/front.svg",
  15267. extra: 374 / 344,
  15268. bottom: 0.02
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(8, "feet"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(7, "feet"),
  15285. weight: math.unit(130, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/anna/front.svg",
  15289. extra: 169 / 145,
  15290. bottom: 0.06
  15291. }
  15292. },
  15293. full: {
  15294. height: math.unit(4.96, "feet"),
  15295. weight: math.unit(220, "lb"),
  15296. name: "Full",
  15297. image: {
  15298. source: "./media/characters/anna/full.svg",
  15299. extra: 138 / 114,
  15300. bottom: 0.15
  15301. }
  15302. },
  15303. tongue: {
  15304. height: math.unit(2.53, "feet"),
  15305. name: "Tongue",
  15306. image: {
  15307. source: "./media/characters/anna/tongue.svg"
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(7, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(7, "feet"),
  15324. weight: math.unit(150, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/ian-corvid/front.svg",
  15328. extra: 150 / 142,
  15329. bottom: 0.02
  15330. }
  15331. },
  15332. back: {
  15333. height: math.unit(7, "feet"),
  15334. weight: math.unit(150, "lb"),
  15335. name: "Back",
  15336. image: {
  15337. source: "./media/characters/ian-corvid/back.svg",
  15338. extra: 150 / 143,
  15339. bottom: 0.01
  15340. }
  15341. },
  15342. stomping: {
  15343. height: math.unit(7, "feet"),
  15344. weight: math.unit(150, "lb"),
  15345. name: "Stomping",
  15346. image: {
  15347. source: "./media/characters/ian-corvid/stomping.svg",
  15348. extra: 76 / 72
  15349. }
  15350. },
  15351. sitting: {
  15352. height: math.unit(7 / 1.8, "feet"),
  15353. weight: math.unit(150, "lb"),
  15354. name: "Sitting",
  15355. image: {
  15356. source: "./media/characters/ian-corvid/sitting.svg",
  15357. extra: 1400 / 1269,
  15358. bottom: 0.15
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Tiny Microw",
  15365. height: math.unit(1, "inch")
  15366. },
  15367. {
  15368. name: "Microw",
  15369. height: math.unit(6, "inches")
  15370. },
  15371. {
  15372. name: "Crow",
  15373. height: math.unit(7 + 1 / 12, "feet"),
  15374. default: true
  15375. },
  15376. {
  15377. name: "Macrow",
  15378. height: math.unit(176, "feet")
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(5 + 7 / 12, "feet"),
  15387. weight: math.unit(147, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/natalie-kellon/front.svg",
  15391. extra: 1214 / 1141,
  15392. bottom: 0.02
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Micro",
  15399. height: math.unit(1 / 16, "inch")
  15400. },
  15401. {
  15402. name: "Tiny",
  15403. height: math.unit(4, "inches")
  15404. },
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(5 + 7 / 12, "feet"),
  15408. default: true
  15409. },
  15410. {
  15411. name: "Amazon",
  15412. height: math.unit(12, "feet")
  15413. },
  15414. {
  15415. name: "Giantess",
  15416. height: math.unit(160, "meters")
  15417. },
  15418. {
  15419. name: "Titaness",
  15420. height: math.unit(800, "meters")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/alluria/front.svg",
  15433. extra: 806 / 738,
  15434. bottom: 0.01
  15435. }
  15436. },
  15437. side: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Side",
  15441. image: {
  15442. source: "./media/characters/alluria/side.svg",
  15443. extra: 800 / 750,
  15444. }
  15445. },
  15446. back: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(150, "lb"),
  15449. name: "Back",
  15450. image: {
  15451. source: "./media/characters/alluria/back.svg",
  15452. extra: 806 / 738,
  15453. }
  15454. },
  15455. frontMaid: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(150, "lb"),
  15458. name: "Front (Maid)",
  15459. image: {
  15460. source: "./media/characters/alluria/front-maid.svg",
  15461. extra: 806 / 738,
  15462. bottom: 0.01
  15463. }
  15464. },
  15465. sideMaid: {
  15466. height: math.unit(6, "feet"),
  15467. weight: math.unit(150, "lb"),
  15468. name: "Side (Maid)",
  15469. image: {
  15470. source: "./media/characters/alluria/side-maid.svg",
  15471. extra: 800 / 750,
  15472. bottom: 0.005
  15473. }
  15474. },
  15475. backMaid: {
  15476. height: math.unit(6, "feet"),
  15477. weight: math.unit(150, "lb"),
  15478. name: "Back (Maid)",
  15479. image: {
  15480. source: "./media/characters/alluria/back-maid.svg",
  15481. extra: 806 / 738,
  15482. }
  15483. },
  15484. },
  15485. [
  15486. {
  15487. name: "Micro",
  15488. height: math.unit(6, "inches"),
  15489. default: true
  15490. },
  15491. ]
  15492. ))
  15493. characterMakers.push(() => makeCharacter(
  15494. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15495. {
  15496. front: {
  15497. height: math.unit(6, "feet"),
  15498. weight: math.unit(150, "lb"),
  15499. name: "Front",
  15500. image: {
  15501. source: "./media/characters/kyle/front.svg",
  15502. extra: 1069 / 962,
  15503. bottom: 77.228 / 1727.45
  15504. }
  15505. },
  15506. },
  15507. [
  15508. {
  15509. name: "Macro",
  15510. height: math.unit(150, "feet"),
  15511. default: true
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15517. {
  15518. front: {
  15519. height: math.unit(6, "feet"),
  15520. weight: math.unit(300, "lb"),
  15521. name: "Front",
  15522. image: {
  15523. source: "./media/characters/duncan/front.svg",
  15524. extra: 1650 / 1482,
  15525. bottom: 0.05
  15526. }
  15527. },
  15528. },
  15529. [
  15530. {
  15531. name: "Macro",
  15532. height: math.unit(100, "feet"),
  15533. default: true
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15539. {
  15540. front: {
  15541. height: math.unit(5 + 4 / 12, "feet"),
  15542. weight: math.unit(220, "lb"),
  15543. name: "Front",
  15544. image: {
  15545. source: "./media/characters/memory/front.svg",
  15546. extra: 3641 / 3545,
  15547. bottom: 0.03
  15548. }
  15549. },
  15550. back: {
  15551. height: math.unit(5 + 4 / 12, "feet"),
  15552. weight: math.unit(220, "lb"),
  15553. name: "Back",
  15554. image: {
  15555. source: "./media/characters/memory/back.svg",
  15556. extra: 3641 / 3545,
  15557. bottom: 0.025
  15558. }
  15559. },
  15560. frontSkirt: {
  15561. height: math.unit(5 + 4 / 12, "feet"),
  15562. weight: math.unit(220, "lb"),
  15563. name: "Front (Skirt)",
  15564. image: {
  15565. source: "./media/characters/memory/front-skirt.svg",
  15566. extra: 3641 / 3545,
  15567. bottom: 0.03
  15568. }
  15569. },
  15570. frontDress: {
  15571. height: math.unit(5 + 4 / 12, "feet"),
  15572. weight: math.unit(220, "lb"),
  15573. name: "Front (Dress)",
  15574. image: {
  15575. source: "./media/characters/memory/front-dress.svg",
  15576. extra: 3641 / 3545,
  15577. bottom: 0.03
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Micro",
  15584. height: math.unit(6, "inches"),
  15585. default: true
  15586. },
  15587. {
  15588. name: "Normal",
  15589. height: math.unit(5 + 4 / 12, "feet")
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(4 + 11 / 12, "feet"),
  15598. weight: math.unit(100, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/luno/front.svg",
  15602. extra: 1535 / 1487,
  15603. bottom: 0.03
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Micro",
  15610. height: math.unit(3, "inches")
  15611. },
  15612. {
  15613. name: "Normal",
  15614. height: math.unit(4 + 11 / 12, "feet"),
  15615. default: true
  15616. },
  15617. {
  15618. name: "Macro",
  15619. height: math.unit(300, "feet")
  15620. },
  15621. {
  15622. name: "Megamacro",
  15623. height: math.unit(700, "miles")
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(6 + 2 / 12, "feet"),
  15632. weight: math.unit(170, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/jamesy/front.svg",
  15636. extra: 440 / 382,
  15637. bottom: 0.005
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Micro",
  15644. height: math.unit(3, "inches")
  15645. },
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(6 + 2 / 12, "feet"),
  15649. default: true
  15650. },
  15651. {
  15652. name: "Macro",
  15653. height: math.unit(300, "feet")
  15654. },
  15655. {
  15656. name: "Megamacro",
  15657. height: math.unit(700, "miles")
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(160, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/mark/front.svg",
  15670. extra: 3300 / 3100,
  15671. bottom: 136.42 / 3440.47
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Macro",
  15678. height: math.unit(120, "meters")
  15679. },
  15680. {
  15681. name: "Bigger Macro",
  15682. height: math.unit(350, "meters")
  15683. },
  15684. {
  15685. name: "Megamacro",
  15686. height: math.unit(8, "km"),
  15687. default: true
  15688. },
  15689. {
  15690. name: "Continental",
  15691. height: math.unit(4550, "km")
  15692. },
  15693. {
  15694. name: "Planetary",
  15695. height: math.unit(65000, "km")
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(6, "feet"),
  15704. weight: math.unit(400, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/mac/front.svg",
  15708. extra: 1048 / 987.7,
  15709. bottom: 60 / 1107.6,
  15710. }
  15711. },
  15712. },
  15713. [
  15714. {
  15715. name: "Macro",
  15716. height: math.unit(500, "feet"),
  15717. default: true
  15718. },
  15719. ]
  15720. ))
  15721. characterMakers.push(() => makeCharacter(
  15722. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15723. {
  15724. front: {
  15725. height: math.unit(5 + 2 / 12, "feet"),
  15726. weight: math.unit(190, "lb"),
  15727. name: "Front",
  15728. image: {
  15729. source: "./media/characters/bari/front.svg",
  15730. extra: 3156 / 2880,
  15731. bottom: 0.03
  15732. }
  15733. },
  15734. back: {
  15735. height: math.unit(5 + 2 / 12, "feet"),
  15736. weight: math.unit(190, "lb"),
  15737. name: "Back",
  15738. image: {
  15739. source: "./media/characters/bari/back.svg",
  15740. extra: 3260 / 2834,
  15741. bottom: 0.025
  15742. }
  15743. },
  15744. frontPlush: {
  15745. height: math.unit(5 + 2 / 12, "feet"),
  15746. weight: math.unit(190, "lb"),
  15747. name: "Front (Plush)",
  15748. image: {
  15749. source: "./media/characters/bari/front-plush.svg",
  15750. extra: 1112 / 1061,
  15751. bottom: 0.002
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(3, "inches")
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(5 + 2 / 12, "feet"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(20, "feet")
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15773. {
  15774. front: {
  15775. height: math.unit(6 + 1 / 12, "feet"),
  15776. weight: math.unit(275, "lb"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/hunter-misha-raven/front.svg"
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Mortal",
  15786. height: math.unit(6 + 1 / 12, "feet")
  15787. },
  15788. {
  15789. name: "Divine",
  15790. height: math.unit(1.12134e34, "parsecs"),
  15791. default: true
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(6 + 3 / 12, "feet"),
  15800. weight: math.unit(220, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/max-calore/front.svg",
  15804. extra: 1700 / 1648,
  15805. bottom: 0.01
  15806. }
  15807. },
  15808. back: {
  15809. height: math.unit(6 + 3 / 12, "feet"),
  15810. weight: math.unit(220, "lb"),
  15811. name: "Back",
  15812. image: {
  15813. source: "./media/characters/max-calore/back.svg",
  15814. extra: 1700 / 1648,
  15815. bottom: 0.01
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(6 + 3 / 12, "feet"),
  15823. default: true
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15829. {
  15830. side: {
  15831. height: math.unit(2 + 8 / 12, "feet"),
  15832. weight: math.unit(99, "lb"),
  15833. name: "Side",
  15834. image: {
  15835. source: "./media/characters/aspen/side.svg",
  15836. extra: 152 / 138,
  15837. bottom: 0.032
  15838. }
  15839. },
  15840. },
  15841. [
  15842. {
  15843. name: "Normal",
  15844. height: math.unit(2 + 8 / 12, "feet"),
  15845. default: true
  15846. },
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15851. {
  15852. side: {
  15853. height: math.unit(3 + 2 / 12, "feet"),
  15854. weight: math.unit(224, "lb"),
  15855. name: "Side",
  15856. image: {
  15857. source: "./media/characters/sheila-feral-wolf/side.svg",
  15858. extra: 179 / 166,
  15859. bottom: 0.03
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(3 + 2 / 12, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15873. {
  15874. side: {
  15875. height: math.unit(1 + 9 / 12, "feet"),
  15876. weight: math.unit(38, "lb"),
  15877. name: "Side",
  15878. image: {
  15879. source: "./media/characters/michelle/side.svg",
  15880. extra: 147 / 136.7,
  15881. bottom: 0.03
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(1 + 9 / 12, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(1 + 1 / 12, "feet"),
  15898. weight: math.unit(18, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/nino/front.svg"
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(1 + 1 / 12, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(1, "feet"),
  15918. weight: math.unit(16, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/viola/front.svg"
  15922. }
  15923. },
  15924. },
  15925. [
  15926. {
  15927. name: "Normal",
  15928. height: math.unit(1, "feet"),
  15929. default: true
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15935. {
  15936. front: {
  15937. height: math.unit(6 + 5 / 12, "feet"),
  15938. weight: math.unit(580, "lb"),
  15939. name: "Front",
  15940. image: {
  15941. source: "./media/characters/atlas/front.svg",
  15942. extra: 298.5 / 290,
  15943. bottom: 0.015
  15944. }
  15945. },
  15946. },
  15947. [
  15948. {
  15949. name: "Normal",
  15950. height: math.unit(6 + 5 / 12, "feet"),
  15951. default: true
  15952. },
  15953. ]
  15954. ))
  15955. characterMakers.push(() => makeCharacter(
  15956. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15957. {
  15958. side: {
  15959. height: math.unit(1 + 10 / 12, "feet"),
  15960. weight: math.unit(25, "lb"),
  15961. name: "Side",
  15962. image: {
  15963. source: "./media/characters/davy/side.svg",
  15964. extra: 200 / 170,
  15965. bottom: 0.01
  15966. }
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Normal",
  15972. height: math.unit(1 + 10 / 12, "feet"),
  15973. default: true
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15979. {
  15980. side: {
  15981. height: math.unit(4 + 8 / 12, "feet"),
  15982. weight: math.unit(166, "lb"),
  15983. name: "Side",
  15984. image: {
  15985. source: "./media/characters/fiona/side.svg",
  15986. extra: 232 / 220,
  15987. bottom: 0.03
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(4 + 8 / 12, "feet"),
  15995. default: true
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16001. {
  16002. front: {
  16003. height: math.unit(2, "feet"),
  16004. weight: math.unit(62, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/lyla/front.svg",
  16008. bottom: 0.1
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(2, "feet"),
  16016. default: true
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16022. {
  16023. side: {
  16024. height: math.unit(1.8, "feet"),
  16025. weight: math.unit(44, "lb"),
  16026. name: "Side",
  16027. image: {
  16028. source: "./media/characters/perseus/side.svg",
  16029. bottom: 0.21
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Normal",
  16036. height: math.unit(1.8, "feet"),
  16037. default: true
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16043. {
  16044. side: {
  16045. height: math.unit(4 + 2 / 12, "feet"),
  16046. weight: math.unit(20, "lb"),
  16047. name: "Side",
  16048. image: {
  16049. source: "./media/characters/remus/side.svg"
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Normal",
  16056. height: math.unit(4 + 2 / 12, "feet"),
  16057. default: true
  16058. },
  16059. ]
  16060. ))
  16061. characterMakers.push(() => makeCharacter(
  16062. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16063. {
  16064. front: {
  16065. height: math.unit(4 + 11 / 12, "feet"),
  16066. weight: math.unit(114, "lb"),
  16067. name: "Front",
  16068. image: {
  16069. source: "./media/characters/raf/front.svg",
  16070. bottom: 0.01
  16071. }
  16072. },
  16073. side: {
  16074. height: math.unit(4 + 11 / 12, "feet"),
  16075. weight: math.unit(114, "lb"),
  16076. name: "Side",
  16077. image: {
  16078. source: "./media/characters/raf/side.svg",
  16079. bottom: 0.005
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Micro",
  16086. height: math.unit(2, "inches")
  16087. },
  16088. {
  16089. name: "Normal",
  16090. height: math.unit(4 + 11 / 12, "feet"),
  16091. default: true
  16092. },
  16093. {
  16094. name: "Macro",
  16095. height: math.unit(70, "feet")
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(1.5, "meters"),
  16104. weight: math.unit(68, "kg"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/liam-einarr/front.svg",
  16108. extra: 2822 / 2666
  16109. }
  16110. },
  16111. back: {
  16112. height: math.unit(1.5, "meters"),
  16113. weight: math.unit(68, "kg"),
  16114. name: "Back",
  16115. image: {
  16116. source: "./media/characters/liam-einarr/back.svg",
  16117. extra: 2822 / 2666,
  16118. bottom: 0.015
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(1.5, "meters"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Macro",
  16130. height: math.unit(150, "meters")
  16131. },
  16132. {
  16133. name: "Megamacro",
  16134. height: math.unit(35, "km")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(75, "kg"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/linda/front.svg",
  16147. extra: 930 / 874,
  16148. bottom: 0.004
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(6, "feet"),
  16156. default: true
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(6 + 8 / 12, "feet"),
  16165. weight: math.unit(220, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/caylex/front.svg",
  16169. extra: 821 / 772,
  16170. bottom: 0.07
  16171. }
  16172. },
  16173. back: {
  16174. height: math.unit(6 + 8 / 12, "feet"),
  16175. weight: math.unit(220, "lb"),
  16176. name: "Back",
  16177. image: {
  16178. source: "./media/characters/caylex/back.svg",
  16179. extra: 821 / 772,
  16180. bottom: 0.022
  16181. }
  16182. },
  16183. hand: {
  16184. height: math.unit(1.25, "feet"),
  16185. name: "Hand",
  16186. image: {
  16187. source: "./media/characters/caylex/hand.svg"
  16188. }
  16189. },
  16190. foot: {
  16191. height: math.unit(1.6, "feet"),
  16192. name: "Foot",
  16193. image: {
  16194. source: "./media/characters/caylex/foot.svg"
  16195. }
  16196. },
  16197. armored: {
  16198. height: math.unit(6 + 8 / 12, "feet"),
  16199. weight: math.unit(250, "lb"),
  16200. name: "Armored",
  16201. image: {
  16202. source: "./media/characters/caylex/armored.svg",
  16203. extra: 1420 / 1310,
  16204. bottom: 0.045
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(6 + 8 / 12, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Normal+",
  16216. height: math.unit(12, "feet")
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(7 + 6 / 12, "feet"),
  16225. weight: math.unit(288, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/alana/front.svg",
  16229. extra: 679 / 653,
  16230. bottom: 22.5 / 701
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(7 + 6 / 12, "feet")
  16238. },
  16239. {
  16240. name: "Large",
  16241. height: math.unit(50, "feet")
  16242. },
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(100, "feet"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Macro+",
  16250. height: math.unit(200, "feet")
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(6 + 1 / 12, "feet"),
  16259. weight: math.unit(210, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/hasani/front.svg",
  16263. extra: 244 / 232,
  16264. bottom: 0.01
  16265. }
  16266. },
  16267. back: {
  16268. height: math.unit(6 + 1 / 12, "feet"),
  16269. weight: math.unit(210, "lb"),
  16270. name: "Back",
  16271. image: {
  16272. source: "./media/characters/hasani/back.svg",
  16273. extra: 244 / 232,
  16274. bottom: 0.01
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(6 + 1 / 12, "feet")
  16282. },
  16283. {
  16284. name: "Macro",
  16285. height: math.unit(175, "feet"),
  16286. default: true
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(1.82, "meters"),
  16295. weight: math.unit(140, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/nita/front.svg",
  16299. extra: 2473 / 2363,
  16300. bottom: 0.01
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(1.82, "m")
  16308. },
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(300, "m")
  16312. },
  16313. {
  16314. name: "Mistake Canon",
  16315. height: math.unit(0.5, "miles"),
  16316. default: true
  16317. },
  16318. {
  16319. name: "Big Mistake",
  16320. height: math.unit(13, "miles")
  16321. },
  16322. {
  16323. name: "Playing God",
  16324. height: math.unit(2450, "miles")
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(4, "feet"),
  16333. weight: math.unit(120, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/shiriko/front.svg",
  16337. extra: 195 / 188
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Normal",
  16344. height: math.unit(4, "feet"),
  16345. default: true
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16351. {
  16352. front: {
  16353. height: math.unit(6, "feet"),
  16354. name: "front",
  16355. image: {
  16356. source: "./media/characters/deja/front.svg",
  16357. extra: 926 / 840,
  16358. bottom: 0.07
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Planck Length",
  16365. height: math.unit(1.6e-35, "meters")
  16366. },
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(30.48, "meters"),
  16370. default: true
  16371. },
  16372. {
  16373. name: "Universal",
  16374. height: math.unit(8.8e26, "meters")
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16380. {
  16381. side: {
  16382. height: math.unit(8, "feet"),
  16383. weight: math.unit(6300, "lb"),
  16384. name: "Side",
  16385. image: {
  16386. source: "./media/characters/anima/side.svg",
  16387. bottom: 0.035
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(8, "feet"),
  16395. default: true
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16401. {
  16402. front: {
  16403. height: math.unit(8, "feet"),
  16404. weight: math.unit(350, "lb"),
  16405. name: "Front",
  16406. image: {
  16407. source: "./media/characters/bianca/front.svg",
  16408. extra: 234 / 225,
  16409. bottom: 0.03
  16410. }
  16411. },
  16412. },
  16413. [
  16414. {
  16415. name: "Normal",
  16416. height: math.unit(8, "feet"),
  16417. default: true
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16423. {
  16424. front: {
  16425. height: math.unit(6, "feet"),
  16426. weight: math.unit(150, "lb"),
  16427. name: "Front",
  16428. image: {
  16429. source: "./media/characters/adinia/front.svg",
  16430. extra: 1845 / 1672,
  16431. bottom: 0.02
  16432. }
  16433. },
  16434. back: {
  16435. height: math.unit(6, "feet"),
  16436. weight: math.unit(150, "lb"),
  16437. name: "Back",
  16438. image: {
  16439. source: "./media/characters/adinia/back.svg",
  16440. extra: 1845 / 1672,
  16441. bottom: 0.002
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(11 + 5 / 12, "feet"),
  16449. default: true
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(3, "meters"),
  16458. weight: math.unit(200, "kg"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/lykasa/front.svg",
  16462. extra: 1076 / 976,
  16463. bottom: 0.06
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(3, "meters")
  16471. },
  16472. {
  16473. name: "Kaiju",
  16474. height: math.unit(120, "meters"),
  16475. default: true
  16476. },
  16477. {
  16478. name: "Mega Kaiju",
  16479. height: math.unit(240, "km")
  16480. },
  16481. {
  16482. name: "Giga Kaiju",
  16483. height: math.unit(400, "megameters")
  16484. },
  16485. {
  16486. name: "Tera Kaiju",
  16487. height: math.unit(800, "gigameters")
  16488. },
  16489. {
  16490. name: "Kaiju Dragon Goddess",
  16491. height: math.unit(26, "zettaparsecs")
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16497. {
  16498. side: {
  16499. height: math.unit(283 / 124 * 6, "feet"),
  16500. weight: math.unit(35000, "lb"),
  16501. name: "Side",
  16502. image: {
  16503. source: "./media/characters/malfaren/side.svg",
  16504. extra: 2500 / 1010,
  16505. bottom: 0.01
  16506. }
  16507. },
  16508. front: {
  16509. height: math.unit(22.36, "feet"),
  16510. weight: math.unit(35000, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/malfaren/front.svg",
  16514. extra: 1631 / 1476,
  16515. bottom: 0.01
  16516. }
  16517. },
  16518. maw: {
  16519. height: math.unit(6.9, "feet"),
  16520. name: "Maw",
  16521. image: {
  16522. source: "./media/characters/malfaren/maw.svg"
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Big",
  16529. height: math.unit(283 / 162 * 6, "feet"),
  16530. },
  16531. {
  16532. name: "Bigger",
  16533. height: math.unit(283 / 124 * 6, "feet")
  16534. },
  16535. {
  16536. name: "Massive",
  16537. height: math.unit(283 / 92 * 6, "feet"),
  16538. default: true
  16539. },
  16540. {
  16541. name: "👀💦",
  16542. height: math.unit(283 / 73 * 6, "feet"),
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(1.7, "m"),
  16551. weight: math.unit(70, "kg"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/kernel/front.svg",
  16555. extra: 222 / 210,
  16556. bottom: 0.007
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Nano",
  16563. height: math.unit(17, "micrometers")
  16564. },
  16565. {
  16566. name: "Micro",
  16567. height: math.unit(1.7, "mm")
  16568. },
  16569. {
  16570. name: "Small",
  16571. height: math.unit(1.7, "cm")
  16572. },
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(1.7, "m"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(1.75, "meters"),
  16585. weight: math.unit(65, "kg"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/jayne-folest/front.svg",
  16589. extra: 2115 / 2007,
  16590. bottom: 0.02
  16591. }
  16592. },
  16593. back: {
  16594. height: math.unit(1.75, "meters"),
  16595. weight: math.unit(65, "kg"),
  16596. name: "Back",
  16597. image: {
  16598. source: "./media/characters/jayne-folest/back.svg",
  16599. extra: 2115 / 2007,
  16600. bottom: 0.005
  16601. }
  16602. },
  16603. frontClothed: {
  16604. height: math.unit(1.75, "meters"),
  16605. weight: math.unit(65, "kg"),
  16606. name: "Front (Clothed)",
  16607. image: {
  16608. source: "./media/characters/jayne-folest/front-clothed.svg",
  16609. extra: 2115 / 2007,
  16610. bottom: 0.035
  16611. }
  16612. },
  16613. hand: {
  16614. height: math.unit(1 / 1.260, "feet"),
  16615. name: "Hand",
  16616. image: {
  16617. source: "./media/characters/jayne-folest/hand.svg"
  16618. }
  16619. },
  16620. foot: {
  16621. height: math.unit(1 / 0.918, "feet"),
  16622. name: "Foot",
  16623. image: {
  16624. source: "./media/characters/jayne-folest/foot.svg"
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Micro",
  16631. height: math.unit(4, "cm")
  16632. },
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(1.75, "meters")
  16636. },
  16637. {
  16638. name: "Macro",
  16639. height: math.unit(47.5, "meters"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(180, "cm"),
  16649. weight: math.unit(70, "kg"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/algier/front.svg",
  16653. extra: 596 / 572,
  16654. bottom: 0.04
  16655. }
  16656. },
  16657. back: {
  16658. height: math.unit(180, "cm"),
  16659. weight: math.unit(70, "kg"),
  16660. name: "Back",
  16661. image: {
  16662. source: "./media/characters/algier/back.svg",
  16663. extra: 596 / 572,
  16664. bottom: 0.025
  16665. }
  16666. },
  16667. frontdressed: {
  16668. height: math.unit(180, "cm"),
  16669. weight: math.unit(150, "kg"),
  16670. name: "Front-dressed",
  16671. image: {
  16672. source: "./media/characters/algier/front-dressed.svg",
  16673. extra: 596 / 572,
  16674. bottom: 0.038
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Micro",
  16681. height: math.unit(5, "cm")
  16682. },
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(180, "cm"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Macro",
  16690. height: math.unit(64, "m")
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16696. {
  16697. upright: {
  16698. height: math.unit(7, "feet"),
  16699. weight: math.unit(300, "lb"),
  16700. name: "Upright",
  16701. image: {
  16702. source: "./media/characters/pretzel/upright.svg",
  16703. extra: 534 / 522,
  16704. bottom: 0.065
  16705. }
  16706. },
  16707. sprawling: {
  16708. height: math.unit(3.75, "feet"),
  16709. weight: math.unit(300, "lb"),
  16710. name: "Sprawling",
  16711. image: {
  16712. source: "./media/characters/pretzel/sprawling.svg",
  16713. extra: 314 / 281,
  16714. bottom: 0.1
  16715. }
  16716. },
  16717. tongue: {
  16718. height: math.unit(2, "feet"),
  16719. name: "Tongue",
  16720. image: {
  16721. source: "./media/characters/pretzel/tongue.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(7, "feet"),
  16729. default: true
  16730. },
  16731. {
  16732. name: "Oversized",
  16733. height: math.unit(15, "feet")
  16734. },
  16735. {
  16736. name: "Huge",
  16737. height: math.unit(30, "feet")
  16738. },
  16739. {
  16740. name: "Macro",
  16741. height: math.unit(250, "feet")
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16747. {
  16748. sideFront: {
  16749. height: math.unit(5 + 2 / 12, "feet"),
  16750. weight: math.unit(120, "lb"),
  16751. name: "Front Side",
  16752. image: {
  16753. source: "./media/characters/roxi/side-front.svg",
  16754. extra: 2924 / 2717,
  16755. bottom: 0.08
  16756. }
  16757. },
  16758. sideBack: {
  16759. height: math.unit(5 + 2 / 12, "feet"),
  16760. weight: math.unit(120, "lb"),
  16761. name: "Back Side",
  16762. image: {
  16763. source: "./media/characters/roxi/side-back.svg",
  16764. extra: 2904 / 2693,
  16765. bottom: 0.06
  16766. }
  16767. },
  16768. front: {
  16769. height: math.unit(5 + 2 / 12, "feet"),
  16770. weight: math.unit(120, "lb"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/roxi/front.svg",
  16774. extra: 2028 / 1907,
  16775. bottom: 0.01
  16776. }
  16777. },
  16778. frontAlt: {
  16779. height: math.unit(5 + 2 / 12, "feet"),
  16780. weight: math.unit(120, "lb"),
  16781. name: "Front (Alt)",
  16782. image: {
  16783. source: "./media/characters/roxi/front-alt.svg",
  16784. extra: 1828 / 1798,
  16785. bottom: 0.01
  16786. }
  16787. },
  16788. sitting: {
  16789. height: math.unit(2.8, "feet"),
  16790. weight: math.unit(120, "lb"),
  16791. name: "Sitting",
  16792. image: {
  16793. source: "./media/characters/roxi/sitting.svg",
  16794. extra: 2660 / 2462,
  16795. bottom: 0.1
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(5 + 2 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16809. {
  16810. side: {
  16811. height: math.unit(55, "feet"),
  16812. weight: math.unit(153, "tons"),
  16813. name: "Side",
  16814. image: {
  16815. source: "./media/characters/shadow/side.svg",
  16816. extra: 701 / 628,
  16817. bottom: 0.02
  16818. }
  16819. },
  16820. flying: {
  16821. height: math.unit(145, "feet"),
  16822. weight: math.unit(153, "tons"),
  16823. name: "Flying",
  16824. image: {
  16825. source: "./media/characters/shadow/flying.svg"
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(55, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(6, "feet"),
  16842. weight: math.unit(200, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/marcie/front.svg",
  16846. extra: 960 / 876,
  16847. bottom: 58 / 1017.87
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(1, "mile"),
  16855. default: true
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(7, "feet"),
  16864. weight: math.unit(200, "lb"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/kachina/front.svg",
  16868. extra: 1290.68 / 1119,
  16869. bottom: 36.5 / 1327.18
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(7, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16883. {
  16884. looking: {
  16885. height: math.unit(2, "meters"),
  16886. weight: math.unit(300, "kg"),
  16887. name: "Looking",
  16888. image: {
  16889. source: "./media/characters/kash/looking.svg",
  16890. extra: 474 / 344,
  16891. bottom: 0.03
  16892. }
  16893. },
  16894. side: {
  16895. height: math.unit(2, "meters"),
  16896. weight: math.unit(300, "kg"),
  16897. name: "Side",
  16898. image: {
  16899. source: "./media/characters/kash/side.svg",
  16900. extra: 302 / 251,
  16901. bottom: 0.03
  16902. }
  16903. },
  16904. front: {
  16905. height: math.unit(2, "meters"),
  16906. weight: math.unit(300, "kg"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/kash/front.svg",
  16910. extra: 495 / 360,
  16911. bottom: 0.015
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(2, "meters"),
  16919. default: true
  16920. },
  16921. {
  16922. name: "Big",
  16923. height: math.unit(3, "meters")
  16924. },
  16925. {
  16926. name: "Large",
  16927. height: math.unit(5, "meters")
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16933. {
  16934. feeding: {
  16935. height: math.unit(6.7, "feet"),
  16936. weight: math.unit(350, "lb"),
  16937. name: "Feeding",
  16938. image: {
  16939. source: "./media/characters/lalim/feeding.svg",
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Normal",
  16946. height: math.unit(6.7, "feet"),
  16947. default: true
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16953. {
  16954. front: {
  16955. height: math.unit(9.5, "feet"),
  16956. weight: math.unit(600, "lb"),
  16957. name: "Front",
  16958. image: {
  16959. source: "./media/characters/de'vout/front.svg",
  16960. extra: 1443 / 1328,
  16961. bottom: 0.025
  16962. }
  16963. },
  16964. back: {
  16965. height: math.unit(9.5, "feet"),
  16966. weight: math.unit(600, "lb"),
  16967. name: "Back",
  16968. image: {
  16969. source: "./media/characters/de'vout/back.svg",
  16970. extra: 1443 / 1328
  16971. }
  16972. },
  16973. frontDressed: {
  16974. height: math.unit(9.5, "feet"),
  16975. weight: math.unit(600, "lb"),
  16976. name: "Front (Dressed",
  16977. image: {
  16978. source: "./media/characters/de'vout/front-dressed.svg",
  16979. extra: 1443 / 1328,
  16980. bottom: 0.025
  16981. }
  16982. },
  16983. backDressed: {
  16984. height: math.unit(9.5, "feet"),
  16985. weight: math.unit(600, "lb"),
  16986. name: "Back (Dressed",
  16987. image: {
  16988. source: "./media/characters/de'vout/back-dressed.svg",
  16989. extra: 1443 / 1328
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(9.5, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17003. {
  17004. front: {
  17005. height: math.unit(8, "feet"),
  17006. weight: math.unit(225, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/talana/front.svg",
  17010. extra: 1410 / 1300,
  17011. bottom: 0.015
  17012. }
  17013. },
  17014. frontDressed: {
  17015. height: math.unit(8, "feet"),
  17016. weight: math.unit(225, "lb"),
  17017. name: "Front (Dressed",
  17018. image: {
  17019. source: "./media/characters/talana/front-dressed.svg",
  17020. extra: 1410 / 1300,
  17021. bottom: 0.015
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(8, "feet"),
  17029. default: true
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17035. {
  17036. side: {
  17037. height: math.unit(7.2, "feet"),
  17038. weight: math.unit(150, "lb"),
  17039. name: "Side",
  17040. image: {
  17041. source: "./media/characters/xeauvok/side.svg",
  17042. extra: 1975 / 1523,
  17043. bottom: 0.07
  17044. }
  17045. },
  17046. },
  17047. [
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(7.2, "feet"),
  17051. default: true
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17057. {
  17058. side: {
  17059. height: math.unit(10, "feet"),
  17060. weight: math.unit(900, "kg"),
  17061. name: "Side",
  17062. image: {
  17063. source: "./media/characters/zara/side.svg",
  17064. extra: 504 / 498
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(10, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17078. {
  17079. side: {
  17080. height: math.unit(6, "feet"),
  17081. weight: math.unit(150, "lb"),
  17082. name: "Side",
  17083. image: {
  17084. source: "./media/characters/richard-dragon/side.svg",
  17085. extra: 845 / 340,
  17086. bottom: 0.017
  17087. }
  17088. },
  17089. maw: {
  17090. height: math.unit(2.97, "feet"),
  17091. name: "Maw",
  17092. image: {
  17093. source: "./media/characters/richard-dragon/maw.svg"
  17094. }
  17095. },
  17096. },
  17097. [
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17102. {
  17103. front: {
  17104. height: math.unit(4, "feet"),
  17105. weight: math.unit(100, "lb"),
  17106. name: "Front",
  17107. image: {
  17108. source: "./media/characters/richard-smeargle/front.svg",
  17109. extra: 2952 / 2820,
  17110. bottom: 0.028
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(4, "feet"),
  17118. default: true
  17119. },
  17120. {
  17121. name: "Dynamax",
  17122. height: math.unit(20, "meters")
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(110, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/klay/front.svg",
  17135. extra: 962 / 883,
  17136. bottom: 0.04
  17137. }
  17138. },
  17139. back: {
  17140. height: math.unit(6, "feet"),
  17141. weight: math.unit(110, "lb"),
  17142. name: "Back",
  17143. image: {
  17144. source: "./media/characters/klay/back.svg",
  17145. extra: 962 / 883
  17146. }
  17147. },
  17148. beans: {
  17149. height: math.unit(1.15, "feet"),
  17150. name: "Beans",
  17151. image: {
  17152. source: "./media/characters/klay/beans.svg"
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Micro",
  17159. height: math.unit(6, "inches")
  17160. },
  17161. {
  17162. name: "Mini",
  17163. height: math.unit(3, "feet")
  17164. },
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(6, "feet"),
  17168. default: true
  17169. },
  17170. {
  17171. name: "Big",
  17172. height: math.unit(25, "feet")
  17173. },
  17174. {
  17175. name: "Macro",
  17176. height: math.unit(100, "feet")
  17177. },
  17178. {
  17179. name: "Megamacro",
  17180. height: math.unit(400, "feet")
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(6, "feet"),
  17189. weight: math.unit(160, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/marcus/front.svg",
  17193. extra: 734 / 676,
  17194. bottom: 0.03
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Little",
  17201. height: math.unit(6, "feet")
  17202. },
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(110, "feet"),
  17206. default: true
  17207. },
  17208. {
  17209. name: "Macro",
  17210. height: math.unit(250, "feet")
  17211. },
  17212. {
  17213. name: "Megamacro",
  17214. height: math.unit(1000, "feet")
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(7, "feet"),
  17223. weight: math.unit(275, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/claude-delroute/front.svg",
  17227. extra: 230 / 214,
  17228. bottom: 0.007
  17229. }
  17230. },
  17231. side: {
  17232. height: math.unit(7, "feet"),
  17233. weight: math.unit(275, "lb"),
  17234. name: "Side",
  17235. image: {
  17236. source: "./media/characters/claude-delroute/side.svg",
  17237. extra: 222 / 214,
  17238. bottom: 0.01
  17239. }
  17240. },
  17241. back: {
  17242. height: math.unit(7, "feet"),
  17243. weight: math.unit(275, "lb"),
  17244. name: "Back",
  17245. image: {
  17246. source: "./media/characters/claude-delroute/back.svg",
  17247. extra: 230 / 214,
  17248. bottom: 0.015
  17249. }
  17250. },
  17251. maw: {
  17252. height: math.unit(0.6407, "meters"),
  17253. name: "Maw",
  17254. image: {
  17255. source: "./media/characters/claude-delroute/maw.svg"
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(7, "feet"),
  17263. default: true
  17264. },
  17265. {
  17266. name: "Lorge",
  17267. height: math.unit(20, "feet")
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(8 + 4 / 12, "feet"),
  17276. weight: math.unit(600, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/dragonien/front.svg",
  17280. extra: 100 / 94,
  17281. bottom: 3.3 / 103.3445
  17282. }
  17283. },
  17284. back: {
  17285. height: math.unit(8 + 4 / 12, "feet"),
  17286. weight: math.unit(600, "lb"),
  17287. name: "Back",
  17288. image: {
  17289. source: "./media/characters/dragonien/back.svg",
  17290. extra: 776 / 746,
  17291. bottom: 6.4 / 782.0616
  17292. }
  17293. },
  17294. foot: {
  17295. height: math.unit(1.54, "feet"),
  17296. name: "Foot",
  17297. image: {
  17298. source: "./media/characters/dragonien/foot.svg",
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(8 + 4 / 12, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Macro",
  17310. height: math.unit(200, "feet")
  17311. },
  17312. {
  17313. name: "Megamacro",
  17314. height: math.unit(1, "mile")
  17315. },
  17316. {
  17317. name: "Gigamacro",
  17318. height: math.unit(1000, "miles")
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(5 + 2 / 12, "feet"),
  17327. weight: math.unit(110, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/desta/front.svg",
  17331. extra: 767/726,
  17332. bottom: 11.7/779
  17333. }
  17334. },
  17335. back: {
  17336. height: math.unit(5 + 2 / 12, "feet"),
  17337. weight: math.unit(110, "lb"),
  17338. name: "Back",
  17339. image: {
  17340. source: "./media/characters/desta/back.svg",
  17341. extra: 777/728,
  17342. bottom: 6/784
  17343. }
  17344. },
  17345. frontAlt: {
  17346. height: math.unit(5 + 2 / 12, "feet"),
  17347. weight: math.unit(110, "lb"),
  17348. name: "Front",
  17349. image: {
  17350. source: "./media/characters/desta/front-alt.svg",
  17351. extra: 1482 / 1417
  17352. }
  17353. },
  17354. side: {
  17355. height: math.unit(5 + 2 / 12, "feet"),
  17356. weight: math.unit(110, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/desta/side.svg",
  17360. extra: 2579 / 2491,
  17361. bottom: 0.053
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Micro",
  17368. height: math.unit(6, "inches")
  17369. },
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(5 + 2 / 12, "feet"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Macro",
  17377. height: math.unit(62, "feet")
  17378. },
  17379. {
  17380. name: "Megamacro",
  17381. height: math.unit(1800, "feet")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(10, "feet"),
  17390. weight: math.unit(700, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/storm-alystar/front.svg",
  17394. extra: 2112 / 1898,
  17395. bottom: 0.034
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Micro",
  17402. height: math.unit(3.5, "inches")
  17403. },
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(10, "feet"),
  17407. default: true
  17408. },
  17409. {
  17410. name: "Macro",
  17411. height: math.unit(400, "feet")
  17412. },
  17413. {
  17414. name: "Deific",
  17415. height: math.unit(60, "miles")
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17421. {
  17422. front: {
  17423. height: math.unit(2.35, "meters"),
  17424. weight: math.unit(119, "kg"),
  17425. name: "Front",
  17426. image: {
  17427. source: "./media/characters/ilia/front.svg",
  17428. extra: 1285 / 1255,
  17429. bottom: 0.06
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(2.35, "meters")
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(140, "meters"),
  17441. default: true
  17442. },
  17443. {
  17444. name: "Megamacro",
  17445. height: math.unit(100, "miles")
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(6 + 5 / 12, "feet"),
  17454. weight: math.unit(190, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/kingdead/front.svg",
  17458. extra: 1228 / 1177
  17459. }
  17460. },
  17461. },
  17462. [
  17463. {
  17464. name: "Micro",
  17465. height: math.unit(7, "inches")
  17466. },
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(6 + 5 / 12, "feet")
  17470. },
  17471. {
  17472. name: "Macro",
  17473. height: math.unit(150, "feet"),
  17474. default: true
  17475. },
  17476. {
  17477. name: "Megamacro",
  17478. height: math.unit(200, "miles")
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(8, "feet"),
  17487. weight: math.unit(600, "lb"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/kyrehx/front.svg",
  17491. extra: 1195 / 1095,
  17492. bottom: 0.034
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Micro",
  17499. height: math.unit(2, "inches")
  17500. },
  17501. {
  17502. name: "Normal",
  17503. height: math.unit(8, "feet"),
  17504. default: true
  17505. },
  17506. {
  17507. name: "Macro",
  17508. height: math.unit(255, "feet")
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17514. {
  17515. front: {
  17516. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17517. weight: math.unit(184, "lb"),
  17518. name: "Front",
  17519. image: {
  17520. source: "./media/characters/xang/front.svg",
  17521. extra: 845 / 755
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17529. default: true
  17530. },
  17531. {
  17532. name: "Macro",
  17533. height: math.unit(0.935 * 146, "feet")
  17534. },
  17535. {
  17536. name: "Megamacro",
  17537. height: math.unit(0.935 * 3, "miles")
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17543. {
  17544. frontDressed: {
  17545. height: math.unit(5 + 7 / 12, "feet"),
  17546. weight: math.unit(140, "lb"),
  17547. name: "Front (Dressed)",
  17548. image: {
  17549. source: "./media/characters/doc-weardno/front-dressed.svg",
  17550. extra: 263 / 234
  17551. }
  17552. },
  17553. backDressed: {
  17554. height: math.unit(5 + 7 / 12, "feet"),
  17555. weight: math.unit(140, "lb"),
  17556. name: "Back (Dressed)",
  17557. image: {
  17558. source: "./media/characters/doc-weardno/back-dressed.svg",
  17559. extra: 266 / 238
  17560. }
  17561. },
  17562. front: {
  17563. height: math.unit(5 + 7 / 12, "feet"),
  17564. weight: math.unit(140, "lb"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/doc-weardno/front.svg",
  17568. extra: 254 / 233
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Micro",
  17575. height: math.unit(3, "inches")
  17576. },
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(5 + 7 / 12, "feet"),
  17580. default: true
  17581. },
  17582. {
  17583. name: "Macro",
  17584. height: math.unit(25, "feet")
  17585. },
  17586. {
  17587. name: "Megamacro",
  17588. height: math.unit(2, "miles")
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(6 + 2 / 12, "feet"),
  17597. weight: math.unit(153, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/seth-whilst/front.svg",
  17601. bottom: 0.07
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Micro",
  17608. height: math.unit(5, "inches")
  17609. },
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(6 + 2 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(3, "inches"),
  17622. weight: math.unit(8, "grams"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/pocket-jabari/front.svg",
  17626. extra: 1024 / 974,
  17627. bottom: 0.039
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Minimicro",
  17634. height: math.unit(8, "mm")
  17635. },
  17636. {
  17637. name: "Micro",
  17638. height: math.unit(3, "inches"),
  17639. default: true
  17640. },
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(3, "feet")
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(15, "feet"),
  17652. weight: math.unit(3280, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/sapphy/front.svg",
  17656. extra: 671 / 577,
  17657. bottom: 0.085
  17658. }
  17659. },
  17660. back: {
  17661. height: math.unit(15, "feet"),
  17662. weight: math.unit(3280, "lb"),
  17663. name: "Back",
  17664. image: {
  17665. source: "./media/characters/sapphy/back.svg",
  17666. extra: 631 / 607,
  17667. bottom: 0.045
  17668. }
  17669. },
  17670. },
  17671. [
  17672. {
  17673. name: "Normal",
  17674. height: math.unit(15, "feet")
  17675. },
  17676. {
  17677. name: "Casual Macro",
  17678. height: math.unit(120, "feet")
  17679. },
  17680. {
  17681. name: "Macro",
  17682. height: math.unit(2150, "feet"),
  17683. default: true
  17684. },
  17685. {
  17686. name: "Megamacro",
  17687. height: math.unit(8, "miles")
  17688. },
  17689. {
  17690. name: "Galaxy Mom",
  17691. height: math.unit(6, "megalightyears")
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(6, "feet"),
  17700. weight: math.unit(170, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/kiro/front.svg",
  17704. extra: 1064 / 1012,
  17705. bottom: 0.052
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Micro",
  17712. height: math.unit(6, "inches")
  17713. },
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(6, "feet"),
  17717. default: true
  17718. },
  17719. {
  17720. name: "Macro",
  17721. height: math.unit(72, "feet")
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(5 + 9 / 12, "feet"),
  17730. weight: math.unit(175, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/irishfox/front.svg",
  17734. extra: 1912 / 1680,
  17735. bottom: 0.02
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Nano",
  17742. height: math.unit(1, "mm")
  17743. },
  17744. {
  17745. name: "Micro",
  17746. height: math.unit(2, "inches")
  17747. },
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(5 + 9 / 12, "feet"),
  17751. default: true
  17752. },
  17753. {
  17754. name: "Macro",
  17755. height: math.unit(45, "feet")
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6 + 1 / 12, "feet"),
  17764. weight: math.unit(150, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/aronai-sieyes/front.svg",
  17768. extra: 1556 / 1480,
  17769. bottom: 0.015
  17770. }
  17771. },
  17772. side: {
  17773. height: math.unit(6 + 1 / 12, "feet"),
  17774. weight: math.unit(150, "lb"),
  17775. name: "Side",
  17776. image: {
  17777. source: "./media/characters/aronai-sieyes/side.svg",
  17778. extra: 1433 / 1390,
  17779. bottom: 0.0393
  17780. }
  17781. },
  17782. back: {
  17783. height: math.unit(6 + 1 / 12, "feet"),
  17784. weight: math.unit(150, "lb"),
  17785. name: "Back",
  17786. image: {
  17787. source: "./media/characters/aronai-sieyes/back.svg",
  17788. extra: 1544 / 1494,
  17789. bottom: 0.02
  17790. }
  17791. },
  17792. frontClothed: {
  17793. height: math.unit(6 + 1 / 12, "feet"),
  17794. weight: math.unit(150, "lb"),
  17795. name: "Front (Clothed)",
  17796. image: {
  17797. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17798. extra: 1582 / 1527
  17799. }
  17800. },
  17801. feral: {
  17802. height: math.unit(18, "feet"),
  17803. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17804. name: "Feral",
  17805. image: {
  17806. source: "./media/characters/aronai-sieyes/feral.svg",
  17807. extra: 1530 / 1240,
  17808. bottom: 0.035
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Micro",
  17815. height: math.unit(2, "inches")
  17816. },
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(6 + 1 / 12, "feet"),
  17820. default: true
  17821. }
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(12, "feet"),
  17829. weight: math.unit(410, "kg"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/xuna/front.svg",
  17833. extra: 2184 / 1980
  17834. }
  17835. },
  17836. side: {
  17837. height: math.unit(12, "feet"),
  17838. weight: math.unit(410, "kg"),
  17839. name: "Side",
  17840. image: {
  17841. source: "./media/characters/xuna/side.svg",
  17842. extra: 2184 / 1980
  17843. }
  17844. },
  17845. back: {
  17846. height: math.unit(12, "feet"),
  17847. weight: math.unit(410, "kg"),
  17848. name: "Back",
  17849. image: {
  17850. source: "./media/characters/xuna/back.svg",
  17851. extra: 2184 / 1980
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Nano glow",
  17858. height: math.unit(10, "nm")
  17859. },
  17860. {
  17861. name: "Micro floof",
  17862. height: math.unit(0.3, "m")
  17863. },
  17864. {
  17865. name: "Huggable softy boi",
  17866. height: math.unit(3.6576, "m"),
  17867. default: true
  17868. },
  17869. {
  17870. name: "Admirable floof",
  17871. height: math.unit(80, "meters")
  17872. },
  17873. {
  17874. name: "Gentle macro",
  17875. height: math.unit(300, "meters")
  17876. },
  17877. {
  17878. name: "Very careful floof",
  17879. height: math.unit(3200, "meters")
  17880. },
  17881. {
  17882. name: "The mega floof",
  17883. height: math.unit(36000, "meters")
  17884. },
  17885. {
  17886. name: "Giga-fur-Wicker",
  17887. height: math.unit(4800000, "meters")
  17888. },
  17889. {
  17890. name: "Licky world",
  17891. height: math.unit(20000000, "meters")
  17892. },
  17893. {
  17894. name: "Floofy cyan sun",
  17895. height: math.unit(1500000000, "meters")
  17896. },
  17897. {
  17898. name: "Milky Wicker",
  17899. height: math.unit(1000000000000000000000, "meters")
  17900. },
  17901. {
  17902. name: "The observing Wicker",
  17903. height: math.unit(999999999999999999999999999, "meters")
  17904. },
  17905. ]
  17906. ))
  17907. characterMakers.push(() => makeCharacter(
  17908. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17909. {
  17910. front: {
  17911. height: math.unit(5 + 9 / 12, "feet"),
  17912. weight: math.unit(150, "lb"),
  17913. name: "Front",
  17914. image: {
  17915. source: "./media/characters/arokha-sieyes/front.svg",
  17916. extra: 1425 / 1284,
  17917. bottom: 0.05
  17918. }
  17919. },
  17920. },
  17921. [
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(5 + 9 / 12, "feet")
  17925. },
  17926. {
  17927. name: "Macro",
  17928. height: math.unit(30, "meters"),
  17929. default: true
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(6, "feet"),
  17938. weight: math.unit(180, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/arokh-sieyes/front.svg",
  17942. extra: 1830 / 1769,
  17943. bottom: 0.01
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(6, "feet")
  17951. },
  17952. {
  17953. name: "Macro",
  17954. height: math.unit(30, "meters"),
  17955. default: true
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17961. {
  17962. side: {
  17963. height: math.unit(13 + 1 / 12, "feet"),
  17964. weight: math.unit(8.5, "tonnes"),
  17965. name: "Side",
  17966. image: {
  17967. source: "./media/characters/goldeneye/side.svg",
  17968. extra: 1182 / 778,
  17969. bottom: 0.067
  17970. }
  17971. },
  17972. paw: {
  17973. height: math.unit(3.4, "feet"),
  17974. name: "Paw",
  17975. image: {
  17976. source: "./media/characters/goldeneye/paw.svg"
  17977. }
  17978. },
  17979. },
  17980. [
  17981. {
  17982. name: "Normal",
  17983. height: math.unit(13 + 1 / 12, "feet"),
  17984. default: true
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17990. {
  17991. front: {
  17992. height: math.unit(6 + 1 / 12, "feet"),
  17993. weight: math.unit(210, "lb"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/leonardo-lycheborne/front.svg",
  17997. extra: 390 / 365,
  17998. bottom: 0.032
  17999. }
  18000. },
  18001. side: {
  18002. height: math.unit(6 + 1 / 12, "feet"),
  18003. weight: math.unit(210, "lb"),
  18004. name: "Side",
  18005. image: {
  18006. source: "./media/characters/leonardo-lycheborne/side.svg",
  18007. extra: 390 / 365,
  18008. bottom: 0.005
  18009. }
  18010. },
  18011. back: {
  18012. height: math.unit(6 + 1 / 12, "feet"),
  18013. weight: math.unit(210, "lb"),
  18014. name: "Back",
  18015. image: {
  18016. source: "./media/characters/leonardo-lycheborne/back.svg",
  18017. extra: 392 / 366,
  18018. bottom: 0.01
  18019. }
  18020. },
  18021. hand: {
  18022. height: math.unit(1.08, "feet"),
  18023. name: "Hand",
  18024. image: {
  18025. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18026. }
  18027. },
  18028. foot: {
  18029. height: math.unit(1.32, "feet"),
  18030. name: "Foot",
  18031. image: {
  18032. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18033. }
  18034. },
  18035. were: {
  18036. height: math.unit(20, "feet"),
  18037. weight: math.unit(7800, "lb"),
  18038. name: "Were",
  18039. image: {
  18040. source: "./media/characters/leonardo-lycheborne/were.svg",
  18041. extra: 308 / 294,
  18042. bottom: 0.048
  18043. }
  18044. },
  18045. feral: {
  18046. height: math.unit(7.5, "feet"),
  18047. weight: math.unit(600, "lb"),
  18048. name: "Feral",
  18049. image: {
  18050. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18051. extra: 210 / 186,
  18052. bottom: 0.108
  18053. }
  18054. },
  18055. taur: {
  18056. height: math.unit(11, "feet"),
  18057. weight: math.unit(3300, "lb"),
  18058. name: "Taur",
  18059. image: {
  18060. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18061. extra: 320 / 303,
  18062. bottom: 0.025
  18063. }
  18064. },
  18065. barghest: {
  18066. height: math.unit(11, "feet"),
  18067. weight: math.unit(1300, "lb"),
  18068. name: "Barghest",
  18069. image: {
  18070. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18071. extra: 323 / 302,
  18072. bottom: 0.027
  18073. }
  18074. },
  18075. dick: {
  18076. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18077. name: "Dick",
  18078. image: {
  18079. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18080. }
  18081. },
  18082. dickWere: {
  18083. height: math.unit((20) / 3.8, "feet"),
  18084. name: "Dick (Were)",
  18085. image: {
  18086. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(6 + 1 / 12, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(10, "feet"),
  18103. weight: math.unit(350, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/jet/front.svg",
  18107. extra: 2050 / 1980,
  18108. bottom: 0.013
  18109. }
  18110. },
  18111. back: {
  18112. height: math.unit(10, "feet"),
  18113. weight: math.unit(350, "lb"),
  18114. name: "Back",
  18115. image: {
  18116. source: "./media/characters/jet/back.svg",
  18117. extra: 2050 / 1980,
  18118. bottom: 0.013
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Micro",
  18125. height: math.unit(6, "inches")
  18126. },
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(10, "feet"),
  18130. default: true
  18131. },
  18132. {
  18133. name: "Macro",
  18134. height: math.unit(100, "feet")
  18135. },
  18136. ]
  18137. ))
  18138. characterMakers.push(() => makeCharacter(
  18139. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18140. {
  18141. front: {
  18142. height: math.unit(15, "feet"),
  18143. weight: math.unit(2800, "lb"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/tanarath/front.svg",
  18147. extra: 2392 / 2220,
  18148. bottom: 0.03
  18149. }
  18150. },
  18151. back: {
  18152. height: math.unit(15, "feet"),
  18153. weight: math.unit(2800, "lb"),
  18154. name: "Back",
  18155. image: {
  18156. source: "./media/characters/tanarath/back.svg",
  18157. extra: 2392 / 2220,
  18158. bottom: 0.03
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(15, "feet"),
  18166. default: true
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(7 + 1 / 12, "feet"),
  18175. weight: math.unit(175, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/patty-cattybatty/front.svg",
  18179. extra: 908 / 874,
  18180. bottom: 0.025
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Micro",
  18187. height: math.unit(1, "inch")
  18188. },
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(7 + 1 / 12, "feet")
  18192. },
  18193. {
  18194. name: "Mini Macro",
  18195. height: math.unit(155, "feet")
  18196. },
  18197. {
  18198. name: "Macro",
  18199. height: math.unit(1077, "feet")
  18200. },
  18201. {
  18202. name: "Mega Macro",
  18203. height: math.unit(47650, "feet"),
  18204. default: true
  18205. },
  18206. {
  18207. name: "Giga Macro",
  18208. height: math.unit(440, "miles")
  18209. },
  18210. {
  18211. name: "Tera Macro",
  18212. height: math.unit(8700, "miles")
  18213. },
  18214. {
  18215. name: "Planetary Macro",
  18216. height: math.unit(32700, "miles")
  18217. },
  18218. {
  18219. name: "Solar Macro",
  18220. height: math.unit(550000, "miles")
  18221. },
  18222. {
  18223. name: "Celestial Macro",
  18224. height: math.unit(2.5, "AU")
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(4 + 5 / 12, "feet"),
  18233. weight: math.unit(90, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/cappu/front.svg",
  18237. extra: 1247 / 1152,
  18238. bottom: 0.012
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(4 + 5 / 12, "feet"),
  18246. default: true
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18252. {
  18253. frontDressed: {
  18254. height: math.unit(70, "cm"),
  18255. weight: math.unit(6, "kg"),
  18256. name: "Front (Dressed)",
  18257. image: {
  18258. source: "./media/characters/sebi/front-dressed.svg",
  18259. extra: 713.5 / 686.5,
  18260. bottom: 0.003
  18261. }
  18262. },
  18263. front: {
  18264. height: math.unit(70, "cm"),
  18265. weight: math.unit(5, "kg"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/sebi/front.svg",
  18269. extra: 713.5 / 686.5,
  18270. bottom: 0.003
  18271. }
  18272. }
  18273. },
  18274. [
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(70, "cm"),
  18278. default: true
  18279. },
  18280. {
  18281. name: "Macro",
  18282. height: math.unit(8, "meters")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18288. {
  18289. front: {
  18290. height: math.unit(6, "feet"),
  18291. weight: math.unit(150, "lb"),
  18292. name: "Front",
  18293. image: {
  18294. source: "./media/characters/typhek/front.svg",
  18295. extra: 1948 / 1929,
  18296. bottom: 0.025
  18297. }
  18298. },
  18299. side: {
  18300. height: math.unit(6, "feet"),
  18301. weight: math.unit(150, "lb"),
  18302. name: "Side",
  18303. image: {
  18304. source: "./media/characters/typhek/side.svg",
  18305. extra: 2034 / 2010,
  18306. bottom: 0.003
  18307. }
  18308. },
  18309. back: {
  18310. height: math.unit(6, "feet"),
  18311. weight: math.unit(150, "lb"),
  18312. name: "Back",
  18313. image: {
  18314. source: "./media/characters/typhek/back.svg",
  18315. extra: 2005 / 1978,
  18316. bottom: 0.004
  18317. }
  18318. },
  18319. palm: {
  18320. height: math.unit(1.2, "feet"),
  18321. name: "Palm",
  18322. image: {
  18323. source: "./media/characters/typhek/palm.svg"
  18324. }
  18325. },
  18326. fist: {
  18327. height: math.unit(1.1, "feet"),
  18328. name: "Fist",
  18329. image: {
  18330. source: "./media/characters/typhek/fist.svg"
  18331. }
  18332. },
  18333. foot: {
  18334. height: math.unit(1.57, "feet"),
  18335. name: "Foot",
  18336. image: {
  18337. source: "./media/characters/typhek/foot.svg"
  18338. }
  18339. },
  18340. sole: {
  18341. height: math.unit(2.05, "feet"),
  18342. name: "Sole",
  18343. image: {
  18344. source: "./media/characters/typhek/sole.svg"
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Macro",
  18351. height: math.unit(40, "stories"),
  18352. default: true
  18353. },
  18354. {
  18355. name: "Megamacro",
  18356. height: math.unit(1, "mile")
  18357. },
  18358. {
  18359. name: "Gigamacro",
  18360. height: math.unit(4000, "solarradii")
  18361. },
  18362. {
  18363. name: "Universal",
  18364. height: math.unit(1.1, "universes")
  18365. }
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18370. {
  18371. side: {
  18372. height: math.unit(5 + 7 / 12, "feet"),
  18373. weight: math.unit(150, "lb"),
  18374. name: "Side",
  18375. image: {
  18376. source: "./media/characters/kassy/side.svg",
  18377. extra: 1280 / 1225,
  18378. bottom: 0.002
  18379. }
  18380. },
  18381. front: {
  18382. height: math.unit(5 + 7 / 12, "feet"),
  18383. weight: math.unit(150, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/kassy/front.svg",
  18387. extra: 1280 / 1225,
  18388. bottom: 0.025
  18389. }
  18390. },
  18391. back: {
  18392. height: math.unit(5 + 7 / 12, "feet"),
  18393. weight: math.unit(150, "lb"),
  18394. name: "Back",
  18395. image: {
  18396. source: "./media/characters/kassy/back.svg",
  18397. extra: 1280 / 1225,
  18398. bottom: 0.002
  18399. }
  18400. },
  18401. foot: {
  18402. height: math.unit(1.266, "feet"),
  18403. name: "Foot",
  18404. image: {
  18405. source: "./media/characters/kassy/foot.svg"
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(5 + 7 / 12, "feet")
  18413. },
  18414. {
  18415. name: "Macro",
  18416. height: math.unit(137, "feet"),
  18417. default: true
  18418. },
  18419. {
  18420. name: "Megamacro",
  18421. height: math.unit(1, "mile")
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(6 + 1 / 12, "feet"),
  18430. weight: math.unit(200, "lb"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/neil/front.svg",
  18434. extra: 1326 / 1250,
  18435. bottom: 0.023
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Normal",
  18442. height: math.unit(6 + 1 / 12, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Macro",
  18447. height: math.unit(200, "feet")
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(5 + 9 / 12, "feet"),
  18456. weight: math.unit(190, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/atticus/front.svg",
  18460. extra: 2934 / 2785,
  18461. bottom: 0.025
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(5 + 9 / 12, "feet"),
  18469. default: true
  18470. },
  18471. {
  18472. name: "Macro",
  18473. height: math.unit(180, "feet")
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18479. {
  18480. side: {
  18481. height: math.unit(9, "feet"),
  18482. weight: math.unit(650, "lb"),
  18483. name: "Side",
  18484. image: {
  18485. source: "./media/characters/milo/side.svg",
  18486. extra: 2644 / 2310,
  18487. bottom: 0.032
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Normal",
  18494. height: math.unit(9, "feet"),
  18495. default: true
  18496. },
  18497. {
  18498. name: "Macro",
  18499. height: math.unit(300, "feet")
  18500. },
  18501. ]
  18502. ))
  18503. characterMakers.push(() => makeCharacter(
  18504. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18505. {
  18506. side: {
  18507. height: math.unit(8, "meters"),
  18508. weight: math.unit(90000, "kg"),
  18509. name: "Side",
  18510. image: {
  18511. source: "./media/characters/ijzer/side.svg",
  18512. extra: 2756 / 1600,
  18513. bottom: 0.01
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Small",
  18520. height: math.unit(3, "meters")
  18521. },
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(8, "meters"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "Normal+",
  18529. height: math.unit(10, "meters")
  18530. },
  18531. {
  18532. name: "Bigger",
  18533. height: math.unit(24, "meters")
  18534. },
  18535. {
  18536. name: "Huge",
  18537. height: math.unit(80, "meters")
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(6 + 2 / 12, "feet"),
  18546. weight: math.unit(153, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/luca-cervicum/front.svg",
  18550. extra: 370 / 327,
  18551. bottom: 0.015
  18552. }
  18553. },
  18554. back: {
  18555. height: math.unit(6 + 2 / 12, "feet"),
  18556. weight: math.unit(153, "lb"),
  18557. name: "Back",
  18558. image: {
  18559. source: "./media/characters/luca-cervicum/back.svg",
  18560. extra: 367 / 333,
  18561. bottom: 0.005
  18562. }
  18563. },
  18564. frontGear: {
  18565. height: math.unit(6 + 2 / 12, "feet"),
  18566. weight: math.unit(173, "lb"),
  18567. name: "Front (Gear)",
  18568. image: {
  18569. source: "./media/characters/luca-cervicum/front-gear.svg",
  18570. extra: 377 / 333,
  18571. bottom: 0.006
  18572. }
  18573. },
  18574. },
  18575. [
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(6 + 2 / 12, "feet"),
  18579. default: true
  18580. },
  18581. ]
  18582. ))
  18583. characterMakers.push(() => makeCharacter(
  18584. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18585. {
  18586. front: {
  18587. height: math.unit(6 + 1 / 12, "feet"),
  18588. weight: math.unit(304, "lb"),
  18589. name: "Front",
  18590. image: {
  18591. source: "./media/characters/oliver/front.svg",
  18592. extra: 157 / 143,
  18593. bottom: 0.08
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(6 + 1 / 12, "feet"),
  18601. default: true
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(5 + 7 / 12, "feet"),
  18610. weight: math.unit(140, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/shane/front.svg",
  18614. extra: 304 / 289,
  18615. bottom: 0.005
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(5 + 7 / 12, "feet"),
  18623. default: true
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18629. {
  18630. front: {
  18631. height: math.unit(5 + 9 / 12, "feet"),
  18632. weight: math.unit(178, "lb"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/shin/front.svg",
  18636. extra: 159 / 151,
  18637. bottom: 0.015
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(5 + 9 / 12, "feet"),
  18645. default: true
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(5 + 10 / 12, "feet"),
  18654. weight: math.unit(168, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/xerxes/front.svg",
  18658. extra: 282 / 260,
  18659. bottom: 0.045
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(5 + 10 / 12, "feet"),
  18667. default: true
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(6 + 7 / 12, "feet"),
  18676. weight: math.unit(208, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/chaska/front.svg",
  18680. extra: 332 / 319,
  18681. bottom: 0.015
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(6 + 7 / 12, "feet"),
  18689. default: true
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(5 + 8 / 12, "feet"),
  18698. weight: math.unit(208, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/enuk/front.svg",
  18702. extra: 437 / 406,
  18703. bottom: 0.02
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(5 + 8 / 12, "feet"),
  18711. default: true
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18717. {
  18718. front: {
  18719. height: math.unit(5 + 10 / 12, "feet"),
  18720. weight: math.unit(252, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/bruun/front.svg",
  18724. extra: 197 / 187,
  18725. bottom: 0.012
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Normal",
  18732. height: math.unit(5 + 10 / 12, "feet"),
  18733. default: true
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18739. {
  18740. front: {
  18741. height: math.unit(6 + 10 / 12, "feet"),
  18742. weight: math.unit(255, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/alexeev/front.svg",
  18746. extra: 213 / 200,
  18747. bottom: 0.05
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(6 + 10 / 12, "feet"),
  18755. default: true
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(2 + 8 / 12, "feet"),
  18764. weight: math.unit(22, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/evelyn/front.svg",
  18768. extra: 208 / 180
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(2 + 8 / 12, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18782. {
  18783. front: {
  18784. height: math.unit(5 + 9 / 12, "feet"),
  18785. weight: math.unit(139, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/inca/front.svg",
  18789. extra: 294 / 291,
  18790. bottom: 0.03
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(5 + 9 / 12, "feet"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(5 + 1 / 12, "feet"),
  18807. weight: math.unit(84, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/magdalene/front.svg",
  18811. extra: 293 / 273
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Normal",
  18818. height: math.unit(5 + 1 / 12, "feet"),
  18819. default: true
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(6 + 3 / 12, "feet"),
  18828. weight: math.unit(185, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/mera/front.svg",
  18832. extra: 291 / 277,
  18833. bottom: 0.03
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(6 + 3 / 12, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18847. {
  18848. front: {
  18849. height: math.unit(6 + 7 / 12, "feet"),
  18850. weight: math.unit(160, "lb"),
  18851. name: "Front",
  18852. image: {
  18853. source: "./media/characters/ceres/front.svg",
  18854. extra: 1023 / 950,
  18855. bottom: 0.027
  18856. }
  18857. },
  18858. back: {
  18859. height: math.unit(6 + 7 / 12, "feet"),
  18860. weight: math.unit(160, "lb"),
  18861. name: "Back",
  18862. image: {
  18863. source: "./media/characters/ceres/back.svg",
  18864. extra: 1023 / 950
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(6 + 7 / 12, "feet"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(5 + 10 / 12, "feet"),
  18881. weight: math.unit(150, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/kris/front.svg",
  18885. extra: 885 / 803,
  18886. bottom: 0.03
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(5 + 10 / 12, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(7, "feet"),
  18903. weight: math.unit(120, "kg"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/taluthus/front.svg",
  18907. extra: 903 / 833,
  18908. bottom: 0.015
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(7, "feet"),
  18916. default: true
  18917. },
  18918. {
  18919. name: "Macro",
  18920. height: math.unit(300, "feet")
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(5 + 9 / 12, "feet"),
  18929. weight: math.unit(145, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/dawn/front.svg",
  18933. extra: 2094 / 2016,
  18934. bottom: 0.025
  18935. }
  18936. },
  18937. back: {
  18938. height: math.unit(5 + 9 / 12, "feet"),
  18939. weight: math.unit(160, "lb"),
  18940. name: "Back",
  18941. image: {
  18942. source: "./media/characters/dawn/back.svg",
  18943. extra: 2112 / 2080,
  18944. bottom: 0.005
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(6 + 7 / 12, "feet"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18958. {
  18959. anthro: {
  18960. height: math.unit(8 + 3 / 12, "feet"),
  18961. weight: math.unit(450, "lb"),
  18962. name: "Anthro",
  18963. image: {
  18964. source: "./media/characters/arador/anthro.svg",
  18965. extra: 1835 / 1718,
  18966. bottom: 0.025
  18967. }
  18968. },
  18969. feral: {
  18970. height: math.unit(4, "feet"),
  18971. weight: math.unit(200, "lb"),
  18972. name: "Feral",
  18973. image: {
  18974. source: "./media/characters/arador/feral.svg",
  18975. extra: 1683 / 1514,
  18976. bottom: 0.07
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(8 + 3 / 12, "feet")
  18984. },
  18985. {
  18986. name: "Macro",
  18987. height: math.unit(82.5, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(5 + 10 / 12, "feet"),
  18997. weight: math.unit(125, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/dharsi/front.svg",
  19001. extra: 716 / 630,
  19002. bottom: 0.035
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Nano",
  19009. height: math.unit(100, "nm")
  19010. },
  19011. {
  19012. name: "Micro",
  19013. height: math.unit(2, "inches")
  19014. },
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(5 + 10 / 12, "feet"),
  19018. default: true
  19019. },
  19020. {
  19021. name: "Macro",
  19022. height: math.unit(1000, "feet")
  19023. },
  19024. {
  19025. name: "Megamacro",
  19026. height: math.unit(10, "miles")
  19027. },
  19028. {
  19029. name: "Gigamacro",
  19030. height: math.unit(3000, "miles")
  19031. },
  19032. {
  19033. name: "Teramacro",
  19034. height: math.unit(500000, "miles")
  19035. },
  19036. {
  19037. name: "Teramacro+",
  19038. height: math.unit(30, "galaxies")
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(6, "feet"),
  19047. weight: math.unit(150, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/deathy/front.svg",
  19051. extra: 1552 / 1463,
  19052. bottom: 0.025
  19053. }
  19054. },
  19055. side: {
  19056. height: math.unit(6, "feet"),
  19057. weight: math.unit(150, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/deathy/side.svg",
  19061. extra: 1604 / 1455,
  19062. bottom: 0.025
  19063. }
  19064. },
  19065. back: {
  19066. height: math.unit(6, "feet"),
  19067. weight: math.unit(150, "lb"),
  19068. name: "Back",
  19069. image: {
  19070. source: "./media/characters/deathy/back.svg",
  19071. extra: 1580 / 1463,
  19072. bottom: 0.005
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Micro",
  19079. height: math.unit(5, "millimeters")
  19080. },
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(6 + 5 / 12, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19090. {
  19091. front: {
  19092. height: math.unit(16, "feet"),
  19093. weight: math.unit(4000, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/juniper/front.svg",
  19097. bottom: 0.04
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(16, "feet"),
  19105. default: true
  19106. },
  19107. ]
  19108. ))
  19109. characterMakers.push(() => makeCharacter(
  19110. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19111. {
  19112. front: {
  19113. height: math.unit(6, "feet"),
  19114. weight: math.unit(150, "lb"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/hipster/front.svg",
  19118. extra: 1312 / 1209,
  19119. bottom: 0.025
  19120. }
  19121. },
  19122. back: {
  19123. height: math.unit(6, "feet"),
  19124. weight: math.unit(150, "lb"),
  19125. name: "Back",
  19126. image: {
  19127. source: "./media/characters/hipster/back.svg",
  19128. extra: 1281 / 1196,
  19129. bottom: 0.01
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Micro",
  19136. height: math.unit(1, "mm")
  19137. },
  19138. {
  19139. name: "Normal",
  19140. height: math.unit(4, "inches"),
  19141. default: true
  19142. },
  19143. {
  19144. name: "Macro",
  19145. height: math.unit(500, "feet")
  19146. },
  19147. {
  19148. name: "Megamacro",
  19149. height: math.unit(1000, "miles")
  19150. },
  19151. ]
  19152. ))
  19153. characterMakers.push(() => makeCharacter(
  19154. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19155. {
  19156. front: {
  19157. height: math.unit(6, "feet"),
  19158. weight: math.unit(150, "lb"),
  19159. name: "Front",
  19160. image: {
  19161. source: "./media/characters/tendirmuldr/front.svg",
  19162. extra: 1878 / 1772,
  19163. bottom: 0.015
  19164. }
  19165. },
  19166. },
  19167. [
  19168. {
  19169. name: "Megamacro",
  19170. height: math.unit(1500, "miles"),
  19171. default: true
  19172. },
  19173. ]
  19174. ))
  19175. characterMakers.push(() => makeCharacter(
  19176. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19177. {
  19178. front: {
  19179. height: math.unit(14, "feet"),
  19180. weight: math.unit(12000, "lb"),
  19181. name: "Front",
  19182. image: {
  19183. source: "./media/characters/mort/front.svg",
  19184. extra: 365 / 318,
  19185. bottom: 0.01
  19186. }
  19187. },
  19188. side: {
  19189. height: math.unit(14, "feet"),
  19190. weight: math.unit(12000, "lb"),
  19191. name: "Side",
  19192. image: {
  19193. source: "./media/characters/mort/side.svg",
  19194. extra: 365 / 318,
  19195. bottom: 0.052
  19196. },
  19197. default: true
  19198. },
  19199. back: {
  19200. height: math.unit(14, "feet"),
  19201. weight: math.unit(12000, "lb"),
  19202. name: "Back",
  19203. image: {
  19204. source: "./media/characters/mort/back.svg",
  19205. extra: 371 / 332,
  19206. bottom: 0.18
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(14, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19220. {
  19221. front: {
  19222. height: math.unit(8, "feet"),
  19223. weight: math.unit(1, "ton"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/lycoa/front.svg",
  19227. extra: 1875 / 1789,
  19228. bottom: 0.022
  19229. }
  19230. },
  19231. back: {
  19232. height: math.unit(8, "feet"),
  19233. weight: math.unit(1, "ton"),
  19234. name: "Back",
  19235. image: {
  19236. source: "./media/characters/lycoa/back.svg",
  19237. extra: 1835 / 1781,
  19238. bottom: 0.03
  19239. }
  19240. },
  19241. head: {
  19242. height: math.unit(2.1, "feet"),
  19243. name: "Head",
  19244. image: {
  19245. source: "./media/characters/lycoa/head.svg"
  19246. }
  19247. },
  19248. tailmaw: {
  19249. height: math.unit(1.9, "feet"),
  19250. name: "Tailmaw",
  19251. image: {
  19252. source: "./media/characters/lycoa/tailmaw.svg"
  19253. }
  19254. },
  19255. tentacles: {
  19256. height: math.unit(2.1, "feet"),
  19257. name: "Tentacles",
  19258. image: {
  19259. source: "./media/characters/lycoa/tentacles.svg"
  19260. }
  19261. },
  19262. dick: {
  19263. height: math.unit(1.73, "feet"),
  19264. name: "Dick",
  19265. image: {
  19266. source: "./media/characters/lycoa/dick.svg"
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(8, "feet"),
  19274. default: true
  19275. },
  19276. {
  19277. name: "Macro",
  19278. height: math.unit(30, "feet")
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19284. {
  19285. front: {
  19286. height: math.unit(4 + 2 / 12, "feet"),
  19287. weight: math.unit(70, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/naldara/front.svg",
  19291. extra: 841 / 720,
  19292. bottom: 0.04
  19293. }
  19294. },
  19295. naga: {
  19296. height: math.unit(23, "feet"),
  19297. weight: math.unit(15000, "kg"),
  19298. name: "Naga",
  19299. image: {
  19300. source: "./media/characters/naldara/naga.svg",
  19301. extra: 3290/2959,
  19302. bottom: 124/3432
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(4 + 2 / 12, "feet"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(13 + 7 / 12, "feet"),
  19319. weight: math.unit(1500, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/briar/front.svg",
  19323. extra: 626 / 596,
  19324. bottom: 0.08
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(13 + 7 / 12, "feet"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19338. {
  19339. side: {
  19340. height: math.unit(10, "feet"),
  19341. weight: math.unit(500, "lb"),
  19342. name: "Side",
  19343. image: {
  19344. source: "./media/characters/vanguard/side.svg",
  19345. extra: 502 / 425,
  19346. bottom: 0.087
  19347. }
  19348. },
  19349. },
  19350. [
  19351. {
  19352. name: "Normal",
  19353. height: math.unit(10, "feet"),
  19354. default: true
  19355. },
  19356. ]
  19357. ))
  19358. characterMakers.push(() => makeCharacter(
  19359. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19360. {
  19361. front: {
  19362. height: math.unit(7.5, "feet"),
  19363. weight: math.unit(2, "lb"),
  19364. name: "Front",
  19365. image: {
  19366. source: "./media/characters/artemis/front.svg",
  19367. extra: 1192 / 1075,
  19368. bottom: 0.07
  19369. }
  19370. },
  19371. frontNsfw: {
  19372. height: math.unit(7.5, "feet"),
  19373. weight: math.unit(2, "lb"),
  19374. name: "Front (NSFW)",
  19375. image: {
  19376. source: "./media/characters/artemis/front-nsfw.svg",
  19377. extra: 1192 / 1075,
  19378. bottom: 0.07
  19379. }
  19380. },
  19381. frontNsfwer: {
  19382. height: math.unit(7.5, "feet"),
  19383. weight: math.unit(2, "lb"),
  19384. name: "Front (NSFW-er)",
  19385. image: {
  19386. source: "./media/characters/artemis/front-nsfwer.svg",
  19387. extra: 1192 / 1075,
  19388. bottom: 0.07
  19389. }
  19390. },
  19391. side: {
  19392. height: math.unit(7.5, "feet"),
  19393. weight: math.unit(2, "lb"),
  19394. name: "Side",
  19395. image: {
  19396. source: "./media/characters/artemis/side.svg",
  19397. extra: 1192 / 1075,
  19398. bottom: 0.07
  19399. }
  19400. },
  19401. sideNsfw: {
  19402. height: math.unit(7.5, "feet"),
  19403. weight: math.unit(2, "lb"),
  19404. name: "Side (NSFW)",
  19405. image: {
  19406. source: "./media/characters/artemis/side-nsfw.svg",
  19407. extra: 1192 / 1075,
  19408. bottom: 0.07
  19409. }
  19410. },
  19411. sideNsfwer: {
  19412. height: math.unit(7.5, "feet"),
  19413. weight: math.unit(2, "lb"),
  19414. name: "Side (NSFW-er)",
  19415. image: {
  19416. source: "./media/characters/artemis/side-nsfwer.svg",
  19417. extra: 1192 / 1075,
  19418. bottom: 0.07
  19419. }
  19420. },
  19421. maw: {
  19422. height: math.unit(1.1, "feet"),
  19423. name: "Maw",
  19424. image: {
  19425. source: "./media/characters/artemis/maw.svg"
  19426. }
  19427. },
  19428. stomach: {
  19429. height: math.unit(0.95, "feet"),
  19430. name: "Stomach",
  19431. image: {
  19432. source: "./media/characters/artemis/stomach.svg"
  19433. }
  19434. },
  19435. dickCanine: {
  19436. height: math.unit(1, "feet"),
  19437. name: "Dick (Canine)",
  19438. image: {
  19439. source: "./media/characters/artemis/dick-canine.svg"
  19440. }
  19441. },
  19442. dickEquine: {
  19443. height: math.unit(0.85, "feet"),
  19444. name: "Dick (Equine)",
  19445. image: {
  19446. source: "./media/characters/artemis/dick-equine.svg"
  19447. }
  19448. },
  19449. dickExotic: {
  19450. height: math.unit(0.85, "feet"),
  19451. name: "Dick (Exotic)",
  19452. image: {
  19453. source: "./media/characters/artemis/dick-exotic.svg"
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(7.5, "feet"),
  19461. default: true
  19462. },
  19463. {
  19464. name: "Enlarged",
  19465. height: math.unit(12, "feet")
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(5 + 3 / 12, "feet"),
  19474. weight: math.unit(160, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/kira/front.svg",
  19478. extra: 906 / 786,
  19479. bottom: 0.01
  19480. }
  19481. },
  19482. back: {
  19483. height: math.unit(5 + 3 / 12, "feet"),
  19484. weight: math.unit(160, "lb"),
  19485. name: "Back",
  19486. image: {
  19487. source: "./media/characters/kira/back.svg",
  19488. extra: 882 / 757,
  19489. bottom: 0.005
  19490. }
  19491. },
  19492. frontDressed: {
  19493. height: math.unit(5 + 3 / 12, "feet"),
  19494. weight: math.unit(160, "lb"),
  19495. name: "Front (Dressed)",
  19496. image: {
  19497. source: "./media/characters/kira/front-dressed.svg",
  19498. extra: 906 / 786,
  19499. bottom: 0.01
  19500. }
  19501. },
  19502. beans: {
  19503. height: math.unit(0.92, "feet"),
  19504. name: "Beans",
  19505. image: {
  19506. source: "./media/characters/kira/beans.svg"
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(5 + 3 / 12, "feet"),
  19514. default: true
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(5 + 4 / 12, "feet"),
  19523. weight: math.unit(145, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/scramble/front.svg",
  19527. extra: 763 / 727,
  19528. bottom: 0.05
  19529. }
  19530. },
  19531. back: {
  19532. height: math.unit(5 + 4 / 12, "feet"),
  19533. weight: math.unit(145, "lb"),
  19534. name: "Back",
  19535. image: {
  19536. source: "./media/characters/scramble/back.svg",
  19537. extra: 826 / 737,
  19538. bottom: 0.002
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(5 + 4 / 12, "feet"),
  19546. default: true
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19552. {
  19553. side: {
  19554. height: math.unit(6 + 2 / 12, "feet"),
  19555. weight: math.unit(190, "lb"),
  19556. name: "Side",
  19557. image: {
  19558. source: "./media/characters/biscuit/side.svg",
  19559. extra: 858 / 791,
  19560. bottom: 0.044
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(6 + 2 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(5 + 2 / 12, "feet"),
  19577. weight: math.unit(120, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/poffin/front.svg",
  19581. extra: 786 / 680,
  19582. bottom: 0.005
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(5 + 2 / 12, "feet"),
  19590. default: true
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19596. {
  19597. front: {
  19598. height: math.unit(6 + 3 / 12, "feet"),
  19599. weight: math.unit(519, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/dhari/front.svg",
  19603. extra: 1048 / 946,
  19604. bottom: 0.015
  19605. }
  19606. },
  19607. back: {
  19608. height: math.unit(6 + 3 / 12, "feet"),
  19609. weight: math.unit(519, "lb"),
  19610. name: "Back",
  19611. image: {
  19612. source: "./media/characters/dhari/back.svg",
  19613. extra: 1048 / 931,
  19614. bottom: 0.005
  19615. }
  19616. },
  19617. frontDressed: {
  19618. height: math.unit(6 + 3 / 12, "feet"),
  19619. weight: math.unit(519, "lb"),
  19620. name: "Front (Dressed)",
  19621. image: {
  19622. source: "./media/characters/dhari/front-dressed.svg",
  19623. extra: 1713 / 1546,
  19624. bottom: 0.02
  19625. }
  19626. },
  19627. backDressed: {
  19628. height: math.unit(6 + 3 / 12, "feet"),
  19629. weight: math.unit(519, "lb"),
  19630. name: "Back (Dressed)",
  19631. image: {
  19632. source: "./media/characters/dhari/back-dressed.svg",
  19633. extra: 1699 / 1537,
  19634. bottom: 0.01
  19635. }
  19636. },
  19637. maw: {
  19638. height: math.unit(0.95, "feet"),
  19639. name: "Maw",
  19640. image: {
  19641. source: "./media/characters/dhari/maw.svg"
  19642. }
  19643. },
  19644. wereFront: {
  19645. height: math.unit(12 + 8 / 12, "feet"),
  19646. weight: math.unit(4000, "lb"),
  19647. name: "Front (Were)",
  19648. image: {
  19649. source: "./media/characters/dhari/were-front.svg",
  19650. extra: 1065 / 969,
  19651. bottom: 0.015
  19652. }
  19653. },
  19654. wereBack: {
  19655. height: math.unit(12 + 8 / 12, "feet"),
  19656. weight: math.unit(4000, "lb"),
  19657. name: "Back (Were)",
  19658. image: {
  19659. source: "./media/characters/dhari/were-back.svg",
  19660. extra: 1065 / 969,
  19661. bottom: 0.012
  19662. }
  19663. },
  19664. wereMaw: {
  19665. height: math.unit(0.625, "meters"),
  19666. name: "Maw (Were)",
  19667. image: {
  19668. source: "./media/characters/dhari/were-maw.svg"
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(6 + 3 / 12, "feet"),
  19676. default: true
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19682. {
  19683. anthro: {
  19684. height: math.unit(5 + 7 / 12, "feet"),
  19685. weight: math.unit(175, "lb"),
  19686. name: "Anthro",
  19687. image: {
  19688. source: "./media/characters/rena-dyne/anthro.svg",
  19689. extra: 1849 / 1785,
  19690. bottom: 0.005
  19691. }
  19692. },
  19693. taur: {
  19694. height: math.unit(15 + 6 / 12, "feet"),
  19695. weight: math.unit(8000, "lb"),
  19696. name: "Taur",
  19697. image: {
  19698. source: "./media/characters/rena-dyne/taur.svg",
  19699. extra: 2315 / 2234,
  19700. bottom: 0.033
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(5 + 7 / 12, "feet"),
  19708. default: true
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19714. {
  19715. front: {
  19716. height: math.unit(8, "feet"),
  19717. weight: math.unit(600, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/weremeep/front.svg",
  19721. extra: 967 / 862,
  19722. bottom: 0.01
  19723. }
  19724. },
  19725. },
  19726. [
  19727. {
  19728. name: "Normal",
  19729. height: math.unit(8, "feet"),
  19730. default: true
  19731. },
  19732. {
  19733. name: "Lorg",
  19734. height: math.unit(12, "feet")
  19735. },
  19736. {
  19737. name: "Oh Lawd She Comin'",
  19738. height: math.unit(20, "feet")
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19744. {
  19745. front: {
  19746. height: math.unit(4, "feet"),
  19747. weight: math.unit(90, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/reza/front.svg",
  19751. extra: 1183 / 1111,
  19752. bottom: 0.017
  19753. }
  19754. },
  19755. back: {
  19756. height: math.unit(4, "feet"),
  19757. weight: math.unit(90, "lb"),
  19758. name: "Back",
  19759. image: {
  19760. source: "./media/characters/reza/back.svg",
  19761. extra: 1183 / 1111,
  19762. bottom: 0.01
  19763. }
  19764. },
  19765. drake: {
  19766. height: math.unit(30, "feet"),
  19767. weight: math.unit(246960, "lb"),
  19768. name: "Drake",
  19769. image: {
  19770. source: "./media/characters/reza/drake.svg",
  19771. extra: 2350 / 2024,
  19772. bottom: 60.7 / 2403
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(4, "feet"),
  19780. default: true
  19781. },
  19782. ]
  19783. ))
  19784. characterMakers.push(() => makeCharacter(
  19785. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19786. {
  19787. side: {
  19788. height: math.unit(15, "feet"),
  19789. weight: math.unit(14, "tons"),
  19790. name: "Side",
  19791. image: {
  19792. source: "./media/characters/athea/side.svg",
  19793. extra: 960 / 540,
  19794. bottom: 0.003
  19795. }
  19796. },
  19797. sitting: {
  19798. height: math.unit(6 * 2.85, "feet"),
  19799. weight: math.unit(14, "tons"),
  19800. name: "Sitting",
  19801. image: {
  19802. source: "./media/characters/athea/sitting.svg",
  19803. extra: 621 / 581,
  19804. bottom: 0.075
  19805. }
  19806. },
  19807. maw: {
  19808. height: math.unit(7.59498031496063, "feet"),
  19809. name: "Maw",
  19810. image: {
  19811. source: "./media/characters/athea/maw.svg"
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Lap Cat",
  19818. height: math.unit(2.5, "feet")
  19819. },
  19820. {
  19821. name: "Minimacro",
  19822. height: math.unit(15, "feet"),
  19823. default: true
  19824. },
  19825. {
  19826. name: "Macro",
  19827. height: math.unit(120, "feet")
  19828. },
  19829. {
  19830. name: "Macro+",
  19831. height: math.unit(640, "feet")
  19832. },
  19833. {
  19834. name: "Colossus",
  19835. height: math.unit(2.2, "miles")
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19841. {
  19842. front: {
  19843. height: math.unit(8 + 8 / 12, "feet"),
  19844. weight: math.unit(130, "kg"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/seroko/front.svg",
  19848. extra: 1385 / 1280,
  19849. bottom: 0.025
  19850. }
  19851. },
  19852. back: {
  19853. height: math.unit(8 + 8 / 12, "feet"),
  19854. weight: math.unit(130, "kg"),
  19855. name: "Back",
  19856. image: {
  19857. source: "./media/characters/seroko/back.svg",
  19858. extra: 1369 / 1238,
  19859. bottom: 0.018
  19860. }
  19861. },
  19862. frontDressed: {
  19863. height: math.unit(8 + 8 / 12, "feet"),
  19864. weight: math.unit(130, "kg"),
  19865. name: "Front (Dressed)",
  19866. image: {
  19867. source: "./media/characters/seroko/front-dressed.svg",
  19868. extra: 1366 / 1275,
  19869. bottom: 0.03
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(8 + 8 / 12, "feet"),
  19877. default: true
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(5.5, "feet"),
  19886. weight: math.unit(160, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/quatzi/front.svg",
  19890. extra: 2346 / 2242,
  19891. bottom: 0.015
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(5.5, "feet"),
  19899. default: true
  19900. },
  19901. {
  19902. name: "Big",
  19903. height: math.unit(7.7, "feet")
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(5 + 11 / 12, "feet"),
  19912. weight: math.unit(180, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/sen/front.svg",
  19916. extra: 1321 / 1254,
  19917. bottom: 0.015
  19918. }
  19919. },
  19920. side: {
  19921. height: math.unit(5 + 11 / 12, "feet"),
  19922. weight: math.unit(180, "lb"),
  19923. name: "Side",
  19924. image: {
  19925. source: "./media/characters/sen/side.svg",
  19926. extra: 1321 / 1254,
  19927. bottom: 0.007
  19928. }
  19929. },
  19930. back: {
  19931. height: math.unit(5 + 11 / 12, "feet"),
  19932. weight: math.unit(180, "lb"),
  19933. name: "Back",
  19934. image: {
  19935. source: "./media/characters/sen/back.svg",
  19936. extra: 1321 / 1254
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(5 + 11 / 12, "feet"),
  19944. default: true
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19950. {
  19951. front: {
  19952. height: math.unit(166.6, "cm"),
  19953. weight: math.unit(66.6, "kg"),
  19954. name: "Front",
  19955. image: {
  19956. source: "./media/characters/fruity/front.svg",
  19957. extra: 1510 / 1386,
  19958. bottom: 0.04
  19959. }
  19960. },
  19961. back: {
  19962. height: math.unit(166.6, "cm"),
  19963. weight: math.unit(66.6, "lb"),
  19964. name: "Back",
  19965. image: {
  19966. source: "./media/characters/fruity/back.svg",
  19967. extra: 1563 / 1435,
  19968. bottom: 0.005
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(166.6, "cm"),
  19976. default: true
  19977. },
  19978. {
  19979. name: "Demonic",
  19980. height: math.unit(166.6, "feet")
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19986. {
  19987. side: {
  19988. height: math.unit(10, "feet"),
  19989. weight: math.unit(500, "lb"),
  19990. name: "Side",
  19991. image: {
  19992. source: "./media/characters/zost/side.svg",
  19993. extra: 966 / 880,
  19994. bottom: 0.075
  19995. }
  19996. },
  19997. mawFront: {
  19998. height: math.unit(1.08, "meters"),
  19999. name: "Maw (Front)",
  20000. image: {
  20001. source: "./media/characters/zost/maw-front.svg"
  20002. }
  20003. },
  20004. mawSide: {
  20005. height: math.unit(2.66, "feet"),
  20006. name: "Maw (Side)",
  20007. image: {
  20008. source: "./media/characters/zost/maw-side.svg"
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(10, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 4 / 12, "feet"),
  20025. weight: math.unit(120, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/luci/front.svg",
  20029. extra: 1985 / 1884,
  20030. bottom: 0.04
  20031. }
  20032. },
  20033. back: {
  20034. height: math.unit(5 + 4 / 12, "feet"),
  20035. weight: math.unit(120, "lb"),
  20036. name: "Back",
  20037. image: {
  20038. source: "./media/characters/luci/back.svg",
  20039. extra: 1892 / 1791,
  20040. bottom: 0.002
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(5 + 4 / 12, "feet"),
  20048. default: true
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20054. {
  20055. front: {
  20056. height: math.unit(1500, "feet"),
  20057. weight: math.unit(3.8e6, "tons"),
  20058. name: "Front",
  20059. image: {
  20060. source: "./media/characters/2th/front.svg",
  20061. extra: 3489 / 3350,
  20062. bottom: 0.1
  20063. }
  20064. },
  20065. foot: {
  20066. height: math.unit(461, "feet"),
  20067. name: "Foot",
  20068. image: {
  20069. source: "./media/characters/2th/foot.svg"
  20070. }
  20071. },
  20072. },
  20073. [
  20074. {
  20075. name: "\"Micro\"",
  20076. height: math.unit(15 + 7 / 12, "feet")
  20077. },
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(1500, "feet"),
  20081. default: true
  20082. },
  20083. {
  20084. name: "Macro",
  20085. height: math.unit(5000, "feet")
  20086. },
  20087. {
  20088. name: "Megamacro",
  20089. height: math.unit(15, "miles")
  20090. },
  20091. {
  20092. name: "Gigamacro",
  20093. height: math.unit(4000, "miles")
  20094. },
  20095. {
  20096. name: "Galactic",
  20097. height: math.unit(50, "AU")
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(5 + 6 / 12, "feet"),
  20106. weight: math.unit(220, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/amethyst/front.svg",
  20110. extra: 2078 / 2040,
  20111. bottom: 0.045
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(5 + 6 / 12, "feet"),
  20116. weight: math.unit(220, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/amethyst/back.svg",
  20120. extra: 2021 / 1989,
  20121. bottom: 0.02
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(5 + 6 / 12, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(4 + 11 / 12, "feet"),
  20138. weight: math.unit(120, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/yumi-akiyama/front.svg",
  20142. extra: 1327 / 1235,
  20143. bottom: 0.02
  20144. }
  20145. },
  20146. back: {
  20147. height: math.unit(4 + 11 / 12, "feet"),
  20148. weight: math.unit(120, "lb"),
  20149. name: "Back",
  20150. image: {
  20151. source: "./media/characters/yumi-akiyama/back.svg",
  20152. extra: 1287 / 1245,
  20153. bottom: 0.002
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Galactic",
  20160. height: math.unit(50, "galaxies"),
  20161. default: true
  20162. },
  20163. {
  20164. name: "Universal",
  20165. height: math.unit(100, "universes")
  20166. },
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20171. {
  20172. front: {
  20173. height: math.unit(8, "feet"),
  20174. weight: math.unit(500, "lb"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/rifter-yrmori/front.svg",
  20178. extra: 1180 / 1125,
  20179. bottom: 0.02
  20180. }
  20181. },
  20182. back: {
  20183. height: math.unit(8, "feet"),
  20184. weight: math.unit(500, "lb"),
  20185. name: "Back",
  20186. image: {
  20187. source: "./media/characters/rifter-yrmori/back.svg",
  20188. extra: 1190 / 1145,
  20189. bottom: 0.001
  20190. }
  20191. },
  20192. wings: {
  20193. height: math.unit(7.75, "feet"),
  20194. weight: math.unit(500, "lb"),
  20195. name: "Wings",
  20196. image: {
  20197. source: "./media/characters/rifter-yrmori/wings.svg",
  20198. extra: 1357 / 1285
  20199. }
  20200. },
  20201. maw: {
  20202. height: math.unit(0.8, "feet"),
  20203. name: "Maw",
  20204. image: {
  20205. source: "./media/characters/rifter-yrmori/maw.svg"
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(8, "feet"),
  20213. default: true
  20214. },
  20215. {
  20216. name: "Macro",
  20217. height: math.unit(42, "meters")
  20218. },
  20219. ]
  20220. ))
  20221. characterMakers.push(() => makeCharacter(
  20222. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20223. {
  20224. were: {
  20225. height: math.unit(25 + 6 / 12, "feet"),
  20226. weight: math.unit(10000, "lb"),
  20227. name: "Were",
  20228. image: {
  20229. source: "./media/characters/tahajin/were.svg",
  20230. extra: 801 / 770,
  20231. bottom: 0.042
  20232. }
  20233. },
  20234. aquatic: {
  20235. height: math.unit(6 + 4 / 12, "feet"),
  20236. weight: math.unit(160, "lb"),
  20237. name: "Aquatic",
  20238. image: {
  20239. source: "./media/characters/tahajin/aquatic.svg",
  20240. extra: 572 / 542,
  20241. bottom: 0.04
  20242. }
  20243. },
  20244. chow: {
  20245. height: math.unit(8 + 11 / 12, "feet"),
  20246. weight: math.unit(450, "lb"),
  20247. name: "Chow",
  20248. image: {
  20249. source: "./media/characters/tahajin/chow.svg",
  20250. extra: 660 / 640,
  20251. bottom: 0.015
  20252. }
  20253. },
  20254. demiNaga: {
  20255. height: math.unit(6 + 8 / 12, "feet"),
  20256. weight: math.unit(300, "lb"),
  20257. name: "Demi Naga",
  20258. image: {
  20259. source: "./media/characters/tahajin/demi-naga.svg",
  20260. extra: 643 / 615,
  20261. bottom: 0.1
  20262. }
  20263. },
  20264. data: {
  20265. height: math.unit(5, "inches"),
  20266. weight: math.unit(0.1, "lb"),
  20267. name: "Data",
  20268. image: {
  20269. source: "./media/characters/tahajin/data.svg"
  20270. }
  20271. },
  20272. fluu: {
  20273. height: math.unit(5 + 7 / 12, "feet"),
  20274. weight: math.unit(140, "lb"),
  20275. name: "Fluu",
  20276. image: {
  20277. source: "./media/characters/tahajin/fluu.svg",
  20278. extra: 628 / 592,
  20279. bottom: 0.02
  20280. }
  20281. },
  20282. starWarrior: {
  20283. height: math.unit(4 + 5 / 12, "feet"),
  20284. weight: math.unit(50, "lb"),
  20285. name: "Star Warrior",
  20286. image: {
  20287. source: "./media/characters/tahajin/star-warrior.svg"
  20288. }
  20289. },
  20290. },
  20291. [
  20292. {
  20293. name: "Normal",
  20294. height: math.unit(25 + 6 / 12, "feet"),
  20295. default: true
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20301. {
  20302. front: {
  20303. height: math.unit(8, "feet"),
  20304. weight: math.unit(350, "lb"),
  20305. name: "Front",
  20306. image: {
  20307. source: "./media/characters/gabira/front.svg",
  20308. extra: 608 / 580,
  20309. bottom: 0.03
  20310. }
  20311. },
  20312. back: {
  20313. height: math.unit(8, "feet"),
  20314. weight: math.unit(350, "lb"),
  20315. name: "Back",
  20316. image: {
  20317. source: "./media/characters/gabira/back.svg",
  20318. extra: 608 / 580,
  20319. bottom: 0.03
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Normal",
  20326. height: math.unit(8, "feet"),
  20327. default: true
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20333. {
  20334. front: {
  20335. height: math.unit(5 + 3 / 12, "feet"),
  20336. weight: math.unit(137, "lb"),
  20337. name: "Front",
  20338. image: {
  20339. source: "./media/characters/sasha-katraine/front.svg",
  20340. bottom: 0.045
  20341. }
  20342. },
  20343. },
  20344. [
  20345. {
  20346. name: "Micro",
  20347. height: math.unit(5, "inches")
  20348. },
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(5 + 3 / 12, "feet"),
  20352. default: true
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20358. {
  20359. side: {
  20360. height: math.unit(4, "inches"),
  20361. weight: math.unit(200, "grams"),
  20362. name: "Side",
  20363. image: {
  20364. source: "./media/characters/der/side.svg",
  20365. extra: 719 / 400,
  20366. bottom: 30.6 / 749.9187
  20367. }
  20368. },
  20369. },
  20370. [
  20371. {
  20372. name: "Micro",
  20373. height: math.unit(4, "inches"),
  20374. default: true
  20375. },
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20380. {
  20381. side: {
  20382. height: math.unit(30, "meters"),
  20383. weight: math.unit(700, "tonnes"),
  20384. name: "Side",
  20385. image: {
  20386. source: "./media/characters/fixerdragon/side.svg",
  20387. extra: (1293.0514 - 116.03) / 1106.86,
  20388. bottom: 116.03 / 1293.0514
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Planck",
  20395. height: math.unit(1.6e-35, "meters")
  20396. },
  20397. {
  20398. name: "Micro",
  20399. height: math.unit(0.4, "meters")
  20400. },
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(30, "meters"),
  20404. default: true
  20405. },
  20406. {
  20407. name: "Megamacro",
  20408. height: math.unit(1.2, "megameters")
  20409. },
  20410. {
  20411. name: "Teramacro",
  20412. height: math.unit(130, "terameters")
  20413. },
  20414. {
  20415. name: "Yottamacro",
  20416. height: math.unit(6200, "yottameters")
  20417. },
  20418. ]
  20419. ));
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(8, "feet"),
  20425. weight: math.unit(250, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/kite/front.svg",
  20429. extra: 2796 / 2659,
  20430. bottom: 0.002
  20431. }
  20432. },
  20433. },
  20434. [
  20435. {
  20436. name: "Normal",
  20437. height: math.unit(8, "feet"),
  20438. default: true
  20439. },
  20440. {
  20441. name: "Macro",
  20442. height: math.unit(360, "feet")
  20443. },
  20444. {
  20445. name: "Megamacro",
  20446. height: math.unit(1500, "feet")
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(5 + 10 / 12, "feet"),
  20455. weight: math.unit(150, "lb"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/poojawa-vynar/front.svg",
  20459. extra: (1506.1547 - 55) / 1356.6,
  20460. bottom: 55 / 1506.1547
  20461. }
  20462. },
  20463. frontTailless: {
  20464. height: math.unit(5 + 10 / 12, "feet"),
  20465. weight: math.unit(150, "lb"),
  20466. name: "Front (Tailless)",
  20467. image: {
  20468. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20469. extra: (1506.1547 - 55) / 1356.6,
  20470. bottom: 55 / 1506.1547
  20471. }
  20472. },
  20473. },
  20474. [
  20475. {
  20476. name: "Normal",
  20477. height: math.unit(5 + 10 / 12, "feet"),
  20478. default: true
  20479. },
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20484. {
  20485. front: {
  20486. height: math.unit(293, "meters"),
  20487. weight: math.unit(70400, "tons"),
  20488. name: "Front",
  20489. image: {
  20490. source: "./media/characters/violette/front.svg",
  20491. extra: 1227 / 1180,
  20492. bottom: 0.005
  20493. }
  20494. },
  20495. back: {
  20496. height: math.unit(293, "meters"),
  20497. weight: math.unit(70400, "tons"),
  20498. name: "Back",
  20499. image: {
  20500. source: "./media/characters/violette/back.svg",
  20501. extra: 1227 / 1180,
  20502. bottom: 0.005
  20503. }
  20504. },
  20505. },
  20506. [
  20507. {
  20508. name: "Macro",
  20509. height: math.unit(293, "meters"),
  20510. default: true
  20511. },
  20512. ]
  20513. ))
  20514. characterMakers.push(() => makeCharacter(
  20515. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20516. {
  20517. front: {
  20518. height: math.unit(1050, "feet"),
  20519. weight: math.unit(200000, "tons"),
  20520. name: "Front",
  20521. image: {
  20522. source: "./media/characters/alessandra/front.svg",
  20523. extra: 960 / 912,
  20524. bottom: 0.06
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Macro",
  20531. height: math.unit(1050, "feet")
  20532. },
  20533. {
  20534. name: "Macro+",
  20535. height: math.unit(900, "meters"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(5, "feet"),
  20545. weight: math.unit(187, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/person/front.svg",
  20549. extra: 3087 / 2945,
  20550. bottom: 91 / 3181
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Micro",
  20557. height: math.unit(3, "inches")
  20558. },
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(5, "feet"),
  20562. default: true
  20563. },
  20564. {
  20565. name: "Macro",
  20566. height: math.unit(90, "feet")
  20567. },
  20568. {
  20569. name: "Max Size",
  20570. height: math.unit(280, "feet")
  20571. },
  20572. ]
  20573. ))
  20574. characterMakers.push(() => makeCharacter(
  20575. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20576. {
  20577. front: {
  20578. height: math.unit(4.5, "meters"),
  20579. weight: math.unit(3200, "lb"),
  20580. name: "Front",
  20581. image: {
  20582. source: "./media/characters/ty/front.svg",
  20583. extra: 1038 / 960,
  20584. bottom: 31.156 / 1068
  20585. }
  20586. },
  20587. back: {
  20588. height: math.unit(4.5, "meters"),
  20589. weight: math.unit(3200, "lb"),
  20590. name: "Back",
  20591. image: {
  20592. source: "./media/characters/ty/back.svg",
  20593. extra: 1044 / 966,
  20594. bottom: 7.48 / 1049
  20595. }
  20596. },
  20597. },
  20598. [
  20599. {
  20600. name: "Normal",
  20601. height: math.unit(4.5, "meters"),
  20602. default: true
  20603. },
  20604. ]
  20605. ))
  20606. characterMakers.push(() => makeCharacter(
  20607. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20608. {
  20609. front: {
  20610. height: math.unit(5 + 4 / 12, "feet"),
  20611. weight: math.unit(115, "lb"),
  20612. name: "Front",
  20613. image: {
  20614. source: "./media/characters/rocky/front.svg",
  20615. extra: 1012 / 975,
  20616. bottom: 54 / 1066
  20617. }
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Normal",
  20623. height: math.unit(5 + 4 / 12, "feet"),
  20624. default: true
  20625. },
  20626. ]
  20627. ))
  20628. characterMakers.push(() => makeCharacter(
  20629. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20630. {
  20631. upright: {
  20632. height: math.unit(6, "meters"),
  20633. weight: math.unit(4000, "kg"),
  20634. name: "Upright",
  20635. image: {
  20636. source: "./media/characters/ruin/upright.svg",
  20637. extra: 668 / 661,
  20638. bottom: 42 / 799.8396
  20639. }
  20640. },
  20641. },
  20642. [
  20643. {
  20644. name: "Normal",
  20645. height: math.unit(6, "meters"),
  20646. default: true
  20647. },
  20648. ]
  20649. ))
  20650. characterMakers.push(() => makeCharacter(
  20651. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20652. {
  20653. front: {
  20654. height: math.unit(5, "feet"),
  20655. weight: math.unit(106, "lb"),
  20656. name: "Front",
  20657. image: {
  20658. source: "./media/characters/robin/front.svg",
  20659. extra: 862 / 799,
  20660. bottom: 42.4 / 914.8856
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Normal",
  20667. height: math.unit(5, "feet"),
  20668. default: true
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20674. {
  20675. side: {
  20676. height: math.unit(3, "feet"),
  20677. weight: math.unit(225, "lb"),
  20678. name: "Side",
  20679. image: {
  20680. source: "./media/characters/saian/side.svg",
  20681. extra: 566 / 356,
  20682. bottom: 79.7 / 643
  20683. }
  20684. },
  20685. maw: {
  20686. height: math.unit(2.85, "feet"),
  20687. name: "Maw",
  20688. image: {
  20689. source: "./media/characters/saian/maw.svg"
  20690. }
  20691. },
  20692. },
  20693. [
  20694. {
  20695. name: "Normal",
  20696. height: math.unit(3, "feet"),
  20697. default: true
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20703. {
  20704. side: {
  20705. height: math.unit(8, "feet"),
  20706. weight: math.unit(300, "lb"),
  20707. name: "Side",
  20708. image: {
  20709. source: "./media/characters/equus-silvermane/side.svg",
  20710. extra: 2176 / 2050,
  20711. bottom: 65.7 / 2245
  20712. }
  20713. },
  20714. front: {
  20715. height: math.unit(8, "feet"),
  20716. weight: math.unit(300, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/equus-silvermane/front.svg",
  20720. extra: 4633 / 4400,
  20721. bottom: 71.3 / 4706.915
  20722. }
  20723. },
  20724. sideStepping: {
  20725. height: math.unit(8, "feet"),
  20726. weight: math.unit(300, "lb"),
  20727. name: "Side (Stepping)",
  20728. image: {
  20729. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20730. extra: 1968 / 1860,
  20731. bottom: 16.4 / 1989
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Normal",
  20738. height: math.unit(8, "feet")
  20739. },
  20740. {
  20741. name: "Minimacro",
  20742. height: math.unit(75, "feet"),
  20743. default: true
  20744. },
  20745. {
  20746. name: "Macro",
  20747. height: math.unit(150, "feet")
  20748. },
  20749. {
  20750. name: "Macro+",
  20751. height: math.unit(1000, "feet")
  20752. },
  20753. {
  20754. name: "Megamacro",
  20755. height: math.unit(1, "mile")
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20761. {
  20762. side: {
  20763. height: math.unit(20, "feet"),
  20764. weight: math.unit(30000, "kg"),
  20765. name: "Side",
  20766. image: {
  20767. source: "./media/characters/windar/side.svg",
  20768. extra: 1491 / 1248,
  20769. bottom: 82.56 / 1568
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Normal",
  20776. height: math.unit(20, "feet"),
  20777. default: true
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20783. {
  20784. side: {
  20785. height: math.unit(15.66, "feet"),
  20786. weight: math.unit(150, "lb"),
  20787. name: "Side",
  20788. image: {
  20789. source: "./media/characters/melody/side.svg",
  20790. extra: 1097 / 944,
  20791. bottom: 11.8 / 1109
  20792. }
  20793. },
  20794. sideOutfit: {
  20795. height: math.unit(15.66, "feet"),
  20796. weight: math.unit(150, "lb"),
  20797. name: "Side (Outfit)",
  20798. image: {
  20799. source: "./media/characters/melody/side-outfit.svg",
  20800. extra: 1097 / 944,
  20801. bottom: 11.8 / 1109
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(15.66, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(8, "feet"),
  20818. weight: math.unit(325, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/windera/front.svg",
  20822. extra: 3180 / 2845,
  20823. bottom: 178 / 3365
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(8, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20837. {
  20838. front: {
  20839. height: math.unit(28.75, "feet"),
  20840. weight: math.unit(2000, "kg"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/sonear/front.svg",
  20844. extra: 1041.1 / 964.9,
  20845. bottom: 53.7 / 1096.6
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(28.75, "feet"),
  20853. default: true
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20859. {
  20860. side: {
  20861. height: math.unit(25.5, "feet"),
  20862. weight: math.unit(23000, "kg"),
  20863. name: "Side",
  20864. image: {
  20865. source: "./media/characters/kanara/side.svg"
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(25.5, "feet"),
  20873. default: true
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20879. {
  20880. side: {
  20881. height: math.unit(10, "feet"),
  20882. weight: math.unit(1000, "kg"),
  20883. name: "Side",
  20884. image: {
  20885. source: "./media/characters/ereus/side.svg",
  20886. extra: 1157 / 959,
  20887. bottom: 153 / 1312.5
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(10, "feet"),
  20895. default: true
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20901. {
  20902. side: {
  20903. height: math.unit(4.5, "feet"),
  20904. weight: math.unit(500, "lb"),
  20905. name: "Side",
  20906. image: {
  20907. source: "./media/characters/e-ter/side.svg",
  20908. extra: 1550 / 1248,
  20909. bottom: 146 / 1694
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Normal",
  20916. height: math.unit(4.5, "feet"),
  20917. default: true
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20923. {
  20924. side: {
  20925. height: math.unit(9.7, "feet"),
  20926. weight: math.unit(4000, "kg"),
  20927. name: "Side",
  20928. image: {
  20929. source: "./media/characters/yamie/side.svg"
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(9.7, "feet"),
  20937. default: true
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(50, "feet"),
  20946. weight: math.unit(50000, "kg"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/anders/front.svg",
  20950. extra: 570 / 539,
  20951. bottom: 14.7 / 586.7
  20952. }
  20953. },
  20954. },
  20955. [
  20956. {
  20957. name: "Large",
  20958. height: math.unit(50, "feet")
  20959. },
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(2000, "feet"),
  20963. default: true
  20964. },
  20965. {
  20966. name: "Megamacro",
  20967. height: math.unit(12, "miles")
  20968. },
  20969. ]
  20970. ))
  20971. characterMakers.push(() => makeCharacter(
  20972. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20973. {
  20974. front: {
  20975. height: math.unit(7 + 2 / 12, "feet"),
  20976. weight: math.unit(300, "lb"),
  20977. name: "Front",
  20978. image: {
  20979. source: "./media/characters/reban/front.svg",
  20980. extra: 516 / 487,
  20981. bottom: 42.82 / 558.356
  20982. }
  20983. },
  20984. dick: {
  20985. height: math.unit(7 / 5, "feet"),
  20986. name: "Dick",
  20987. image: {
  20988. source: "./media/characters/reban/dick.svg"
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Natural Height",
  20995. height: math.unit(7 + 2 / 12, "feet")
  20996. },
  20997. {
  20998. name: "Macro",
  20999. height: math.unit(500, "feet"),
  21000. default: true
  21001. },
  21002. {
  21003. name: "Canon Height",
  21004. height: math.unit(50, "AU")
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(6, "feet"),
  21013. weight: math.unit(150, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/terrance-keayes/front.svg",
  21017. extra: 1.005,
  21018. bottom: 151 / 1615
  21019. }
  21020. },
  21021. side: {
  21022. height: math.unit(6, "feet"),
  21023. weight: math.unit(150, "lb"),
  21024. name: "Side",
  21025. image: {
  21026. source: "./media/characters/terrance-keayes/side.svg",
  21027. extra: 1.005,
  21028. bottom: 129.4 / 1544
  21029. }
  21030. },
  21031. back: {
  21032. height: math.unit(6, "feet"),
  21033. weight: math.unit(150, "lb"),
  21034. name: "Back",
  21035. image: {
  21036. source: "./media/characters/terrance-keayes/back.svg",
  21037. extra: 1.005,
  21038. bottom: 58.4 / 1557.3
  21039. }
  21040. },
  21041. dick: {
  21042. height: math.unit(6 * 0.208, "feet"),
  21043. name: "Dick",
  21044. image: {
  21045. source: "./media/characters/terrance-keayes/dick.svg"
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Canon Height",
  21052. height: math.unit(35, "miles"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21059. {
  21060. front: {
  21061. height: math.unit(6, "feet"),
  21062. weight: math.unit(150, "lb"),
  21063. name: "Front",
  21064. image: {
  21065. source: "./media/characters/ofelia/front.svg",
  21066. extra: 546 / 541,
  21067. bottom: 39 / 583
  21068. }
  21069. },
  21070. back: {
  21071. height: math.unit(6, "feet"),
  21072. weight: math.unit(150, "lb"),
  21073. name: "Back",
  21074. image: {
  21075. source: "./media/characters/ofelia/back.svg",
  21076. extra: 564 / 559.5,
  21077. bottom: 8.69 / 573.02
  21078. }
  21079. },
  21080. maw: {
  21081. height: math.unit(1, "feet"),
  21082. name: "Maw",
  21083. image: {
  21084. source: "./media/characters/ofelia/maw.svg"
  21085. }
  21086. },
  21087. foot: {
  21088. height: math.unit(1.949, "feet"),
  21089. name: "Foot",
  21090. image: {
  21091. source: "./media/characters/ofelia/foot.svg"
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Canon Height",
  21098. height: math.unit(2000, "miles"),
  21099. default: true
  21100. },
  21101. ]
  21102. ))
  21103. characterMakers.push(() => makeCharacter(
  21104. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21105. {
  21106. front: {
  21107. height: math.unit(6, "feet"),
  21108. weight: math.unit(150, "lb"),
  21109. name: "Front",
  21110. image: {
  21111. source: "./media/characters/samuel/front.svg",
  21112. extra: 265 / 258,
  21113. bottom: 2 / 266.1566
  21114. }
  21115. },
  21116. },
  21117. [
  21118. {
  21119. name: "Macro",
  21120. height: math.unit(100, "feet"),
  21121. default: true
  21122. },
  21123. {
  21124. name: "Full Size",
  21125. height: math.unit(1000, "miles")
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21131. {
  21132. front: {
  21133. height: math.unit(6, "feet"),
  21134. weight: math.unit(300, "lb"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/beishir-kiel/front.svg",
  21138. extra: 569 / 547,
  21139. bottom: 41.9 / 609
  21140. }
  21141. },
  21142. maw: {
  21143. height: math.unit(6 * 0.202, "feet"),
  21144. name: "Maw",
  21145. image: {
  21146. source: "./media/characters/beishir-kiel/maw.svg"
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Macro",
  21153. height: math.unit(300, "feet"),
  21154. default: true
  21155. },
  21156. ]
  21157. ))
  21158. characterMakers.push(() => makeCharacter(
  21159. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21160. {
  21161. front: {
  21162. height: math.unit(5 + 8 / 12, "feet"),
  21163. weight: math.unit(120, "lb"),
  21164. name: "Front",
  21165. image: {
  21166. source: "./media/characters/logan-grey/front.svg",
  21167. extra: 2539 / 2393,
  21168. bottom: 97.6 / 2636.37
  21169. }
  21170. },
  21171. frontAlt: {
  21172. height: math.unit(5 + 8 / 12, "feet"),
  21173. weight: math.unit(120, "lb"),
  21174. name: "Front (Alt)",
  21175. image: {
  21176. source: "./media/characters/logan-grey/front-alt.svg",
  21177. extra: 958 / 893,
  21178. bottom: 15 / 970.768
  21179. }
  21180. },
  21181. back: {
  21182. height: math.unit(5 + 8 / 12, "feet"),
  21183. weight: math.unit(120, "lb"),
  21184. name: "Back",
  21185. image: {
  21186. source: "./media/characters/logan-grey/back.svg",
  21187. extra: 958 / 893,
  21188. bottom: 2.1881 / 970.9788
  21189. }
  21190. },
  21191. dick: {
  21192. height: math.unit(1.437, "feet"),
  21193. name: "Dick",
  21194. image: {
  21195. source: "./media/characters/logan-grey/dick.svg"
  21196. }
  21197. },
  21198. },
  21199. [
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(5 + 8 / 12, "feet")
  21203. },
  21204. {
  21205. name: "The 500 Foot Femboy",
  21206. height: math.unit(500, "feet"),
  21207. default: true
  21208. },
  21209. {
  21210. name: "Megmacro",
  21211. height: math.unit(20, "miles")
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(8 + 2 / 12, "feet"),
  21220. weight: math.unit(275, "lb"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/draganta/front.svg",
  21224. extra: 1177 / 1135,
  21225. bottom: 33.46 / 1212.1
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Normal",
  21232. height: math.unit(8 + 6 / 12, "feet"),
  21233. default: true
  21234. },
  21235. {
  21236. name: "Macro",
  21237. height: math.unit(150, "feet")
  21238. },
  21239. {
  21240. name: "Megamacro",
  21241. height: math.unit(1000, "miles")
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(1.72, "m"),
  21250. weight: math.unit(80, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/voski/front.svg",
  21254. extra: 2076.22 / 2022.4,
  21255. bottom: 102.7 / 2177.3866
  21256. }
  21257. },
  21258. frontNsfw: {
  21259. height: math.unit(1.72, "m"),
  21260. weight: math.unit(80, "lb"),
  21261. name: "Front (NSFW)",
  21262. image: {
  21263. source: "./media/characters/voski/front-nsfw.svg",
  21264. extra: 2076.22 / 2022.4,
  21265. bottom: 102.7 / 2177.3866
  21266. }
  21267. },
  21268. back: {
  21269. height: math.unit(1.72, "m"),
  21270. weight: math.unit(80, "lb"),
  21271. name: "Back",
  21272. image: {
  21273. source: "./media/characters/voski/back.svg",
  21274. extra: 2104 / 2051,
  21275. bottom: 10.45 / 2113.63
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(1.72, "m")
  21283. },
  21284. {
  21285. name: "Macro",
  21286. height: math.unit(55, "m"),
  21287. default: true
  21288. },
  21289. {
  21290. name: "Macro+",
  21291. height: math.unit(300, "m")
  21292. },
  21293. {
  21294. name: "Macro++",
  21295. height: math.unit(700, "m")
  21296. },
  21297. {
  21298. name: "Macro+++",
  21299. height: math.unit(4500, "m")
  21300. },
  21301. {
  21302. name: "Macro++++",
  21303. height: math.unit(45, "km")
  21304. },
  21305. {
  21306. name: "Macro+++++",
  21307. height: math.unit(1220, "km")
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21313. {
  21314. front: {
  21315. height: math.unit(2.3, "m"),
  21316. weight: math.unit(304, "kg"),
  21317. name: "Front",
  21318. image: {
  21319. source: "./media/characters/icowom-lee/front.svg",
  21320. extra: 985 / 955,
  21321. bottom: 25.4 / 1012
  21322. }
  21323. },
  21324. fronttentacles: {
  21325. height: math.unit(2.3, "m"),
  21326. weight: math.unit(304, "kg"),
  21327. name: "Front-tentacles",
  21328. image: {
  21329. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21330. extra: 985 / 955,
  21331. bottom: 25.4 / 1012
  21332. }
  21333. },
  21334. back: {
  21335. height: math.unit(2.3, "m"),
  21336. weight: math.unit(304, "kg"),
  21337. name: "Back",
  21338. image: {
  21339. source: "./media/characters/icowom-lee/back.svg",
  21340. extra: 975 / 954,
  21341. bottom: 9.5 / 985
  21342. }
  21343. },
  21344. backtentacles: {
  21345. height: math.unit(2.3, "m"),
  21346. weight: math.unit(304, "kg"),
  21347. name: "Back-tentacles",
  21348. image: {
  21349. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21350. extra: 975 / 954,
  21351. bottom: 9.5 / 985
  21352. }
  21353. },
  21354. frontDressed: {
  21355. height: math.unit(2.3, "m"),
  21356. weight: math.unit(304, "kg"),
  21357. name: "Front (Dressed)",
  21358. image: {
  21359. source: "./media/characters/icowom-lee/front-dressed.svg",
  21360. extra: 3076 / 2933,
  21361. bottom: 51.4 / 3125.1889
  21362. }
  21363. },
  21364. rump: {
  21365. height: math.unit(0.776, "meters"),
  21366. name: "Rump",
  21367. image: {
  21368. source: "./media/characters/icowom-lee/rump.svg"
  21369. }
  21370. },
  21371. genitals: {
  21372. height: math.unit(0.78, "meters"),
  21373. name: "Genitals",
  21374. image: {
  21375. source: "./media/characters/icowom-lee/genitals.svg"
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(2.3, "meters"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Macro",
  21387. height: math.unit(94, "meters"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(22, "meters"),
  21397. weight: math.unit(21000, "kg"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/shock-diamond/front.svg",
  21401. extra: 2204 / 2053,
  21402. bottom: 65 / 2239.47
  21403. }
  21404. },
  21405. frontNude: {
  21406. height: math.unit(22, "meters"),
  21407. weight: math.unit(21000, "kg"),
  21408. name: "Front (Nude)",
  21409. image: {
  21410. source: "./media/characters/shock-diamond/front-nude.svg",
  21411. extra: 2514 / 2285,
  21412. bottom: 13 / 2527.56
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Normal",
  21419. height: math.unit(3, "meters")
  21420. },
  21421. {
  21422. name: "Macro",
  21423. height: math.unit(22, "meters"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(5 + 4 / 12, "feet"),
  21433. weight: math.unit(120, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/rory/front.svg",
  21437. extra: 589 / 556,
  21438. bottom: 45.7 / 635.76
  21439. }
  21440. },
  21441. frontNude: {
  21442. height: math.unit(5 + 4 / 12, "feet"),
  21443. weight: math.unit(120, "lb"),
  21444. name: "Front (Nude)",
  21445. image: {
  21446. source: "./media/characters/rory/front-nude.svg",
  21447. extra: 589 / 556,
  21448. bottom: 45.7 / 635.76
  21449. }
  21450. },
  21451. side: {
  21452. height: math.unit(5 + 4 / 12, "feet"),
  21453. weight: math.unit(120, "lb"),
  21454. name: "Side",
  21455. image: {
  21456. source: "./media/characters/rory/side.svg",
  21457. extra: 597 / 564,
  21458. bottom: 55 / 653
  21459. }
  21460. },
  21461. back: {
  21462. height: math.unit(5 + 4 / 12, "feet"),
  21463. weight: math.unit(120, "lb"),
  21464. name: "Back",
  21465. image: {
  21466. source: "./media/characters/rory/back.svg",
  21467. extra: 620 / 585,
  21468. bottom: 8.86 / 630.43
  21469. }
  21470. },
  21471. dick: {
  21472. height: math.unit(0.86, "feet"),
  21473. name: "Dick",
  21474. image: {
  21475. source: "./media/characters/rory/dick.svg"
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(5 + 4 / 12, "feet"),
  21483. default: true
  21484. },
  21485. {
  21486. name: "Macro",
  21487. height: math.unit(100, "feet")
  21488. },
  21489. {
  21490. name: "Macro+",
  21491. height: math.unit(140, "feet")
  21492. },
  21493. {
  21494. name: "Macro++",
  21495. height: math.unit(300, "feet")
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21501. {
  21502. front: {
  21503. height: math.unit(5 + 9 / 12, "feet"),
  21504. weight: math.unit(190, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/sprisk/front.svg",
  21508. extra: 1225 / 1180,
  21509. bottom: 42.7 / 1266.4
  21510. }
  21511. },
  21512. frontNsfw: {
  21513. height: math.unit(5 + 9 / 12, "feet"),
  21514. weight: math.unit(190, "lb"),
  21515. name: "Front (NSFW)",
  21516. image: {
  21517. source: "./media/characters/sprisk/front-nsfw.svg",
  21518. extra: 1225 / 1180,
  21519. bottom: 42.7 / 1266.4
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(5 + 9 / 12, "feet"),
  21524. weight: math.unit(190, "lb"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/sprisk/back.svg",
  21528. extra: 1247 / 1200,
  21529. bottom: 5.6 / 1253.04
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Tiny",
  21536. height: math.unit(2, "inches")
  21537. },
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(5 + 9 / 12, "feet"),
  21541. default: true
  21542. },
  21543. {
  21544. name: "Mini Macro",
  21545. height: math.unit(18, "feet")
  21546. },
  21547. {
  21548. name: "Macro",
  21549. height: math.unit(100, "feet")
  21550. },
  21551. {
  21552. name: "MACRO",
  21553. height: math.unit(50, "miles")
  21554. },
  21555. {
  21556. name: "M A C R O",
  21557. height: math.unit(300, "miles")
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21563. {
  21564. side: {
  21565. height: math.unit(15.6, "meters"),
  21566. weight: math.unit(700000, "kg"),
  21567. name: "Side",
  21568. image: {
  21569. source: "./media/characters/bunsen/side.svg",
  21570. extra: 1644 / 358
  21571. }
  21572. },
  21573. foot: {
  21574. height: math.unit(1.611 * 1644 / 358, "meter"),
  21575. name: "Foot",
  21576. image: {
  21577. source: "./media/characters/bunsen/foot.svg"
  21578. }
  21579. },
  21580. },
  21581. [
  21582. {
  21583. name: "Small",
  21584. height: math.unit(10, "feet")
  21585. },
  21586. {
  21587. name: "Normal",
  21588. height: math.unit(15.6, "meters"),
  21589. default: true
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21595. {
  21596. front: {
  21597. height: math.unit(4 + 11 / 12, "feet"),
  21598. weight: math.unit(140, "lb"),
  21599. name: "Front",
  21600. image: {
  21601. source: "./media/characters/sesh/front.svg",
  21602. extra: 3420 / 3231,
  21603. bottom: 72 / 3949.5
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Normal",
  21610. height: math.unit(4 + 11 / 12, "feet")
  21611. },
  21612. {
  21613. name: "Grown",
  21614. height: math.unit(15, "feet"),
  21615. default: true
  21616. },
  21617. {
  21618. name: "Macro",
  21619. height: math.unit(1500, "feet")
  21620. },
  21621. {
  21622. name: "Megamacro",
  21623. height: math.unit(30, "miles")
  21624. },
  21625. {
  21626. name: "Continental",
  21627. height: math.unit(3000, "miles")
  21628. },
  21629. {
  21630. name: "Gravity Mass",
  21631. height: math.unit(300000, "miles")
  21632. },
  21633. {
  21634. name: "Planet Buster",
  21635. height: math.unit(30000000, "miles")
  21636. },
  21637. {
  21638. name: "Big",
  21639. height: math.unit(3000000000, "miles")
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21645. {
  21646. front: {
  21647. height: math.unit(9, "feet"),
  21648. weight: math.unit(350, "lb"),
  21649. name: "Front",
  21650. image: {
  21651. source: "./media/characters/pepper/front.svg",
  21652. extra: 1448 / 1312,
  21653. bottom: 9.4 / 1457.88
  21654. }
  21655. },
  21656. back: {
  21657. height: math.unit(9, "feet"),
  21658. weight: math.unit(350, "lb"),
  21659. name: "Back",
  21660. image: {
  21661. source: "./media/characters/pepper/back.svg",
  21662. extra: 1423 / 1300,
  21663. bottom: 4.6 / 1429
  21664. }
  21665. },
  21666. maw: {
  21667. height: math.unit(0.932, "feet"),
  21668. name: "Maw",
  21669. image: {
  21670. source: "./media/characters/pepper/maw.svg"
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(9, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(6, "feet"),
  21687. weight: math.unit(150, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/maelstrom/front.svg",
  21691. extra: 2100 / 1883,
  21692. bottom: 94 / 2196.7
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Less Kaiju",
  21699. height: math.unit(200, "feet")
  21700. },
  21701. {
  21702. name: "Kaiju",
  21703. height: math.unit(400, "feet"),
  21704. default: true
  21705. },
  21706. {
  21707. name: "Kaiju-er",
  21708. height: math.unit(600, "feet")
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21714. {
  21715. front: {
  21716. height: math.unit(6 + 5 / 12, "feet"),
  21717. weight: math.unit(180, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/lexir/front.svg",
  21721. extra: 180 / 172,
  21722. bottom: 12 / 192
  21723. }
  21724. },
  21725. back: {
  21726. height: math.unit(6 + 5 / 12, "feet"),
  21727. weight: math.unit(180, "lb"),
  21728. name: "Back",
  21729. image: {
  21730. source: "./media/characters/lexir/back.svg",
  21731. extra: 183.84 / 175.5,
  21732. bottom: 3.1 / 187
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Very Smal",
  21739. height: math.unit(1, "nm")
  21740. },
  21741. {
  21742. name: "Normal",
  21743. height: math.unit(6 + 5 / 12, "feet"),
  21744. default: true
  21745. },
  21746. {
  21747. name: "Macro",
  21748. height: math.unit(1, "mile")
  21749. },
  21750. {
  21751. name: "Megamacro",
  21752. height: math.unit(50, "miles")
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21758. {
  21759. front: {
  21760. height: math.unit(1.5, "meters"),
  21761. weight: math.unit(100, "lb"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/maksio/front.svg",
  21765. extra: 1549 / 1531,
  21766. bottom: 123.7 / 1674.5429
  21767. }
  21768. },
  21769. back: {
  21770. height: math.unit(1.5, "meters"),
  21771. weight: math.unit(100, "lb"),
  21772. name: "Back",
  21773. image: {
  21774. source: "./media/characters/maksio/back.svg",
  21775. extra: 1541 / 1509,
  21776. bottom: 97 / 1639
  21777. }
  21778. },
  21779. hand: {
  21780. height: math.unit(0.621, "feet"),
  21781. name: "Hand",
  21782. image: {
  21783. source: "./media/characters/maksio/hand.svg"
  21784. }
  21785. },
  21786. foot: {
  21787. height: math.unit(1.611, "feet"),
  21788. name: "Foot",
  21789. image: {
  21790. source: "./media/characters/maksio/foot.svg"
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Shrunken",
  21797. height: math.unit(10, "cm")
  21798. },
  21799. {
  21800. name: "Normal",
  21801. height: math.unit(150, "cm"),
  21802. default: true
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21808. {
  21809. front: {
  21810. height: math.unit(100, "feet"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/erza-bear/front.svg",
  21814. extra: 2449 / 2390,
  21815. bottom: 46 / 2494
  21816. }
  21817. },
  21818. back: {
  21819. height: math.unit(100, "feet"),
  21820. name: "Back",
  21821. image: {
  21822. source: "./media/characters/erza-bear/back.svg",
  21823. extra: 2489 / 2430,
  21824. bottom: 85.4 / 2480
  21825. }
  21826. },
  21827. tail: {
  21828. height: math.unit(42, "feet"),
  21829. name: "Tail",
  21830. image: {
  21831. source: "./media/characters/erza-bear/tail.svg"
  21832. }
  21833. },
  21834. tongue: {
  21835. height: math.unit(8, "feet"),
  21836. name: "Tongue",
  21837. image: {
  21838. source: "./media/characters/erza-bear/tongue.svg"
  21839. }
  21840. },
  21841. dick: {
  21842. height: math.unit(10.5, "feet"),
  21843. name: "Dick",
  21844. image: {
  21845. source: "./media/characters/erza-bear/dick.svg"
  21846. }
  21847. },
  21848. dickVertical: {
  21849. height: math.unit(16.9, "feet"),
  21850. name: "Dick (Vertical)",
  21851. image: {
  21852. source: "./media/characters/erza-bear/dick-vertical.svg"
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Macro",
  21859. height: math.unit(100, "feet"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(172, "cm"),
  21869. weight: math.unit(73, "kg"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/violet-flor/front.svg",
  21873. extra: 1530 / 1442,
  21874. bottom: 61.9 / 1588.8
  21875. }
  21876. },
  21877. back: {
  21878. height: math.unit(180, "cm"),
  21879. weight: math.unit(73, "kg"),
  21880. name: "Back",
  21881. image: {
  21882. source: "./media/characters/violet-flor/back.svg",
  21883. extra: 1692 / 1630,
  21884. bottom: 20 / 1712
  21885. }
  21886. },
  21887. },
  21888. [
  21889. {
  21890. name: "Normal",
  21891. height: math.unit(172, "cm"),
  21892. default: true
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21898. {
  21899. front: {
  21900. height: math.unit(6, "feet"),
  21901. weight: math.unit(220, "lb"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/lynn-rhea/front.svg",
  21905. extra: 310 / 273
  21906. }
  21907. },
  21908. back: {
  21909. height: math.unit(6, "feet"),
  21910. weight: math.unit(220, "lb"),
  21911. name: "Back",
  21912. image: {
  21913. source: "./media/characters/lynn-rhea/back.svg",
  21914. extra: 310 / 273
  21915. }
  21916. },
  21917. dicks: {
  21918. height: math.unit(0.9, "feet"),
  21919. name: "Dicks",
  21920. image: {
  21921. source: "./media/characters/lynn-rhea/dicks.svg"
  21922. }
  21923. },
  21924. slit: {
  21925. height: math.unit(0.4, "feet"),
  21926. name: "Slit",
  21927. image: {
  21928. source: "./media/characters/lynn-rhea/slit.svg"
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Micro",
  21935. height: math.unit(1, "inch")
  21936. },
  21937. {
  21938. name: "Macro",
  21939. height: math.unit(60, "feet"),
  21940. default: true
  21941. },
  21942. {
  21943. name: "Megamacro",
  21944. height: math.unit(2, "miles")
  21945. },
  21946. {
  21947. name: "Gigamacro",
  21948. height: math.unit(3, "earths")
  21949. },
  21950. {
  21951. name: "Galactic",
  21952. height: math.unit(0.8, "galaxies")
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21958. {
  21959. front: {
  21960. height: math.unit(1600, "feet"),
  21961. weight: math.unit(85758785169, "kg"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/valathos/front.svg",
  21965. extra: 1451 / 1339
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Macro",
  21972. height: math.unit(1600, "feet"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21979. {
  21980. front: {
  21981. height: math.unit(7 + 5 / 12, "feet"),
  21982. weight: math.unit(300, "lb"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/azula/front.svg",
  21986. extra: 3208 / 2880,
  21987. bottom: 80.2 / 3277
  21988. }
  21989. },
  21990. back: {
  21991. height: math.unit(7 + 5 / 12, "feet"),
  21992. weight: math.unit(300, "lb"),
  21993. name: "Back",
  21994. image: {
  21995. source: "./media/characters/azula/back.svg",
  21996. extra: 3169 / 2822,
  21997. bottom: 150.6 / 3321
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(7 + 5 / 12, "feet"),
  22005. default: true
  22006. },
  22007. {
  22008. name: "Big",
  22009. height: math.unit(20, "feet")
  22010. },
  22011. ]
  22012. ))
  22013. characterMakers.push(() => makeCharacter(
  22014. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22015. {
  22016. front: {
  22017. height: math.unit(5 + 1 / 12, "feet"),
  22018. weight: math.unit(110, "lb"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/rupert/front.svg",
  22022. extra: 1549 / 1495,
  22023. bottom: 54.2 / 1604.4
  22024. }
  22025. },
  22026. },
  22027. [
  22028. {
  22029. name: "Normal",
  22030. height: math.unit(5 + 1 / 12, "feet"),
  22031. default: true
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22037. {
  22038. front: {
  22039. height: math.unit(8 + 4 / 12, "feet"),
  22040. weight: math.unit(350, "lb"),
  22041. name: "Front",
  22042. image: {
  22043. source: "./media/characters/sheera-castellar/front.svg",
  22044. extra: 1957 / 1894,
  22045. bottom: 26.97 / 1975.017
  22046. }
  22047. },
  22048. side: {
  22049. height: math.unit(8 + 4 / 12, "feet"),
  22050. weight: math.unit(350, "lb"),
  22051. name: "Side",
  22052. image: {
  22053. source: "./media/characters/sheera-castellar/side.svg",
  22054. extra: 1957 / 1894
  22055. }
  22056. },
  22057. back: {
  22058. height: math.unit(8 + 4 / 12, "feet"),
  22059. weight: math.unit(350, "lb"),
  22060. name: "Back",
  22061. image: {
  22062. source: "./media/characters/sheera-castellar/back.svg",
  22063. extra: 1957 / 1894
  22064. }
  22065. },
  22066. angled: {
  22067. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22068. weight: math.unit(350, "lb"),
  22069. name: "Angled",
  22070. image: {
  22071. source: "./media/characters/sheera-castellar/angled.svg",
  22072. extra: 1807 / 1707,
  22073. bottom: 68 / 1875
  22074. }
  22075. },
  22076. genitals: {
  22077. height: math.unit(2.2, "feet"),
  22078. name: "Genitals",
  22079. image: {
  22080. source: "./media/characters/sheera-castellar/genitals.svg"
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Normal",
  22087. height: math.unit(8 + 4 / 12, "feet")
  22088. },
  22089. {
  22090. name: "Macro",
  22091. height: math.unit(150, "feet"),
  22092. default: true
  22093. },
  22094. {
  22095. name: "Macro+",
  22096. height: math.unit(800, "feet")
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22102. {
  22103. front: {
  22104. height: math.unit(6, "feet"),
  22105. weight: math.unit(150, "lb"),
  22106. name: "Front",
  22107. image: {
  22108. source: "./media/characters/jaipur/front.svg",
  22109. extra: 3860 / 3731,
  22110. bottom: 287 / 4140
  22111. }
  22112. },
  22113. back: {
  22114. height: math.unit(6, "feet"),
  22115. weight: math.unit(150, "lb"),
  22116. name: "Back",
  22117. image: {
  22118. source: "./media/characters/jaipur/back.svg",
  22119. extra: 4060 / 3930,
  22120. bottom: 151 / 4200
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(1.85, "meters"),
  22128. default: true
  22129. },
  22130. {
  22131. name: "Macro",
  22132. height: math.unit(150, "meters")
  22133. },
  22134. {
  22135. name: "Macro+",
  22136. height: math.unit(0.5, "miles")
  22137. },
  22138. {
  22139. name: "Macro++",
  22140. height: math.unit(2.5, "miles")
  22141. },
  22142. {
  22143. name: "Macro+++",
  22144. height: math.unit(12, "miles")
  22145. },
  22146. {
  22147. name: "Macro++++",
  22148. height: math.unit(120, "miles")
  22149. },
  22150. {
  22151. name: "Macro+++++",
  22152. height: math.unit(1200, "miles")
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22158. {
  22159. front: {
  22160. height: math.unit(6, "feet"),
  22161. weight: math.unit(150, "lb"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/sheila-wolf/front.svg",
  22165. extra: 1931 / 1808,
  22166. bottom: 29.5 / 1960
  22167. }
  22168. },
  22169. dick: {
  22170. height: math.unit(1.464, "feet"),
  22171. name: "Dick",
  22172. image: {
  22173. source: "./media/characters/sheila-wolf/dick.svg"
  22174. }
  22175. },
  22176. muzzle: {
  22177. height: math.unit(0.513, "feet"),
  22178. name: "Muzzle",
  22179. image: {
  22180. source: "./media/characters/sheila-wolf/muzzle.svg"
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Macro",
  22187. height: math.unit(70, "feet"),
  22188. default: true
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22194. {
  22195. front: {
  22196. height: math.unit(32, "meters"),
  22197. weight: math.unit(300000, "kg"),
  22198. name: "Front",
  22199. image: {
  22200. source: "./media/characters/almor/front.svg",
  22201. extra: 1408 / 1322,
  22202. bottom: 94.6 / 1506.5
  22203. }
  22204. },
  22205. },
  22206. [
  22207. {
  22208. name: "Macro",
  22209. height: math.unit(32, "meters"),
  22210. default: true
  22211. },
  22212. ]
  22213. ))
  22214. characterMakers.push(() => makeCharacter(
  22215. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22216. {
  22217. front: {
  22218. height: math.unit(7, "feet"),
  22219. weight: math.unit(200, "lb"),
  22220. name: "Front",
  22221. image: {
  22222. source: "./media/characters/silver/front.svg",
  22223. extra: 472.1 / 450.5,
  22224. bottom: 26.5 / 499.424
  22225. }
  22226. },
  22227. },
  22228. [
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(7, "feet"),
  22232. default: true
  22233. },
  22234. {
  22235. name: "Macro",
  22236. height: math.unit(800, "feet")
  22237. },
  22238. {
  22239. name: "Megamacro",
  22240. height: math.unit(250, "miles")
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22246. {
  22247. front: {
  22248. height: math.unit(6, "feet"),
  22249. weight: math.unit(150, "lb"),
  22250. name: "Front",
  22251. image: {
  22252. source: "./media/characters/pliskin/front.svg",
  22253. extra: 1469 / 1359,
  22254. bottom: 70 / 1540
  22255. }
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Micro",
  22261. height: math.unit(3, "inches")
  22262. },
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(5 + 11 / 12, "feet"),
  22266. default: true
  22267. },
  22268. {
  22269. name: "Macro",
  22270. height: math.unit(120, "feet")
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(6, "feet"),
  22279. weight: math.unit(150, "lb"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/sammy/front.svg",
  22283. extra: 1193 / 1089,
  22284. bottom: 30.5 / 1226
  22285. }
  22286. },
  22287. },
  22288. [
  22289. {
  22290. name: "Macro",
  22291. height: math.unit(1700, "feet"),
  22292. default: true
  22293. },
  22294. {
  22295. name: "Examacro",
  22296. height: math.unit(2.5e9, "lightyears")
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(21, "meters"),
  22305. weight: math.unit(12, "tonnes"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/kuru/front.svg",
  22309. extra: 4301 / 3785,
  22310. bottom: 371.3 / 4691
  22311. }
  22312. },
  22313. },
  22314. [
  22315. {
  22316. name: "Macro",
  22317. height: math.unit(21, "meters"),
  22318. default: true
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(23, "meters"),
  22327. weight: math.unit(12.2, "tonnes"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/rakka/front.svg",
  22331. extra: 4670 / 4169,
  22332. bottom: 301 / 4968.7
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Macro",
  22339. height: math.unit(23, "meters"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(6, "feet"),
  22349. weight: math.unit(150, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/rhys-feline/front.svg",
  22353. extra: 2488 / 2308,
  22354. bottom: 35.67 / 2519.19
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Really Small",
  22361. height: math.unit(1, "nm")
  22362. },
  22363. {
  22364. name: "Micro",
  22365. height: math.unit(4, "inches")
  22366. },
  22367. {
  22368. name: "Normal",
  22369. height: math.unit(4 + 10 / 12, "feet"),
  22370. default: true
  22371. },
  22372. {
  22373. name: "Macro",
  22374. height: math.unit(100, "feet")
  22375. },
  22376. {
  22377. name: "Megamacto",
  22378. height: math.unit(50, "miles")
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22384. {
  22385. side: {
  22386. height: math.unit(30, "feet"),
  22387. weight: math.unit(35000, "kg"),
  22388. name: "Side",
  22389. image: {
  22390. source: "./media/characters/alydar/side.svg",
  22391. extra: 234 / 222,
  22392. bottom: 6.5 / 241
  22393. }
  22394. },
  22395. front: {
  22396. height: math.unit(30, "feet"),
  22397. weight: math.unit(35000, "kg"),
  22398. name: "Front",
  22399. image: {
  22400. source: "./media/characters/alydar/front.svg",
  22401. extra: 223.37 / 210.2,
  22402. bottom: 22.3 / 246.76
  22403. }
  22404. },
  22405. top: {
  22406. height: math.unit(64.54, "feet"),
  22407. weight: math.unit(35000, "kg"),
  22408. name: "Top",
  22409. image: {
  22410. source: "./media/characters/alydar/top.svg"
  22411. }
  22412. },
  22413. anthro: {
  22414. height: math.unit(30, "feet"),
  22415. weight: math.unit(9000, "kg"),
  22416. name: "Anthro",
  22417. image: {
  22418. source: "./media/characters/alydar/anthro.svg",
  22419. extra: 432 / 421,
  22420. bottom: 7.18 / 440
  22421. }
  22422. },
  22423. maw: {
  22424. height: math.unit(11.693, "feet"),
  22425. name: "Maw",
  22426. image: {
  22427. source: "./media/characters/alydar/maw.svg"
  22428. }
  22429. },
  22430. head: {
  22431. height: math.unit(11.693, "feet"),
  22432. name: "Head",
  22433. image: {
  22434. source: "./media/characters/alydar/head.svg"
  22435. }
  22436. },
  22437. headAlt: {
  22438. height: math.unit(12.861, "feet"),
  22439. name: "Head (Alt)",
  22440. image: {
  22441. source: "./media/characters/alydar/head-alt.svg"
  22442. }
  22443. },
  22444. wing: {
  22445. height: math.unit(20.712, "feet"),
  22446. name: "Wing",
  22447. image: {
  22448. source: "./media/characters/alydar/wing.svg"
  22449. }
  22450. },
  22451. wingFeather: {
  22452. height: math.unit(9.662, "feet"),
  22453. name: "Wing Feather",
  22454. image: {
  22455. source: "./media/characters/alydar/wing-feather.svg"
  22456. }
  22457. },
  22458. countourFeather: {
  22459. height: math.unit(4.154, "feet"),
  22460. name: "Contour Feather",
  22461. image: {
  22462. source: "./media/characters/alydar/contour-feather.svg"
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Diplomatic",
  22469. height: math.unit(13, "feet"),
  22470. default: true
  22471. },
  22472. {
  22473. name: "Small",
  22474. height: math.unit(30, "feet")
  22475. },
  22476. {
  22477. name: "Normal",
  22478. height: math.unit(95, "feet"),
  22479. default: true
  22480. },
  22481. {
  22482. name: "Large",
  22483. height: math.unit(285, "feet")
  22484. },
  22485. {
  22486. name: "Incomprehensible",
  22487. height: math.unit(450, "megameters")
  22488. },
  22489. ]
  22490. ))
  22491. characterMakers.push(() => makeCharacter(
  22492. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22493. {
  22494. side: {
  22495. height: math.unit(11, "feet"),
  22496. weight: math.unit(1750, "kg"),
  22497. name: "Side",
  22498. image: {
  22499. source: "./media/characters/selicia/side.svg",
  22500. extra: 440 / 396,
  22501. bottom: 24.8 / 465.979
  22502. }
  22503. },
  22504. maw: {
  22505. height: math.unit(4.665, "feet"),
  22506. name: "Maw",
  22507. image: {
  22508. source: "./media/characters/selicia/maw.svg"
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(11, "feet"),
  22516. default: true
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22522. {
  22523. side: {
  22524. height: math.unit(2 + 6 / 12, "feet"),
  22525. weight: math.unit(30, "lb"),
  22526. name: "Side",
  22527. image: {
  22528. source: "./media/characters/layla/side.svg",
  22529. extra: 244 / 188,
  22530. bottom: 18.2 / 262.1
  22531. }
  22532. },
  22533. back: {
  22534. height: math.unit(2 + 6 / 12, "feet"),
  22535. weight: math.unit(30, "lb"),
  22536. name: "Back",
  22537. image: {
  22538. source: "./media/characters/layla/back.svg",
  22539. extra: 308 / 241.5,
  22540. bottom: 8.9 / 316.8
  22541. }
  22542. },
  22543. cumming: {
  22544. height: math.unit(2 + 6 / 12, "feet"),
  22545. weight: math.unit(30, "lb"),
  22546. name: "Cumming",
  22547. image: {
  22548. source: "./media/characters/layla/cumming.svg",
  22549. extra: 342 / 279,
  22550. bottom: 595 / 938
  22551. }
  22552. },
  22553. dickFlaccid: {
  22554. height: math.unit(2.595, "feet"),
  22555. name: "Flaccid Genitals",
  22556. image: {
  22557. source: "./media/characters/layla/dick-flaccid.svg"
  22558. }
  22559. },
  22560. dickErect: {
  22561. height: math.unit(2.359, "feet"),
  22562. name: "Erect Genitals",
  22563. image: {
  22564. source: "./media/characters/layla/dick-erect.svg"
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Micro",
  22571. height: math.unit(1, "inch")
  22572. },
  22573. {
  22574. name: "Small",
  22575. height: math.unit(1, "foot")
  22576. },
  22577. {
  22578. name: "Normal",
  22579. height: math.unit(2 + 6 / 12, "feet"),
  22580. default: true
  22581. },
  22582. {
  22583. name: "Macro",
  22584. height: math.unit(200, "feet")
  22585. },
  22586. {
  22587. name: "Megamacro",
  22588. height: math.unit(1000, "miles")
  22589. },
  22590. {
  22591. name: "Planetary",
  22592. height: math.unit(8000, "miles")
  22593. },
  22594. {
  22595. name: "True Layla",
  22596. height: math.unit(200000 * 7, "multiverses")
  22597. },
  22598. ]
  22599. ))
  22600. characterMakers.push(() => makeCharacter(
  22601. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22602. {
  22603. back: {
  22604. height: math.unit(10.5, "feet"),
  22605. weight: math.unit(800, "lb"),
  22606. name: "Back",
  22607. image: {
  22608. source: "./media/characters/knox/back.svg",
  22609. extra: 1486 / 1089,
  22610. bottom: 107 / 1601.4
  22611. }
  22612. },
  22613. side: {
  22614. height: math.unit(10.5, "feet"),
  22615. weight: math.unit(800, "lb"),
  22616. name: "Side",
  22617. image: {
  22618. source: "./media/characters/knox/side.svg",
  22619. extra: 244 / 218,
  22620. bottom: 14 / 260
  22621. }
  22622. },
  22623. },
  22624. [
  22625. {
  22626. name: "Compact",
  22627. height: math.unit(10.5, "feet"),
  22628. default: true
  22629. },
  22630. {
  22631. name: "Dynamax",
  22632. height: math.unit(210, "feet")
  22633. },
  22634. {
  22635. name: "Full Macro",
  22636. height: math.unit(850, "feet")
  22637. },
  22638. ]
  22639. ))
  22640. characterMakers.push(() => makeCharacter(
  22641. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22642. {
  22643. front: {
  22644. height: math.unit(6, "feet"),
  22645. weight: math.unit(152, "lb"),
  22646. name: "Front",
  22647. image: {
  22648. source: "./media/characters/shin-pikachu/front.svg",
  22649. extra: 1574 / 1480,
  22650. bottom: 53.3 / 1626
  22651. }
  22652. },
  22653. hand: {
  22654. height: math.unit(1.055, "feet"),
  22655. name: "Hand",
  22656. image: {
  22657. source: "./media/characters/shin-pikachu/hand.svg"
  22658. }
  22659. },
  22660. foot: {
  22661. height: math.unit(1.1, "feet"),
  22662. name: "Foot",
  22663. image: {
  22664. source: "./media/characters/shin-pikachu/foot.svg"
  22665. }
  22666. },
  22667. collar: {
  22668. height: math.unit(0.386, "feet"),
  22669. name: "Collar",
  22670. image: {
  22671. source: "./media/characters/shin-pikachu/collar.svg"
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Smallest",
  22678. height: math.unit(0.5, "inches")
  22679. },
  22680. {
  22681. name: "Micro",
  22682. height: math.unit(6, "inches")
  22683. },
  22684. {
  22685. name: "Normal",
  22686. height: math.unit(6, "feet"),
  22687. default: true
  22688. },
  22689. {
  22690. name: "Macro",
  22691. height: math.unit(150, "feet")
  22692. },
  22693. ]
  22694. ))
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(28, "feet"),
  22700. weight: math.unit(10500, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/kayda/front.svg",
  22704. extra: 1536 / 1428,
  22705. bottom: 68.7 / 1603
  22706. }
  22707. },
  22708. back: {
  22709. height: math.unit(28, "feet"),
  22710. weight: math.unit(10500, "lb"),
  22711. name: "Back",
  22712. image: {
  22713. source: "./media/characters/kayda/back.svg",
  22714. extra: 1557 / 1464,
  22715. bottom: 39.5 / 1597.49
  22716. }
  22717. },
  22718. dick: {
  22719. height: math.unit(3.858, "feet"),
  22720. name: "Dick",
  22721. image: {
  22722. source: "./media/characters/kayda/dick.svg"
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Macro",
  22729. height: math.unit(28, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(10 + 11 / 12, "feet"),
  22739. weight: math.unit(1400, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/brian/front.svg",
  22743. extra: 737 / 692,
  22744. bottom: 55.4 / 785
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(10 + 11 / 12, "feet"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22758. {
  22759. front: {
  22760. height: math.unit(5 + 8 / 12, "feet"),
  22761. weight: math.unit(140, "lb"),
  22762. name: "Front",
  22763. image: {
  22764. source: "./media/characters/khemri/front.svg",
  22765. extra: 4780 / 4059,
  22766. bottom: 80.1 / 4859.25
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Micro",
  22773. height: math.unit(6, "inches")
  22774. },
  22775. {
  22776. name: "Normal",
  22777. height: math.unit(5 + 8 / 12, "feet"),
  22778. default: true
  22779. },
  22780. ]
  22781. ))
  22782. characterMakers.push(() => makeCharacter(
  22783. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22784. {
  22785. front: {
  22786. height: math.unit(13, "feet"),
  22787. weight: math.unit(1700, "lb"),
  22788. name: "Front",
  22789. image: {
  22790. source: "./media/characters/felix-braveheart/front.svg",
  22791. extra: 1222 / 1157,
  22792. bottom: 53.2 / 1280
  22793. }
  22794. },
  22795. back: {
  22796. height: math.unit(13, "feet"),
  22797. weight: math.unit(1700, "lb"),
  22798. name: "Back",
  22799. image: {
  22800. source: "./media/characters/felix-braveheart/back.svg",
  22801. extra: 1277 / 1203,
  22802. bottom: 50.2 / 1327
  22803. }
  22804. },
  22805. feral: {
  22806. height: math.unit(6, "feet"),
  22807. weight: math.unit(400, "lb"),
  22808. name: "Feral",
  22809. image: {
  22810. source: "./media/characters/felix-braveheart/feral.svg",
  22811. extra: 682 / 625,
  22812. bottom: 6.9 / 688
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Normal",
  22819. height: math.unit(13, "feet"),
  22820. default: true
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22826. {
  22827. side: {
  22828. height: math.unit(5 + 11 / 12, "feet"),
  22829. weight: math.unit(1400, "lb"),
  22830. name: "Side",
  22831. image: {
  22832. source: "./media/characters/shadow-blade/side.svg",
  22833. extra: 1726 / 1267,
  22834. bottom: 58.4 / 1785
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(5 + 11 / 12, "feet"),
  22842. default: true
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(1 + 6 / 12, "feet"),
  22851. weight: math.unit(25, "lb"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/karla-halldor/front.svg",
  22855. extra: 1459 / 1383,
  22856. bottom: 12 / 1472
  22857. }
  22858. },
  22859. },
  22860. [
  22861. {
  22862. name: "Normal",
  22863. height: math.unit(1 + 6 / 12, "feet"),
  22864. default: true
  22865. },
  22866. ]
  22867. ))
  22868. characterMakers.push(() => makeCharacter(
  22869. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22870. {
  22871. front: {
  22872. height: math.unit(6 + 2 / 12, "feet"),
  22873. weight: math.unit(160, "lb"),
  22874. name: "Front",
  22875. image: {
  22876. source: "./media/characters/ariam/front.svg",
  22877. extra: 714 / 617,
  22878. bottom: 23.4 / 737,
  22879. }
  22880. },
  22881. squatting: {
  22882. height: math.unit(4.1, "feet"),
  22883. weight: math.unit(160, "lb"),
  22884. name: "Squatting",
  22885. image: {
  22886. source: "./media/characters/ariam/squatting.svg",
  22887. extra: 2617 / 2112,
  22888. bottom: 61.2 / 2681,
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Normal",
  22895. height: math.unit(6 + 2 / 12, "feet"),
  22896. default: true
  22897. },
  22898. {
  22899. name: "Normal+",
  22900. height: math.unit(4, "meters")
  22901. },
  22902. {
  22903. name: "Macro",
  22904. height: math.unit(50, "meters")
  22905. },
  22906. {
  22907. name: "Macro+",
  22908. height: math.unit(100, "meters")
  22909. },
  22910. {
  22911. name: "Megamacro",
  22912. height: math.unit(20, "km")
  22913. },
  22914. ]
  22915. ))
  22916. characterMakers.push(() => makeCharacter(
  22917. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22918. {
  22919. front: {
  22920. height: math.unit(1.67, "meters"),
  22921. weight: math.unit(140, "lb"),
  22922. name: "Front",
  22923. image: {
  22924. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22925. extra: 438 / 410,
  22926. bottom: 0.75 / 439
  22927. }
  22928. },
  22929. },
  22930. [
  22931. {
  22932. name: "Shrunken",
  22933. height: math.unit(7.6, "cm")
  22934. },
  22935. {
  22936. name: "Human Scale",
  22937. height: math.unit(1.67, "meters")
  22938. },
  22939. {
  22940. name: "Wolxi Scale",
  22941. height: math.unit(36.7, "meters"),
  22942. default: true
  22943. },
  22944. ]
  22945. ))
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22948. {
  22949. front: {
  22950. height: math.unit(1.73, "meters"),
  22951. weight: math.unit(240, "lb"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/izue-two-mothers/front.svg",
  22955. extra: 469 / 437,
  22956. bottom: 1.24 / 470.6
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Shrunken",
  22963. height: math.unit(7.86, "cm")
  22964. },
  22965. {
  22966. name: "Human Scale",
  22967. height: math.unit(1.73, "meters")
  22968. },
  22969. {
  22970. name: "Wolxi Scale",
  22971. height: math.unit(38, "meters"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22978. {
  22979. front: {
  22980. height: math.unit(1.55, "meters"),
  22981. weight: math.unit(120, "lb"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/teeku-love-shack/front.svg",
  22985. extra: 387 / 362,
  22986. bottom: 1.51 / 388
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Shrunken",
  22993. height: math.unit(7, "cm")
  22994. },
  22995. {
  22996. name: "Human Scale",
  22997. height: math.unit(1.55, "meters")
  22998. },
  22999. {
  23000. name: "Wolxi Scale",
  23001. height: math.unit(34.1, "meters"),
  23002. default: true
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23008. {
  23009. front: {
  23010. height: math.unit(1.83, "meters"),
  23011. weight: math.unit(135, "lb"),
  23012. name: "Front",
  23013. image: {
  23014. source: "./media/characters/dejma-the-red/front.svg",
  23015. extra: 480 / 458,
  23016. bottom: 1.8 / 482
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Shrunken",
  23023. height: math.unit(8.3, "cm")
  23024. },
  23025. {
  23026. name: "Human Scale",
  23027. height: math.unit(1.83, "meters")
  23028. },
  23029. {
  23030. name: "Wolxi Scale",
  23031. height: math.unit(40, "meters"),
  23032. default: true
  23033. },
  23034. ]
  23035. ))
  23036. characterMakers.push(() => makeCharacter(
  23037. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23038. {
  23039. front: {
  23040. height: math.unit(1.78, "meters"),
  23041. weight: math.unit(65, "kg"),
  23042. name: "Front",
  23043. image: {
  23044. source: "./media/characters/aki/front.svg",
  23045. extra: 452 / 415
  23046. }
  23047. },
  23048. frontNsfw: {
  23049. height: math.unit(1.78, "meters"),
  23050. weight: math.unit(65, "kg"),
  23051. name: "Front (NSFW)",
  23052. image: {
  23053. source: "./media/characters/aki/front-nsfw.svg",
  23054. extra: 452 / 415
  23055. }
  23056. },
  23057. back: {
  23058. height: math.unit(1.78, "meters"),
  23059. weight: math.unit(65, "kg"),
  23060. name: "Back",
  23061. image: {
  23062. source: "./media/characters/aki/back.svg",
  23063. extra: 452 / 415
  23064. }
  23065. },
  23066. rump: {
  23067. height: math.unit(2.05, "feet"),
  23068. name: "Rump",
  23069. image: {
  23070. source: "./media/characters/aki/rump.svg"
  23071. }
  23072. },
  23073. dick: {
  23074. height: math.unit(0.95, "feet"),
  23075. name: "Dick",
  23076. image: {
  23077. source: "./media/characters/aki/dick.svg"
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Micro",
  23084. height: math.unit(15, "cm")
  23085. },
  23086. {
  23087. name: "Normal",
  23088. height: math.unit(178, "cm"),
  23089. default: true
  23090. },
  23091. {
  23092. name: "Macro",
  23093. height: math.unit(214, "m")
  23094. },
  23095. {
  23096. name: "Macro+",
  23097. height: math.unit(534, "m")
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(5 + 5 / 12, "feet"),
  23106. weight: math.unit(120, "lb"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/ari/front.svg",
  23110. extra: 714.5 / 682,
  23111. bottom: 8 / 722.5
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Normal",
  23118. height: math.unit(5 + 5 / 12, "feet")
  23119. },
  23120. {
  23121. name: "Macro",
  23122. height: math.unit(100, "feet"),
  23123. default: true
  23124. },
  23125. {
  23126. name: "Megamacro",
  23127. height: math.unit(100, "miles")
  23128. },
  23129. {
  23130. name: "Gigamacro",
  23131. height: math.unit(80000, "miles")
  23132. },
  23133. ]
  23134. ))
  23135. characterMakers.push(() => makeCharacter(
  23136. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23137. {
  23138. side: {
  23139. height: math.unit(9, "feet"),
  23140. weight: math.unit(400, "kg"),
  23141. name: "Side",
  23142. image: {
  23143. source: "./media/characters/bolt/side.svg",
  23144. extra: 1126 / 896,
  23145. bottom: 60 / 1187.3,
  23146. }
  23147. },
  23148. },
  23149. [
  23150. {
  23151. name: "Micro",
  23152. height: math.unit(5, "inches")
  23153. },
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(9, "feet"),
  23157. default: true
  23158. },
  23159. {
  23160. name: "Macro",
  23161. height: math.unit(700, "feet")
  23162. },
  23163. {
  23164. name: "Max Size",
  23165. height: math.unit(1.52e22, "yottameters")
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23171. {
  23172. front: {
  23173. height: math.unit(4.53, "meters"),
  23174. weight: math.unit(3, "tons"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/draekon-sylviar/front.svg",
  23178. extra: 1228 / 1068,
  23179. bottom: 41 / 1270
  23180. }
  23181. },
  23182. tail: {
  23183. height: math.unit(1.772, "meter"),
  23184. name: "Tail",
  23185. image: {
  23186. source: "./media/characters/draekon-sylviar/tail.svg"
  23187. }
  23188. },
  23189. head: {
  23190. height: math.unit(1.331, "meter"),
  23191. name: "Head",
  23192. image: {
  23193. source: "./media/characters/draekon-sylviar/head.svg"
  23194. }
  23195. },
  23196. hand: {
  23197. height: math.unit(0.564, "meter"),
  23198. name: "Hand",
  23199. image: {
  23200. source: "./media/characters/draekon-sylviar/hand.svg"
  23201. }
  23202. },
  23203. foot: {
  23204. height: math.unit(0.621, "meter"),
  23205. name: "Foot",
  23206. image: {
  23207. source: "./media/characters/draekon-sylviar/foot.svg",
  23208. bottom: 32 / 324
  23209. }
  23210. },
  23211. dick: {
  23212. height: math.unit(61, "cm"),
  23213. name: "Dick",
  23214. image: {
  23215. source: "./media/characters/draekon-sylviar/dick.svg"
  23216. }
  23217. },
  23218. dickseparated: {
  23219. height: math.unit(61, "cm"),
  23220. name: "Dick-separated",
  23221. image: {
  23222. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Small",
  23229. height: math.unit(4.53 / 2, "meters"),
  23230. default: true
  23231. },
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(4.53, "meters"),
  23235. default: true
  23236. },
  23237. {
  23238. name: "Large",
  23239. height: math.unit(4.53 * 2, "meters"),
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23245. {
  23246. front: {
  23247. height: math.unit(6 + 2 / 12, "feet"),
  23248. weight: math.unit(180, "lb"),
  23249. name: "Front",
  23250. image: {
  23251. source: "./media/characters/brawler/front.svg",
  23252. extra: 3301 / 3027,
  23253. bottom: 138 / 3439
  23254. }
  23255. },
  23256. },
  23257. [
  23258. {
  23259. name: "Normal",
  23260. height: math.unit(6 + 2 / 12, "feet"),
  23261. default: true
  23262. },
  23263. ]
  23264. ))
  23265. characterMakers.push(() => makeCharacter(
  23266. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23267. {
  23268. front: {
  23269. height: math.unit(11, "feet"),
  23270. weight: math.unit(1000, "lb"),
  23271. name: "Front",
  23272. image: {
  23273. source: "./media/characters/alex/front.svg",
  23274. bottom: 44.5 / 620
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Micro",
  23281. height: math.unit(5, "inches")
  23282. },
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(11, "feet"),
  23286. default: true
  23287. },
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(9.5e9, "feet")
  23291. },
  23292. {
  23293. name: "Max Size",
  23294. height: math.unit(1.4e283, "yottameters")
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23300. {
  23301. female: {
  23302. height: math.unit(29.9, "m"),
  23303. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23304. name: "Female",
  23305. image: {
  23306. source: "./media/characters/zenari/female.svg",
  23307. extra: 3281.6 / 3217,
  23308. bottom: 72.2 / 3353
  23309. }
  23310. },
  23311. male: {
  23312. height: math.unit(27.7, "m"),
  23313. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23314. name: "Male",
  23315. image: {
  23316. source: "./media/characters/zenari/male.svg",
  23317. extra: 3008 / 2991,
  23318. bottom: 54.6 / 3069
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Macro",
  23325. height: math.unit(29.7, "meters"),
  23326. default: true
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23332. {
  23333. female: {
  23334. height: math.unit(23.8, "m"),
  23335. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23336. name: "Female",
  23337. image: {
  23338. source: "./media/characters/mactarian/female.svg",
  23339. extra: 2662 / 2569,
  23340. bottom: 73 / 2736
  23341. }
  23342. },
  23343. male: {
  23344. height: math.unit(23.8, "m"),
  23345. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23346. name: "Male",
  23347. image: {
  23348. source: "./media/characters/mactarian/male.svg",
  23349. extra: 2673 / 2600,
  23350. bottom: 76 / 2750
  23351. }
  23352. },
  23353. },
  23354. [
  23355. {
  23356. name: "Macro",
  23357. height: math.unit(23.8, "meters"),
  23358. default: true
  23359. },
  23360. ]
  23361. ))
  23362. characterMakers.push(() => makeCharacter(
  23363. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23364. {
  23365. female: {
  23366. height: math.unit(19.3, "m"),
  23367. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23368. name: "Female",
  23369. image: {
  23370. source: "./media/characters/umok/female.svg",
  23371. extra: 2186 / 2078,
  23372. bottom: 87 / 2277
  23373. }
  23374. },
  23375. male: {
  23376. height: math.unit(19.5, "m"),
  23377. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23378. name: "Male",
  23379. image: {
  23380. source: "./media/characters/umok/male.svg",
  23381. extra: 2233 / 2140,
  23382. bottom: 24.4 / 2258
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Macro",
  23389. height: math.unit(19.3, "meters"),
  23390. default: true
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23396. {
  23397. female: {
  23398. height: math.unit(26.15, "m"),
  23399. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23400. name: "Female",
  23401. image: {
  23402. source: "./media/characters/joraxian/female.svg",
  23403. extra: 2912 / 2824,
  23404. bottom: 36 / 2956
  23405. }
  23406. },
  23407. male: {
  23408. height: math.unit(25.4, "m"),
  23409. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23410. name: "Male",
  23411. image: {
  23412. source: "./media/characters/joraxian/male.svg",
  23413. extra: 2877 / 2721,
  23414. bottom: 82 / 2967
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Macro",
  23421. height: math.unit(26.15, "meters"),
  23422. default: true
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23428. {
  23429. female: {
  23430. height: math.unit(21.6, "m"),
  23431. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23432. name: "Female",
  23433. image: {
  23434. source: "./media/characters/sthara/female.svg",
  23435. extra: 2516 / 2347,
  23436. bottom: 21.5 / 2537
  23437. }
  23438. },
  23439. male: {
  23440. height: math.unit(24, "m"),
  23441. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23442. name: "Male",
  23443. image: {
  23444. source: "./media/characters/sthara/male.svg",
  23445. extra: 2732 / 2607,
  23446. bottom: 23 / 2732
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Macro",
  23453. height: math.unit(21.6, "meters"),
  23454. default: true
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23460. {
  23461. front: {
  23462. height: math.unit(6 + 4 / 12, "feet"),
  23463. weight: math.unit(175, "lb"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/luka-bryzant/front.svg",
  23467. extra: 311 / 289,
  23468. bottom: 4 / 315
  23469. }
  23470. },
  23471. back: {
  23472. height: math.unit(6 + 4 / 12, "feet"),
  23473. weight: math.unit(175, "lb"),
  23474. name: "Back",
  23475. image: {
  23476. source: "./media/characters/luka-bryzant/back.svg",
  23477. extra: 311 / 289,
  23478. bottom: 3.8 / 313.7
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Micro",
  23485. height: math.unit(10, "inches")
  23486. },
  23487. {
  23488. name: "Normal",
  23489. height: math.unit(6 + 4 / 12, "feet"),
  23490. default: true
  23491. },
  23492. {
  23493. name: "Large",
  23494. height: math.unit(12, "feet")
  23495. },
  23496. ]
  23497. ))
  23498. characterMakers.push(() => makeCharacter(
  23499. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23500. {
  23501. front: {
  23502. height: math.unit(5 + 7 / 12, "feet"),
  23503. weight: math.unit(185, "lb"),
  23504. name: "Front",
  23505. image: {
  23506. source: "./media/characters/aman-aquila/front.svg",
  23507. extra: 1013 / 976,
  23508. bottom: 45.6 / 1057
  23509. }
  23510. },
  23511. side: {
  23512. height: math.unit(5 + 7 / 12, "feet"),
  23513. weight: math.unit(185, "lb"),
  23514. name: "Side",
  23515. image: {
  23516. source: "./media/characters/aman-aquila/side.svg",
  23517. extra: 1054 / 1011,
  23518. bottom: 15 / 1070
  23519. }
  23520. },
  23521. back: {
  23522. height: math.unit(5 + 7 / 12, "feet"),
  23523. weight: math.unit(185, "lb"),
  23524. name: "Back",
  23525. image: {
  23526. source: "./media/characters/aman-aquila/back.svg",
  23527. extra: 1026 / 970,
  23528. bottom: 12 / 1039
  23529. }
  23530. },
  23531. head: {
  23532. height: math.unit(1.211, "feet"),
  23533. name: "Head",
  23534. image: {
  23535. source: "./media/characters/aman-aquila/head.svg",
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Minimicro",
  23542. height: math.unit(0.057, "inches")
  23543. },
  23544. {
  23545. name: "Micro",
  23546. height: math.unit(7, "inches")
  23547. },
  23548. {
  23549. name: "Mini",
  23550. height: math.unit(3 + 7 / 12, "feet")
  23551. },
  23552. {
  23553. name: "Normal",
  23554. height: math.unit(5 + 7 / 12, "feet"),
  23555. default: true
  23556. },
  23557. {
  23558. name: "Macro",
  23559. height: math.unit(157 + 7 / 12, "feet")
  23560. },
  23561. {
  23562. name: "Megamacro",
  23563. height: math.unit(1557 + 7 / 12, "feet")
  23564. },
  23565. {
  23566. name: "Gigamacro",
  23567. height: math.unit(15557 + 7 / 12, "feet")
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(3 + 2 / 12, "inches"),
  23576. weight: math.unit(0.3, "ounces"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/hiphae/front.svg",
  23580. extra: 1931 / 1683,
  23581. bottom: 24 / 1955
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Normal",
  23588. height: math.unit(3 + 1 / 2, "inches"),
  23589. default: true
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(5 + 10 / 12, "feet"),
  23598. weight: math.unit(165, "lb"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/nicky/front.svg",
  23602. extra: 3144 / 2886,
  23603. bottom: 45.6 / 3192
  23604. }
  23605. },
  23606. back: {
  23607. height: math.unit(5 + 10 / 12, "feet"),
  23608. weight: math.unit(165, "lb"),
  23609. name: "Back",
  23610. image: {
  23611. source: "./media/characters/nicky/back.svg",
  23612. extra: 3055 / 2804,
  23613. bottom: 28.4 / 3087
  23614. }
  23615. },
  23616. frontclothed: {
  23617. height: math.unit(5 + 10 / 12, "feet"),
  23618. weight: math.unit(165, "lb"),
  23619. name: "Front-clothed",
  23620. image: {
  23621. source: "./media/characters/nicky/front-clothed.svg",
  23622. extra: 3184.9 / 2926.9,
  23623. bottom: 86.5 / 3239.9
  23624. }
  23625. },
  23626. foot: {
  23627. height: math.unit(1.16, "feet"),
  23628. name: "Foot",
  23629. image: {
  23630. source: "./media/characters/nicky/foot.svg"
  23631. }
  23632. },
  23633. feet: {
  23634. height: math.unit(1.34, "feet"),
  23635. name: "Feet",
  23636. image: {
  23637. source: "./media/characters/nicky/feet.svg"
  23638. }
  23639. },
  23640. maw: {
  23641. height: math.unit(0.9, "feet"),
  23642. name: "Maw",
  23643. image: {
  23644. source: "./media/characters/nicky/maw.svg"
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Normal",
  23651. height: math.unit(5 + 10 / 12, "feet"),
  23652. default: true
  23653. },
  23654. {
  23655. name: "Macro",
  23656. height: math.unit(60, "feet")
  23657. },
  23658. {
  23659. name: "Megamacro",
  23660. height: math.unit(1, "mile")
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23666. {
  23667. side: {
  23668. height: math.unit(10, "feet"),
  23669. weight: math.unit(600, "lb"),
  23670. name: "Side",
  23671. image: {
  23672. source: "./media/characters/blair/side.svg",
  23673. bottom: 16.6 / 475,
  23674. extra: 458 / 431
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Micro",
  23681. height: math.unit(8, "inches")
  23682. },
  23683. {
  23684. name: "Normal",
  23685. height: math.unit(10, "feet"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Macro",
  23690. height: math.unit(180, "feet")
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(5 + 4 / 12, "feet"),
  23699. weight: math.unit(125, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/fisher/front.svg",
  23703. extra: 444 / 390,
  23704. bottom: 2 / 444.8
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Micro",
  23711. height: math.unit(4, "inches")
  23712. },
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(5 + 4 / 12, "feet"),
  23716. default: true
  23717. },
  23718. {
  23719. name: "Macro",
  23720. height: math.unit(100, "feet")
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23726. {
  23727. front: {
  23728. height: math.unit(6.71, "feet"),
  23729. weight: math.unit(200, "lb"),
  23730. capacity: math.unit(1000000, "people"),
  23731. name: "Front",
  23732. image: {
  23733. source: "./media/characters/gliss/front.svg",
  23734. extra: 2347 / 2231,
  23735. bottom: 113 / 2462
  23736. }
  23737. },
  23738. hammerspaceSize: {
  23739. height: math.unit(6.71 * 717, "feet"),
  23740. weight: math.unit(200, "lb"),
  23741. capacity: math.unit(1000000, "people"),
  23742. name: "Hammerspace Size",
  23743. image: {
  23744. source: "./media/characters/gliss/front.svg",
  23745. extra: 2347 / 2231,
  23746. bottom: 113 / 2462
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(6.71, "feet"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23760. {
  23761. side: {
  23762. height: math.unit(1.44, "m"),
  23763. weight: math.unit(80, "kg"),
  23764. name: "Side",
  23765. image: {
  23766. source: "./media/characters/dune-anderson/side.svg",
  23767. bottom: 49 / 1426
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Wolf-sized",
  23774. height: math.unit(1.44, "meters")
  23775. },
  23776. {
  23777. name: "Normal",
  23778. height: math.unit(5.05, "meters"),
  23779. default: true
  23780. },
  23781. {
  23782. name: "Big",
  23783. height: math.unit(14.4, "meters")
  23784. },
  23785. {
  23786. name: "Huge",
  23787. height: math.unit(144, "meters")
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23793. {
  23794. front: {
  23795. height: math.unit(7, "feet"),
  23796. weight: math.unit(425, "lb"),
  23797. name: "Front",
  23798. image: {
  23799. source: "./media/characters/hind/front.svg",
  23800. extra: 2091 / 1860,
  23801. bottom: 129 / 2220
  23802. }
  23803. },
  23804. back: {
  23805. height: math.unit(7, "feet"),
  23806. weight: math.unit(425, "lb"),
  23807. name: "Back",
  23808. image: {
  23809. source: "./media/characters/hind/back.svg",
  23810. extra: 2091 / 1860,
  23811. bottom: 24.6 / 2309
  23812. }
  23813. },
  23814. tail: {
  23815. height: math.unit(2.8, "feet"),
  23816. name: "Tail",
  23817. image: {
  23818. source: "./media/characters/hind/tail.svg"
  23819. }
  23820. },
  23821. head: {
  23822. height: math.unit(2.55, "feet"),
  23823. name: "Head",
  23824. image: {
  23825. source: "./media/characters/hind/head.svg"
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "XS",
  23832. height: math.unit(0.7, "feet")
  23833. },
  23834. {
  23835. name: "Normal",
  23836. height: math.unit(7, "feet"),
  23837. default: true
  23838. },
  23839. {
  23840. name: "XL",
  23841. height: math.unit(70, "feet")
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23847. {
  23848. front: {
  23849. height: math.unit(6, "feet"),
  23850. weight: math.unit(150, "lb"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/dylan-skaven/front.svg",
  23854. extra: 2318 / 2063,
  23855. bottom: 93.4 / 2410
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Nano",
  23862. height: math.unit(1, "mm")
  23863. },
  23864. {
  23865. name: "Micro",
  23866. height: math.unit(1, "cm")
  23867. },
  23868. {
  23869. name: "Normal",
  23870. height: math.unit(2.1, "meters"),
  23871. default: true
  23872. },
  23873. ]
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23877. {
  23878. front: {
  23879. height: math.unit(7 + 5 / 12, "feet"),
  23880. weight: math.unit(357, "lb"),
  23881. name: "Front",
  23882. image: {
  23883. source: "./media/characters/solex-draconov/front.svg",
  23884. extra: 1993 / 1865,
  23885. bottom: 117 / 2111
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Natural Height",
  23892. height: math.unit(7 + 5 / 12, "feet"),
  23893. default: true
  23894. },
  23895. {
  23896. name: "Macro",
  23897. height: math.unit(350, "feet")
  23898. },
  23899. {
  23900. name: "Macro+",
  23901. height: math.unit(1000, "feet")
  23902. },
  23903. {
  23904. name: "Megamacro",
  23905. height: math.unit(20, "km")
  23906. },
  23907. {
  23908. name: "Megamacro+",
  23909. height: math.unit(1000, "km")
  23910. },
  23911. {
  23912. name: "Gigamacro",
  23913. height: math.unit(2.5, "Gm")
  23914. },
  23915. {
  23916. name: "Teramacro",
  23917. height: math.unit(15, "Tm")
  23918. },
  23919. {
  23920. name: "Galactic",
  23921. height: math.unit(30, "Zm")
  23922. },
  23923. {
  23924. name: "Universal",
  23925. height: math.unit(21000, "Ym")
  23926. },
  23927. {
  23928. name: "Omniversal",
  23929. height: math.unit(9.861e50, "Ym")
  23930. },
  23931. {
  23932. name: "Existential",
  23933. height: math.unit(1e300, "meters")
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23939. {
  23940. side: {
  23941. height: math.unit(25, "feet"),
  23942. weight: math.unit(90000, "lb"),
  23943. name: "Side",
  23944. image: {
  23945. source: "./media/characters/mandarax/side.svg",
  23946. extra: 614 / 332,
  23947. bottom: 55 / 630
  23948. }
  23949. },
  23950. head: {
  23951. height: math.unit(11.4, "feet"),
  23952. name: "Head",
  23953. image: {
  23954. source: "./media/characters/mandarax/head.svg"
  23955. }
  23956. },
  23957. belly: {
  23958. height: math.unit(33, "feet"),
  23959. name: "Belly",
  23960. capacity: math.unit(500, "people"),
  23961. image: {
  23962. source: "./media/characters/mandarax/belly.svg"
  23963. }
  23964. },
  23965. dick: {
  23966. height: math.unit(8.46, "feet"),
  23967. name: "Dick",
  23968. image: {
  23969. source: "./media/characters/mandarax/dick.svg"
  23970. }
  23971. },
  23972. top: {
  23973. height: math.unit(28, "meters"),
  23974. name: "Top",
  23975. image: {
  23976. source: "./media/characters/mandarax/top.svg"
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(25, "feet"),
  23984. default: true
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(5, "feet"),
  23993. weight: math.unit(90, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/pixil/front.svg",
  23997. extra: 2000 / 1618,
  23998. bottom: 12.3 / 2011
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Normal",
  24005. height: math.unit(5, "feet"),
  24006. default: true
  24007. },
  24008. {
  24009. name: "Megamacro",
  24010. height: math.unit(10, "miles"),
  24011. },
  24012. ]
  24013. ))
  24014. characterMakers.push(() => makeCharacter(
  24015. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24016. {
  24017. front: {
  24018. height: math.unit(7 + 2 / 12, "feet"),
  24019. weight: math.unit(200, "lb"),
  24020. name: "Front",
  24021. image: {
  24022. source: "./media/characters/angel/front.svg",
  24023. extra: 1830 / 1737,
  24024. bottom: 22.6 / 1854,
  24025. }
  24026. },
  24027. },
  24028. [
  24029. {
  24030. name: "Normal",
  24031. height: math.unit(7 + 2 / 12, "feet"),
  24032. default: true
  24033. },
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(1000, "feet")
  24037. },
  24038. {
  24039. name: "Megamacro",
  24040. height: math.unit(2, "miles")
  24041. },
  24042. {
  24043. name: "Gigamacro",
  24044. height: math.unit(20, "earths")
  24045. },
  24046. ]
  24047. ))
  24048. characterMakers.push(() => makeCharacter(
  24049. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24050. {
  24051. front: {
  24052. height: math.unit(5, "feet"),
  24053. weight: math.unit(180, "lb"),
  24054. name: "Front",
  24055. image: {
  24056. source: "./media/characters/mekana/front.svg",
  24057. extra: 1671 / 1605,
  24058. bottom: 3.5 / 1691
  24059. }
  24060. },
  24061. side: {
  24062. height: math.unit(5, "feet"),
  24063. weight: math.unit(180, "lb"),
  24064. name: "Side",
  24065. image: {
  24066. source: "./media/characters/mekana/side.svg",
  24067. extra: 1671 / 1605,
  24068. bottom: 3.5 / 1691
  24069. }
  24070. },
  24071. back: {
  24072. height: math.unit(5, "feet"),
  24073. weight: math.unit(180, "lb"),
  24074. name: "Back",
  24075. image: {
  24076. source: "./media/characters/mekana/back.svg",
  24077. extra: 1671 / 1605,
  24078. bottom: 3.5 / 1691
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Normal",
  24085. height: math.unit(5, "feet"),
  24086. default: true
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(4 + 6 / 12, "feet"),
  24095. weight: math.unit(80, "lb"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/pixie/front.svg",
  24099. extra: 1924 / 1825,
  24100. bottom: 22.4 / 1946
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(4 + 6 / 12, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(40, "feet")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(2.1, "meters"),
  24121. weight: math.unit(200, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/the-lascivious/front.svg",
  24125. extra: 1 / 0.893,
  24126. bottom: 3.5 / 573.7
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Human Scale",
  24133. height: math.unit(2.1, "meters")
  24134. },
  24135. {
  24136. name: "Wolxi Scale",
  24137. height: math.unit(46.2, "m"),
  24138. default: true
  24139. },
  24140. {
  24141. name: "Boinker of Buildings",
  24142. height: math.unit(10, "km")
  24143. },
  24144. {
  24145. name: "Shagger of Skyscrapers",
  24146. height: math.unit(40, "km")
  24147. },
  24148. {
  24149. name: "Banger of Boroughs",
  24150. height: math.unit(4000, "km")
  24151. },
  24152. {
  24153. name: "Screwer of States",
  24154. height: math.unit(100000, "km")
  24155. },
  24156. {
  24157. name: "Pounder of Planets",
  24158. height: math.unit(2000000, "km")
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24164. {
  24165. front: {
  24166. height: math.unit(6, "feet"),
  24167. weight: math.unit(150, "lb"),
  24168. name: "Front",
  24169. image: {
  24170. source: "./media/characters/aj/front.svg",
  24171. extra: 2039 / 1562,
  24172. bottom: 40 / 2079
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Normal",
  24179. height: math.unit(11 + 6 / 12, "feet"),
  24180. default: true
  24181. },
  24182. {
  24183. name: "Megamacro",
  24184. height: math.unit(60, "megameters")
  24185. },
  24186. ]
  24187. ))
  24188. characterMakers.push(() => makeCharacter(
  24189. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24190. {
  24191. side: {
  24192. height: math.unit(31 + 8/12, "feet"),
  24193. weight: math.unit(75000, "kg"),
  24194. name: "Side",
  24195. image: {
  24196. source: "./media/characters/koros/side.svg",
  24197. extra: 1442/1297,
  24198. bottom: 122.7/1562
  24199. }
  24200. },
  24201. dicksKingsCrown: {
  24202. height: math.unit(6, "feet"),
  24203. name: "Dicks (King's Crown)",
  24204. image: {
  24205. source: "./media/characters/koros/dicks-kings-crown.svg"
  24206. }
  24207. },
  24208. dicksTailSet: {
  24209. height: math.unit(3, "feet"),
  24210. name: "Dicks (Tail Set)",
  24211. image: {
  24212. source: "./media/characters/koros/dicks-tail-set.svg"
  24213. }
  24214. },
  24215. dickCumming: {
  24216. height: math.unit(7.98, "feet"),
  24217. name: "Dick (Cumming)",
  24218. image: {
  24219. source: "./media/characters/koros/dick-cumming.svg"
  24220. }
  24221. },
  24222. dicksBack: {
  24223. height: math.unit(5.9, "feet"),
  24224. name: "Dicks (Back)",
  24225. image: {
  24226. source: "./media/characters/koros/dicks-back.svg"
  24227. }
  24228. },
  24229. dicksFront: {
  24230. height: math.unit(3.72, "feet"),
  24231. name: "Dicks (Front)",
  24232. image: {
  24233. source: "./media/characters/koros/dicks-front.svg"
  24234. }
  24235. },
  24236. dicksPeeking: {
  24237. height: math.unit(3.0, "feet"),
  24238. name: "Dicks (Peeking)",
  24239. image: {
  24240. source: "./media/characters/koros/dicks-peeking.svg"
  24241. }
  24242. },
  24243. eye: {
  24244. height: math.unit(1.7, "feet"),
  24245. name: "Eye",
  24246. image: {
  24247. source: "./media/characters/koros/eye.svg"
  24248. }
  24249. },
  24250. headFront: {
  24251. height: math.unit(11.69, "feet"),
  24252. name: "Head (Front)",
  24253. image: {
  24254. source: "./media/characters/koros/head-front.svg"
  24255. }
  24256. },
  24257. headSide: {
  24258. height: math.unit(14, "feet"),
  24259. name: "Head (Side)",
  24260. image: {
  24261. source: "./media/characters/koros/head-side.svg"
  24262. }
  24263. },
  24264. leg: {
  24265. height: math.unit(17, "feet"),
  24266. name: "Leg",
  24267. image: {
  24268. source: "./media/characters/koros/leg.svg"
  24269. }
  24270. },
  24271. mawSide: {
  24272. height: math.unit(12.8, "feet"),
  24273. name: "Maw (Side)",
  24274. image: {
  24275. source: "./media/characters/koros/maw-side.svg"
  24276. }
  24277. },
  24278. mawSpitting: {
  24279. height: math.unit(17, "feet"),
  24280. name: "Maw (Spitting)",
  24281. image: {
  24282. source: "./media/characters/koros/maw-spitting.svg"
  24283. }
  24284. },
  24285. slit: {
  24286. height: math.unit(2.8, "feet"),
  24287. name: "Slit",
  24288. image: {
  24289. source: "./media/characters/koros/slit.svg"
  24290. }
  24291. },
  24292. stomach: {
  24293. height: math.unit(6.8, "feet"),
  24294. capacity: math.unit(20, "people"),
  24295. name: "Stomach",
  24296. image: {
  24297. source: "./media/characters/koros/stomach.svg"
  24298. }
  24299. },
  24300. wingspanBottom: {
  24301. height: math.unit(114, "feet"),
  24302. name: "Wingspan (Bottom)",
  24303. image: {
  24304. source: "./media/characters/koros/wingspan-bottom.svg"
  24305. }
  24306. },
  24307. wingspanTop: {
  24308. height: math.unit(104, "feet"),
  24309. name: "Wingspan (Top)",
  24310. image: {
  24311. source: "./media/characters/koros/wingspan-top.svg"
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(31 + 8/12, "feet"),
  24319. default: true
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24325. {
  24326. front: {
  24327. height: math.unit(18 + 5/12, "feet"),
  24328. weight: math.unit(3750, "kg"),
  24329. name: "Front",
  24330. image: {
  24331. source: "./media/characters/vexx/front.svg",
  24332. extra: 426/396,
  24333. bottom: 31.5/458
  24334. }
  24335. },
  24336. maw: {
  24337. height: math.unit(6, "feet"),
  24338. name: "Maw",
  24339. image: {
  24340. source: "./media/characters/vexx/maw.svg"
  24341. }
  24342. },
  24343. },
  24344. [
  24345. {
  24346. name: "Normal",
  24347. height: math.unit(18 + 5/12, "feet"),
  24348. default: true
  24349. },
  24350. ]
  24351. ))
  24352. characterMakers.push(() => makeCharacter(
  24353. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24354. {
  24355. front: {
  24356. height: math.unit(17 + 6/12, "feet"),
  24357. weight: math.unit(150, "lb"),
  24358. name: "Front",
  24359. image: {
  24360. source: "./media/characters/baadra/front.svg",
  24361. extra: 3137/2890,
  24362. bottom: 168.4/3305
  24363. }
  24364. },
  24365. back: {
  24366. height: math.unit(17 + 6/12, "feet"),
  24367. weight: math.unit(150, "lb"),
  24368. name: "Back",
  24369. image: {
  24370. source: "./media/characters/baadra/back.svg",
  24371. extra: 3142/2890,
  24372. bottom: 220/3371
  24373. }
  24374. },
  24375. head: {
  24376. height: math.unit(5.45, "feet"),
  24377. name: "Head",
  24378. image: {
  24379. source: "./media/characters/baadra/head.svg"
  24380. }
  24381. },
  24382. headAngry: {
  24383. height: math.unit(4.95, "feet"),
  24384. name: "Head (Angry)",
  24385. image: {
  24386. source: "./media/characters/baadra/head-angry.svg"
  24387. }
  24388. },
  24389. headOpen: {
  24390. height: math.unit(6, "feet"),
  24391. name: "Head (Open)",
  24392. image: {
  24393. source: "./media/characters/baadra/head-open.svg"
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(17 + 6/12, "feet"),
  24401. default: true
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24407. {
  24408. front: {
  24409. height: math.unit(7 + 3/12, "feet"),
  24410. weight: math.unit(180, "lb"),
  24411. name: "Front",
  24412. image: {
  24413. source: "./media/characters/juri/front.svg",
  24414. extra: 1401/1237,
  24415. bottom: 18.5/1418
  24416. }
  24417. },
  24418. side: {
  24419. height: math.unit(7 + 3/12, "feet"),
  24420. weight: math.unit(180, "lb"),
  24421. name: "Side",
  24422. image: {
  24423. source: "./media/characters/juri/side.svg",
  24424. extra: 1424/1242,
  24425. bottom: 18.5/1447
  24426. }
  24427. },
  24428. sitting: {
  24429. height: math.unit(6, "feet"),
  24430. weight: math.unit(180, "lb"),
  24431. name: "Sitting",
  24432. image: {
  24433. source: "./media/characters/juri/sitting.svg",
  24434. extra: 1270/1143,
  24435. bottom: 100/1343
  24436. }
  24437. },
  24438. back: {
  24439. height: math.unit(7 + 3/12, "feet"),
  24440. weight: math.unit(180, "lb"),
  24441. name: "Back",
  24442. image: {
  24443. source: "./media/characters/juri/back.svg",
  24444. extra: 1377/1240,
  24445. bottom: 23.7/1405
  24446. }
  24447. },
  24448. maw: {
  24449. height: math.unit(2.8, "feet"),
  24450. name: "Maw",
  24451. image: {
  24452. source: "./media/characters/juri/maw.svg"
  24453. }
  24454. },
  24455. stomach: {
  24456. height: math.unit(0.89, "feet"),
  24457. capacity: math.unit(4, "liters"),
  24458. name: "Stomach",
  24459. image: {
  24460. source: "./media/characters/juri/stomach.svg"
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Normal",
  24467. height: math.unit(7 + 3/12, "feet"),
  24468. default: true
  24469. },
  24470. ]
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24474. {
  24475. fox: {
  24476. height: math.unit(5 + 6/12, "feet"),
  24477. weight: math.unit(140, "lb"),
  24478. name: "Fox",
  24479. image: {
  24480. source: "./media/characters/maxene-sita/fox.svg",
  24481. extra: 146/138,
  24482. bottom: 2.1/148.19
  24483. }
  24484. },
  24485. kitsune: {
  24486. height: math.unit(10, "feet"),
  24487. weight: math.unit(800, "lb"),
  24488. name: "Kitsune",
  24489. image: {
  24490. source: "./media/characters/maxene-sita/kitsune.svg",
  24491. extra: 185/176,
  24492. bottom: 4.7/189.9
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(5 + 6/12, "feet"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24506. {
  24507. front: {
  24508. height: math.unit(3 + 4/12, "feet"),
  24509. weight: math.unit(70, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/maia/front.svg",
  24513. extra: 227/219.5,
  24514. bottom: 40 / 267
  24515. }
  24516. },
  24517. back: {
  24518. height: math.unit(3 + 4/12, "feet"),
  24519. weight: math.unit(70, "lb"),
  24520. name: "Back",
  24521. image: {
  24522. source: "./media/characters/maia/back.svg",
  24523. extra: 237/225
  24524. }
  24525. },
  24526. },
  24527. [
  24528. {
  24529. name: "Normal",
  24530. height: math.unit(3 + 4/12, "feet"),
  24531. default: true
  24532. },
  24533. ]
  24534. ))
  24535. characterMakers.push(() => makeCharacter(
  24536. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24537. {
  24538. front: {
  24539. height: math.unit(5 + 10/12, "feet"),
  24540. weight: math.unit(197, "lb"),
  24541. name: "Front",
  24542. image: {
  24543. source: "./media/characters/jabaro/front.svg",
  24544. extra: 225/216,
  24545. bottom: 5.06/230
  24546. }
  24547. },
  24548. back: {
  24549. height: math.unit(5 + 10/12, "feet"),
  24550. weight: math.unit(197, "lb"),
  24551. name: "Back",
  24552. image: {
  24553. source: "./media/characters/jabaro/back.svg",
  24554. extra: 225/219,
  24555. bottom: 1.9/227
  24556. }
  24557. },
  24558. },
  24559. [
  24560. {
  24561. name: "Normal",
  24562. height: math.unit(5 + 10/12, "feet"),
  24563. default: true
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(5 + 8/12, "feet"),
  24572. weight: math.unit(139, "lb"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/risa/front.svg",
  24576. extra: 270/260,
  24577. bottom: 11.2/282
  24578. }
  24579. },
  24580. back: {
  24581. height: math.unit(5 + 8/12, "feet"),
  24582. weight: math.unit(139, "lb"),
  24583. name: "Back",
  24584. image: {
  24585. source: "./media/characters/risa/back.svg",
  24586. extra: 264/255,
  24587. bottom: 4/268
  24588. }
  24589. },
  24590. },
  24591. [
  24592. {
  24593. name: "Normal",
  24594. height: math.unit(5 + 8/12, "feet"),
  24595. default: true
  24596. },
  24597. ]
  24598. ))
  24599. characterMakers.push(() => makeCharacter(
  24600. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24601. {
  24602. front: {
  24603. height: math.unit(2 + 11/12, "feet"),
  24604. weight: math.unit(30, "lb"),
  24605. name: "Front",
  24606. image: {
  24607. source: "./media/characters/weatley/front.svg",
  24608. bottom: 10.7/414,
  24609. extra: 403.5/362
  24610. }
  24611. },
  24612. back: {
  24613. height: math.unit(2 + 11/12, "feet"),
  24614. weight: math.unit(30, "lb"),
  24615. name: "Back",
  24616. image: {
  24617. source: "./media/characters/weatley/back.svg",
  24618. bottom: 10.7/414,
  24619. extra: 403.5/362
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Normal",
  24626. height: math.unit(2 + 11/12, "feet"),
  24627. default: true
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(5 + 2/12, "feet"),
  24636. weight: math.unit(50, "kg"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/mercury-crescent/front.svg",
  24640. extra: 1088/1033,
  24641. bottom: 18.9/1109
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Normal",
  24648. height: math.unit(5 + 2/12, "feet"),
  24649. default: true
  24650. },
  24651. ]
  24652. ))
  24653. characterMakers.push(() => makeCharacter(
  24654. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24655. {
  24656. front: {
  24657. height: math.unit(2, "feet"),
  24658. weight: math.unit(15, "kg"),
  24659. name: "Front",
  24660. image: {
  24661. source: "./media/characters/diamond-jones/front.svg",
  24662. bottom: 16/568
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(2, "feet"),
  24670. default: true
  24671. },
  24672. ]
  24673. ))
  24674. characterMakers.push(() => makeCharacter(
  24675. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24676. {
  24677. front: {
  24678. height: math.unit(3, "feet"),
  24679. weight: math.unit(30, "kg"),
  24680. name: "Front",
  24681. image: {
  24682. source: "./media/characters/sweet-bit/front.svg",
  24683. extra: 675/567,
  24684. bottom: 27.7/703
  24685. }
  24686. },
  24687. },
  24688. [
  24689. {
  24690. name: "Normal",
  24691. height: math.unit(3, "feet"),
  24692. default: true
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24698. {
  24699. side: {
  24700. height: math.unit(9.178, "feet"),
  24701. weight: math.unit(500, "lb"),
  24702. name: "Side",
  24703. image: {
  24704. source: "./media/characters/umbrazen/side.svg",
  24705. extra: 1730/1473,
  24706. bottom: 34.6/1765
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Normal",
  24713. height: math.unit(9.178, "feet"),
  24714. default: true
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24720. {
  24721. front: {
  24722. height: math.unit(10, "feet"),
  24723. weight: math.unit(750, "lb"),
  24724. name: "Front",
  24725. image: {
  24726. source: "./media/characters/arlist/front.svg",
  24727. extra: 961/778,
  24728. bottom: 6.2/986
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(10, "feet"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(5 + 1/12, "feet"),
  24745. weight: math.unit(110, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/aradel/front.svg",
  24749. extra: 324/303,
  24750. bottom: 3.6/329.4
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(5 + 1/12, "feet"),
  24758. default: true
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(3 + 8/12, "feet"),
  24767. weight: math.unit(50, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/serryn/front.svg",
  24771. extra: 1792/1656,
  24772. bottom: 43.5/1840
  24773. }
  24774. },
  24775. },
  24776. [
  24777. {
  24778. name: "Normal",
  24779. height: math.unit(3 + 8/12, "feet"),
  24780. default: true
  24781. },
  24782. ]
  24783. ))
  24784. characterMakers.push(() => makeCharacter(
  24785. { name: "Xavier Thyme" },
  24786. {
  24787. front: {
  24788. height: math.unit(7 + 10/12, "feet"),
  24789. weight: math.unit(255, "lb"),
  24790. name: "Front",
  24791. image: {
  24792. source: "./media/characters/xavier-thyme/front.svg",
  24793. extra: 3733/3642,
  24794. bottom: 131/3869
  24795. }
  24796. },
  24797. frontRaven: {
  24798. height: math.unit(7 + 10/12, "feet"),
  24799. weight: math.unit(255, "lb"),
  24800. name: "Front (Raven)",
  24801. image: {
  24802. source: "./media/characters/xavier-thyme/front-raven.svg",
  24803. extra: 4385/3642,
  24804. bottom: 131/4517
  24805. }
  24806. },
  24807. },
  24808. [
  24809. {
  24810. name: "Normal",
  24811. height: math.unit(7 + 10/12, "feet"),
  24812. default: true
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24818. {
  24819. front: {
  24820. height: math.unit(1.6, "m"),
  24821. weight: math.unit(50, "kg"),
  24822. name: "Front",
  24823. image: {
  24824. source: "./media/characters/kiki/front.svg",
  24825. extra: 4682/3610,
  24826. bottom: 115/4777
  24827. }
  24828. },
  24829. },
  24830. [
  24831. {
  24832. name: "Normal",
  24833. height: math.unit(1.6, "meters"),
  24834. default: true
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(50, "m"),
  24843. weight: math.unit(500, "tonnes"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/ryoko/front.svg",
  24847. extra: 4632/3926,
  24848. bottom: 193/4823
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(50, "meters"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24862. {
  24863. front: {
  24864. height: math.unit(30, "m"),
  24865. weight: math.unit(22, "tonnes"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/elio/front.svg",
  24869. extra: 4582/3720,
  24870. bottom: 236/4828
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(30, "meters"),
  24878. default: true
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24884. {
  24885. front: {
  24886. height: math.unit(6 + 3/12, "feet"),
  24887. weight: math.unit(120, "lb"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/azura/front.svg",
  24891. extra: 1149/1135,
  24892. bottom: 45/1194
  24893. }
  24894. },
  24895. frontClothed: {
  24896. height: math.unit(6 + 3/12, "feet"),
  24897. weight: math.unit(120, "lb"),
  24898. name: "Front (Clothed)",
  24899. image: {
  24900. source: "./media/characters/azura/front-clothed.svg",
  24901. extra: 1149/1135,
  24902. bottom: 45/1194
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(6 + 3/12, "feet"),
  24910. default: true
  24911. },
  24912. {
  24913. name: "Macro",
  24914. height: math.unit(20 + 6/12, "feet")
  24915. },
  24916. {
  24917. name: "Megamacro",
  24918. height: math.unit(12, "miles")
  24919. },
  24920. {
  24921. name: "Gigamacro",
  24922. height: math.unit(10000, "miles")
  24923. },
  24924. {
  24925. name: "Teramacro",
  24926. height: math.unit(900000, "miles")
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24932. {
  24933. front: {
  24934. height: math.unit(12, "feet"),
  24935. weight: math.unit(1, "ton"),
  24936. capacity: math.unit(660000, "gallons"),
  24937. name: "Front",
  24938. image: {
  24939. source: "./media/characters/zeus/front.svg",
  24940. extra: 5005/4717,
  24941. bottom: 363/5388
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Normal",
  24948. height: math.unit(12, "feet")
  24949. },
  24950. {
  24951. name: "Preferred Size",
  24952. height: math.unit(0.5, "miles"),
  24953. default: true
  24954. },
  24955. {
  24956. name: "Giga Horse",
  24957. height: math.unit(300, "miles")
  24958. },
  24959. {
  24960. name: "Riding Planets",
  24961. height: math.unit(30, "megameters")
  24962. },
  24963. {
  24964. name: "Cosmic Giant",
  24965. height: math.unit(3, "zettameters")
  24966. },
  24967. {
  24968. name: "Breeding God",
  24969. height: math.unit(9.92e22, "yottameters")
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24975. {
  24976. side: {
  24977. height: math.unit(9, "feet"),
  24978. weight: math.unit(1500, "kg"),
  24979. name: "Side",
  24980. image: {
  24981. source: "./media/characters/fang/side.svg",
  24982. extra: 924/866,
  24983. bottom: 47.5/972.3
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(9, "feet"),
  24991. default: true
  24992. },
  24993. {
  24994. name: "Macro",
  24995. height: math.unit(75 + 6/12, "feet")
  24996. },
  24997. {
  24998. name: "Teramacro",
  24999. height: math.unit(50000, "miles")
  25000. },
  25001. ]
  25002. ))
  25003. characterMakers.push(() => makeCharacter(
  25004. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25005. {
  25006. front: {
  25007. height: math.unit(10, "feet"),
  25008. weight: math.unit(2, "tons"),
  25009. name: "Front",
  25010. image: {
  25011. source: "./media/characters/rekhit/front.svg",
  25012. extra: 2796/2590,
  25013. bottom: 225/3022
  25014. }
  25015. },
  25016. },
  25017. [
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(10, "feet"),
  25021. default: true
  25022. },
  25023. {
  25024. name: "Macro",
  25025. height: math.unit(500, "feet")
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Dahlia Verrick" },
  25031. {
  25032. front: {
  25033. height: math.unit(7 + 6.451/12, "feet"),
  25034. weight: math.unit(310, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/dahlia-verrick/front.svg",
  25038. extra: 1488/1365,
  25039. bottom: 6.2/1495
  25040. }
  25041. },
  25042. back: {
  25043. height: math.unit(7 + 6.451/12, "feet"),
  25044. weight: math.unit(310, "lb"),
  25045. name: "Back",
  25046. image: {
  25047. source: "./media/characters/dahlia-verrick/back.svg",
  25048. extra: 1472/1351,
  25049. bottom: 5.28/1477
  25050. }
  25051. },
  25052. frontBusiness: {
  25053. height: math.unit(7 + 6.451/12, "feet"),
  25054. weight: math.unit(200, "lb"),
  25055. name: "Front (Business)",
  25056. image: {
  25057. source: "./media/characters/dahlia-verrick/front-business.svg",
  25058. extra: 1478/1381,
  25059. bottom: 5.5/1484
  25060. }
  25061. },
  25062. frontCasual: {
  25063. height: math.unit(7 + 6.451/12, "feet"),
  25064. weight: math.unit(200, "lb"),
  25065. name: "Front (Casual)",
  25066. image: {
  25067. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25068. extra: 1478/1381,
  25069. bottom: 5.5/1484
  25070. }
  25071. },
  25072. },
  25073. [
  25074. {
  25075. name: "Travel-Sized",
  25076. height: math.unit(7.45, "inches")
  25077. },
  25078. {
  25079. name: "Normal",
  25080. height: math.unit(7 + 6.451/12, "feet"),
  25081. default: true
  25082. },
  25083. {
  25084. name: "Hitting the Town",
  25085. height: math.unit(37 + 8/12, "feet")
  25086. },
  25087. {
  25088. name: "Stomp in the Suburbs",
  25089. height: math.unit(964 + 9.728/12, "feet")
  25090. },
  25091. {
  25092. name: "Sit on the City",
  25093. height: math.unit(61747 + 10.592/12, "feet")
  25094. },
  25095. {
  25096. name: "Glomp the Globe",
  25097. height: math.unit(252919327 + 4.832/12, "feet")
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(6 + 4/12, "feet"),
  25106. weight: math.unit(320, "lb"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/balina-mahigan/front.svg",
  25110. extra: 447/428,
  25111. bottom: 18/466
  25112. }
  25113. },
  25114. back: {
  25115. height: math.unit(6 + 4/12, "feet"),
  25116. weight: math.unit(320, "lb"),
  25117. name: "Back",
  25118. image: {
  25119. source: "./media/characters/balina-mahigan/back.svg",
  25120. extra: 445/428,
  25121. bottom: 4.07/448
  25122. }
  25123. },
  25124. arm: {
  25125. height: math.unit(1.88, "feet"),
  25126. name: "Arm",
  25127. image: {
  25128. source: "./media/characters/balina-mahigan/arm.svg"
  25129. }
  25130. },
  25131. backPort: {
  25132. height: math.unit(0.685, "feet"),
  25133. name: "Back Port",
  25134. image: {
  25135. source: "./media/characters/balina-mahigan/back-port.svg"
  25136. }
  25137. },
  25138. hoofpaw: {
  25139. height: math.unit(1.41, "feet"),
  25140. name: "Hoofpaw",
  25141. image: {
  25142. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25143. }
  25144. },
  25145. leftHandBack: {
  25146. height: math.unit(0.938, "feet"),
  25147. name: "Left Hand (Back)",
  25148. image: {
  25149. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25150. }
  25151. },
  25152. leftHandFront: {
  25153. height: math.unit(0.938, "feet"),
  25154. name: "Left Hand (Front)",
  25155. image: {
  25156. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25157. }
  25158. },
  25159. rightHandBack: {
  25160. height: math.unit(0.95, "feet"),
  25161. name: "Right Hand (Back)",
  25162. image: {
  25163. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25164. }
  25165. },
  25166. rightHandFront: {
  25167. height: math.unit(0.95, "feet"),
  25168. name: "Right Hand (Front)",
  25169. image: {
  25170. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Normal",
  25177. height: math.unit(6 + 4/12, "feet"),
  25178. default: true
  25179. },
  25180. ]
  25181. ))
  25182. characterMakers.push(() => makeCharacter(
  25183. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25184. {
  25185. front: {
  25186. height: math.unit(6, "feet"),
  25187. weight: math.unit(320, "lb"),
  25188. name: "Front",
  25189. image: {
  25190. source: "./media/characters/balina-mejeri/front.svg",
  25191. extra: 517/488,
  25192. bottom: 44.2/561
  25193. }
  25194. },
  25195. },
  25196. [
  25197. {
  25198. name: "Normal",
  25199. height: math.unit(6 + 4/12, "feet")
  25200. },
  25201. {
  25202. name: "Business",
  25203. height: math.unit(155, "feet"),
  25204. default: true
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25210. {
  25211. kneeling: {
  25212. height: math.unit(6 + 4/12, "feet"),
  25213. weight: math.unit(300*20, "lb"),
  25214. name: "Kneeling",
  25215. image: {
  25216. source: "./media/characters/balbarian/kneeling.svg",
  25217. extra: 922/862,
  25218. bottom: 42.4/965
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(6 + 4/12, "feet")
  25226. },
  25227. {
  25228. name: "Treasured",
  25229. height: math.unit(18 + 9/12, "feet"),
  25230. default: true
  25231. },
  25232. {
  25233. name: "Macro",
  25234. height: math.unit(900, "feet")
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(6 + 4/12, "feet"),
  25243. weight: math.unit(325, "lb"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/balina-amarini/front.svg",
  25247. extra: 415/403,
  25248. bottom: 19/433.4
  25249. }
  25250. },
  25251. back: {
  25252. height: math.unit(6 + 4/12, "feet"),
  25253. weight: math.unit(325, "lb"),
  25254. name: "Back",
  25255. image: {
  25256. source: "./media/characters/balina-amarini/back.svg",
  25257. extra: 415/403,
  25258. bottom: 13.5/432
  25259. }
  25260. },
  25261. overdrive: {
  25262. height: math.unit(6 + 4/12, "feet"),
  25263. weight: math.unit(400, "lb"),
  25264. name: "Overdrive",
  25265. image: {
  25266. source: "./media/characters/balina-amarini/overdrive.svg",
  25267. extra: 269/259,
  25268. bottom: 12/282
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Boom",
  25275. height: math.unit(9 + 10/12, "feet"),
  25276. default: true
  25277. },
  25278. {
  25279. name: "Macro",
  25280. height: math.unit(280, "feet")
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25286. {
  25287. goddess: {
  25288. height: math.unit(600, "feet"),
  25289. weight: math.unit(2000000, "tons"),
  25290. name: "Goddess",
  25291. image: {
  25292. source: "./media/characters/lady-kubwa/goddess.svg",
  25293. extra: 1240.5/1223,
  25294. bottom: 22/1263
  25295. }
  25296. },
  25297. goddesser: {
  25298. height: math.unit(900, "feet"),
  25299. weight: math.unit(20000000, "lb"),
  25300. name: "Goddess-er",
  25301. image: {
  25302. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25303. extra: 899/888,
  25304. bottom: 12.6/912
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Macro",
  25311. height: math.unit(600, "feet"),
  25312. default: true
  25313. },
  25314. {
  25315. name: "Megamacro",
  25316. height: math.unit(250, "miles")
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(7 + 7/12, "feet"),
  25325. weight: math.unit(250, "lb"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/tala-grovehorn/front.svg",
  25329. extra: 2636/2525,
  25330. bottom: 147/2781
  25331. }
  25332. },
  25333. back: {
  25334. height: math.unit(7 + 7/12, "feet"),
  25335. weight: math.unit(250, "lb"),
  25336. name: "Back",
  25337. image: {
  25338. source: "./media/characters/tala-grovehorn/back.svg",
  25339. extra: 2635/2539,
  25340. bottom: 100/2732.8
  25341. }
  25342. },
  25343. mouth: {
  25344. height: math.unit(1.15, "feet"),
  25345. name: "Mouth",
  25346. image: {
  25347. source: "./media/characters/tala-grovehorn/mouth.svg"
  25348. }
  25349. },
  25350. dick: {
  25351. height: math.unit(2.36, "feet"),
  25352. name: "Dick",
  25353. image: {
  25354. source: "./media/characters/tala-grovehorn/dick.svg"
  25355. }
  25356. },
  25357. slit: {
  25358. height: math.unit(0.61, "feet"),
  25359. name: "Slit",
  25360. image: {
  25361. source: "./media/characters/tala-grovehorn/slit.svg"
  25362. }
  25363. },
  25364. },
  25365. [
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(7 + 7/12, "feet"),
  25373. weight: math.unit(225, "lb"),
  25374. name: "Front",
  25375. image: {
  25376. source: "./media/characters/epona/front.svg",
  25377. extra: 2445/2290,
  25378. bottom: 251/2696
  25379. }
  25380. },
  25381. back: {
  25382. height: math.unit(7 + 7/12, "feet"),
  25383. weight: math.unit(225, "lb"),
  25384. name: "Back",
  25385. image: {
  25386. source: "./media/characters/epona/back.svg",
  25387. extra: 2546/2408,
  25388. bottom: 44/2589
  25389. }
  25390. },
  25391. genitals: {
  25392. height: math.unit(1.5, "feet"),
  25393. name: "Genitals",
  25394. image: {
  25395. source: "./media/characters/epona/genitals.svg"
  25396. }
  25397. },
  25398. },
  25399. [
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(7 + 7/12, "feet")
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(7, "feet"),
  25411. weight: math.unit(518, "lb"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/avia-bloodbourn/front.svg",
  25415. extra: 1466/1350,
  25416. bottom: 65/1527
  25417. }
  25418. },
  25419. },
  25420. [
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(9.35, "feet"),
  25428. weight: math.unit(600, "lb"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/amera/front.svg",
  25432. extra: 891/818,
  25433. bottom: 30/922.7
  25434. }
  25435. },
  25436. back: {
  25437. height: math.unit(9.35, "feet"),
  25438. weight: math.unit(600, "lb"),
  25439. name: "Back",
  25440. image: {
  25441. source: "./media/characters/amera/back.svg",
  25442. extra: 876/824,
  25443. bottom: 6.8/884
  25444. }
  25445. },
  25446. dick: {
  25447. height: math.unit(2.14, "feet"),
  25448. name: "Dick",
  25449. image: {
  25450. source: "./media/characters/amera/dick.svg"
  25451. }
  25452. },
  25453. },
  25454. [
  25455. {
  25456. name: "Normal",
  25457. height: math.unit(9.35, "feet"),
  25458. default: true
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25464. {
  25465. kneeling: {
  25466. height: math.unit(3 + 4/12, "feet"),
  25467. weight: math.unit(90, "lb"),
  25468. name: "Kneeling",
  25469. image: {
  25470. source: "./media/characters/rosewen/kneeling.svg",
  25471. extra: 1835/1571,
  25472. bottom: 27.7/1862
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Normal",
  25479. height: math.unit(3 + 4/12, "feet"),
  25480. default: true
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25486. {
  25487. front: {
  25488. height: math.unit(5 + 10/12, "feet"),
  25489. weight: math.unit(200, "lb"),
  25490. name: "Front",
  25491. image: {
  25492. source: "./media/characters/sabah/front.svg",
  25493. extra: 849/763,
  25494. bottom: 33.9/881
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Normal",
  25501. height: math.unit(5 + 10/12, "feet"),
  25502. default: true
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25508. {
  25509. front: {
  25510. height: math.unit(3 + 5/12, "feet"),
  25511. weight: math.unit(40, "kg"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/purple-flame/front.svg",
  25515. extra: 1577/1412,
  25516. bottom: 97/1694
  25517. }
  25518. },
  25519. frontDressed: {
  25520. height: math.unit(3 + 5/12, "feet"),
  25521. weight: math.unit(40, "kg"),
  25522. name: "Front (Dressed)",
  25523. image: {
  25524. source: "./media/characters/purple-flame/front-dressed.svg",
  25525. extra: 1577/1412,
  25526. bottom: 97/1694
  25527. }
  25528. },
  25529. headphones: {
  25530. height: math.unit(0.85, "feet"),
  25531. name: "Headphones",
  25532. image: {
  25533. source: "./media/characters/purple-flame/headphones.svg"
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Really Small",
  25540. height: math.unit(5, "cm")
  25541. },
  25542. {
  25543. name: "Micro",
  25544. height: math.unit(1 + 5/12, "feet")
  25545. },
  25546. {
  25547. name: "Normal",
  25548. height: math.unit(3 + 5/12, "feet"),
  25549. default: true
  25550. },
  25551. {
  25552. name: "Minimacro",
  25553. height: math.unit(125, "feet")
  25554. },
  25555. {
  25556. name: "Macro",
  25557. height: math.unit(0.5, "miles")
  25558. },
  25559. {
  25560. name: "Megamacro",
  25561. height: math.unit(50, "miles")
  25562. },
  25563. {
  25564. name: "Gigantic",
  25565. height: math.unit(750, "miles")
  25566. },
  25567. {
  25568. name: "Planetary",
  25569. height: math.unit(15000, "miles")
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(14, "feet"),
  25578. weight: math.unit(959, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/arsenal/front.svg",
  25582. extra: 2357/2157,
  25583. bottom: 93/2458
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(14, "feet"),
  25591. default: true
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25597. {
  25598. front: {
  25599. height: math.unit(6, "feet"),
  25600. weight: math.unit(150, "lb"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/adira/front.svg",
  25604. extra: 1078/1029,
  25605. bottom: 87/1166
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Micro",
  25612. height: math.unit(4, "inches"),
  25613. default: true
  25614. },
  25615. {
  25616. name: "Macro",
  25617. height: math.unit(50, "feet")
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25623. {
  25624. front: {
  25625. height: math.unit(16, "feet"),
  25626. weight: math.unit(1000, "lb"),
  25627. name: "Front",
  25628. image: {
  25629. source: "./media/characters/grim/front.svg",
  25630. extra: 622/614,
  25631. bottom: 18.1/642
  25632. }
  25633. },
  25634. back: {
  25635. height: math.unit(16, "feet"),
  25636. weight: math.unit(1000, "lb"),
  25637. name: "Back",
  25638. image: {
  25639. source: "./media/characters/grim/back.svg",
  25640. extra: 610.6/602,
  25641. bottom: 40.8/652
  25642. }
  25643. },
  25644. hunched: {
  25645. height: math.unit(9.75, "feet"),
  25646. weight: math.unit(1000, "lb"),
  25647. name: "Hunched",
  25648. image: {
  25649. source: "./media/characters/grim/hunched.svg",
  25650. extra: 304/297,
  25651. bottom: 35.4/394
  25652. }
  25653. },
  25654. },
  25655. [
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(16, "feet"),
  25659. default: true
  25660. },
  25661. ]
  25662. ))
  25663. //characters
  25664. function makeCharacters() {
  25665. const results = [];
  25666. characterMakers.forEach(character => {
  25667. results.push(character());
  25668. });
  25669. return results;
  25670. }