less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27165 lines
676 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. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. }
  1304. //species
  1305. function getSpeciesInfo(speciesList) {
  1306. let result = new Set();
  1307. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1308. result.add(entry)
  1309. });
  1310. return Array.from(result);
  1311. };
  1312. function getSpeciesInfoHelper(species) {
  1313. if (!speciesData[species]) {
  1314. console.warn(species + " doesn't exist");
  1315. return [];
  1316. }
  1317. if (speciesData[species].parents) {
  1318. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1319. } else {
  1320. return [species];
  1321. }
  1322. }
  1323. characterMakers.push(() => makeCharacter(
  1324. {
  1325. name: "Fen",
  1326. species: ["crux"],
  1327. description: {
  1328. title: "Bio",
  1329. text: "Very furry. Sheds on everything."
  1330. },
  1331. tags: [
  1332. "anthro",
  1333. "goo"
  1334. ]
  1335. },
  1336. {
  1337. back: {
  1338. height: math.unit(2.2428, "meter"),
  1339. weight: math.unit(124.738, "kg"),
  1340. name: "Back",
  1341. image: {
  1342. source: "./media/characters/fen/back.svg",
  1343. extra: 1025 / 935,
  1344. bottom: 0.01
  1345. },
  1346. info: {
  1347. description: {
  1348. mode: "append",
  1349. text: "\n\nHe is not currently looking at you."
  1350. }
  1351. }
  1352. },
  1353. full: {
  1354. height: math.unit(1.34, "meter"),
  1355. weight: math.unit(225, "kg"),
  1356. name: "Full",
  1357. image: {
  1358. source: "./media/characters/fen/full.svg"
  1359. },
  1360. info: {
  1361. description: {
  1362. mode: "append",
  1363. text: "\n\nMunch."
  1364. }
  1365. }
  1366. },
  1367. kneeling: {
  1368. height: math.unit(5.4, "feet"),
  1369. weight: math.unit(124.738, "kg"),
  1370. name: "Kneeling",
  1371. image: {
  1372. source: "./media/characters/fen/kneeling.svg",
  1373. extra: 563 / 507
  1374. }
  1375. },
  1376. goo: {
  1377. height: math.unit(2.8, "feet"),
  1378. weight: math.unit(125, "kg"),
  1379. capacity: math.unit(1, "people"),
  1380. name: "Goo",
  1381. image: {
  1382. source: "./media/characters/fen/goo.svg",
  1383. bottom: 116 / 613
  1384. }
  1385. },
  1386. lounging: {
  1387. height: math.unit(6.5, "feet"),
  1388. weight: math.unit(125, "kg"),
  1389. name: "Lounging",
  1390. image: {
  1391. source: "./media/characters/fen/lounging.svg"
  1392. }
  1393. },
  1394. },
  1395. [
  1396. {
  1397. name: "Normal",
  1398. height: math.unit(2.2428, "meter")
  1399. },
  1400. {
  1401. name: "Big",
  1402. height: math.unit(12, "feet")
  1403. },
  1404. {
  1405. name: "Minimacro",
  1406. height: math.unit(40, "feet"),
  1407. default: true,
  1408. info: {
  1409. description: {
  1410. mode: "append",
  1411. text: "\n\nTOO DAMN BIG"
  1412. }
  1413. }
  1414. },
  1415. {
  1416. name: "Macro",
  1417. height: math.unit(100, "feet"),
  1418. info: {
  1419. description: {
  1420. mode: "append",
  1421. text: "\n\nTOO DAMN BIG"
  1422. }
  1423. }
  1424. },
  1425. {
  1426. name: "Macro+",
  1427. height: math.unit(300, "feet")
  1428. },
  1429. {
  1430. name: "Megamacro",
  1431. height: math.unit(2, "miles")
  1432. }
  1433. ]
  1434. ))
  1435. characterMakers.push(() => makeCharacter(
  1436. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1437. {
  1438. front: {
  1439. height: math.unit(183, "cm"),
  1440. weight: math.unit(80, "kg"),
  1441. name: "Front",
  1442. image: {
  1443. source: "./media/characters/sofia-fluttertail/front.svg",
  1444. bottom: 0.01,
  1445. extra: 2154 / 2081
  1446. }
  1447. },
  1448. frontAlt: {
  1449. height: math.unit(183, "cm"),
  1450. weight: math.unit(80, "kg"),
  1451. name: "Front (alt)",
  1452. image: {
  1453. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1454. }
  1455. },
  1456. back: {
  1457. height: math.unit(183, "cm"),
  1458. weight: math.unit(80, "kg"),
  1459. name: "Back",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/back.svg"
  1462. }
  1463. },
  1464. kneeling: {
  1465. height: math.unit(125, "cm"),
  1466. weight: math.unit(80, "kg"),
  1467. name: "Kneeling",
  1468. image: {
  1469. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1470. extra: 1033 / 977,
  1471. bottom: 23.7 / 1057
  1472. }
  1473. },
  1474. maw: {
  1475. height: math.unit(183 / 5, "cm"),
  1476. name: "Maw",
  1477. image: {
  1478. source: "./media/characters/sofia-fluttertail/maw.svg"
  1479. }
  1480. },
  1481. mawcloseup: {
  1482. height: math.unit(183 / 5 * 0.41, "cm"),
  1483. name: "Maw (Closeup)",
  1484. image: {
  1485. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1486. }
  1487. },
  1488. },
  1489. [
  1490. {
  1491. name: "Normal",
  1492. height: math.unit(1.83, "meter")
  1493. },
  1494. {
  1495. name: "Size Thief",
  1496. height: math.unit(18, "feet")
  1497. },
  1498. {
  1499. name: "50 Foot Collie",
  1500. height: math.unit(50, "feet")
  1501. },
  1502. {
  1503. name: "Macro",
  1504. height: math.unit(96, "feet"),
  1505. default: true
  1506. },
  1507. {
  1508. name: "Megamerger",
  1509. height: math.unit(650, "feet")
  1510. },
  1511. ]
  1512. ))
  1513. characterMakers.push(() => makeCharacter(
  1514. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1515. {
  1516. front: {
  1517. height: math.unit(7, "feet"),
  1518. weight: math.unit(100, "kg"),
  1519. name: "Front",
  1520. image: {
  1521. source: "./media/characters/march/front.svg",
  1522. extra: 1,
  1523. bottom: 0.015
  1524. }
  1525. },
  1526. foot: {
  1527. height: math.unit(0.9, "feet"),
  1528. name: "Foot",
  1529. image: {
  1530. source: "./media/characters/march/foot.svg"
  1531. }
  1532. },
  1533. },
  1534. [
  1535. {
  1536. name: "Normal",
  1537. height: math.unit(7.9, "feet")
  1538. },
  1539. {
  1540. name: "Macro",
  1541. height: math.unit(220, "meters")
  1542. },
  1543. {
  1544. name: "Megamacro",
  1545. height: math.unit(2.98, "km"),
  1546. default: true
  1547. },
  1548. {
  1549. name: "Gigamacro",
  1550. height: math.unit(15963, "km")
  1551. },
  1552. {
  1553. name: "Teramacro",
  1554. height: math.unit(2980000000, "km")
  1555. },
  1556. {
  1557. name: "Examacro",
  1558. height: math.unit(250, "parsecs")
  1559. },
  1560. ]
  1561. ))
  1562. characterMakers.push(() => makeCharacter(
  1563. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1564. {
  1565. front: {
  1566. height: math.unit(6, "feet"),
  1567. weight: math.unit(60, "kg"),
  1568. name: "Front",
  1569. image: {
  1570. source: "./media/characters/noir/front.svg",
  1571. extra: 1,
  1572. bottom: 0.032
  1573. }
  1574. },
  1575. },
  1576. [
  1577. {
  1578. name: "Normal",
  1579. height: math.unit(6.6, "feet")
  1580. },
  1581. {
  1582. name: "Macro",
  1583. height: math.unit(500, "feet")
  1584. },
  1585. {
  1586. name: "Megamacro",
  1587. height: math.unit(2.5, "km"),
  1588. default: true
  1589. },
  1590. {
  1591. name: "Gigamacro",
  1592. height: math.unit(22500, "km")
  1593. },
  1594. {
  1595. name: "Teramacro",
  1596. height: math.unit(2500000000, "km")
  1597. },
  1598. {
  1599. name: "Examacro",
  1600. height: math.unit(200, "parsecs")
  1601. },
  1602. ]
  1603. ))
  1604. characterMakers.push(() => makeCharacter(
  1605. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1606. {
  1607. front: {
  1608. height: math.unit(7, "feet"),
  1609. weight: math.unit(100, "kg"),
  1610. name: "Front",
  1611. image: {
  1612. source: "./media/characters/okuri/front.svg",
  1613. extra: 1,
  1614. bottom: 0.037
  1615. }
  1616. },
  1617. back: {
  1618. height: math.unit(7, "feet"),
  1619. weight: math.unit(100, "kg"),
  1620. name: "Back",
  1621. image: {
  1622. source: "./media/characters/okuri/back.svg",
  1623. extra: 1,
  1624. bottom: 0.007
  1625. }
  1626. },
  1627. },
  1628. [
  1629. {
  1630. name: "Megamacro",
  1631. height: math.unit(100, "miles"),
  1632. default: true
  1633. },
  1634. ]
  1635. ))
  1636. characterMakers.push(() => makeCharacter(
  1637. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1638. {
  1639. front: {
  1640. height: math.unit(7, "feet"),
  1641. weight: math.unit(100, "kg"),
  1642. name: "Front",
  1643. image: {
  1644. source: "./media/characters/manny/front.svg",
  1645. extra: 1,
  1646. bottom: 0.06
  1647. }
  1648. },
  1649. back: {
  1650. height: math.unit(7, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Back",
  1653. image: {
  1654. source: "./media/characters/manny/back.svg",
  1655. extra: 1,
  1656. bottom: 0.014
  1657. }
  1658. },
  1659. },
  1660. [
  1661. {
  1662. name: "Normal",
  1663. height: math.unit(7, "feet"),
  1664. },
  1665. {
  1666. name: "Macro",
  1667. height: math.unit(78, "feet"),
  1668. default: true
  1669. },
  1670. {
  1671. name: "Macro+",
  1672. height: math.unit(300, "meters")
  1673. },
  1674. {
  1675. name: "Macro++",
  1676. height: math.unit(2400, "meters")
  1677. },
  1678. {
  1679. name: "Megamacro",
  1680. height: math.unit(5167, "meters")
  1681. },
  1682. {
  1683. name: "Gigamacro",
  1684. height: math.unit(41769, "miles")
  1685. },
  1686. ]
  1687. ))
  1688. characterMakers.push(() => makeCharacter(
  1689. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1690. {
  1691. front: {
  1692. height: math.unit(7, "feet"),
  1693. weight: math.unit(100, "kg"),
  1694. name: "Front",
  1695. image: {
  1696. source: "./media/characters/adake/front-1.svg"
  1697. }
  1698. },
  1699. frontAlt: {
  1700. height: math.unit(7, "feet"),
  1701. weight: math.unit(100, "kg"),
  1702. name: "Front (Alt)",
  1703. image: {
  1704. source: "./media/characters/adake/front-2.svg",
  1705. extra: 1,
  1706. bottom: 0.01
  1707. }
  1708. },
  1709. back: {
  1710. height: math.unit(7, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Back",
  1713. image: {
  1714. source: "./media/characters/adake/back.svg",
  1715. }
  1716. },
  1717. kneel: {
  1718. height: math.unit(5.385, "feet"),
  1719. weight: math.unit(100, "kg"),
  1720. name: "Kneeling",
  1721. image: {
  1722. source: "./media/characters/adake/kneel.svg",
  1723. bottom: 0.052
  1724. }
  1725. },
  1726. },
  1727. [
  1728. {
  1729. name: "Normal",
  1730. height: math.unit(7, "feet"),
  1731. },
  1732. {
  1733. name: "Macro",
  1734. height: math.unit(78, "feet"),
  1735. default: true
  1736. },
  1737. {
  1738. name: "Macro+",
  1739. height: math.unit(300, "meters")
  1740. },
  1741. {
  1742. name: "Macro++",
  1743. height: math.unit(2400, "meters")
  1744. },
  1745. {
  1746. name: "Megamacro",
  1747. height: math.unit(5167, "meters")
  1748. },
  1749. {
  1750. name: "Gigamacro",
  1751. height: math.unit(41769, "miles")
  1752. },
  1753. ]
  1754. ))
  1755. characterMakers.push(() => makeCharacter(
  1756. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1757. {
  1758. front: {
  1759. height: math.unit(1.65, "meters"),
  1760. weight: math.unit(50, "kg"),
  1761. name: "Front",
  1762. image: {
  1763. source: "./media/characters/elijah/front.svg",
  1764. extra: 858 / 830,
  1765. bottom: 95.5 / 953.8559
  1766. }
  1767. },
  1768. back: {
  1769. height: math.unit(1.65, "meters"),
  1770. weight: math.unit(50, "kg"),
  1771. name: "Back",
  1772. image: {
  1773. source: "./media/characters/elijah/back.svg",
  1774. extra: 895 / 850,
  1775. bottom: 5.3 / 897.956
  1776. }
  1777. },
  1778. frontNsfw: {
  1779. height: math.unit(1.65, "meters"),
  1780. weight: math.unit(50, "kg"),
  1781. name: "Front (NSFW)",
  1782. image: {
  1783. source: "./media/characters/elijah/front-nsfw.svg",
  1784. extra: 858 / 830,
  1785. bottom: 95.5 / 953.8559
  1786. }
  1787. },
  1788. backNsfw: {
  1789. height: math.unit(1.65, "meters"),
  1790. weight: math.unit(50, "kg"),
  1791. name: "Back (NSFW)",
  1792. image: {
  1793. source: "./media/characters/elijah/back-nsfw.svg",
  1794. extra: 895 / 850,
  1795. bottom: 5.3 / 897.956
  1796. }
  1797. },
  1798. dick: {
  1799. height: math.unit(1, "feet"),
  1800. name: "Dick",
  1801. image: {
  1802. source: "./media/characters/elijah/dick.svg"
  1803. }
  1804. },
  1805. beakOpen: {
  1806. height: math.unit(1.25, "feet"),
  1807. name: "Beak (Open)",
  1808. image: {
  1809. source: "./media/characters/elijah/beak-open.svg"
  1810. }
  1811. },
  1812. beakShut: {
  1813. height: math.unit(1.25, "feet"),
  1814. name: "Beak (Shut)",
  1815. image: {
  1816. source: "./media/characters/elijah/beak-shut.svg"
  1817. }
  1818. },
  1819. footFlexing: {
  1820. height: math.unit(1.61, "feet"),
  1821. name: "Foot (Flexing)",
  1822. image: {
  1823. source: "./media/characters/elijah/foot-flexing.svg"
  1824. }
  1825. },
  1826. footStepping: {
  1827. height: math.unit(1.44, "feet"),
  1828. name: "Foot (Stepping)",
  1829. image: {
  1830. source: "./media/characters/elijah/foot-stepping.svg"
  1831. }
  1832. },
  1833. plantigradeLeg: {
  1834. height: math.unit(2.34, "feet"),
  1835. name: "Plantigrade Leg",
  1836. image: {
  1837. source: "./media/characters/elijah/plantigrade-leg.svg"
  1838. }
  1839. },
  1840. plantigradeFootLeft: {
  1841. height: math.unit(0.9, "feet"),
  1842. name: "Plantigrade Foot (Left)",
  1843. image: {
  1844. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1845. }
  1846. },
  1847. plantigradeFootRight: {
  1848. height: math.unit(0.9, "feet"),
  1849. name: "Plantigrade Foot (Right)",
  1850. image: {
  1851. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1852. }
  1853. },
  1854. },
  1855. [
  1856. {
  1857. name: "Normal",
  1858. height: math.unit(1.65, "meters")
  1859. },
  1860. {
  1861. name: "Macro",
  1862. height: math.unit(55, "meters"),
  1863. default: true
  1864. },
  1865. {
  1866. name: "Macro+",
  1867. height: math.unit(105, "meters")
  1868. },
  1869. ]
  1870. ))
  1871. characterMakers.push(() => makeCharacter(
  1872. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1873. {
  1874. front: {
  1875. height: math.unit(11, "feet"),
  1876. weight: math.unit(80, "kg"),
  1877. name: "Front",
  1878. image: {
  1879. source: "./media/characters/rai/front.svg",
  1880. extra: 1,
  1881. bottom: 0.03
  1882. }
  1883. },
  1884. side: {
  1885. height: math.unit(11, "feet"),
  1886. weight: math.unit(80, "kg"),
  1887. name: "Side",
  1888. image: {
  1889. source: "./media/characters/rai/side.svg"
  1890. }
  1891. },
  1892. back: {
  1893. height: math.unit(11, "feet"),
  1894. weight: math.unit(80, "lb"),
  1895. name: "Back",
  1896. image: {
  1897. source: "./media/characters/rai/back.svg",
  1898. extra: 1,
  1899. bottom: 0.01
  1900. }
  1901. },
  1902. feral: {
  1903. height: math.unit(11, "feet"),
  1904. weight: math.unit(800, "lb"),
  1905. name: "Feral",
  1906. image: {
  1907. source: "./media/characters/rai/feral.svg",
  1908. extra: 1050 / 659,
  1909. bottom: 0.07
  1910. }
  1911. },
  1912. dragon: {
  1913. height: math.unit(23, "feet"),
  1914. weight: math.unit(50000, "lb"),
  1915. name: "Dragon",
  1916. image: {
  1917. source: "./media/characters/rai/dragon.svg",
  1918. extra: 2498 / 2030,
  1919. bottom: 85.2 / 2584
  1920. }
  1921. },
  1922. maw: {
  1923. height: math.unit(6 / 3.81416, "feet"),
  1924. name: "Maw",
  1925. image: {
  1926. source: "./media/characters/rai/maw.svg"
  1927. }
  1928. },
  1929. },
  1930. [
  1931. {
  1932. name: "Normal",
  1933. height: math.unit(11, "feet")
  1934. },
  1935. {
  1936. name: "Macro",
  1937. height: math.unit(302, "feet"),
  1938. default: true
  1939. },
  1940. ]
  1941. ))
  1942. characterMakers.push(() => makeCharacter(
  1943. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1944. {
  1945. frontDressed: {
  1946. height: math.unit(216, "feet"),
  1947. weight: math.unit(7000000, "lb"),
  1948. name: "Front (Dressed)",
  1949. image: {
  1950. source: "./media/characters/jazzy/front-dressed.svg",
  1951. extra: 2738 / 2651,
  1952. bottom: 41.8 / 2786
  1953. }
  1954. },
  1955. backDressed: {
  1956. height: math.unit(216, "feet"),
  1957. weight: math.unit(7000000, "lb"),
  1958. name: "Back (Dressed)",
  1959. image: {
  1960. source: "./media/characters/jazzy/back-dressed.svg",
  1961. extra: 2775 / 2673,
  1962. bottom: 36.8 / 2817
  1963. }
  1964. },
  1965. front: {
  1966. height: math.unit(216, "feet"),
  1967. weight: math.unit(7000000, "lb"),
  1968. name: "Front",
  1969. image: {
  1970. source: "./media/characters/jazzy/front.svg",
  1971. extra: 2738 / 2651,
  1972. bottom: 41.8 / 2786
  1973. }
  1974. },
  1975. back: {
  1976. height: math.unit(216, "feet"),
  1977. weight: math.unit(7000000, "lb"),
  1978. name: "Back",
  1979. image: {
  1980. source: "./media/characters/jazzy/back.svg",
  1981. extra: 2775 / 2673,
  1982. bottom: 36.8 / 2817
  1983. }
  1984. },
  1985. maw: {
  1986. height: math.unit(20, "feet"),
  1987. name: "Maw",
  1988. image: {
  1989. source: "./media/characters/jazzy/maw.svg"
  1990. }
  1991. },
  1992. paws: {
  1993. height: math.unit(27.5, "feet"),
  1994. name: "Paws",
  1995. image: {
  1996. source: "./media/characters/jazzy/paws.svg"
  1997. }
  1998. },
  1999. eye: {
  2000. height: math.unit(4.4, "feet"),
  2001. name: "Eye",
  2002. image: {
  2003. source: "./media/characters/jazzy/eye.svg"
  2004. }
  2005. },
  2006. droneOffense: {
  2007. height: math.unit(9.5, "inches"),
  2008. name: "Drone (Offense)",
  2009. image: {
  2010. source: "./media/characters/jazzy/drone-offense.svg"
  2011. }
  2012. },
  2013. droneRecon: {
  2014. height: math.unit(9.5, "inches"),
  2015. name: "Drone (Recon)",
  2016. image: {
  2017. source: "./media/characters/jazzy/drone-recon.svg"
  2018. }
  2019. },
  2020. droneDefense: {
  2021. height: math.unit(9.5, "inches"),
  2022. name: "Drone (Defense)",
  2023. image: {
  2024. source: "./media/characters/jazzy/drone-defense.svg"
  2025. }
  2026. },
  2027. },
  2028. [
  2029. {
  2030. name: "Macro",
  2031. height: math.unit(216, "feet"),
  2032. default: true
  2033. },
  2034. ]
  2035. ))
  2036. characterMakers.push(() => makeCharacter(
  2037. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2038. {
  2039. front: {
  2040. height: math.unit(7, "feet"),
  2041. weight: math.unit(80, "kg"),
  2042. name: "Front",
  2043. image: {
  2044. source: "./media/characters/flamm/front.svg",
  2045. extra: 1794 / 1677,
  2046. bottom: 31.7 / 1828.5
  2047. }
  2048. },
  2049. },
  2050. [
  2051. {
  2052. name: "Normal",
  2053. height: math.unit(9.5, "feet")
  2054. },
  2055. {
  2056. name: "Macro",
  2057. height: math.unit(200, "feet"),
  2058. default: true
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(80, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/zephiro/front.svg",
  2071. extra: 2309 / 2162,
  2072. bottom: 0.069
  2073. }
  2074. },
  2075. side: {
  2076. height: math.unit(7, "feet"),
  2077. weight: math.unit(80, "kg"),
  2078. name: "Side",
  2079. image: {
  2080. source: "./media/characters/zephiro/side.svg",
  2081. extra: 2403 / 2279,
  2082. bottom: 0.015
  2083. }
  2084. },
  2085. back: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(80, "kg"),
  2088. name: "Back",
  2089. image: {
  2090. source: "./media/characters/zephiro/back.svg",
  2091. extra: 2373 / 2244,
  2092. bottom: 0.013
  2093. }
  2094. },
  2095. },
  2096. [
  2097. {
  2098. name: "Micro",
  2099. height: math.unit(3, "inches")
  2100. },
  2101. {
  2102. name: "Normal",
  2103. height: math.unit(5 + 3 / 12, "feet"),
  2104. default: true
  2105. },
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(118, "feet")
  2109. },
  2110. ]
  2111. ))
  2112. characterMakers.push(() => makeCharacter(
  2113. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2114. {
  2115. front: {
  2116. height: math.unit(5, "feet"),
  2117. weight: math.unit(90, "kg"),
  2118. name: "Front",
  2119. image: {
  2120. source: "./media/characters/fory/front.svg",
  2121. extra: 2862 / 2674,
  2122. bottom: 180 / 3043.8
  2123. }
  2124. },
  2125. back: {
  2126. height: math.unit(5, "feet"),
  2127. weight: math.unit(90, "kg"),
  2128. name: "Back",
  2129. image: {
  2130. source: "./media/characters/fory/back.svg",
  2131. extra: 2962 / 2791,
  2132. bottom: 106 / 3071.8
  2133. }
  2134. },
  2135. foot: {
  2136. height: math.unit(2.14, "feet"),
  2137. name: "Foot",
  2138. image: {
  2139. source: "./media/characters/fory/foot.svg"
  2140. }
  2141. },
  2142. },
  2143. [
  2144. {
  2145. name: "Normal",
  2146. height: math.unit(5, "feet")
  2147. },
  2148. {
  2149. name: "Macro",
  2150. height: math.unit(50, "feet"),
  2151. default: true
  2152. },
  2153. {
  2154. name: "Megamacro",
  2155. height: math.unit(10, "miles")
  2156. },
  2157. {
  2158. name: "Gigamacro",
  2159. height: math.unit(5, "earths")
  2160. },
  2161. ]
  2162. ))
  2163. characterMakers.push(() => makeCharacter(
  2164. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2165. {
  2166. front: {
  2167. height: math.unit(7, "feet"),
  2168. weight: math.unit(90, "kg"),
  2169. name: "Front",
  2170. image: {
  2171. source: "./media/characters/kurrikage/front.svg",
  2172. extra: 1,
  2173. bottom: 0.035
  2174. }
  2175. },
  2176. back: {
  2177. height: math.unit(7, "feet"),
  2178. weight: math.unit(90, "lb"),
  2179. name: "Back",
  2180. image: {
  2181. source: "./media/characters/kurrikage/back.svg"
  2182. }
  2183. },
  2184. paw: {
  2185. height: math.unit(1.5, "feet"),
  2186. name: "Paw",
  2187. image: {
  2188. source: "./media/characters/kurrikage/paw.svg"
  2189. }
  2190. },
  2191. staff: {
  2192. height: math.unit(6.7, "feet"),
  2193. name: "Staff",
  2194. image: {
  2195. source: "./media/characters/kurrikage/staff.svg"
  2196. }
  2197. },
  2198. peek: {
  2199. height: math.unit(1.05, "feet"),
  2200. name: "Peeking",
  2201. image: {
  2202. source: "./media/characters/kurrikage/peek.svg",
  2203. bottom: 0.08
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(12, "feet"),
  2211. default: true
  2212. },
  2213. {
  2214. name: "Big",
  2215. height: math.unit(20, "feet")
  2216. },
  2217. {
  2218. name: "Macro",
  2219. height: math.unit(500, "feet")
  2220. },
  2221. {
  2222. name: "Megamacro",
  2223. height: math.unit(20, "miles")
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2229. {
  2230. front: {
  2231. height: math.unit(6, "feet"),
  2232. weight: math.unit(75, "kg"),
  2233. name: "Front",
  2234. image: {
  2235. source: "./media/characters/shingo/front.svg",
  2236. extra: 3511 / 3338,
  2237. bottom: 0.005
  2238. }
  2239. },
  2240. paw: {
  2241. height: math.unit(1, "feet"),
  2242. name: "Paw",
  2243. image: {
  2244. source: "./media/characters/shingo/paw.svg"
  2245. }
  2246. },
  2247. },
  2248. [
  2249. {
  2250. name: "Micro",
  2251. height: math.unit(4, "inches")
  2252. },
  2253. {
  2254. name: "Normal",
  2255. height: math.unit(6, "feet"),
  2256. default: true
  2257. },
  2258. {
  2259. name: "Macro",
  2260. height: math.unit(108, "feet")
  2261. }
  2262. ]
  2263. ))
  2264. characterMakers.push(() => makeCharacter(
  2265. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2266. {
  2267. side: {
  2268. height: math.unit(6, "feet"),
  2269. weight: math.unit(75, "kg"),
  2270. name: "Side",
  2271. image: {
  2272. source: "./media/characters/aigey/side.svg"
  2273. }
  2274. },
  2275. },
  2276. [
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(200, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Megamacro",
  2284. height: math.unit(100, "miles")
  2285. },
  2286. ]
  2287. )
  2288. )
  2289. characterMakers.push(() => makeCharacter(
  2290. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2291. {
  2292. front: {
  2293. height: math.unit(5 + 5 / 12, "feet"),
  2294. weight: math.unit(75, "kg"),
  2295. name: "Front",
  2296. image: {
  2297. source: "./media/characters/natasha/front.svg",
  2298. extra: 859 / 824,
  2299. bottom: 23 / 879.6
  2300. }
  2301. },
  2302. frontNsfw: {
  2303. height: math.unit(5 + 5 / 12, "feet"),
  2304. weight: math.unit(75, "kg"),
  2305. name: "Front (NSFW)",
  2306. image: {
  2307. source: "./media/characters/natasha/front-nsfw.svg",
  2308. extra: 859 / 824,
  2309. bottom: 23 / 879.6
  2310. }
  2311. },
  2312. frontErect: {
  2313. height: math.unit(5 + 5 / 12, "feet"),
  2314. weight: math.unit(75, "kg"),
  2315. name: "Front (Erect)",
  2316. image: {
  2317. source: "./media/characters/natasha/front-erect.svg",
  2318. extra: 859 / 824,
  2319. bottom: 23 / 879.6
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(5 + 5 / 12, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/natasha/back.svg",
  2328. extra: 887.9 / 852.6,
  2329. bottom: 9.7 / 896.4
  2330. }
  2331. },
  2332. backAlt: {
  2333. height: math.unit(5 + 5 / 12, "feet"),
  2334. weight: math.unit(75, "kg"),
  2335. name: "Back (Alt)",
  2336. image: {
  2337. source: "./media/characters/natasha/back-alt.svg",
  2338. extra: 1236.7 / 1192,
  2339. bottom: 22.3 / 1258.2
  2340. }
  2341. },
  2342. dick: {
  2343. height: math.unit(1.772, "feet"),
  2344. name: "Dick",
  2345. image: {
  2346. source: "./media/characters/natasha/dick.svg"
  2347. }
  2348. },
  2349. },
  2350. [
  2351. {
  2352. name: "Normal",
  2353. height: math.unit(5 + 5 / 12, "feet")
  2354. },
  2355. {
  2356. name: "Large",
  2357. height: math.unit(12, "feet")
  2358. },
  2359. {
  2360. name: "Macro",
  2361. height: math.unit(100, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Macro+",
  2366. height: math.unit(260, "feet")
  2367. },
  2368. {
  2369. name: "Macro++",
  2370. height: math.unit(1, "mile")
  2371. },
  2372. ]
  2373. ))
  2374. characterMakers.push(() => makeCharacter(
  2375. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2376. {
  2377. front: {
  2378. height: math.unit(6, "feet"),
  2379. weight: math.unit(75, "kg"),
  2380. name: "Front",
  2381. image: {
  2382. source: "./media/characters/malik/front.svg"
  2383. }
  2384. },
  2385. side: {
  2386. height: math.unit(6, "feet"),
  2387. weight: math.unit(75, "kg"),
  2388. name: "Side",
  2389. image: {
  2390. source: "./media/characters/malik/side.svg",
  2391. extra: 1.1539
  2392. }
  2393. },
  2394. back: {
  2395. height: math.unit(6, "feet"),
  2396. weight: math.unit(75, "kg"),
  2397. name: "Back",
  2398. image: {
  2399. source: "./media/characters/malik/back.svg"
  2400. }
  2401. },
  2402. },
  2403. [
  2404. {
  2405. name: "Macro",
  2406. height: math.unit(156, "feet"),
  2407. default: true
  2408. },
  2409. {
  2410. name: "Macro+",
  2411. height: math.unit(1188, "feet")
  2412. },
  2413. ]
  2414. ))
  2415. characterMakers.push(() => makeCharacter(
  2416. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2417. {
  2418. front: {
  2419. height: math.unit(6, "feet"),
  2420. weight: math.unit(75, "kg"),
  2421. name: "Front",
  2422. image: {
  2423. source: "./media/characters/sefer/front.svg",
  2424. extra: 848 / 659,
  2425. bottom: 28.3 / 876.442
  2426. }
  2427. },
  2428. back: {
  2429. height: math.unit(6, "feet"),
  2430. weight: math.unit(75, "kg"),
  2431. name: "Back",
  2432. image: {
  2433. source: "./media/characters/sefer/back.svg",
  2434. extra: 864 / 695,
  2435. bottom: 10 / 871
  2436. }
  2437. },
  2438. frontDressed: {
  2439. height: math.unit(6, "feet"),
  2440. weight: math.unit(75, "kg"),
  2441. name: "Front (Dressed)",
  2442. image: {
  2443. source: "./media/characters/sefer/front-dressed.svg",
  2444. extra: 839 / 653,
  2445. bottom: 37.6 / 878
  2446. }
  2447. },
  2448. },
  2449. [
  2450. {
  2451. name: "Normal",
  2452. height: math.unit(6, "feet"),
  2453. default: true
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2459. {
  2460. body: {
  2461. height: math.unit(2.2428, "meter"),
  2462. weight: math.unit(124.738, "kg"),
  2463. name: "Body",
  2464. image: {
  2465. extra: 1225 / 1050,
  2466. source: "./media/characters/north/front.svg"
  2467. }
  2468. }
  2469. },
  2470. [
  2471. {
  2472. name: "Micro",
  2473. height: math.unit(4, "inches")
  2474. },
  2475. {
  2476. name: "Macro",
  2477. height: math.unit(63, "meters")
  2478. },
  2479. {
  2480. name: "Megamacro",
  2481. height: math.unit(101, "miles"),
  2482. default: true
  2483. }
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2488. {
  2489. angled: {
  2490. height: math.unit(4, "meter"),
  2491. weight: math.unit(150, "kg"),
  2492. name: "Angled",
  2493. image: {
  2494. source: "./media/characters/talan/angled-sfw.svg",
  2495. bottom: 29 / 3734
  2496. }
  2497. },
  2498. angledNsfw: {
  2499. height: math.unit(4, "meter"),
  2500. weight: math.unit(150, "kg"),
  2501. name: "Angled (NSFW)",
  2502. image: {
  2503. source: "./media/characters/talan/angled-nsfw.svg",
  2504. bottom: 29 / 3734
  2505. }
  2506. },
  2507. frontNsfw: {
  2508. height: math.unit(4, "meter"),
  2509. weight: math.unit(150, "kg"),
  2510. name: "Front (NSFW)",
  2511. image: {
  2512. source: "./media/characters/talan/front-nsfw.svg",
  2513. bottom: 29 / 3734
  2514. }
  2515. },
  2516. sideNsfw: {
  2517. height: math.unit(4, "meter"),
  2518. weight: math.unit(150, "kg"),
  2519. name: "Side (NSFW)",
  2520. image: {
  2521. source: "./media/characters/talan/side-nsfw.svg",
  2522. bottom: 29 / 3734
  2523. }
  2524. },
  2525. back: {
  2526. height: math.unit(4, "meter"),
  2527. weight: math.unit(150, "kg"),
  2528. name: "Back",
  2529. image: {
  2530. source: "./media/characters/talan/back.svg"
  2531. }
  2532. },
  2533. dickBottom: {
  2534. height: math.unit(0.621, "meter"),
  2535. name: "Dick (Bottom)",
  2536. image: {
  2537. source: "./media/characters/talan/dick-bottom.svg"
  2538. }
  2539. },
  2540. dickTop: {
  2541. height: math.unit(0.621, "meter"),
  2542. name: "Dick (Top)",
  2543. image: {
  2544. source: "./media/characters/talan/dick-top.svg"
  2545. }
  2546. },
  2547. dickSide: {
  2548. height: math.unit(0.305, "meter"),
  2549. name: "Dick (Side)",
  2550. image: {
  2551. source: "./media/characters/talan/dick-side.svg"
  2552. }
  2553. },
  2554. dickFront: {
  2555. height: math.unit(0.305, "meter"),
  2556. name: "Dick (Front)",
  2557. image: {
  2558. source: "./media/characters/talan/dick-front.svg"
  2559. }
  2560. },
  2561. },
  2562. [
  2563. {
  2564. name: "Normal",
  2565. height: math.unit(4, "meters")
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(100, "meters")
  2570. },
  2571. {
  2572. name: "Megamacro",
  2573. height: math.unit(2, "miles"),
  2574. default: true
  2575. },
  2576. {
  2577. name: "Gigamacro",
  2578. height: math.unit(5000, "miles")
  2579. },
  2580. {
  2581. name: "Teramacro",
  2582. height: math.unit(100, "parsecs")
  2583. }
  2584. ]
  2585. ))
  2586. characterMakers.push(() => makeCharacter(
  2587. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2588. {
  2589. front: {
  2590. height: math.unit(2, "meter"),
  2591. weight: math.unit(90, "kg"),
  2592. name: "Front",
  2593. image: {
  2594. source: "./media/characters/gael'rathus/front.svg"
  2595. }
  2596. },
  2597. frontAlt: {
  2598. height: math.unit(2, "meter"),
  2599. weight: math.unit(90, "kg"),
  2600. name: "Front (alt)",
  2601. image: {
  2602. source: "./media/characters/gael'rathus/front-alt.svg"
  2603. }
  2604. },
  2605. frontAlt2: {
  2606. height: math.unit(2, "meter"),
  2607. weight: math.unit(90, "kg"),
  2608. name: "Front (alt 2)",
  2609. image: {
  2610. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2611. }
  2612. }
  2613. },
  2614. [
  2615. {
  2616. name: "Normal",
  2617. height: math.unit(9, "feet"),
  2618. default: true
  2619. },
  2620. {
  2621. name: "Large",
  2622. height: math.unit(25, "feet")
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(0.25, "miles")
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(10, "miles")
  2631. }
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2636. {
  2637. side: {
  2638. height: math.unit(2, "meter"),
  2639. weight: math.unit(140, "kg"),
  2640. name: "Side",
  2641. image: {
  2642. source: "./media/characters/sosha/side.svg",
  2643. bottom: 0.042
  2644. }
  2645. },
  2646. },
  2647. [
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(12, "feet"),
  2651. default: true
  2652. }
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2657. {
  2658. side: {
  2659. height: math.unit(5 + 5 / 12, "feet"),
  2660. weight: math.unit(170, "kg"),
  2661. name: "Side",
  2662. image: {
  2663. source: "./media/characters/runnola/side.svg",
  2664. extra: 741 / 448,
  2665. bottom: 0.05
  2666. }
  2667. },
  2668. },
  2669. [
  2670. {
  2671. name: "Small",
  2672. height: math.unit(3, "feet")
  2673. },
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(5 + 5 / 12, "feet"),
  2677. default: true
  2678. },
  2679. {
  2680. name: "Big",
  2681. height: math.unit(10, "feet")
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(2, "meter"),
  2690. weight: math.unit(50, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/kurribird/front.svg",
  2694. bottom: 0.015
  2695. }
  2696. },
  2697. frontAlt: {
  2698. height: math.unit(1.5, "meter"),
  2699. weight: math.unit(50, "kg"),
  2700. name: "Front (Alt)",
  2701. image: {
  2702. source: "./media/characters/kurribird/front-alt.svg",
  2703. extra: 1.45
  2704. }
  2705. },
  2706. },
  2707. [
  2708. {
  2709. name: "Normal",
  2710. height: math.unit(7, "feet")
  2711. },
  2712. {
  2713. name: "Big",
  2714. height: math.unit(12, "feet"),
  2715. default: true
  2716. },
  2717. {
  2718. name: "Macro",
  2719. height: math.unit(1500, "feet")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(2, "miles")
  2724. }
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2729. {
  2730. front: {
  2731. height: math.unit(2, "meter"),
  2732. weight: math.unit(80, "kg"),
  2733. name: "Front",
  2734. image: {
  2735. source: "./media/characters/elbial/front.svg",
  2736. extra: 1643 / 1556,
  2737. bottom: 60.2 / 1696
  2738. }
  2739. },
  2740. side: {
  2741. height: math.unit(2, "meter"),
  2742. weight: math.unit(80, "kg"),
  2743. name: "Side",
  2744. image: {
  2745. source: "./media/characters/elbial/side.svg",
  2746. extra: 1630 / 1565,
  2747. bottom: 71.5 / 1697
  2748. }
  2749. },
  2750. back: {
  2751. height: math.unit(2, "meter"),
  2752. weight: math.unit(80, "kg"),
  2753. name: "Back",
  2754. image: {
  2755. source: "./media/characters/elbial/back.svg",
  2756. extra: 1668 / 1595,
  2757. bottom: 5.6 / 1672
  2758. }
  2759. },
  2760. frontDressed: {
  2761. height: math.unit(2, "meter"),
  2762. weight: math.unit(80, "kg"),
  2763. name: "Front (Dressed)",
  2764. image: {
  2765. source: "./media/characters/elbial/front-dressed.svg",
  2766. extra: 1653 / 1584,
  2767. bottom: 57 / 1708
  2768. }
  2769. },
  2770. genitals: {
  2771. height: math.unit(2 / 3.367, "meter"),
  2772. name: "Genitals",
  2773. image: {
  2774. source: "./media/characters/elbial/genitals.svg"
  2775. }
  2776. },
  2777. },
  2778. [
  2779. {
  2780. name: "Large",
  2781. height: math.unit(100, "feet")
  2782. },
  2783. {
  2784. name: "Macro",
  2785. height: math.unit(500, "feet"),
  2786. default: true
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(10, "miles")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(25000, "miles")
  2795. },
  2796. {
  2797. name: "Full-Size",
  2798. height: math.unit(8000000, "gigaparsecs")
  2799. }
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(2, "meter"),
  2807. weight: math.unit(60, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/noah/front.svg"
  2811. }
  2812. },
  2813. talons: {
  2814. height: math.unit(0.315, "meter"),
  2815. name: "Talons",
  2816. image: {
  2817. source: "./media/characters/noah/talons.svg"
  2818. }
  2819. }
  2820. },
  2821. [
  2822. {
  2823. name: "Large",
  2824. height: math.unit(50, "feet")
  2825. },
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(750, "feet"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Megamacro",
  2833. height: math.unit(50, "miles")
  2834. },
  2835. {
  2836. name: "Gigamacro",
  2837. height: math.unit(100000, "miles")
  2838. },
  2839. {
  2840. name: "Full-Size",
  2841. height: math.unit(3000000000, "miles")
  2842. }
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2847. {
  2848. front: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(80, "kg"),
  2851. name: "Front",
  2852. image: {
  2853. source: "./media/characters/natalya/front.svg"
  2854. }
  2855. },
  2856. back: {
  2857. height: math.unit(2, "meter"),
  2858. weight: math.unit(80, "kg"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/natalya/back.svg"
  2862. }
  2863. }
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(150, "feet"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(5, "miles")
  2874. },
  2875. {
  2876. name: "Full-Size",
  2877. height: math.unit(600, "kiloparsecs")
  2878. }
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(50, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/erestrebah/front.svg",
  2890. extra: 208 / 193,
  2891. bottom: 0.055
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(2, "meter"),
  2896. weight: math.unit(50, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/erestrebah/back.svg",
  2900. extra: 1.3
  2901. }
  2902. }
  2903. },
  2904. [
  2905. {
  2906. name: "Normal",
  2907. height: math.unit(10, "feet")
  2908. },
  2909. {
  2910. name: "Large",
  2911. height: math.unit(50, "feet"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Macro",
  2916. height: math.unit(300, "feet")
  2917. },
  2918. {
  2919. name: "Macro+",
  2920. height: math.unit(750, "feet")
  2921. },
  2922. {
  2923. name: "Megamacro",
  2924. height: math.unit(3, "miles")
  2925. }
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2930. {
  2931. front: {
  2932. height: math.unit(2, "meter"),
  2933. weight: math.unit(80, "kg"),
  2934. name: "Front",
  2935. image: {
  2936. source: "./media/characters/jennifer/front.svg",
  2937. bottom: 0.11,
  2938. extra: 1.16
  2939. }
  2940. },
  2941. frontAlt: {
  2942. height: math.unit(2, "meter"),
  2943. weight: math.unit(80, "kg"),
  2944. name: "Front (Alt)",
  2945. image: {
  2946. source: "./media/characters/jennifer/front-alt.svg"
  2947. }
  2948. }
  2949. },
  2950. [
  2951. {
  2952. name: "Canon Height",
  2953. height: math.unit(120, "feet"),
  2954. default: true
  2955. },
  2956. {
  2957. name: "Macro+",
  2958. height: math.unit(300, "feet")
  2959. },
  2960. {
  2961. name: "Megamacro",
  2962. height: math.unit(20000, "feet")
  2963. }
  2964. ]
  2965. ))
  2966. characterMakers.push(() => makeCharacter(
  2967. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2968. {
  2969. front: {
  2970. height: math.unit(2, "meter"),
  2971. weight: math.unit(50, "kg"),
  2972. name: "Front",
  2973. image: {
  2974. source: "./media/characters/kalista/front.svg",
  2975. extra: 1947 / 1700,
  2976. bottom: 76.6 / 1412.98
  2977. }
  2978. },
  2979. back: {
  2980. height: math.unit(2, "meter"),
  2981. weight: math.unit(50, "kg"),
  2982. name: "Back",
  2983. image: {
  2984. source: "./media/characters/kalista/back.svg",
  2985. extra: 1366 / 1156,
  2986. bottom: 33.9 / 1362.78
  2987. }
  2988. }
  2989. },
  2990. [
  2991. {
  2992. name: "Uncomfortably Small",
  2993. height: math.unit(10, "feet")
  2994. },
  2995. {
  2996. name: "Small",
  2997. height: math.unit(30, "feet")
  2998. },
  2999. {
  3000. name: "Macro",
  3001. height: math.unit(100, "feet"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Macro+",
  3006. height: math.unit(2000, "feet")
  3007. },
  3008. {
  3009. name: "True Form",
  3010. height: math.unit(8924, "miles")
  3011. }
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(120, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/ggv/front.svg"
  3023. }
  3024. },
  3025. side: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(120, "kg"),
  3028. name: "Side",
  3029. image: {
  3030. source: "./media/characters/ggv/side.svg"
  3031. }
  3032. }
  3033. },
  3034. [
  3035. {
  3036. name: "Extremely Puny",
  3037. height: math.unit(9 + 5 / 12, "feet")
  3038. },
  3039. {
  3040. name: "Horribly Small",
  3041. height: math.unit(47.7, "miles"),
  3042. default: true
  3043. },
  3044. {
  3045. name: "Reasonably Sized",
  3046. height: math.unit(25000, "parsecs")
  3047. },
  3048. {
  3049. name: "Slightly Uncompressed",
  3050. height: math.unit(7.77e31, "parsecs")
  3051. },
  3052. {
  3053. name: "Omniversal",
  3054. height: math.unit(1e300, "meters")
  3055. },
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3060. {
  3061. front: {
  3062. height: math.unit(2, "meter"),
  3063. weight: math.unit(75, "lb"),
  3064. name: "Front",
  3065. image: {
  3066. source: "./media/characters/napalm/front.svg"
  3067. }
  3068. },
  3069. back: {
  3070. height: math.unit(2, "meter"),
  3071. weight: math.unit(75, "lb"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/napalm/back.svg"
  3075. }
  3076. }
  3077. },
  3078. [
  3079. {
  3080. name: "Standard",
  3081. height: math.unit(55, "feet"),
  3082. default: true
  3083. }
  3084. ]
  3085. ))
  3086. characterMakers.push(() => makeCharacter(
  3087. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3088. {
  3089. front: {
  3090. height: math.unit(7 + 5 / 6, "feet"),
  3091. weight: math.unit(325, "lb"),
  3092. name: "Front",
  3093. image: {
  3094. source: "./media/characters/asana/front.svg",
  3095. extra: 1133 / 1060,
  3096. bottom: 15.2/1148.6
  3097. }
  3098. },
  3099. back: {
  3100. height: math.unit(7 + 5 / 6, "feet"),
  3101. weight: math.unit(325, "lb"),
  3102. name: "Back",
  3103. image: {
  3104. source: "./media/characters/asana/back.svg",
  3105. extra: 1114 / 1043,
  3106. bottom: 5/1120
  3107. }
  3108. },
  3109. dressedDark: {
  3110. height: math.unit(7 + 5 / 6, "feet"),
  3111. weight: math.unit(325, "lb"),
  3112. name: "Dressed (Dark)",
  3113. image: {
  3114. source: "./media/characters/asana/dressed-dark.svg",
  3115. extra: 1133 / 1060,
  3116. bottom: 15.2/1148.6
  3117. }
  3118. },
  3119. dressedLight: {
  3120. height: math.unit(7 + 5 / 6, "feet"),
  3121. weight: math.unit(325, "lb"),
  3122. name: "Dressed (Light)",
  3123. image: {
  3124. source: "./media/characters/asana/dressed-light.svg",
  3125. extra: 1133 / 1060,
  3126. bottom: 15.2/1148.6
  3127. }
  3128. },
  3129. },
  3130. [
  3131. {
  3132. name: "Standard",
  3133. height: math.unit(7 + 5 / 6, "feet"),
  3134. default: true
  3135. },
  3136. {
  3137. name: "Large",
  3138. height: math.unit(10, "meters")
  3139. },
  3140. {
  3141. name: "Macro",
  3142. height: math.unit(2500, "meters")
  3143. },
  3144. {
  3145. name: "Megamacro",
  3146. height: math.unit(5e6, "meters")
  3147. },
  3148. {
  3149. name: "Examacro",
  3150. height: math.unit(5e12, "lightyears")
  3151. },
  3152. {
  3153. name: "Max Size",
  3154. height: math.unit(1e31, "lightyears")
  3155. }
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(2, "meter"),
  3163. weight: math.unit(60, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/ebony/front.svg",
  3167. bottom: 0.03,
  3168. extra: 1045 / 810 + 0.03
  3169. }
  3170. },
  3171. side: {
  3172. height: math.unit(2, "meter"),
  3173. weight: math.unit(60, "kg"),
  3174. name: "Side",
  3175. image: {
  3176. source: "./media/characters/ebony/side.svg",
  3177. bottom: 0.03,
  3178. extra: 1045 / 810 + 0.03
  3179. }
  3180. },
  3181. back: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(60, "kg"),
  3184. name: "Back",
  3185. image: {
  3186. source: "./media/characters/ebony/back.svg",
  3187. bottom: 0.01,
  3188. extra: 1045 / 810 + 0.01
  3189. }
  3190. },
  3191. },
  3192. [
  3193. // TODO check why I did this lol
  3194. {
  3195. name: "Standard",
  3196. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(200, "feet")
  3202. },
  3203. {
  3204. name: "Gigamacro",
  3205. height: math.unit(13000, "km")
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(175, "lb"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/mountain/front.svg",
  3218. extra: 972/955,
  3219. bottom: 64/1036.6
  3220. }
  3221. },
  3222. back: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(175, "lb"),
  3225. name: "Back",
  3226. image: {
  3227. source: "./media/characters/mountain/back.svg",
  3228. extra: 970/950,
  3229. bottom: 28.25/999
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Large",
  3236. height: math.unit(20, "meters")
  3237. },
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(300, "meters")
  3241. },
  3242. {
  3243. name: "Gigamacro",
  3244. height: math.unit(10000, "km"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Examacro",
  3249. height: math.unit(10e9, "lightyears")
  3250. }
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(8, "feet"),
  3258. weight: math.unit(500, "lb"),
  3259. name: "Front",
  3260. image: {
  3261. source: "./media/characters/rick/front.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(8, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro",
  3273. height: math.unit(5, "km")
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(8, "feet"),
  3282. weight: math.unit(120, "lb"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/ona/front.svg"
  3286. }
  3287. },
  3288. frontAlt: {
  3289. height: math.unit(8, "feet"),
  3290. weight: math.unit(120, "lb"),
  3291. name: "Front (Alt)",
  3292. image: {
  3293. source: "./media/characters/ona/front-alt.svg"
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(8, "feet"),
  3298. weight: math.unit(120, "lb"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/ona/back.svg"
  3302. }
  3303. },
  3304. foot: {
  3305. height: math.unit(1.1, "feet"),
  3306. name: "Foot",
  3307. image: {
  3308. source: "./media/characters/ona/foot.svg"
  3309. }
  3310. }
  3311. },
  3312. [
  3313. {
  3314. name: "Megamacro",
  3315. height: math.unit(70, "km"),
  3316. default: true
  3317. },
  3318. {
  3319. name: "Gigamacro",
  3320. height: math.unit(681818, "miles")
  3321. },
  3322. {
  3323. name: "Examacro",
  3324. height: math.unit(3800000, "lightyears")
  3325. },
  3326. ]
  3327. ))
  3328. characterMakers.push(() => makeCharacter(
  3329. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3330. {
  3331. front: {
  3332. height: math.unit(12, "feet"),
  3333. weight: math.unit(3000, "lb"),
  3334. name: "Front",
  3335. image: {
  3336. source: "./media/characters/mech/front.svg",
  3337. bottom: 0.025,
  3338. }
  3339. },
  3340. back: {
  3341. height: math.unit(12, "feet"),
  3342. weight: math.unit(3000, "lb"),
  3343. name: "Back",
  3344. image: {
  3345. source: "./media/characters/mech/back.svg",
  3346. bottom: 0.03,
  3347. }
  3348. }
  3349. },
  3350. [
  3351. {
  3352. name: "Normal",
  3353. height: math.unit(12, "feet")
  3354. },
  3355. {
  3356. name: "Macro",
  3357. height: math.unit(300, "feet"),
  3358. default: true
  3359. },
  3360. {
  3361. name: "Macro+",
  3362. height: math.unit(1500, "feet")
  3363. },
  3364. ]
  3365. ))
  3366. characterMakers.push(() => makeCharacter(
  3367. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3368. {
  3369. front: {
  3370. height: math.unit(1.3, "meter"),
  3371. weight: math.unit(30, "kg"),
  3372. name: "Front",
  3373. image: {
  3374. source: "./media/characters/gregory/front.svg",
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(1.3, "meter"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(20, "meter")
  3387. }
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3392. {
  3393. front: {
  3394. height: math.unit(2.8, "meter"),
  3395. weight: math.unit(200, "kg"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/elory/front.svg",
  3399. }
  3400. }
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(2.8, "meter"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(38, "meter")
  3411. }
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(470, "feet"),
  3419. weight: math.unit(924, "tons"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/angelpatamon/front.svg",
  3423. }
  3424. }
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(470, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Deity Size I",
  3434. height: math.unit(28651.2, "km")
  3435. },
  3436. {
  3437. name: "Deity Size II",
  3438. height: math.unit(171907.2, "km")
  3439. }
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3444. {
  3445. side: {
  3446. height: math.unit(7.2, "meter"),
  3447. weight: math.unit(8.2, "tons"),
  3448. name: "Side",
  3449. image: {
  3450. source: "./media/characters/cryae/side.svg",
  3451. extra: 3500 / 1500
  3452. }
  3453. }
  3454. },
  3455. [
  3456. {
  3457. name: "Normal",
  3458. height: math.unit(7.2, "meter"),
  3459. default: true
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(175, "lb"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/xera/front.svg",
  3472. extra: 2377 / 1972,
  3473. bottom: 75.5/2452
  3474. }
  3475. },
  3476. side: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(175, "lb"),
  3479. name: "Side",
  3480. image: {
  3481. source: "./media/characters/xera/side.svg",
  3482. extra: 2345/2019,
  3483. bottom: 39.7/2384
  3484. }
  3485. },
  3486. back: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(175, "lb"),
  3489. name: "Back",
  3490. image: {
  3491. source: "./media/characters/xera/back.svg",
  3492. extra: 2095/1984,
  3493. bottom: 67/2166
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Small",
  3500. height: math.unit(10, "feet")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(500, "meters"),
  3505. default: true
  3506. },
  3507. {
  3508. name: "Macro+",
  3509. height: math.unit(10, "km")
  3510. },
  3511. {
  3512. name: "Gigamacro",
  3513. height: math.unit(25000, "km")
  3514. },
  3515. {
  3516. name: "Teramacro",
  3517. height: math.unit(3e6, "km")
  3518. }
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3523. {
  3524. front: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(175, "lb"),
  3527. name: "Front",
  3528. image: {
  3529. source: "./media/characters/nebula/front.svg",
  3530. extra: 2566/2362,
  3531. bottom: 81/2644
  3532. }
  3533. }
  3534. },
  3535. [
  3536. {
  3537. name: "Small",
  3538. height: math.unit(4.5, "meters")
  3539. },
  3540. {
  3541. name: "Macro",
  3542. height: math.unit(1500, "meters"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Megamacro",
  3547. height: math.unit(150, "km")
  3548. },
  3549. {
  3550. name: "Gigamacro",
  3551. height: math.unit(27000, "km")
  3552. }
  3553. ]
  3554. ))
  3555. characterMakers.push(() => makeCharacter(
  3556. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3557. {
  3558. front: {
  3559. height: math.unit(6, "feet"),
  3560. weight: math.unit(225, "lb"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/abysgar/front.svg"
  3564. }
  3565. }
  3566. },
  3567. [
  3568. {
  3569. name: "Small",
  3570. height: math.unit(4.5, "meters")
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(1250, "meters"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Megamacro",
  3579. height: math.unit(125, "km")
  3580. },
  3581. {
  3582. name: "Gigamacro",
  3583. height: math.unit(26000, "km")
  3584. }
  3585. ]
  3586. ))
  3587. characterMakers.push(() => makeCharacter(
  3588. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3589. {
  3590. front: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(180, "lb"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/yakuz/front.svg"
  3596. }
  3597. }
  3598. },
  3599. [
  3600. {
  3601. name: "Small",
  3602. height: math.unit(5, "meters")
  3603. },
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(1500, "meters"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Megamacro",
  3611. height: math.unit(200, "km")
  3612. },
  3613. {
  3614. name: "Gigamacro",
  3615. height: math.unit(100000, "km")
  3616. }
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(175, "lb"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/mirova/front.svg",
  3628. extra: 3334/3071,
  3629. bottom: 42/3375.6
  3630. }
  3631. }
  3632. },
  3633. [
  3634. {
  3635. name: "Small",
  3636. height: math.unit(5, "meters")
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(900, "meters"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Megamacro",
  3645. height: math.unit(135, "km")
  3646. },
  3647. {
  3648. name: "Gigamacro",
  3649. height: math.unit(20000, "km")
  3650. }
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3655. {
  3656. side: {
  3657. height: math.unit(28.35, "feet"),
  3658. weight: math.unit(99.75, "tons"),
  3659. name: "Side",
  3660. image: {
  3661. source: "./media/characters/asana-mech/side.svg",
  3662. extra: 923/699,
  3663. bottom: 50/975
  3664. }
  3665. },
  3666. chaingun: {
  3667. height: math.unit(7, "feet"),
  3668. weight: math.unit(2400, "lb"),
  3669. name: "Chaingun",
  3670. image: {
  3671. source: "./media/characters/asana-mech/chaingun.svg"
  3672. }
  3673. },
  3674. laser: {
  3675. height: math.unit(7.12, "feet"),
  3676. weight: math.unit(2000, "lb"),
  3677. name: "Laser",
  3678. image: {
  3679. source: "./media/characters/asana-mech/laser.svg"
  3680. }
  3681. },
  3682. },
  3683. [
  3684. {
  3685. name: "Normal",
  3686. height: math.unit(28.35, "feet"),
  3687. default: true
  3688. },
  3689. {
  3690. name: "Macro",
  3691. height: math.unit(2500, "feet")
  3692. },
  3693. {
  3694. name: "Megamacro",
  3695. height: math.unit(25, "miles")
  3696. },
  3697. {
  3698. name: "Examacro",
  3699. height: math.unit(6e8, "lightyears")
  3700. },
  3701. ]
  3702. ))
  3703. characterMakers.push(() => makeCharacter(
  3704. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3705. {
  3706. front: {
  3707. height: math.unit(5, "meters"),
  3708. weight: math.unit(1000, "kg"),
  3709. name: "Front",
  3710. image: {
  3711. source: "./media/characters/asche/front.svg",
  3712. extra: 1258/1190,
  3713. bottom: 47/1305
  3714. }
  3715. },
  3716. frontUnderwear: {
  3717. height: math.unit(5, "meters"),
  3718. weight: math.unit(1000, "kg"),
  3719. name: "Front (Underwear)",
  3720. image: {
  3721. source: "./media/characters/asche/front-underwear.svg",
  3722. extra: 1258/1190,
  3723. bottom: 47/1305
  3724. }
  3725. },
  3726. frontDressed: {
  3727. height: math.unit(5, "meters"),
  3728. weight: math.unit(1000, "kg"),
  3729. name: "Front (Dressed)",
  3730. image: {
  3731. source: "./media/characters/asche/front-dressed.svg",
  3732. extra: 1258/1190,
  3733. bottom: 47/1305
  3734. }
  3735. },
  3736. frontArmor: {
  3737. height: math.unit(5, "meters"),
  3738. weight: math.unit(1000, "kg"),
  3739. name: "Front (Armored)",
  3740. image: {
  3741. source: "./media/characters/asche/front-armored.svg",
  3742. extra: 1374 / 1308,
  3743. bottom: 23/1397
  3744. }
  3745. },
  3746. mp724: {
  3747. height: math.unit(0.96, "meters"),
  3748. weight: math.unit(38, "kg"),
  3749. name: "H&K MP724",
  3750. image: {
  3751. source: "./media/characters/asche/h&k-mp724.svg"
  3752. }
  3753. },
  3754. side: {
  3755. height: math.unit(5, "meters"),
  3756. weight: math.unit(1000, "kg"),
  3757. name: "Side",
  3758. image: {
  3759. source: "./media/characters/asche/side.svg",
  3760. extra: 1717 / 1609,
  3761. bottom: 0.005
  3762. }
  3763. },
  3764. back: {
  3765. height: math.unit(5, "meters"),
  3766. weight: math.unit(1000, "kg"),
  3767. name: "Back",
  3768. image: {
  3769. source: "./media/characters/asche/back.svg",
  3770. extra: 1570 / 1501
  3771. }
  3772. },
  3773. },
  3774. [
  3775. {
  3776. name: "DEFCON 5",
  3777. height: math.unit(5, "meters")
  3778. },
  3779. {
  3780. name: "DEFCON 4",
  3781. height: math.unit(500, "meters"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "DEFCON 3",
  3786. height: math.unit(5, "km")
  3787. },
  3788. {
  3789. name: "DEFCON 2",
  3790. height: math.unit(500, "km")
  3791. },
  3792. {
  3793. name: "DEFCON 1",
  3794. height: math.unit(500000, "km")
  3795. },
  3796. {
  3797. name: "DEFCON 0",
  3798. height: math.unit(3, "gigaparsecs")
  3799. },
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(2, "meters"),
  3807. weight: math.unit(76, "kg"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/gale/front.svg"
  3811. }
  3812. },
  3813. frontAlt1: {
  3814. height: math.unit(2, "meters"),
  3815. weight: math.unit(76, "kg"),
  3816. name: "Front (Alt 1)",
  3817. image: {
  3818. source: "./media/characters/gale/front-alt-1.svg"
  3819. }
  3820. },
  3821. frontAlt2: {
  3822. height: math.unit(2, "meters"),
  3823. weight: math.unit(76, "kg"),
  3824. name: "Front (Alt 2)",
  3825. image: {
  3826. source: "./media/characters/gale/front-alt-2.svg"
  3827. }
  3828. },
  3829. },
  3830. [
  3831. {
  3832. name: "Normal",
  3833. height: math.unit(7, "feet")
  3834. },
  3835. {
  3836. name: "Macro",
  3837. height: math.unit(150, "feet"),
  3838. default: true
  3839. },
  3840. {
  3841. name: "Macro+",
  3842. height: math.unit(300, "feet")
  3843. },
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3848. {
  3849. front: {
  3850. height: math.unit(2, "meters"),
  3851. weight: math.unit(76, "kg"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/draylen/front.svg"
  3855. }
  3856. }
  3857. },
  3858. [
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(150, "feet"),
  3862. default: true
  3863. }
  3864. ]
  3865. ))
  3866. characterMakers.push(() => makeCharacter(
  3867. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3868. {
  3869. front: {
  3870. height: math.unit(7 + 9 / 12, "feet"),
  3871. weight: math.unit(379, "lbs"),
  3872. name: "Front",
  3873. image: {
  3874. source: "./media/characters/chez/front.svg"
  3875. }
  3876. },
  3877. side: {
  3878. height: math.unit(7 + 9 / 12, "feet"),
  3879. weight: math.unit(379, "lbs"),
  3880. name: "Side",
  3881. image: {
  3882. source: "./media/characters/chez/side.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Normal",
  3889. height: math.unit(7 + 9 / 12, "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "God King",
  3894. height: math.unit(9750000, "meters")
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3900. {
  3901. front: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(275, "lbs"),
  3904. name: "Front",
  3905. image: {
  3906. source: "./media/characters/kaylum/front.svg",
  3907. bottom: 0.01,
  3908. extra: 1166 / 1031
  3909. }
  3910. },
  3911. frontWingless: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(275, "lbs"),
  3914. name: "Front (Wingless)",
  3915. image: {
  3916. source: "./media/characters/kaylum/front-wingless.svg",
  3917. bottom: 0.01,
  3918. extra: 1117 / 1031
  3919. }
  3920. }
  3921. },
  3922. [
  3923. {
  3924. name: "Normal",
  3925. height: math.unit(3.05, "meters")
  3926. },
  3927. {
  3928. name: "Master",
  3929. height: math.unit(5.5, "meters")
  3930. },
  3931. {
  3932. name: "Rampage",
  3933. height: math.unit(19, "meters")
  3934. },
  3935. {
  3936. name: "Macro Lite",
  3937. height: math.unit(37, "meters")
  3938. },
  3939. {
  3940. name: "Hyper Predator",
  3941. height: math.unit(61, "meters")
  3942. },
  3943. {
  3944. name: "Macro",
  3945. height: math.unit(138, "meters"),
  3946. default: true
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(150, "lbs"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/geta/front.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Micro",
  3965. height: math.unit(3, "inches"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(5 + 5 / 12, "feet")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(300, "lbs"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/tyrnn/front.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Main Height",
  3989. height: math.unit(355, "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Fave. Height",
  3994. height: math.unit(2400, "feet")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(300, "lbs"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/appledectomy/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(2500, "feet")
  4014. },
  4015. {
  4016. name: "Megamacro",
  4017. height: math.unit(50, "miles"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Gigamacro",
  4022. height: math.unit(5000, "miles")
  4023. },
  4024. {
  4025. name: "Teramacro",
  4026. height: math.unit(250000, "miles")
  4027. },
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(200, "lbs"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/vulpes/front.svg",
  4039. extra: 573 / 543,
  4040. bottom: 0.033
  4041. }
  4042. },
  4043. side: {
  4044. height: math.unit(6, "feet"),
  4045. weight: math.unit(200, "lbs"),
  4046. name: "Side",
  4047. image: {
  4048. source: "./media/characters/vulpes/side.svg",
  4049. extra: 573 / 543,
  4050. bottom: 0.01
  4051. }
  4052. },
  4053. back: {
  4054. height: math.unit(6, "feet"),
  4055. weight: math.unit(200, "lbs"),
  4056. name: "Back",
  4057. image: {
  4058. source: "./media/characters/vulpes/back.svg",
  4059. extra: 573 / 543,
  4060. }
  4061. },
  4062. feet: {
  4063. height: math.unit(1.276, "feet"),
  4064. name: "Feet",
  4065. image: {
  4066. source: "./media/characters/vulpes/feet.svg"
  4067. }
  4068. },
  4069. maw: {
  4070. height: math.unit(1.18, "feet"),
  4071. name: "Maw",
  4072. image: {
  4073. source: "./media/characters/vulpes/maw.svg"
  4074. }
  4075. },
  4076. },
  4077. [
  4078. {
  4079. name: "Micro",
  4080. height: math.unit(2, "inches")
  4081. },
  4082. {
  4083. name: "Normal",
  4084. height: math.unit(6.3, "feet")
  4085. },
  4086. {
  4087. name: "Macro",
  4088. height: math.unit(850, "feet")
  4089. },
  4090. {
  4091. name: "Megamacro",
  4092. height: math.unit(7500, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(570000, "miles")
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4103. {
  4104. front: {
  4105. height: math.unit(6, "feet"),
  4106. weight: math.unit(210, "lbs"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/rain-fallen/front.svg"
  4110. }
  4111. },
  4112. side: {
  4113. height: math.unit(6, "feet"),
  4114. weight: math.unit(210, "lbs"),
  4115. name: "Side",
  4116. image: {
  4117. source: "./media/characters/rain-fallen/side.svg"
  4118. }
  4119. },
  4120. back: {
  4121. height: math.unit(6, "feet"),
  4122. weight: math.unit(210, "lbs"),
  4123. name: "Back",
  4124. image: {
  4125. source: "./media/characters/rain-fallen/back.svg"
  4126. }
  4127. },
  4128. feral: {
  4129. height: math.unit(9, "feet"),
  4130. weight: math.unit(700, "lbs"),
  4131. name: "Feral",
  4132. image: {
  4133. source: "./media/characters/rain-fallen/feral.svg"
  4134. }
  4135. },
  4136. },
  4137. [
  4138. {
  4139. name: "Normal",
  4140. height: math.unit(5, "meter")
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(150, "meter"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Megamacro",
  4149. height: math.unit(278e6, "meter")
  4150. },
  4151. {
  4152. name: "Gigamacro",
  4153. height: math.unit(2e9, "meter")
  4154. },
  4155. {
  4156. name: "Teramacro",
  4157. height: math.unit(8e12, "meter")
  4158. },
  4159. {
  4160. name: "Devourer",
  4161. height: math.unit(14, "zettameters")
  4162. },
  4163. {
  4164. name: "Scarlet King",
  4165. height: math.unit(18, "yottameters")
  4166. },
  4167. {
  4168. name: "Void",
  4169. height: math.unit(6.66e66, "yottameters")
  4170. }
  4171. ]
  4172. ))
  4173. characterMakers.push(() => makeCharacter(
  4174. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4175. {
  4176. standing: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(180, "lbs"),
  4179. name: "Standing",
  4180. image: {
  4181. source: "./media/characters/zaakira/standing.svg"
  4182. }
  4183. },
  4184. laying: {
  4185. height: math.unit(3, "feet"),
  4186. weight: math.unit(180, "lbs"),
  4187. name: "Laying",
  4188. image: {
  4189. source: "./media/characters/zaakira/laying.svg"
  4190. }
  4191. },
  4192. },
  4193. [
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(12, "feet")
  4197. },
  4198. {
  4199. name: "Macro",
  4200. height: math.unit(279, "feet"),
  4201. default: true
  4202. }
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4207. {
  4208. femSfw: {
  4209. height: math.unit(8, "feet"),
  4210. weight: math.unit(350, "lb"),
  4211. name: "Fem",
  4212. image: {
  4213. source: "./media/characters/sigvald/fem-sfw.svg",
  4214. extra: 182/164,
  4215. bottom: 8.7/190.5
  4216. }
  4217. },
  4218. femNsfw: {
  4219. height: math.unit(8, "feet"),
  4220. weight: math.unit(350, "lb"),
  4221. name: "Fem (NSFW)",
  4222. image: {
  4223. source: "./media/characters/sigvald/fem-nsfw.svg",
  4224. extra: 182/164,
  4225. bottom: 8.7/190.5
  4226. }
  4227. },
  4228. maleNsfw: {
  4229. height: math.unit(8, "feet"),
  4230. weight: math.unit(350, "lb"),
  4231. name: "Male (NSFW)",
  4232. image: {
  4233. source: "./media/characters/sigvald/male-nsfw.svg",
  4234. extra: 182/164,
  4235. bottom: 8.7/190.5
  4236. }
  4237. },
  4238. hermNsfw: {
  4239. height: math.unit(8, "feet"),
  4240. weight: math.unit(350, "lb"),
  4241. name: "Herm (NSFW)",
  4242. image: {
  4243. source: "./media/characters/sigvald/herm-nsfw.svg",
  4244. extra: 182/164,
  4245. bottom: 8.7/190.5
  4246. }
  4247. },
  4248. dick: {
  4249. height: math.unit(2.36, "feet"),
  4250. name: "Dick",
  4251. image: {
  4252. source: "./media/characters/sigvald/dick.svg"
  4253. }
  4254. },
  4255. eye: {
  4256. height: math.unit(0.31, "feet"),
  4257. name: "Eye",
  4258. image: {
  4259. source: "./media/characters/sigvald/eye.svg"
  4260. }
  4261. },
  4262. mouth: {
  4263. height: math.unit(0.92, "feet"),
  4264. name: "Mouth",
  4265. image: {
  4266. source: "./media/characters/sigvald/mouth.svg"
  4267. }
  4268. },
  4269. paws: {
  4270. height: math.unit(2.2, "feet"),
  4271. name: "Paws",
  4272. image: {
  4273. source: "./media/characters/sigvald/paws.svg"
  4274. }
  4275. }
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(8, "feet")
  4281. },
  4282. {
  4283. name: "Large",
  4284. height: math.unit(12, "feet")
  4285. },
  4286. {
  4287. name: "Larger",
  4288. height: math.unit(20, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(150, "feet")
  4293. },
  4294. {
  4295. name: "Macro+",
  4296. height: math.unit(200, "feet"),
  4297. default: true
  4298. },
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4303. {
  4304. side: {
  4305. height: math.unit(12, "feet"),
  4306. weight: math.unit(2000, "kg"),
  4307. name: "Side",
  4308. image: {
  4309. source: "./media/characters/scott/side.svg",
  4310. extra: 754 / 724,
  4311. bottom: 0.069
  4312. }
  4313. },
  4314. upright: {
  4315. height: math.unit(12, "feet"),
  4316. weight: math.unit(2000, "kg"),
  4317. name: "Upright",
  4318. image: {
  4319. source: "./media/characters/scott/upright.svg",
  4320. extra: 3881 / 3722,
  4321. bottom: 0.05
  4322. }
  4323. },
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(12, "feet"),
  4329. default: true
  4330. },
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4335. {
  4336. side: {
  4337. height: math.unit(8, "meters"),
  4338. weight: math.unit(84755, "lbs"),
  4339. name: "Side",
  4340. image: {
  4341. source: "./media/characters/tobias/side.svg",
  4342. extra: 1474 / 1096,
  4343. bottom: 38.9 / 1513.1235
  4344. }
  4345. },
  4346. },
  4347. [
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(8, "meters"),
  4351. default: true
  4352. },
  4353. ]
  4354. ))
  4355. characterMakers.push(() => makeCharacter(
  4356. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4357. {
  4358. front: {
  4359. height: math.unit(5.5, "feet"),
  4360. weight: math.unit(400, "lbs"),
  4361. name: "Front",
  4362. image: {
  4363. source: "./media/characters/kieran/front.svg",
  4364. extra: 2694 / 2364,
  4365. bottom: 217 / 2908
  4366. }
  4367. },
  4368. side: {
  4369. height: math.unit(5.5, "feet"),
  4370. weight: math.unit(400, "lbs"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/kieran/side.svg",
  4374. extra: 875 / 777,
  4375. bottom: 84.6 / 959
  4376. }
  4377. },
  4378. },
  4379. [
  4380. {
  4381. name: "Normal",
  4382. height: math.unit(5.5, "feet"),
  4383. default: true
  4384. },
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4389. {
  4390. side: {
  4391. height: math.unit(2, "meters"),
  4392. weight: math.unit(70, "kg"),
  4393. name: "Side",
  4394. image: {
  4395. source: "./media/characters/sanya/side.svg",
  4396. bottom: 0.02,
  4397. extra: 1.02
  4398. }
  4399. },
  4400. },
  4401. [
  4402. {
  4403. name: "Small",
  4404. height: math.unit(2, "meters")
  4405. },
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(3, "meters")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(16, "meters"),
  4413. default: true
  4414. },
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(2, "meters"),
  4422. weight: math.unit(120, "kg"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/miranda/front.svg",
  4426. extra: 195/185,
  4427. bottom: 10.9/206.5
  4428. }
  4429. },
  4430. back: {
  4431. height: math.unit(2, "meters"),
  4432. weight: math.unit(120, "kg"),
  4433. name: "Back",
  4434. image: {
  4435. source: "./media/characters/miranda/back.svg",
  4436. extra: 201/193,
  4437. bottom: 2.3/203.7
  4438. }
  4439. },
  4440. },
  4441. [
  4442. {
  4443. name: "Normal",
  4444. height: math.unit(10, "feet"),
  4445. default: true
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "James", species: ["deer"], tags: ["anthro"] },
  4451. {
  4452. side: {
  4453. height: math.unit(2, "meters"),
  4454. weight: math.unit(100, "kg"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/james/front.svg",
  4458. extra: 10 / 8.5
  4459. }
  4460. },
  4461. },
  4462. [
  4463. {
  4464. name: "Normal",
  4465. height: math.unit(8.5, "feet"),
  4466. default: true
  4467. }
  4468. ]
  4469. ))
  4470. characterMakers.push(() => makeCharacter(
  4471. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4472. {
  4473. side: {
  4474. height: math.unit(9.5, "feet"),
  4475. weight: math.unit(2500, "lbs"),
  4476. name: "Side",
  4477. image: {
  4478. source: "./media/characters/heather/side.svg"
  4479. }
  4480. },
  4481. },
  4482. [
  4483. {
  4484. name: "Normal",
  4485. height: math.unit(9.5, "feet"),
  4486. default: true
  4487. }
  4488. ]
  4489. ))
  4490. characterMakers.push(() => makeCharacter(
  4491. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4492. {
  4493. side: {
  4494. height: math.unit(6.5, "feet"),
  4495. weight: math.unit(400, "lbs"),
  4496. name: "Side",
  4497. image: {
  4498. source: "./media/characters/lukas/side.svg",
  4499. extra: 7.25 / 6.5
  4500. }
  4501. },
  4502. },
  4503. [
  4504. {
  4505. name: "Normal",
  4506. height: math.unit(6.5, "feet"),
  4507. default: true
  4508. }
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4513. {
  4514. side: {
  4515. height: math.unit(5, "feet"),
  4516. weight: math.unit(3000, "lbs"),
  4517. name: "Side",
  4518. image: {
  4519. source: "./media/characters/louise/side.svg"
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(5, "feet"),
  4527. default: true
  4528. }
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4533. {
  4534. side: {
  4535. height: math.unit(6, "feet"),
  4536. weight: math.unit(150, "lbs"),
  4537. name: "Side",
  4538. image: {
  4539. source: "./media/characters/ramona/side.svg"
  4540. }
  4541. },
  4542. },
  4543. [
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(5.3, "meters"),
  4547. default: true
  4548. },
  4549. {
  4550. name: "Macro",
  4551. height: math.unit(20, "stories")
  4552. },
  4553. {
  4554. name: "Macro+",
  4555. height: math.unit(50, "stories")
  4556. },
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4561. {
  4562. standing: {
  4563. height: math.unit(5.75, "feet"),
  4564. weight: math.unit(160, "lbs"),
  4565. name: "Standing",
  4566. image: {
  4567. source: "./media/characters/deerpuff/standing.svg",
  4568. extra: 682 / 624
  4569. }
  4570. },
  4571. sitting: {
  4572. height: math.unit(5.75 / 1.79, "feet"),
  4573. weight: math.unit(160, "lbs"),
  4574. name: "Sitting",
  4575. image: {
  4576. source: "./media/characters/deerpuff/sitting.svg",
  4577. bottom: 44 / 400,
  4578. extra: 1
  4579. }
  4580. },
  4581. taurLaying: {
  4582. height: math.unit(6, "feet"),
  4583. weight: math.unit(400, "lbs"),
  4584. name: "Taur (Laying)",
  4585. image: {
  4586. source: "./media/characters/deerpuff/taur-laying.svg"
  4587. }
  4588. },
  4589. },
  4590. [
  4591. {
  4592. name: "Puffball",
  4593. height: math.unit(6, "inches")
  4594. },
  4595. {
  4596. name: "Normalpuff",
  4597. height: math.unit(5.75, "feet")
  4598. },
  4599. {
  4600. name: "Macropuff",
  4601. height: math.unit(1500, "feet"),
  4602. default: true
  4603. },
  4604. {
  4605. name: "Megapuff",
  4606. height: math.unit(500, "miles")
  4607. },
  4608. {
  4609. name: "Gigapuff",
  4610. height: math.unit(250000, "miles")
  4611. },
  4612. {
  4613. name: "Omegapuff",
  4614. height: math.unit(1000, "lightyears")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4620. {
  4621. stomping: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(170, "lbs"),
  4624. name: "Stomping",
  4625. image: {
  4626. source: "./media/characters/vivian/stomping.svg"
  4627. }
  4628. },
  4629. sitting: {
  4630. height: math.unit(6 / 1.75, "feet"),
  4631. weight: math.unit(170, "lbs"),
  4632. name: "Sitting",
  4633. image: {
  4634. source: "./media/characters/vivian/sitting.svg",
  4635. bottom: 1 / 6.4,
  4636. extra: 1,
  4637. }
  4638. },
  4639. },
  4640. [
  4641. {
  4642. name: "Normal",
  4643. height: math.unit(7, "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(10, "stories")
  4649. },
  4650. {
  4651. name: "Macro+",
  4652. height: math.unit(30, "stories")
  4653. },
  4654. {
  4655. name: "Megamacro",
  4656. height: math.unit(10, "miles")
  4657. },
  4658. {
  4659. name: "Megamacro+",
  4660. height: math.unit(2750000, "meters")
  4661. },
  4662. ]
  4663. ))
  4664. characterMakers.push(() => makeCharacter(
  4665. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4666. {
  4667. front: {
  4668. height: math.unit(6, "feet"),
  4669. weight: math.unit(160, "lbs"),
  4670. name: "Front",
  4671. image: {
  4672. source: "./media/characters/prince/front.svg",
  4673. extra: 3400 / 3000
  4674. }
  4675. },
  4676. jumping: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(160, "lbs"),
  4679. name: "Jumping",
  4680. image: {
  4681. source: "./media/characters/prince/jump.svg",
  4682. extra: 2555 / 2134
  4683. }
  4684. },
  4685. },
  4686. [
  4687. {
  4688. name: "Normal",
  4689. height: math.unit(7.75, "feet"),
  4690. default: true
  4691. },
  4692. {
  4693. name: "Not cute",
  4694. height: math.unit(17, "feet")
  4695. },
  4696. {
  4697. name: "I said NOT",
  4698. height: math.unit(91, "feet")
  4699. },
  4700. {
  4701. name: "Please stop",
  4702. height: math.unit(560, "feet")
  4703. },
  4704. {
  4705. name: "What have you done",
  4706. height: math.unit(2200, "feet")
  4707. },
  4708. {
  4709. name: "Deer God",
  4710. height: math.unit(3.6, "miles")
  4711. },
  4712. ]
  4713. ))
  4714. characterMakers.push(() => makeCharacter(
  4715. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4716. {
  4717. standing: {
  4718. height: math.unit(6, "feet"),
  4719. weight: math.unit(300, "lbs"),
  4720. name: "Standing",
  4721. image: {
  4722. source: "./media/characters/psymon/standing.svg",
  4723. extra: 1888 / 1810,
  4724. bottom: 0.05
  4725. }
  4726. },
  4727. slithering: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(300, "lbs"),
  4730. name: "Slithering",
  4731. image: {
  4732. source: "./media/characters/psymon/slithering.svg",
  4733. extra: 1330 / 1224
  4734. }
  4735. },
  4736. slitheringAlt: {
  4737. height: math.unit(6, "feet"),
  4738. weight: math.unit(300, "lbs"),
  4739. name: "Slithering (Alt)",
  4740. image: {
  4741. source: "./media/characters/psymon/slithering-alt.svg",
  4742. extra: 1330 / 1224
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Normal",
  4749. height: math.unit(11.25, "feet"),
  4750. default: true
  4751. },
  4752. {
  4753. name: "Large",
  4754. height: math.unit(27, "feet")
  4755. },
  4756. {
  4757. name: "Giant",
  4758. height: math.unit(87, "feet")
  4759. },
  4760. {
  4761. name: "Macro",
  4762. height: math.unit(365, "feet")
  4763. },
  4764. {
  4765. name: "Megamacro",
  4766. height: math.unit(3, "miles")
  4767. },
  4768. {
  4769. name: "World Serpent",
  4770. height: math.unit(8000, "miles")
  4771. },
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4776. {
  4777. front: {
  4778. height: math.unit(6, "feet"),
  4779. weight: math.unit(180, "lbs"),
  4780. name: "Front",
  4781. image: {
  4782. source: "./media/characters/daimos/front.svg",
  4783. extra: 4160 / 3897,
  4784. bottom: 0.021
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Normal",
  4791. height: math.unit(8, "feet"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Big Dog",
  4796. height: math.unit(22, "feet")
  4797. },
  4798. {
  4799. name: "Macro",
  4800. height: math.unit(127, "feet")
  4801. },
  4802. {
  4803. name: "Megamacro",
  4804. height: math.unit(3600, "feet")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4810. {
  4811. side: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(180, "lbs"),
  4814. name: "Side",
  4815. image: {
  4816. source: "./media/characters/blake/side.svg",
  4817. extra: 1212 / 1120,
  4818. bottom: 0.05
  4819. }
  4820. },
  4821. crouched: {
  4822. height: math.unit(6 * 0.57, "feet"),
  4823. weight: math.unit(180, "lbs"),
  4824. name: "Crouched",
  4825. image: {
  4826. source: "./media/characters/blake/crouched.svg",
  4827. extra: 840 / 587,
  4828. bottom: 0.04
  4829. }
  4830. },
  4831. bent: {
  4832. height: math.unit(6 * 0.75, "feet"),
  4833. weight: math.unit(180, "lbs"),
  4834. name: "Bent",
  4835. image: {
  4836. source: "./media/characters/blake/bent.svg",
  4837. extra: 592 / 544,
  4838. bottom: 0.035
  4839. }
  4840. },
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(8 + 1 / 6, "feet"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Big Backside",
  4850. height: math.unit(37, "feet")
  4851. },
  4852. {
  4853. name: "Subway Shredder",
  4854. height: math.unit(72, "feet")
  4855. },
  4856. {
  4857. name: "City Carver",
  4858. height: math.unit(1675, "feet")
  4859. },
  4860. {
  4861. name: "Tectonic Tweaker",
  4862. height: math.unit(2300, "miles")
  4863. },
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4868. {
  4869. front: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(180, "lbs"),
  4872. name: "Front",
  4873. image: {
  4874. source: "./media/characters/guisetto/front.svg",
  4875. extra: 856 / 817,
  4876. bottom: 0.06
  4877. }
  4878. },
  4879. airborne: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(180, "lbs"),
  4882. name: "Airborne",
  4883. image: {
  4884. source: "./media/characters/guisetto/airborne.svg",
  4885. extra: 584 / 525
  4886. }
  4887. },
  4888. },
  4889. [
  4890. {
  4891. name: "Normal",
  4892. height: math.unit(10 + 11 / 12, "feet"),
  4893. default: true
  4894. },
  4895. {
  4896. name: "Large",
  4897. height: math.unit(35, "feet")
  4898. },
  4899. {
  4900. name: "Macro",
  4901. height: math.unit(475, "feet")
  4902. },
  4903. ]
  4904. ))
  4905. characterMakers.push(() => makeCharacter(
  4906. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4907. {
  4908. front: {
  4909. height: math.unit(6, "feet"),
  4910. weight: math.unit(180, "lbs"),
  4911. name: "Front",
  4912. image: {
  4913. source: "./media/characters/luxor/front.svg",
  4914. extra: 2940 / 2152
  4915. }
  4916. },
  4917. back: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Back",
  4921. image: {
  4922. source: "./media/characters/luxor/back.svg",
  4923. extra: 1083 / 960
  4924. }
  4925. },
  4926. },
  4927. [
  4928. {
  4929. name: "Normal",
  4930. height: math.unit(5 + 5 / 6, "feet"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Lamp",
  4935. height: math.unit(50, "feet")
  4936. },
  4937. {
  4938. name: "Lämp",
  4939. height: math.unit(300, "feet")
  4940. },
  4941. {
  4942. name: "The sun is a lamp",
  4943. height: math.unit(250000, "miles")
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(50, "lbs"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/huoyan/front.svg"
  4956. }
  4957. },
  4958. side: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(180, "lbs"),
  4961. name: "Side",
  4962. image: {
  4963. source: "./media/characters/huoyan/side.svg"
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Chef",
  4970. height: math.unit(9, "feet")
  4971. },
  4972. {
  4973. name: "Normal",
  4974. height: math.unit(65, "feet"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro",
  4979. height: math.unit(780, "feet")
  4980. },
  4981. {
  4982. name: "Flaming Mountain",
  4983. height: math.unit(4.8, "miles")
  4984. },
  4985. {
  4986. name: "Celestial",
  4987. height: math.unit(765000, "miles")
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(5 + 3 / 4, "feet"),
  4996. weight: math.unit(120, "lbs"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/tails/front.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(5 + 3 / 4, "feet"),
  5007. default: true
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(4, "feet"),
  5016. weight: math.unit(50, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/rainy/front.svg"
  5020. }
  5021. }
  5022. },
  5023. [
  5024. {
  5025. name: "Macro",
  5026. height: math.unit(800, "feet"),
  5027. default: true
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5033. {
  5034. front: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(150, "lbs"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/rainier/front.svg"
  5040. }
  5041. }
  5042. },
  5043. [
  5044. {
  5045. name: "Micro",
  5046. height: math.unit(2, "mm"),
  5047. default: true
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(180, "lbs"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/andy/front.svg"
  5060. }
  5061. }
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(8, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(1000, "feet")
  5072. },
  5073. {
  5074. name: "Megamacro",
  5075. height: math.unit(5, "miles")
  5076. },
  5077. {
  5078. name: "Gigamacro",
  5079. height: math.unit(5000, "miles")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(210, "lbs"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/cimmaron/front-sfw.svg",
  5092. extra: 701 / 676,
  5093. bottom: 0.046
  5094. }
  5095. },
  5096. back: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(210, "lbs"),
  5099. name: "Back",
  5100. image: {
  5101. source: "./media/characters/cimmaron/back-sfw.svg",
  5102. extra: 701 / 676,
  5103. bottom: 0.046
  5104. }
  5105. },
  5106. frontNsfw: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(210, "lbs"),
  5109. name: "Front (NSFW)",
  5110. image: {
  5111. source: "./media/characters/cimmaron/front-nsfw.svg",
  5112. extra: 701 / 676,
  5113. bottom: 0.046
  5114. }
  5115. },
  5116. backNsfw: {
  5117. height: math.unit(6, "feet"),
  5118. weight: math.unit(210, "lbs"),
  5119. name: "Back (NSFW)",
  5120. image: {
  5121. source: "./media/characters/cimmaron/back-nsfw.svg",
  5122. extra: 701 / 676,
  5123. bottom: 0.046
  5124. }
  5125. },
  5126. dick: {
  5127. height: math.unit(1.714, "feet"),
  5128. name: "Dick",
  5129. image: {
  5130. source: "./media/characters/cimmaron/dick.svg"
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(6, "feet"),
  5138. default: true
  5139. },
  5140. {
  5141. name: "Macro Mayor",
  5142. height: math.unit(350, "meters")
  5143. },
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(200, "lbs"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/akari/front.svg",
  5155. extra: 962 / 901,
  5156. bottom: 0.04
  5157. }
  5158. }
  5159. },
  5160. [
  5161. {
  5162. name: "Micro",
  5163. height: math.unit(5, "inches"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(7, "feet")
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5174. {
  5175. front: {
  5176. height: math.unit(6, "feet"),
  5177. weight: math.unit(140, "lbs"),
  5178. name: "Front",
  5179. image: {
  5180. source: "./media/characters/cynosura/front.svg",
  5181. extra: 896 / 847
  5182. }
  5183. },
  5184. back: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(140, "lbs"),
  5187. name: "Back",
  5188. image: {
  5189. source: "./media/characters/cynosura/back.svg",
  5190. extra: 1365 / 1250
  5191. }
  5192. },
  5193. },
  5194. [
  5195. {
  5196. name: "Micro",
  5197. height: math.unit(4, "inches")
  5198. },
  5199. {
  5200. name: "Normal",
  5201. height: math.unit(5.75, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Tall",
  5206. height: math.unit(10, "feet")
  5207. },
  5208. {
  5209. name: "Big",
  5210. height: math.unit(20, "feet")
  5211. },
  5212. {
  5213. name: "Macro",
  5214. height: math.unit(50, "feet")
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(170, "lbs"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/gin/front.svg",
  5227. extra: 1.053,
  5228. bottom: 0.025
  5229. }
  5230. },
  5231. foot: {
  5232. height: math.unit(6 / 4.25, "feet"),
  5233. name: "Foot",
  5234. image: {
  5235. source: "./media/characters/gin/foot.svg"
  5236. }
  5237. },
  5238. sole: {
  5239. height: math.unit(6 / 4.40, "feet"),
  5240. name: "Sole",
  5241. image: {
  5242. source: "./media/characters/gin/sole.svg"
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(13 + 2 / 12, "feet")
  5250. },
  5251. {
  5252. name: "Macro",
  5253. height: math.unit(1500, "feet")
  5254. },
  5255. {
  5256. name: "Megamacro",
  5257. height: math.unit(200, "miles"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Gigamacro",
  5262. height: math.unit(500, "megameters")
  5263. },
  5264. {
  5265. name: "Teramacro",
  5266. height: math.unit(15, "lightyears")
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6 + 1 / 6, "feet"),
  5275. weight: math.unit(178, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/guy/front.svg"
  5279. }
  5280. }
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(6 + 1 / 6, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Large",
  5290. height: math.unit(25 + 7 / 12, "feet")
  5291. },
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(60 + 9 / 12, "feet")
  5295. },
  5296. {
  5297. name: "Macro+",
  5298. height: math.unit(246, "feet")
  5299. },
  5300. {
  5301. name: "Macro++",
  5302. height: math.unit(878, "feet")
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(9, "feet"),
  5311. weight: math.unit(800, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/tiberius/front.svg",
  5315. extra: 2295 / 2071
  5316. }
  5317. },
  5318. back: {
  5319. height: math.unit(9, "feet"),
  5320. weight: math.unit(800, "lbs"),
  5321. name: "Back",
  5322. image: {
  5323. source: "./media/characters/tiberius/back.svg",
  5324. extra: 2373 / 2160
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(9, "feet"),
  5332. default: true
  5333. }
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(600, "lbs"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/surgo/front.svg",
  5345. extra: 3591 / 2227
  5346. }
  5347. },
  5348. back: {
  5349. height: math.unit(6, "feet"),
  5350. weight: math.unit(600, "lbs"),
  5351. name: "Back",
  5352. image: {
  5353. source: "./media/characters/surgo/back.svg",
  5354. extra: 3557 / 2228
  5355. }
  5356. },
  5357. laying: {
  5358. height: math.unit(6 * 0.85, "feet"),
  5359. weight: math.unit(600, "lbs"),
  5360. name: "Laying",
  5361. image: {
  5362. source: "./media/characters/surgo/laying.svg"
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(6, "feet"),
  5370. default: true
  5371. }
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5376. {
  5377. side: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(150, "lbs"),
  5380. name: "Side",
  5381. image: {
  5382. source: "./media/characters/cibus/side.svg",
  5383. extra: 800 / 400
  5384. }
  5385. },
  5386. },
  5387. [
  5388. {
  5389. name: "Normal",
  5390. height: math.unit(6, "feet"),
  5391. default: true
  5392. }
  5393. ]
  5394. ))
  5395. characterMakers.push(() => makeCharacter(
  5396. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5397. {
  5398. front: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(240, "lbs"),
  5401. name: "Front",
  5402. image: {
  5403. source: "./media/characters/nibbles/front.svg"
  5404. }
  5405. },
  5406. side: {
  5407. height: math.unit(6, "feet"),
  5408. weight: math.unit(240, "lbs"),
  5409. name: "Side",
  5410. image: {
  5411. source: "./media/characters/nibbles/side.svg"
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(9, "feet"),
  5419. default: true
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5425. {
  5426. side: {
  5427. height: math.unit(5 + 1 / 6, "feet"),
  5428. weight: math.unit(130, "lbs"),
  5429. name: "Side",
  5430. image: {
  5431. source: "./media/characters/rikky/side.svg",
  5432. extra: 851/801
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(5 + 1 / 6, "feet")
  5440. },
  5441. {
  5442. name: "Macro",
  5443. height: math.unit(152, "feet"),
  5444. default: true
  5445. },
  5446. {
  5447. name: "Megamacro",
  5448. height: math.unit(7, "miles")
  5449. }
  5450. ]
  5451. ))
  5452. characterMakers.push(() => makeCharacter(
  5453. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5454. {
  5455. side: {
  5456. height: math.unit(370, "cm"),
  5457. weight: math.unit(350, "lbs"),
  5458. name: "Side",
  5459. image: {
  5460. source: "./media/characters/malfressa/side.svg"
  5461. }
  5462. },
  5463. walking: {
  5464. height: math.unit(370, "cm"),
  5465. weight: math.unit(350, "lbs"),
  5466. name: "Walking",
  5467. image: {
  5468. source: "./media/characters/malfressa/walking.svg"
  5469. }
  5470. },
  5471. feral: {
  5472. height: math.unit(2500, "cm"),
  5473. weight: math.unit(100000, "lbs"),
  5474. name: "Feral",
  5475. image: {
  5476. source: "./media/characters/malfressa/feral.svg",
  5477. extra: 2108 / 837,
  5478. bottom: 0.02
  5479. }
  5480. },
  5481. },
  5482. [
  5483. {
  5484. name: "Normal",
  5485. height: math.unit(370, "cm")
  5486. },
  5487. {
  5488. name: "Macro",
  5489. height: math.unit(300, "meters"),
  5490. default: true
  5491. }
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5496. {
  5497. front: {
  5498. height: math.unit(6, "feet"),
  5499. weight: math.unit(60, "kg"),
  5500. name: "Front",
  5501. image: {
  5502. source: "./media/characters/jaro/front.svg"
  5503. }
  5504. },
  5505. back: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(60, "kg"),
  5508. name: "Back",
  5509. image: {
  5510. source: "./media/characters/jaro/back.svg"
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Micro",
  5517. height: math.unit(7, "inches")
  5518. },
  5519. {
  5520. name: "Normal",
  5521. height: math.unit(5.5, "feet"),
  5522. default: true
  5523. },
  5524. {
  5525. name: "Minimacro",
  5526. height: math.unit(20, "feet")
  5527. },
  5528. {
  5529. name: "Macro",
  5530. height: math.unit(200, "meters")
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5536. {
  5537. front: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(195, "lb"),
  5540. name: "Front",
  5541. image: {
  5542. source: "./media/characters/rogue/front.svg"
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(90, "feet"),
  5550. default: true
  5551. },
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5556. {
  5557. front: {
  5558. height: math.unit(5 + 8 / 12, "feet"),
  5559. weight: math.unit(140, "lb"),
  5560. name: "Front",
  5561. image: {
  5562. source: "./media/characters/piper/front.svg",
  5563. extra: 3928 / 3681
  5564. }
  5565. },
  5566. },
  5567. [
  5568. {
  5569. name: "Micro",
  5570. height: math.unit(2, "inches")
  5571. },
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(5 + 8 / 12, "feet")
  5575. },
  5576. {
  5577. name: "Macro",
  5578. height: math.unit(250, "feet"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Megamacro",
  5583. height: math.unit(7, "miles")
  5584. },
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5589. {
  5590. front: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(220, "lb"),
  5593. name: "Front",
  5594. image: {
  5595. source: "./media/characters/gemini/front.svg"
  5596. }
  5597. },
  5598. back: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(220, "lb"),
  5601. name: "Back",
  5602. image: {
  5603. source: "./media/characters/gemini/back.svg"
  5604. }
  5605. },
  5606. kneeling: {
  5607. height: math.unit(6 / 1.5, "feet"),
  5608. weight: math.unit(220, "lb"),
  5609. name: "Kneeling",
  5610. image: {
  5611. source: "./media/characters/gemini/kneeling.svg",
  5612. bottom: 0.02
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(300, "meters"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Megamacro",
  5624. height: math.unit(6900, "meters")
  5625. },
  5626. ]
  5627. ))
  5628. characterMakers.push(() => makeCharacter(
  5629. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5630. {
  5631. anthro: {
  5632. height: math.unit(2.35, "meters"),
  5633. weight: math.unit(73, "kg"),
  5634. name: "Anthro",
  5635. image: {
  5636. source: "./media/characters/alicia/anthro.svg",
  5637. extra: 2571 / 2385,
  5638. bottom: 75 / 2648
  5639. }
  5640. },
  5641. paw: {
  5642. height: math.unit(1.32, "feet"),
  5643. name: "Paw",
  5644. image: {
  5645. source: "./media/characters/alicia/paw.svg"
  5646. }
  5647. },
  5648. feral: {
  5649. height: math.unit(1.69, "meters"),
  5650. weight: math.unit(73, "kg"),
  5651. name: "Feral",
  5652. image: {
  5653. source: "./media/characters/alicia/feral.svg",
  5654. extra: 2123 / 1715,
  5655. bottom: 222 / 2349
  5656. }
  5657. },
  5658. },
  5659. [
  5660. {
  5661. name: "Normal",
  5662. height: math.unit(2.35, "meters")
  5663. },
  5664. {
  5665. name: "Macro",
  5666. height: math.unit(60, "meters"),
  5667. default: true
  5668. },
  5669. {
  5670. name: "Megamacro",
  5671. height: math.unit(10000, "kilometers")
  5672. },
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5677. {
  5678. front: {
  5679. height: math.unit(7, "feet"),
  5680. weight: math.unit(250, "lbs"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/archy/front.svg"
  5684. }
  5685. }
  5686. },
  5687. [
  5688. {
  5689. name: "Micro",
  5690. height: math.unit(1, "inch")
  5691. },
  5692. {
  5693. name: "Shorty",
  5694. height: math.unit(5, "feet")
  5695. },
  5696. {
  5697. name: "Normal",
  5698. height: math.unit(7, "feet")
  5699. },
  5700. {
  5701. name: "Macro",
  5702. height: math.unit(600, "meters"),
  5703. default: true
  5704. },
  5705. {
  5706. name: "Megamacro",
  5707. height: math.unit(1, "mile")
  5708. },
  5709. ]
  5710. ))
  5711. characterMakers.push(() => makeCharacter(
  5712. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5713. {
  5714. front: {
  5715. height: math.unit(1.65, "meters"),
  5716. weight: math.unit(74, "kg"),
  5717. name: "Front",
  5718. image: {
  5719. source: "./media/characters/berri/front.svg",
  5720. extra: 857 / 837,
  5721. bottom: 18 / 877
  5722. }
  5723. },
  5724. bum: {
  5725. height: math.unit(1.46, "feet"),
  5726. name: "Bum",
  5727. image: {
  5728. source: "./media/characters/berri/bum.svg"
  5729. }
  5730. },
  5731. mouth: {
  5732. height: math.unit(0.44, "feet"),
  5733. name: "Mouth",
  5734. image: {
  5735. source: "./media/characters/berri/mouth.svg"
  5736. }
  5737. },
  5738. paw: {
  5739. height: math.unit(0.826, "feet"),
  5740. name: "Paw",
  5741. image: {
  5742. source: "./media/characters/berri/paw.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(1.65, "meters")
  5750. },
  5751. {
  5752. name: "Macro",
  5753. height: math.unit(60, "m"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Megamacro",
  5758. height: math.unit(9.213, "km")
  5759. },
  5760. {
  5761. name: "Planet Eater",
  5762. height: math.unit(489, "megameters")
  5763. },
  5764. {
  5765. name: "Teramacro",
  5766. height: math.unit(2471635000000, "meters")
  5767. },
  5768. {
  5769. name: "Examacro",
  5770. height: math.unit(8.0624e+26, "meters")
  5771. }
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(1.72, "meters"),
  5779. weight: math.unit(68, "kg"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/lexi/front.svg"
  5783. }
  5784. }
  5785. },
  5786. [
  5787. {
  5788. name: "Very Smol",
  5789. height: math.unit(10, "mm")
  5790. },
  5791. {
  5792. name: "Micro",
  5793. height: math.unit(6.8, "cm"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Normal",
  5798. height: math.unit(1.72, "m")
  5799. }
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(1.69, "meters"),
  5807. weight: math.unit(68, "kg"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/martin/front.svg",
  5811. extra: 596 / 581
  5812. }
  5813. }
  5814. },
  5815. [
  5816. {
  5817. name: "Micro",
  5818. height: math.unit(6.85, "cm"),
  5819. default: true
  5820. },
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(1.69, "m")
  5824. }
  5825. ]
  5826. ))
  5827. characterMakers.push(() => makeCharacter(
  5828. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5829. {
  5830. front: {
  5831. height: math.unit(1.69, "meters"),
  5832. weight: math.unit(68, "kg"),
  5833. name: "Front",
  5834. image: {
  5835. source: "./media/characters/juno/front.svg"
  5836. }
  5837. }
  5838. },
  5839. [
  5840. {
  5841. name: "Micro",
  5842. height: math.unit(7, "cm")
  5843. },
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(1.89, "m")
  5847. },
  5848. {
  5849. name: "Macro",
  5850. height: math.unit(353, "meters"),
  5851. default: true
  5852. }
  5853. ]
  5854. ))
  5855. characterMakers.push(() => makeCharacter(
  5856. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5857. {
  5858. front: {
  5859. height: math.unit(1.93, "meters"),
  5860. weight: math.unit(83, "kg"),
  5861. name: "Front",
  5862. image: {
  5863. source: "./media/characters/samantha/front.svg"
  5864. }
  5865. },
  5866. frontClothed: {
  5867. height: math.unit(1.93, "meters"),
  5868. weight: math.unit(83, "kg"),
  5869. name: "Front (Clothed)",
  5870. image: {
  5871. source: "./media/characters/samantha/front-clothed.svg"
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(1.93, "meters"),
  5876. weight: math.unit(83, "kg"),
  5877. name: "Back",
  5878. image: {
  5879. source: "./media/characters/samantha/back.svg"
  5880. }
  5881. },
  5882. },
  5883. [
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(1.93, "m")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(74, "meters"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Macro+",
  5895. height: math.unit(223, "meters"),
  5896. },
  5897. {
  5898. name: "Megamacro",
  5899. height: math.unit(8381, "meters"),
  5900. },
  5901. {
  5902. name: "Megamacro+",
  5903. height: math.unit(12000, "kilometers")
  5904. },
  5905. ]
  5906. ))
  5907. characterMakers.push(() => makeCharacter(
  5908. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5909. {
  5910. front: {
  5911. height: math.unit(1.92, "meters"),
  5912. weight: math.unit(80, "kg"),
  5913. name: "Front",
  5914. image: {
  5915. source: "./media/characters/dr-clay/front.svg"
  5916. }
  5917. },
  5918. frontClothed: {
  5919. height: math.unit(1.92, "meters"),
  5920. weight: math.unit(80, "kg"),
  5921. name: "Front (Clothed)",
  5922. image: {
  5923. source: "./media/characters/dr-clay/front-clothed.svg"
  5924. }
  5925. }
  5926. },
  5927. [
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(1.92, "m")
  5931. },
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(214, "meters"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "Macro+",
  5939. height: math.unit(12.237, "meters"),
  5940. },
  5941. {
  5942. name: "Megamacro",
  5943. height: math.unit(557, "megameters"),
  5944. },
  5945. {
  5946. name: "Unimaginable",
  5947. height: math.unit(120e9, "lightyears")
  5948. },
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(2, "meters"),
  5956. weight: math.unit(80, "kg"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5960. }
  5961. }
  5962. },
  5963. [
  5964. {
  5965. name: "Teramacro",
  5966. height: math.unit(500000, "lightyears"),
  5967. default: true
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(2, "meters"),
  5976. weight: math.unit(150, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/vemus/front.svg",
  5980. extra: 2384 / 2084,
  5981. bottom: 0.0123
  5982. }
  5983. }
  5984. },
  5985. [
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(3.75, "meters"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Big",
  5993. height: math.unit(8, "meters")
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(100, "meters")
  5998. },
  5999. {
  6000. name: "Macro+",
  6001. height: math.unit(1500, "meters")
  6002. },
  6003. {
  6004. name: "Stellar",
  6005. height: math.unit(14e8, "meters")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6011. {
  6012. front: {
  6013. height: math.unit(2, "meters"),
  6014. weight: math.unit(70, "kg"),
  6015. name: "Front",
  6016. image: {
  6017. source: "./media/characters/beherit/front.svg",
  6018. extra: 1408 / 1242
  6019. }
  6020. }
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(6, "feet")
  6026. },
  6027. {
  6028. name: "Lorg",
  6029. height: math.unit(25, "feet"),
  6030. default: true
  6031. },
  6032. {
  6033. name: "Lorger",
  6034. height: math.unit(75, "feet")
  6035. },
  6036. {
  6037. name: "Macro",
  6038. height: math.unit(200, "meters")
  6039. },
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6044. {
  6045. front: {
  6046. height: math.unit(2, "meters"),
  6047. weight: math.unit(150, "kg"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/everett/front.svg",
  6051. extra: 2038 / 1737,
  6052. bottom: 0.03
  6053. }
  6054. },
  6055. paw: {
  6056. height: math.unit(2 / 3.6, "meters"),
  6057. name: "Paw",
  6058. image: {
  6059. source: "./media/characters/everett/paw.svg"
  6060. }
  6061. },
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(15, "feet"),
  6067. default: true
  6068. },
  6069. {
  6070. name: "Lorg",
  6071. height: math.unit(70, "feet"),
  6072. default: true
  6073. },
  6074. {
  6075. name: "Lorger",
  6076. height: math.unit(250, "feet")
  6077. },
  6078. {
  6079. name: "Macro",
  6080. height: math.unit(500, "meters")
  6081. },
  6082. ]
  6083. ))
  6084. characterMakers.push(() => makeCharacter(
  6085. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6086. {
  6087. front: {
  6088. height: math.unit(2, "meters"),
  6089. weight: math.unit(86, "kg"),
  6090. name: "Front",
  6091. image: {
  6092. source: "./media/characters/rose-lion/front.svg"
  6093. }
  6094. },
  6095. bent: {
  6096. height: math.unit(2 / 1.4288, "meters"),
  6097. weight: math.unit(86, "kg"),
  6098. name: "Bent",
  6099. image: {
  6100. source: "./media/characters/rose-lion/bent.svg"
  6101. }
  6102. }
  6103. },
  6104. [
  6105. {
  6106. name: "Mini-Micro",
  6107. height: math.unit(1, "cm")
  6108. },
  6109. {
  6110. name: "Micro",
  6111. height: math.unit(3.5, "inches"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(6 + 1 / 6, "feet")
  6117. },
  6118. {
  6119. name: "Mini-Macro",
  6120. height: math.unit(9 + 10 / 12, "feet")
  6121. },
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6126. {
  6127. front: {
  6128. height: math.unit(2, "meters"),
  6129. weight: math.unit(350, "lbs"),
  6130. name: "Front",
  6131. image: {
  6132. source: "./media/characters/regal/front.svg"
  6133. }
  6134. },
  6135. back: {
  6136. height: math.unit(2, "meters"),
  6137. weight: math.unit(350, "lbs"),
  6138. name: "Back",
  6139. image: {
  6140. source: "./media/characters/regal/back.svg"
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Macro",
  6147. height: math.unit(350, "feet"),
  6148. default: true
  6149. }
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(4 + 11 / 12, "feet"),
  6157. weight: math.unit(100, "lbs"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/opal/front.svg"
  6161. }
  6162. },
  6163. frontAlt: {
  6164. height: math.unit(4 + 11 / 12, "feet"),
  6165. weight: math.unit(100, "lbs"),
  6166. name: "Front (Alt)",
  6167. image: {
  6168. source: "./media/characters/opal/front-alt.svg"
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Small",
  6175. height: math.unit(4 + 11 / 12, "feet")
  6176. },
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(20, "feet"),
  6180. default: true
  6181. },
  6182. {
  6183. name: "Macro",
  6184. height: math.unit(120, "feet")
  6185. },
  6186. {
  6187. name: "Megamacro",
  6188. height: math.unit(80, "miles")
  6189. },
  6190. {
  6191. name: "True Size",
  6192. height: math.unit(100000, "lightyears")
  6193. },
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6198. {
  6199. front: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(200, "lbs"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/vector-wuff/front.svg"
  6205. }
  6206. }
  6207. },
  6208. [
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(2.8, "meters")
  6212. },
  6213. {
  6214. name: "Macro",
  6215. height: math.unit(450, "meters"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(15, "kilometers")
  6221. }
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(256, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/dannik/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Macro",
  6239. height: math.unit(69.57, "meters"),
  6240. default: true
  6241. },
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(6, "feet"),
  6249. weight: math.unit(120, "lbs"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/azura-saharah/front.svg"
  6253. }
  6254. },
  6255. back: {
  6256. height: math.unit(6, "feet"),
  6257. weight: math.unit(120, "lbs"),
  6258. name: "Back",
  6259. image: {
  6260. source: "./media/characters/azura-saharah/back.svg"
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Macro",
  6267. height: math.unit(100, "feet"),
  6268. default: true
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6274. {
  6275. side: {
  6276. height: math.unit(5 + 4 / 12, "feet"),
  6277. weight: math.unit(163, "lbs"),
  6278. name: "Side",
  6279. image: {
  6280. source: "./media/characters/kennedy/side.svg"
  6281. }
  6282. }
  6283. },
  6284. [
  6285. {
  6286. name: "Standard Doggo",
  6287. height: math.unit(5 + 4 / 12, "feet")
  6288. },
  6289. {
  6290. name: "Big Doggo",
  6291. height: math.unit(25 + 3 / 12, "feet"),
  6292. default: true
  6293. },
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6298. {
  6299. front: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(90, "lbs"),
  6302. name: "Front",
  6303. image: {
  6304. source: "./media/characters/odi-lunar/front.svg"
  6305. }
  6306. }
  6307. },
  6308. [
  6309. {
  6310. name: "Micro",
  6311. height: math.unit(3, "inches"),
  6312. default: true
  6313. },
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(5.5, "feet")
  6317. }
  6318. ]
  6319. ))
  6320. characterMakers.push(() => makeCharacter(
  6321. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6322. {
  6323. back: {
  6324. height: math.unit(6, "feet"),
  6325. weight: math.unit(220, "lbs"),
  6326. name: "Back",
  6327. image: {
  6328. source: "./media/characters/mandake/back.svg"
  6329. }
  6330. }
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(7, "feet"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Macro",
  6340. height: math.unit(78, "feet")
  6341. },
  6342. {
  6343. name: "Macro+",
  6344. height: math.unit(300, "meters")
  6345. },
  6346. {
  6347. name: "Macro++",
  6348. height: math.unit(2400, "feet")
  6349. },
  6350. {
  6351. name: "Megamacro",
  6352. height: math.unit(5167, "meters")
  6353. },
  6354. {
  6355. name: "Gigamacro",
  6356. height: math.unit(41769, "miles")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(120, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/yozey/front.svg"
  6369. }
  6370. },
  6371. frontAlt: {
  6372. height: math.unit(6, "feet"),
  6373. weight: math.unit(120, "lbs"),
  6374. name: "Front (Alt)",
  6375. image: {
  6376. source: "./media/characters/yozey/front-alt.svg"
  6377. }
  6378. },
  6379. side: {
  6380. height: math.unit(6, "feet"),
  6381. weight: math.unit(120, "lbs"),
  6382. name: "Side",
  6383. image: {
  6384. source: "./media/characters/yozey/side.svg"
  6385. }
  6386. },
  6387. },
  6388. [
  6389. {
  6390. name: "Micro",
  6391. height: math.unit(3, "inches"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(6, "feet")
  6397. }
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6402. {
  6403. front: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(103, "lbs"),
  6406. name: "Front",
  6407. image: {
  6408. source: "./media/characters/valeska-voss/front.svg"
  6409. }
  6410. }
  6411. },
  6412. [
  6413. {
  6414. name: "Mini-Sized Sub",
  6415. height: math.unit(3.1, "inches")
  6416. },
  6417. {
  6418. name: "Mid-Sized Sub",
  6419. height: math.unit(6.2, "inches")
  6420. },
  6421. {
  6422. name: "Full-Sized Sub",
  6423. height: math.unit(9.3, "inches")
  6424. },
  6425. {
  6426. name: "Normal",
  6427. height: math.unit(5 + 2 / 12, "foot"),
  6428. default: true
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6434. {
  6435. front: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(160, "lbs"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/gene-zeta/front.svg",
  6441. bottom: 0.03,
  6442. extra: 1
  6443. }
  6444. }
  6445. },
  6446. [
  6447. {
  6448. name: "Normal",
  6449. height: math.unit(6.25, "foot"),
  6450. default: true
  6451. },
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6456. {
  6457. front: {
  6458. height: math.unit(6, "feet"),
  6459. weight: math.unit(350, "lbs"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/razinox/front.svg",
  6463. extra: 1686 / 1548,
  6464. bottom: 28.2 / 1868
  6465. }
  6466. },
  6467. back: {
  6468. height: math.unit(6, "feet"),
  6469. weight: math.unit(350, "lbs"),
  6470. name: "Back",
  6471. image: {
  6472. source: "./media/characters/razinox/back.svg",
  6473. extra: 1660 / 1590,
  6474. bottom: 15 / 1665
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(10 + 8 / 12, "foot")
  6482. },
  6483. {
  6484. name: "Minimacro",
  6485. height: math.unit(15, "foot")
  6486. },
  6487. {
  6488. name: "Macro",
  6489. height: math.unit(60, "foot"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Megamacro",
  6494. height: math.unit(5, "miles")
  6495. },
  6496. {
  6497. name: "Gigamacro",
  6498. height: math.unit(6000, "miles")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(150, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/cobalt/front.svg"
  6511. }
  6512. }
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(8 + 1 / 12, "foot")
  6518. },
  6519. {
  6520. name: "Macro",
  6521. height: math.unit(111, "foot"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Supracosmic",
  6526. height: math.unit(1e42, "feet")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(140, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/amanda/front.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Micro",
  6545. height: math.unit(5, "inches"),
  6546. default: true
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(5.59, "feet"),
  6555. weight: math.unit(250, "lbs"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/teal/front.svg"
  6559. }
  6560. },
  6561. frontAlt: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(250, "lbs"),
  6564. name: "Front (Alt)",
  6565. image: {
  6566. source: "./media/characters/teal/front-alt.svg",
  6567. bottom: 0.04,
  6568. extra: 1
  6569. }
  6570. },
  6571. },
  6572. [
  6573. {
  6574. name: "Normal",
  6575. height: math.unit(12, "feet"),
  6576. default: true
  6577. },
  6578. {
  6579. name: "Macro",
  6580. height: math.unit(300, "feet")
  6581. },
  6582. ]
  6583. ))
  6584. characterMakers.push(() => makeCharacter(
  6585. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6586. {
  6587. frontCat: {
  6588. height: math.unit(6, "feet"),
  6589. weight: math.unit(180, "lbs"),
  6590. name: "Front (Cat)",
  6591. image: {
  6592. source: "./media/characters/ravin-amulet/front-cat.svg"
  6593. }
  6594. },
  6595. frontCatAlt: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(180, "lbs"),
  6598. name: "Front (Alt, Cat)",
  6599. image: {
  6600. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6601. }
  6602. },
  6603. frontWerewolf: {
  6604. height: math.unit(6 * 1.2, "feet"),
  6605. weight: math.unit(225, "lbs"),
  6606. name: "Front (Werewolf)",
  6607. image: {
  6608. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6609. }
  6610. },
  6611. backWerewolf: {
  6612. height: math.unit(6 * 1.2, "feet"),
  6613. weight: math.unit(225, "lbs"),
  6614. name: "Back (Werewolf)",
  6615. image: {
  6616. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Nano",
  6623. height: math.unit(1, "micrometer")
  6624. },
  6625. {
  6626. name: "Micro",
  6627. height: math.unit(1, "inch")
  6628. },
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(6, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(60, "feet")
  6637. }
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(165, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/fluoresce/front.svg"
  6649. }
  6650. }
  6651. },
  6652. [
  6653. {
  6654. name: "Micro",
  6655. height: math.unit(6, "cm")
  6656. },
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(5 + 7 / 12, "feet"),
  6660. default: true
  6661. },
  6662. {
  6663. name: "Macro",
  6664. height: math.unit(56, "feet")
  6665. },
  6666. {
  6667. name: "Megamacro",
  6668. height: math.unit(1.9, "miles")
  6669. },
  6670. ]
  6671. ))
  6672. characterMakers.push(() => makeCharacter(
  6673. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6674. {
  6675. front: {
  6676. height: math.unit(9 + 6 / 12, "feet"),
  6677. weight: math.unit(523, "lbs"),
  6678. name: "Side",
  6679. image: {
  6680. source: "./media/characters/aurora/side.svg"
  6681. }
  6682. }
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(9 + 6 / 12, "feet")
  6688. },
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(96, "feet"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Macro+",
  6696. height: math.unit(243, "feet")
  6697. },
  6698. ]
  6699. ))
  6700. characterMakers.push(() => makeCharacter(
  6701. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6702. {
  6703. front: {
  6704. height: math.unit(194, "cm"),
  6705. weight: math.unit(90, "kg"),
  6706. name: "Front",
  6707. image: {
  6708. source: "./media/characters/ranek/front.svg"
  6709. }
  6710. },
  6711. side: {
  6712. height: math.unit(194, "cm"),
  6713. weight: math.unit(90, "kg"),
  6714. name: "Side",
  6715. image: {
  6716. source: "./media/characters/ranek/side.svg"
  6717. }
  6718. },
  6719. back: {
  6720. height: math.unit(194, "cm"),
  6721. weight: math.unit(90, "kg"),
  6722. name: "Back",
  6723. image: {
  6724. source: "./media/characters/ranek/back.svg"
  6725. }
  6726. },
  6727. feral: {
  6728. height: math.unit(30, "cm"),
  6729. weight: math.unit(1.6, "lbs"),
  6730. name: "Feral",
  6731. image: {
  6732. source: "./media/characters/ranek/feral.svg"
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(194, "cm"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Macro",
  6744. height: math.unit(100, "meters")
  6745. },
  6746. ]
  6747. ))
  6748. characterMakers.push(() => makeCharacter(
  6749. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6750. {
  6751. front: {
  6752. height: math.unit(5 + 6 / 12, "feet"),
  6753. weight: math.unit(153, "lbs"),
  6754. name: "Front",
  6755. image: {
  6756. source: "./media/characters/andrew-cooper/front.svg"
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Nano",
  6763. height: math.unit(1, "mm")
  6764. },
  6765. {
  6766. name: "Micro",
  6767. height: math.unit(2, "inches")
  6768. },
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(5 + 6 / 12, "feet"),
  6772. default: true
  6773. }
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(180, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/akane-sato/front.svg",
  6785. extra: 1219 / 1140
  6786. }
  6787. },
  6788. back: {
  6789. height: math.unit(6, "feet"),
  6790. weight: math.unit(180, "lbs"),
  6791. name: "Back",
  6792. image: {
  6793. source: "./media/characters/akane-sato/back.svg",
  6794. extra: 1219 / 1170
  6795. }
  6796. },
  6797. },
  6798. [
  6799. {
  6800. name: "Normal",
  6801. height: math.unit(2.5, "meters")
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(250, "meters"),
  6806. default: true
  6807. },
  6808. {
  6809. name: "Megamacro",
  6810. height: math.unit(25, "km")
  6811. },
  6812. ]
  6813. ))
  6814. characterMakers.push(() => makeCharacter(
  6815. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6816. {
  6817. front: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(65, "kg"),
  6820. name: "Front",
  6821. image: {
  6822. source: "./media/characters/rook/front.svg",
  6823. extra: 960 / 950
  6824. }
  6825. }
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(8.8, "feet")
  6831. },
  6832. {
  6833. name: "Macro",
  6834. height: math.unit(88, "feet"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Megamacro",
  6839. height: math.unit(8, "miles")
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(12 + 2 / 12, "feet"),
  6848. weight: math.unit(808, "lbs"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/prodigy/front.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(12 + 2 / 12, "feet"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Macro",
  6863. height: math.unit(143, "feet")
  6864. },
  6865. {
  6866. name: "Macro+",
  6867. height: math.unit(400, "feet")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(225, "lbs"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/daniel/front.svg"
  6880. }
  6881. },
  6882. leaning: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(225, "lbs"),
  6885. name: "Leaning",
  6886. image: {
  6887. source: "./media/characters/daniel/leaning.svg"
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(1000, "feet"),
  6895. default: true
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(88, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/chiros/front.svg",
  6908. extra: 306 / 226
  6909. }
  6910. },
  6911. side: {
  6912. height: math.unit(6, "feet"),
  6913. weight: math.unit(88, "lbs"),
  6914. name: "Side",
  6915. image: {
  6916. source: "./media/characters/chiros/side.svg",
  6917. extra: 306 / 226
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(6, "cm"),
  6925. default: true
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(100, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/selka/front.svg",
  6938. extra: 947 / 887
  6939. }
  6940. }
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(5, "cm"),
  6946. default: true
  6947. },
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6952. {
  6953. front: {
  6954. height: math.unit(8 + 3 / 12, "feet"),
  6955. weight: math.unit(424, "lbs"),
  6956. name: "Front",
  6957. image: {
  6958. source: "./media/characters/verin/front.svg",
  6959. extra: 1845 / 1550
  6960. }
  6961. },
  6962. frontArmored: {
  6963. height: math.unit(8 + 3 / 12, "feet"),
  6964. weight: math.unit(424, "lbs"),
  6965. name: "Front (Armored)",
  6966. image: {
  6967. source: "./media/characters/verin/front-armor.svg",
  6968. extra: 1845 / 1550,
  6969. bottom: 0.01
  6970. }
  6971. },
  6972. back: {
  6973. height: math.unit(8 + 3 / 12, "feet"),
  6974. weight: math.unit(424, "lbs"),
  6975. name: "Back",
  6976. image: {
  6977. source: "./media/characters/verin/back.svg",
  6978. bottom: 0.1,
  6979. extra: 1
  6980. }
  6981. },
  6982. foot: {
  6983. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6984. name: "Foot",
  6985. image: {
  6986. source: "./media/characters/verin/foot.svg"
  6987. }
  6988. },
  6989. },
  6990. [
  6991. {
  6992. name: "Normal",
  6993. height: math.unit(8 + 3 / 12, "feet")
  6994. },
  6995. {
  6996. name: "Minimacro",
  6997. height: math.unit(21, "feet"),
  6998. default: true
  6999. },
  7000. {
  7001. name: "Macro",
  7002. height: math.unit(626, "feet")
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7008. {
  7009. front: {
  7010. height: math.unit(2.718, "meters"),
  7011. weight: math.unit(150, "lbs"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/sovrim-terraquian/front.svg"
  7015. }
  7016. },
  7017. back: {
  7018. height: math.unit(2.718, "meters"),
  7019. weight: math.unit(150, "lbs"),
  7020. name: "Back",
  7021. image: {
  7022. source: "./media/characters/sovrim-terraquian/back.svg"
  7023. }
  7024. }
  7025. },
  7026. [
  7027. {
  7028. name: "Micro",
  7029. height: math.unit(2, "inches")
  7030. },
  7031. {
  7032. name: "Small",
  7033. height: math.unit(1, "meter")
  7034. },
  7035. {
  7036. name: "Normal",
  7037. height: math.unit(Math.E, "meters"),
  7038. default: true
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(20, "meters")
  7043. },
  7044. {
  7045. name: "Macro+",
  7046. height: math.unit(400, "meters")
  7047. },
  7048. ]
  7049. ))
  7050. characterMakers.push(() => makeCharacter(
  7051. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7052. {
  7053. front: {
  7054. height: math.unit(7, "feet"),
  7055. weight: math.unit(489, "lbs"),
  7056. name: "Front",
  7057. image: {
  7058. source: "./media/characters/reece-silvermane/front.svg",
  7059. bottom: 0.02,
  7060. extra: 1
  7061. }
  7062. },
  7063. },
  7064. [
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(1.5, "miles"),
  7068. default: true
  7069. },
  7070. ]
  7071. ))
  7072. characterMakers.push(() => makeCharacter(
  7073. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7074. {
  7075. front: {
  7076. height: math.unit(6, "feet"),
  7077. weight: math.unit(78, "kg"),
  7078. name: "Front",
  7079. image: {
  7080. source: "./media/characters/kane/front.svg",
  7081. extra: 978 / 899
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Normal",
  7088. height: math.unit(2.1, "m"),
  7089. },
  7090. {
  7091. name: "Macro",
  7092. height: math.unit(1, "km"),
  7093. default: true
  7094. },
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(200, "kg"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/tegon/front.svg",
  7106. bottom: 0.01,
  7107. extra: 1
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(1, "inch")
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(6 + 3 / 12, "feet"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Macro",
  7123. height: math.unit(300, "feet")
  7124. },
  7125. {
  7126. name: "Megamacro",
  7127. height: math.unit(69, "miles")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7133. {
  7134. side: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(2304, "lbs"),
  7137. name: "Side",
  7138. image: {
  7139. source: "./media/characters/arcturax/side.svg",
  7140. extra: 790 / 376,
  7141. bottom: 0.01
  7142. }
  7143. },
  7144. },
  7145. [
  7146. {
  7147. name: "Micro",
  7148. height: math.unit(2, "inch")
  7149. },
  7150. {
  7151. name: "Normal",
  7152. height: math.unit(6, "feet")
  7153. },
  7154. {
  7155. name: "Macro",
  7156. height: math.unit(39, "feet"),
  7157. default: true
  7158. },
  7159. {
  7160. name: "Megamacro",
  7161. height: math.unit(7, "miles")
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7167. {
  7168. front: {
  7169. height: math.unit(6, "feet"),
  7170. weight: math.unit(50, "lbs"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/sentri/front.svg",
  7174. extra: 1750 / 1570,
  7175. bottom: 0.025
  7176. }
  7177. },
  7178. frontAlt: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(50, "lbs"),
  7181. name: "Front (Alt)",
  7182. image: {
  7183. source: "./media/characters/sentri/front-alt.svg",
  7184. extra: 1750 / 1570,
  7185. bottom: 0.025
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(15, "feet"),
  7193. default: true
  7194. },
  7195. {
  7196. name: "Macro",
  7197. height: math.unit(2500, "feet")
  7198. }
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7203. {
  7204. front: {
  7205. height: math.unit(5 + 8 / 12, "feet"),
  7206. weight: math.unit(130, "lbs"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/corvin/front.svg",
  7210. extra: 1803 / 1629
  7211. }
  7212. },
  7213. frontShirt: {
  7214. height: math.unit(5 + 8 / 12, "feet"),
  7215. weight: math.unit(130, "lbs"),
  7216. name: "Front (Shirt)",
  7217. image: {
  7218. source: "./media/characters/corvin/front-shirt.svg",
  7219. extra: 1803 / 1629
  7220. }
  7221. },
  7222. frontPoncho: {
  7223. height: math.unit(5 + 8 / 12, "feet"),
  7224. weight: math.unit(130, "lbs"),
  7225. name: "Front (Poncho)",
  7226. image: {
  7227. source: "./media/characters/corvin/front-poncho.svg",
  7228. extra: 1803 / 1629
  7229. }
  7230. },
  7231. side: {
  7232. height: math.unit(5 + 8 / 12, "feet"),
  7233. weight: math.unit(130, "lbs"),
  7234. name: "Side",
  7235. image: {
  7236. source: "./media/characters/corvin/side.svg",
  7237. extra: 1012 / 945
  7238. }
  7239. },
  7240. back: {
  7241. height: math.unit(5 + 8 / 12, "feet"),
  7242. weight: math.unit(130, "lbs"),
  7243. name: "Back",
  7244. image: {
  7245. source: "./media/characters/corvin/back.svg",
  7246. extra: 1803 / 1629
  7247. }
  7248. },
  7249. },
  7250. [
  7251. {
  7252. name: "Micro",
  7253. height: math.unit(3, "inches")
  7254. },
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(5 + 8 / 12, "feet")
  7258. },
  7259. {
  7260. name: "Macro",
  7261. height: math.unit(300, "feet"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Megamacro",
  7266. height: math.unit(500, "miles")
  7267. }
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(6, "feet"),
  7275. weight: math.unit(135, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/q/front.svg",
  7279. extra: 854 / 752,
  7280. bottom: 0.005
  7281. }
  7282. },
  7283. back: {
  7284. height: math.unit(6, "feet"),
  7285. weight: math.unit(130, "lbs"),
  7286. name: "Back",
  7287. image: {
  7288. source: "./media/characters/q/back.svg",
  7289. extra: 854 / 752
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(90, "feet"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Extra Macro",
  7301. height: math.unit(300, "feet"),
  7302. },
  7303. {
  7304. name: "BIG WALF",
  7305. height: math.unit(750, "feet"),
  7306. },
  7307. ]
  7308. ))
  7309. characterMakers.push(() => makeCharacter(
  7310. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7311. {
  7312. front: {
  7313. height: math.unit(6, "feet"),
  7314. weight: math.unit(150, "lbs"),
  7315. name: "Front",
  7316. image: {
  7317. source: "./media/characters/carley/front.svg",
  7318. extra: 3927 / 3540,
  7319. bottom: 29.2/735
  7320. }
  7321. }
  7322. },
  7323. [
  7324. {
  7325. name: "Normal",
  7326. height: math.unit(6 + 3 / 12, "feet")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(185, "feet"),
  7331. default: true
  7332. },
  7333. {
  7334. name: "Megamacro",
  7335. height: math.unit(8, "miles"),
  7336. },
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7341. {
  7342. front: {
  7343. height: math.unit(3, "feet"),
  7344. weight: math.unit(28, "lbs"),
  7345. name: "Front",
  7346. image: {
  7347. source: "./media/characters/citrine/front.svg"
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(3, "feet"),
  7355. default: true
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7361. {
  7362. front: {
  7363. height: math.unit(14, "feet"),
  7364. weight: math.unit(1450, "kg"),
  7365. capacity: math.unit(15, "people"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/aura-starwind/front.svg",
  7369. extra: 1455 / 1335
  7370. }
  7371. },
  7372. side: {
  7373. height: math.unit(14, "feet"),
  7374. weight: math.unit(1450, "kg"),
  7375. capacity: math.unit(15, "people"),
  7376. name: "Side",
  7377. image: {
  7378. source: "./media/characters/aura-starwind/side.svg",
  7379. extra: 1654 / 1497
  7380. }
  7381. },
  7382. taur: {
  7383. height: math.unit(18, "feet"),
  7384. weight: math.unit(5500, "kg"),
  7385. capacity: math.unit(50, "people"),
  7386. name: "Taur",
  7387. image: {
  7388. source: "./media/characters/aura-starwind/taur.svg",
  7389. extra: 1760 / 1650
  7390. }
  7391. },
  7392. feral: {
  7393. height: math.unit(46, "feet"),
  7394. weight: math.unit(25000, "kg"),
  7395. capacity: math.unit(120, "people"),
  7396. name: "Feral",
  7397. image: {
  7398. source: "./media/characters/aura-starwind/feral.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(14, "feet"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Macro",
  7410. height: math.unit(50, "meters")
  7411. },
  7412. {
  7413. name: "Megamacro",
  7414. height: math.unit(5000, "meters")
  7415. },
  7416. {
  7417. name: "Gigamacro",
  7418. height: math.unit(100000, "kilometers")
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(2 + 7 / 12, "feet"),
  7427. weight: math.unit(32, "lbs"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/rivet/front.svg",
  7431. extra: 1716 / 1658,
  7432. bottom: 0.03
  7433. }
  7434. },
  7435. foot: {
  7436. height: math.unit(0.551, "feet"),
  7437. name: "Rivet's Foot",
  7438. image: {
  7439. source: "./media/characters/rivet/foot.svg"
  7440. },
  7441. rename: true
  7442. }
  7443. },
  7444. [
  7445. {
  7446. name: "Micro",
  7447. height: math.unit(1.5, "inches"),
  7448. },
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(2 + 7 / 12, "feet"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Macro",
  7456. height: math.unit(85, "feet")
  7457. },
  7458. {
  7459. name: "Megamacro",
  7460. height: math.unit(2.2, "km")
  7461. }
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(5 + 9 / 12, "feet"),
  7469. weight: math.unit(150, "lbs"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/coffee/front.svg",
  7473. extra: 3666 / 3032,
  7474. bottom: 0.04
  7475. }
  7476. },
  7477. foot: {
  7478. height: math.unit(1.29, "feet"),
  7479. name: "Foot",
  7480. image: {
  7481. source: "./media/characters/coffee/foot.svg"
  7482. }
  7483. },
  7484. },
  7485. [
  7486. {
  7487. name: "Micro",
  7488. height: math.unit(2, "inches"),
  7489. },
  7490. {
  7491. name: "Normal",
  7492. height: math.unit(5 + 9 / 12, "feet"),
  7493. default: true
  7494. },
  7495. {
  7496. name: "Macro",
  7497. height: math.unit(800, "feet")
  7498. },
  7499. {
  7500. name: "Megamacro",
  7501. height: math.unit(25, "miles")
  7502. }
  7503. ]
  7504. ))
  7505. characterMakers.push(() => makeCharacter(
  7506. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7507. {
  7508. front: {
  7509. height: math.unit(6, "feet"),
  7510. weight: math.unit(200, "lbs"),
  7511. name: "Front",
  7512. image: {
  7513. source: "./media/characters/chari-gal/front.svg",
  7514. extra: 1568 / 1385,
  7515. bottom: 0.047
  7516. }
  7517. },
  7518. gigantamax: {
  7519. height: math.unit(6 * 16, "feet"),
  7520. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7521. name: "Gigantamax",
  7522. image: {
  7523. source: "./media/characters/chari-gal/gigantamax.svg",
  7524. extra: 1124 / 888,
  7525. bottom: 0.03
  7526. }
  7527. },
  7528. },
  7529. [
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(5 + 7 / 12, "feet")
  7533. },
  7534. {
  7535. name: "Macro",
  7536. height: math.unit(200, "feet"),
  7537. default: true
  7538. }
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(150, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/nova/front.svg",
  7550. extra: 5000 / 4722,
  7551. bottom: 0.02
  7552. }
  7553. }
  7554. },
  7555. [
  7556. {
  7557. name: "Micro-",
  7558. height: math.unit(0.8, "inches")
  7559. },
  7560. {
  7561. name: "Micro",
  7562. height: math.unit(2, "inches"),
  7563. default: true
  7564. },
  7565. ]
  7566. ))
  7567. characterMakers.push(() => makeCharacter(
  7568. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7569. {
  7570. front: {
  7571. height: math.unit(3 + 1 / 12, "feet"),
  7572. weight: math.unit(21.7, "lbs"),
  7573. name: "Front",
  7574. image: {
  7575. source: "./media/characters/argent/front.svg",
  7576. extra: 1471 / 1331,
  7577. bottom: 100.8 / 1575.5
  7578. }
  7579. }
  7580. },
  7581. [
  7582. {
  7583. name: "Micro",
  7584. height: math.unit(2, "inches")
  7585. },
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(3 + 1 / 12, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(120, "feet")
  7594. },
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7599. {
  7600. lamp: {
  7601. height: math.unit(7 * 1559 / 989, "feet"),
  7602. name: "Magic Lamp",
  7603. image: {
  7604. source: "./media/characters/mira-al-cul/lamp.svg",
  7605. extra: 1617 / 1559
  7606. }
  7607. },
  7608. front: {
  7609. height: math.unit(7, "feet"),
  7610. name: "Front",
  7611. image: {
  7612. source: "./media/characters/mira-al-cul/front.svg",
  7613. extra: 1044 / 990
  7614. }
  7615. },
  7616. },
  7617. [
  7618. {
  7619. name: "Heavily Restricted",
  7620. height: math.unit(7 * 1559 / 989, "feet")
  7621. },
  7622. {
  7623. name: "Freshly Freed",
  7624. height: math.unit(50 * 1559 / 989, "feet")
  7625. },
  7626. {
  7627. name: "World Encompassing",
  7628. height: math.unit(10000 * 1559 / 989, "miles")
  7629. },
  7630. {
  7631. name: "Galactic",
  7632. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7633. },
  7634. {
  7635. name: "Palmed Universe",
  7636. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Multiversal Matriarch",
  7641. height: math.unit(8.87e10, "yottameters")
  7642. },
  7643. {
  7644. name: "Void Mother",
  7645. height: math.unit(3.14e110, "yottaparsecs")
  7646. },
  7647. {
  7648. name: "Toying with Transcendence",
  7649. height: math.unit(1e307, "meters")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7655. {
  7656. front: {
  7657. height: math.unit(17 + 1 / 12, "feet"),
  7658. weight: math.unit(476.2 * 5, "lbs"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/kuro-shi-uchū/front.svg",
  7662. extra: 2329 / 1835,
  7663. bottom: 0.02
  7664. }
  7665. },
  7666. },
  7667. [
  7668. {
  7669. name: "Micro",
  7670. height: math.unit(2, "inches")
  7671. },
  7672. {
  7673. name: "Normal",
  7674. height: math.unit(12, "meters")
  7675. },
  7676. {
  7677. name: "Planetary",
  7678. height: math.unit(0.00929, "AU"),
  7679. default: true
  7680. },
  7681. {
  7682. name: "Universal",
  7683. height: math.unit(20, "gigaparsecs")
  7684. },
  7685. ]
  7686. ))
  7687. characterMakers.push(() => makeCharacter(
  7688. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7689. {
  7690. front: {
  7691. height: math.unit(5 + 2 / 12, "feet"),
  7692. weight: math.unit(120, "lbs"),
  7693. name: "Front",
  7694. image: {
  7695. source: "./media/characters/katherine/front.svg",
  7696. extra: 2075 / 1969
  7697. }
  7698. },
  7699. dress: {
  7700. height: math.unit(5 + 2 / 12, "feet"),
  7701. weight: math.unit(120, "lbs"),
  7702. name: "Dress",
  7703. image: {
  7704. source: "./media/characters/katherine/dress.svg",
  7705. extra: 2258 / 2064
  7706. }
  7707. },
  7708. },
  7709. [
  7710. {
  7711. name: "Micro",
  7712. height: math.unit(1, "inches"),
  7713. default: true
  7714. },
  7715. {
  7716. name: "Normal",
  7717. height: math.unit(5 + 2 / 12, "feet")
  7718. },
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(100, "meters")
  7722. },
  7723. {
  7724. name: "Megamacro",
  7725. height: math.unit(80, "miles")
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(7 + 8 / 12, "feet"),
  7734. weight: math.unit(250, "lbs"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/yevis/front.svg",
  7738. extra: 1938 / 1755
  7739. }
  7740. }
  7741. },
  7742. [
  7743. {
  7744. name: "Mortal",
  7745. height: math.unit(7 + 8 / 12, "feet")
  7746. },
  7747. {
  7748. name: "Battle",
  7749. height: math.unit(25 + 11 / 12, "feet")
  7750. },
  7751. {
  7752. name: "Wrath",
  7753. height: math.unit(1654 + 11 / 12, "feet")
  7754. },
  7755. {
  7756. name: "Planet Destroyer",
  7757. height: math.unit(12000, "miles")
  7758. },
  7759. {
  7760. name: "Galaxy Conqueror",
  7761. height: math.unit(1.45, "zettameters"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Universal War",
  7766. height: math.unit(184, "gigaparsecs")
  7767. },
  7768. {
  7769. name: "Eternity War",
  7770. height: math.unit(1.98e55, "yottaparsecs")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(5 + 8 / 12, "feet"),
  7779. weight: math.unit(63, "kg"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/xavier/front.svg",
  7783. extra: 944 / 883
  7784. }
  7785. },
  7786. frontStretch: {
  7787. height: math.unit(5 + 8 / 12, "feet"),
  7788. weight: math.unit(63, "kg"),
  7789. name: "Stretching",
  7790. image: {
  7791. source: "./media/characters/xavier/front-stretch.svg",
  7792. extra: 962 / 820
  7793. }
  7794. },
  7795. },
  7796. [
  7797. {
  7798. name: "Normal",
  7799. height: math.unit(5 + 8 / 12, "feet")
  7800. },
  7801. {
  7802. name: "Macro",
  7803. height: math.unit(100, "meters"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "McLargeHuge",
  7808. height: math.unit(10, "miles")
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(5 + 5 / 12, "feet"),
  7817. weight: math.unit(150, "lb"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/joshii/front.svg"
  7821. }
  7822. },
  7823. foot: {
  7824. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7825. name: "Foot",
  7826. image: {
  7827. source: "./media/characters/joshii/foot.svg"
  7828. }
  7829. },
  7830. },
  7831. [
  7832. {
  7833. name: "Micro",
  7834. height: math.unit(2, "inches")
  7835. },
  7836. {
  7837. name: "Normal",
  7838. height: math.unit(5 + 5 / 12, "feet"),
  7839. default: true
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(785, "feet")
  7844. },
  7845. {
  7846. name: "Megamacro",
  7847. height: math.unit(24.5, "miles")
  7848. },
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7853. {
  7854. front: {
  7855. height: math.unit(6, "feet"),
  7856. weight: math.unit(150, "lb"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/goddess-elizabeth/front.svg",
  7860. extra: 1800 / 1525,
  7861. bottom: 0.005
  7862. }
  7863. },
  7864. foot: {
  7865. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7866. name: "Foot",
  7867. image: {
  7868. source: "./media/characters/goddess-elizabeth/foot.svg"
  7869. }
  7870. },
  7871. mouth: {
  7872. height: math.unit(6, "feet"),
  7873. name: "Mouth",
  7874. image: {
  7875. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7876. }
  7877. },
  7878. },
  7879. [
  7880. {
  7881. name: "Micro",
  7882. height: math.unit(12, "feet")
  7883. },
  7884. {
  7885. name: "Normal",
  7886. height: math.unit(80, "miles"),
  7887. default: true
  7888. },
  7889. {
  7890. name: "Macro",
  7891. height: math.unit(15000, "parsecs")
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(5 + 9 / 12, "feet"),
  7900. weight: math.unit(144, "lb"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/kara/front.svg"
  7904. }
  7905. },
  7906. feet: {
  7907. height: math.unit(6 / 6.765, "feet"),
  7908. name: "Kara's Feet",
  7909. rename: true,
  7910. image: {
  7911. source: "./media/characters/kara/feet.svg"
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(5 + 9 / 12, "feet")
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(174, "feet"),
  7923. default: true
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(18, "feet"),
  7932. weight: math.unit(4050, "lb"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/tyrone/front.svg",
  7936. extra: 2520 / 2402,
  7937. bottom: 0.025
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(18, "feet"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(300, "feet")
  7950. },
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(7 + 8 / 12, "feet"),
  7958. weight: math.unit(120, "lb"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/danny/front.svg",
  7962. extra: 1490 / 1350
  7963. }
  7964. },
  7965. back: {
  7966. height: math.unit(7 + 8 / 12, "feet"),
  7967. weight: math.unit(120, "lb"),
  7968. name: "Back",
  7969. image: {
  7970. source: "./media/characters/danny/back.svg",
  7971. extra: 1490 / 1350
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Normal",
  7978. height: math.unit(7 + 8 / 12, "feet"),
  7979. default: true
  7980. },
  7981. ]
  7982. ))
  7983. characterMakers.push(() => makeCharacter(
  7984. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7985. {
  7986. front: {
  7987. height: math.unit(3.5, "inches"),
  7988. weight: math.unit(19, "grams"),
  7989. name: "Front",
  7990. image: {
  7991. source: "./media/characters/mallow/front.svg",
  7992. extra: 471 / 431
  7993. }
  7994. },
  7995. back: {
  7996. height: math.unit(3.5, "inches"),
  7997. weight: math.unit(19, "grams"),
  7998. name: "Back",
  7999. image: {
  8000. source: "./media/characters/mallow/back.svg",
  8001. extra: 471 / 431
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(3.5, "inches"),
  8009. default: true
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(9, "feet"),
  8018. weight: math.unit(230, "kg"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/starry-aqua/front.svg"
  8022. }
  8023. },
  8024. back: {
  8025. height: math.unit(9, "feet"),
  8026. weight: math.unit(230, "kg"),
  8027. name: "Back",
  8028. image: {
  8029. source: "./media/characters/starry-aqua/back.svg"
  8030. }
  8031. },
  8032. hand: {
  8033. height: math.unit(9 * 0.1168, "feet"),
  8034. name: "Hand",
  8035. image: {
  8036. source: "./media/characters/starry-aqua/hand.svg"
  8037. }
  8038. },
  8039. foot: {
  8040. height: math.unit(9 * 0.18, "feet"),
  8041. name: "Foot",
  8042. image: {
  8043. source: "./media/characters/starry-aqua/foot.svg"
  8044. }
  8045. }
  8046. },
  8047. [
  8048. {
  8049. name: "Micro",
  8050. height: math.unit(3, "inches")
  8051. },
  8052. {
  8053. name: "Normal",
  8054. height: math.unit(9, "feet")
  8055. },
  8056. {
  8057. name: "Macro",
  8058. height: math.unit(300, "feet"),
  8059. default: true
  8060. },
  8061. {
  8062. name: "Megamacro",
  8063. height: math.unit(3200, "feet")
  8064. }
  8065. ]
  8066. ))
  8067. characterMakers.push(() => makeCharacter(
  8068. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8069. {
  8070. front: {
  8071. height: math.unit(6, "feet"),
  8072. weight: math.unit(230, "lb"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/luka/front.svg",
  8076. extra: 1,
  8077. bottom: 0.025
  8078. }
  8079. },
  8080. },
  8081. [
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(12 + 8 / 12, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Minimacro",
  8089. height: math.unit(20, "feet")
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(250, "feet")
  8094. },
  8095. {
  8096. name: "Megamacro",
  8097. height: math.unit(5, "miles")
  8098. },
  8099. {
  8100. name: "Gigamacro",
  8101. height: math.unit(8000, "miles")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(6, "feet"),
  8110. weight: math.unit(150, "lb"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/natalie-nightring/front.svg",
  8114. extra: 1,
  8115. bottom: 0.06
  8116. }
  8117. },
  8118. },
  8119. [
  8120. {
  8121. name: "Uh Oh",
  8122. height: math.unit(0.1, "mm")
  8123. },
  8124. {
  8125. name: "Small",
  8126. height: math.unit(3, "inches")
  8127. },
  8128. {
  8129. name: "Human Scale",
  8130. height: math.unit(6, "feet")
  8131. },
  8132. {
  8133. name: "Librarian",
  8134. height: math.unit(50, "feet"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Immense",
  8139. height: math.unit(200, "miles")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(180, "lbs"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/danni-rosie/front.svg",
  8152. extra: 1260 / 1128,
  8153. bottom: 0.022
  8154. }
  8155. },
  8156. },
  8157. [
  8158. {
  8159. name: "Micro",
  8160. height: math.unit(2, "inches"),
  8161. default: true
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8167. {
  8168. front: {
  8169. height: math.unit(5 + 9 / 12, "feet"),
  8170. weight: math.unit(220, "lb"),
  8171. name: "Front",
  8172. image: {
  8173. source: "./media/characters/samantha-kruse/front.svg",
  8174. extra: (985 / 935),
  8175. bottom: 0.03
  8176. }
  8177. },
  8178. frontUndressed: {
  8179. height: math.unit(5 + 9 / 12, "feet"),
  8180. weight: math.unit(220, "lb"),
  8181. name: "Front (Undressed)",
  8182. image: {
  8183. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8184. extra: (973 / 923),
  8185. bottom: 0.025
  8186. }
  8187. },
  8188. fat: {
  8189. height: math.unit(5 + 9 / 12, "feet"),
  8190. weight: math.unit(900, "lb"),
  8191. name: "Front (Fat)",
  8192. image: {
  8193. source: "./media/characters/samantha-kruse/fat.svg",
  8194. extra: 2688 / 2561
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(5 + 9 / 12, "feet"),
  8202. default: true
  8203. }
  8204. ]
  8205. ))
  8206. characterMakers.push(() => makeCharacter(
  8207. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8208. {
  8209. back: {
  8210. height: math.unit(5 + 4 / 12, "feet"),
  8211. weight: math.unit(4963, "lb"),
  8212. name: "Back",
  8213. image: {
  8214. source: "./media/characters/amelia-rosie/back.svg",
  8215. extra: 1113 / 963,
  8216. bottom: 0.01
  8217. }
  8218. },
  8219. },
  8220. [
  8221. {
  8222. name: "Level 0",
  8223. height: math.unit(5 + 4 / 12, "feet")
  8224. },
  8225. {
  8226. name: "Level 1",
  8227. height: math.unit(164597, "feet"),
  8228. default: true
  8229. },
  8230. {
  8231. name: "Level 2",
  8232. height: math.unit(956243, "miles")
  8233. },
  8234. {
  8235. name: "Level 3",
  8236. height: math.unit(29421709423, "miles")
  8237. },
  8238. {
  8239. name: "Level 4",
  8240. height: math.unit(154, "lightyears")
  8241. },
  8242. {
  8243. name: "Level 5",
  8244. height: math.unit(4738272, "lightyears")
  8245. },
  8246. {
  8247. name: "Level 6",
  8248. height: math.unit(145787152896, "lightyears")
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(5 + 11 / 12, "feet"),
  8257. weight: math.unit(65, "kg"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/rook-kitara/front.svg",
  8261. extra: 1347 / 1274,
  8262. bottom: 0.005
  8263. }
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "Totally Unfair",
  8269. height: math.unit(1.8, "mm")
  8270. },
  8271. {
  8272. name: "Lap Rookie",
  8273. height: math.unit(1.4, "feet")
  8274. },
  8275. {
  8276. name: "Normal",
  8277. height: math.unit(5 + 11 / 12, "feet"),
  8278. default: true
  8279. },
  8280. {
  8281. name: "How Did This Happen",
  8282. height: math.unit(80, "miles")
  8283. }
  8284. ]
  8285. ))
  8286. characterMakers.push(() => makeCharacter(
  8287. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8288. {
  8289. front: {
  8290. height: math.unit(7, "feet"),
  8291. weight: math.unit(300, "lb"),
  8292. name: "Front",
  8293. image: {
  8294. source: "./media/characters/pisces/front.svg",
  8295. extra: 2255 / 2115,
  8296. bottom: 0.03
  8297. }
  8298. },
  8299. back: {
  8300. height: math.unit(7, "feet"),
  8301. weight: math.unit(300, "lb"),
  8302. name: "Back",
  8303. image: {
  8304. source: "./media/characters/pisces/back.svg",
  8305. extra: 2146 / 2055,
  8306. bottom: 0.04
  8307. }
  8308. },
  8309. },
  8310. [
  8311. {
  8312. name: "Normal",
  8313. height: math.unit(7, "feet"),
  8314. default: true
  8315. },
  8316. {
  8317. name: "Swimming Pool",
  8318. height: math.unit(12.2, "meters")
  8319. },
  8320. {
  8321. name: "Olympic Swimming Pool",
  8322. height: math.unit(56.3, "meters")
  8323. },
  8324. {
  8325. name: "Lake Superior",
  8326. height: math.unit(93900, "meters")
  8327. },
  8328. {
  8329. name: "Mediterranean Sea",
  8330. height: math.unit(644457, "meters")
  8331. },
  8332. {
  8333. name: "World's Oceans",
  8334. height: math.unit(4567491, "meters")
  8335. },
  8336. ]
  8337. ))
  8338. characterMakers.push(() => makeCharacter(
  8339. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8340. {
  8341. front: {
  8342. height: math.unit(2.3, "meters"),
  8343. weight: math.unit(120, "kg"),
  8344. name: "Front",
  8345. image: {
  8346. source: "./media/characters/zelas/front.svg"
  8347. }
  8348. },
  8349. side: {
  8350. height: math.unit(2.3, "meters"),
  8351. weight: math.unit(120, "kg"),
  8352. name: "Side",
  8353. image: {
  8354. source: "./media/characters/zelas/side.svg"
  8355. }
  8356. },
  8357. back: {
  8358. height: math.unit(2.3, "meters"),
  8359. weight: math.unit(120, "kg"),
  8360. name: "Back",
  8361. image: {
  8362. source: "./media/characters/zelas/back.svg"
  8363. }
  8364. },
  8365. foot: {
  8366. height: math.unit(1.116, "feet"),
  8367. name: "Foot",
  8368. image: {
  8369. source: "./media/characters/zelas/foot.svg"
  8370. }
  8371. },
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(2.3, "meters")
  8377. },
  8378. {
  8379. name: "Macro",
  8380. height: math.unit(30, "meters"),
  8381. default: true
  8382. },
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8387. {
  8388. front: {
  8389. height: math.unit(1, "inch"),
  8390. weight: math.unit(0.21, "grams"),
  8391. name: "Front",
  8392. image: {
  8393. source: "./media/characters/talbot/front.svg",
  8394. extra: 594 / 544
  8395. }
  8396. },
  8397. },
  8398. [
  8399. {
  8400. name: "Micro",
  8401. height: math.unit(1, "inch"),
  8402. default: true
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8408. {
  8409. front: {
  8410. height: math.unit(3 + 3 / 12, "feet"),
  8411. weight: math.unit(51.8, "lb"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/fliss/front.svg",
  8415. extra: 840 / 640
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Teeny Tiny",
  8422. height: math.unit(1, "mm")
  8423. },
  8424. {
  8425. name: "Small",
  8426. height: math.unit(1, "inch"),
  8427. default: true
  8428. },
  8429. {
  8430. name: "Standard Sylveon",
  8431. height: math.unit(3 + 3 / 12, "feet")
  8432. },
  8433. {
  8434. name: "Large Nuisance",
  8435. height: math.unit(33, "feet")
  8436. },
  8437. {
  8438. name: "City Filler",
  8439. height: math.unit(3000, "feet")
  8440. },
  8441. {
  8442. name: "New Horizon",
  8443. height: math.unit(6000, "miles")
  8444. },
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(5, "cm"),
  8452. weight: math.unit(1.94, "g"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/fleta/front.svg",
  8456. extra: 835 / 803
  8457. }
  8458. },
  8459. back: {
  8460. height: math.unit(5, "cm"),
  8461. weight: math.unit(1.94, "g"),
  8462. name: "Back",
  8463. image: {
  8464. source: "./media/characters/fleta/back.svg",
  8465. extra: 835 / 803
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Micro",
  8472. height: math.unit(5, "cm"),
  8473. default: true
  8474. },
  8475. ]
  8476. ))
  8477. characterMakers.push(() => makeCharacter(
  8478. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8479. {
  8480. front: {
  8481. height: math.unit(6, "feet"),
  8482. weight: math.unit(225, "lb"),
  8483. name: "Front",
  8484. image: {
  8485. source: "./media/characters/dominic/front.svg",
  8486. extra: 1770 / 1620,
  8487. bottom: 0.025
  8488. }
  8489. },
  8490. back: {
  8491. height: math.unit(6, "feet"),
  8492. weight: math.unit(225, "lb"),
  8493. name: "Back",
  8494. image: {
  8495. source: "./media/characters/dominic/back.svg",
  8496. extra: 1745 / 1620,
  8497. bottom: 0.065
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Nano",
  8504. height: math.unit(0.1, "mm")
  8505. },
  8506. {
  8507. name: "Micro-",
  8508. height: math.unit(1, "mm")
  8509. },
  8510. {
  8511. name: "Micro",
  8512. height: math.unit(4, "inches")
  8513. },
  8514. {
  8515. name: "Normal",
  8516. height: math.unit(6 + 4 / 12, "feet"),
  8517. default: true
  8518. },
  8519. {
  8520. name: "Macro",
  8521. height: math.unit(115, "feet")
  8522. },
  8523. {
  8524. name: "Macro+",
  8525. height: math.unit(955, "feet")
  8526. },
  8527. {
  8528. name: "Megamacro",
  8529. height: math.unit(8990, "feet")
  8530. },
  8531. {
  8532. name: "Gigmacro",
  8533. height: math.unit(9310, "miles")
  8534. },
  8535. {
  8536. name: "Teramacro",
  8537. height: math.unit(1567005010, "miles")
  8538. },
  8539. {
  8540. name: "Examacro",
  8541. height: math.unit(1425, "parsecs")
  8542. },
  8543. ]
  8544. ))
  8545. characterMakers.push(() => makeCharacter(
  8546. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8547. {
  8548. front: {
  8549. height: math.unit(400, "feet"),
  8550. weight: math.unit(44444444, "lb"),
  8551. name: "Front",
  8552. image: {
  8553. source: "./media/characters/major-colonel/front.svg"
  8554. }
  8555. },
  8556. back: {
  8557. height: math.unit(400, "feet"),
  8558. weight: math.unit(44444444, "lb"),
  8559. name: "Back",
  8560. image: {
  8561. source: "./media/characters/major-colonel/back.svg"
  8562. }
  8563. },
  8564. },
  8565. [
  8566. {
  8567. name: "Macro",
  8568. height: math.unit(400, "feet"),
  8569. default: true
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8575. {
  8576. catFront: {
  8577. height: math.unit(6, "feet"),
  8578. weight: math.unit(120, "lb"),
  8579. name: "Front (Cat Side)",
  8580. image: {
  8581. source: "./media/characters/axel-lycan/cat-front.svg",
  8582. extra: 430 / 402,
  8583. bottom: 43 / 472.35
  8584. }
  8585. },
  8586. catBack: {
  8587. height: math.unit(6, "feet"),
  8588. weight: math.unit(120, "lb"),
  8589. name: "Back (Cat Side)",
  8590. image: {
  8591. source: "./media/characters/axel-lycan/cat-back.svg",
  8592. extra: 447 / 419,
  8593. bottom: 23.3 / 469
  8594. }
  8595. },
  8596. wolfFront: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(120, "lb"),
  8599. name: "Front (Wolf Side)",
  8600. image: {
  8601. source: "./media/characters/axel-lycan/wolf-front.svg",
  8602. extra: 485 / 456,
  8603. bottom: 19 / 504
  8604. }
  8605. },
  8606. wolfBack: {
  8607. height: math.unit(6, "feet"),
  8608. weight: math.unit(120, "lb"),
  8609. name: "Back (Wolf Side)",
  8610. image: {
  8611. source: "./media/characters/axel-lycan/wolf-back.svg",
  8612. extra: 475 / 438,
  8613. bottom: 39.2 / 514
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(1, "km"),
  8621. default: true
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(5 + 9 / 12, "feet"),
  8630. weight: math.unit(175, "lb"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/vanrel-hyena/front.svg",
  8634. extra: 1086 / 1010,
  8635. bottom: 0.04
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(5 + 9 / 12, "feet"),
  8643. default: true
  8644. },
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8649. {
  8650. front: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(103, "lb"),
  8653. name: "Front",
  8654. image: {
  8655. source: "./media/characters/abbott-absol/front.svg",
  8656. extra: 2010 / 1842
  8657. }
  8658. },
  8659. },
  8660. [
  8661. {
  8662. name: "Megamicro",
  8663. height: math.unit(0.1, "mm")
  8664. },
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(1, "inch")
  8668. },
  8669. {
  8670. name: "Normal",
  8671. height: math.unit(6, "feet"),
  8672. default: true
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(6, "feet"),
  8681. weight: math.unit(264, "lb"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/hector/front.svg",
  8685. extra: 2280 / 2130,
  8686. bottom: 0.07
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(12.25, "foot"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(160, "feet")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(6, "feet"),
  8707. weight: math.unit(150, "lb"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/sal/front.svg",
  8711. extra: 1846 / 1699,
  8712. bottom: 0.04
  8713. }
  8714. },
  8715. },
  8716. [
  8717. {
  8718. name: "Megamacro",
  8719. height: math.unit(10, "miles"),
  8720. default: true
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8726. {
  8727. front: {
  8728. height: math.unit(3, "meters"),
  8729. weight: math.unit(450, "kg"),
  8730. name: "front",
  8731. image: {
  8732. source: "./media/characters/ranger/front.svg",
  8733. extra: 2401 / 2243,
  8734. bottom: 0.05
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Normal",
  8741. height: math.unit(3, "meters"),
  8742. default: true
  8743. },
  8744. ]
  8745. ))
  8746. characterMakers.push(() => makeCharacter(
  8747. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8748. {
  8749. front: {
  8750. height: math.unit(14, "feet"),
  8751. weight: math.unit(800, "kg"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/theresa/front.svg",
  8755. extra: 3575 / 3346,
  8756. bottom: 0.03
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Normal",
  8763. height: math.unit(14, "feet"),
  8764. default: true
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8770. {
  8771. front: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(3, "kg"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/ine/front.svg",
  8777. extra: 678 / 539,
  8778. bottom: 0.023
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(2.265, "feet"),
  8786. default: true
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8792. {
  8793. front: {
  8794. height: math.unit(5, "feet"),
  8795. weight: math.unit(30, "kg"),
  8796. name: "Front",
  8797. image: {
  8798. source: "./media/characters/vial/front.svg",
  8799. extra: 1365 / 1277,
  8800. bottom: 0.04
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(5, "feet"),
  8808. default: true
  8809. },
  8810. ]
  8811. ))
  8812. characterMakers.push(() => makeCharacter(
  8813. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8814. {
  8815. side: {
  8816. height: math.unit(3.4, "meters"),
  8817. weight: math.unit(1000, "lb"),
  8818. name: "Side",
  8819. image: {
  8820. source: "./media/characters/rovoska/side.svg",
  8821. extra: 4403 / 1515
  8822. }
  8823. },
  8824. },
  8825. [
  8826. {
  8827. name: "Normal",
  8828. height: math.unit(3.4, "meters"),
  8829. default: true
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(8, "feet"),
  8838. weight: math.unit(315, "lb"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/gunner-rotthbauer/front.svg"
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(8, "feet"),
  8846. weight: math.unit(315, "lb"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/gunner-rotthbauer/back.svg"
  8850. }
  8851. },
  8852. },
  8853. [
  8854. {
  8855. name: "Micro",
  8856. height: math.unit(3.5, "inches")
  8857. },
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(8, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(250, "feet")
  8866. },
  8867. {
  8868. name: "Megamacro",
  8869. height: math.unit(1, "AU")
  8870. },
  8871. ]
  8872. ))
  8873. characterMakers.push(() => makeCharacter(
  8874. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8875. {
  8876. front: {
  8877. height: math.unit(5 + 5 / 12, "feet"),
  8878. weight: math.unit(140, "lb"),
  8879. name: "Front",
  8880. image: {
  8881. source: "./media/characters/allatia/front.svg",
  8882. extra: 1227 / 1180,
  8883. bottom: 0.027
  8884. }
  8885. },
  8886. },
  8887. [
  8888. {
  8889. name: "Normal",
  8890. height: math.unit(5 + 5 / 12, "feet")
  8891. },
  8892. {
  8893. name: "Macro",
  8894. height: math.unit(250, "feet"),
  8895. default: true
  8896. },
  8897. {
  8898. name: "Megamacro",
  8899. height: math.unit(8, "miles")
  8900. }
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8905. {
  8906. front: {
  8907. height: math.unit(6, "feet"),
  8908. weight: math.unit(120, "lb"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/tene/front.svg",
  8912. extra: 1728 / 1578,
  8913. bottom: 0.022
  8914. }
  8915. },
  8916. stomping: {
  8917. height: math.unit(2.025, "meters"),
  8918. weight: math.unit(120, "lb"),
  8919. name: "Stomping",
  8920. image: {
  8921. source: "./media/characters/tene/stomping.svg",
  8922. extra: 938 / 873,
  8923. bottom: 0.01
  8924. }
  8925. },
  8926. sitting: {
  8927. height: math.unit(1, "meter"),
  8928. weight: math.unit(120, "lb"),
  8929. name: "Sitting",
  8930. image: {
  8931. source: "./media/characters/tene/sitting.svg",
  8932. extra: 437 / 415,
  8933. bottom: 0.1
  8934. }
  8935. },
  8936. feral: {
  8937. height: math.unit(3.9, "feet"),
  8938. weight: math.unit(250, "lb"),
  8939. name: "Feral",
  8940. image: {
  8941. source: "./media/characters/tene/feral.svg",
  8942. extra: 717 / 458,
  8943. bottom: 0.179
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(6, "feet")
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(300, "feet"),
  8955. default: true
  8956. },
  8957. {
  8958. name: "Megamacro",
  8959. height: math.unit(5, "miles")
  8960. },
  8961. ]
  8962. ))
  8963. characterMakers.push(() => makeCharacter(
  8964. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8965. {
  8966. side: {
  8967. height: math.unit(6, "feet"),
  8968. name: "Side",
  8969. image: {
  8970. source: "./media/characters/evander/side.svg",
  8971. extra: 877 / 477
  8972. }
  8973. },
  8974. },
  8975. [
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(0.83, "meters"),
  8979. default: true
  8980. },
  8981. ]
  8982. ))
  8983. characterMakers.push(() => makeCharacter(
  8984. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8985. {
  8986. front: {
  8987. height: math.unit(12, "feet"),
  8988. weight: math.unit(1000, "lb"),
  8989. name: "Front",
  8990. image: {
  8991. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8992. extra: 1762 / 1611
  8993. }
  8994. },
  8995. back: {
  8996. height: math.unit(12, "feet"),
  8997. weight: math.unit(1000, "lb"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9001. extra: 1762 / 1611
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(12, "feet"),
  9009. default: true
  9010. },
  9011. {
  9012. name: "Kaiju",
  9013. height: math.unit(150, "feet")
  9014. },
  9015. ]
  9016. ))
  9017. characterMakers.push(() => makeCharacter(
  9018. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9019. {
  9020. front: {
  9021. height: math.unit(6, "feet"),
  9022. weight: math.unit(150, "lb"),
  9023. name: "Front",
  9024. image: {
  9025. source: "./media/characters/zero-alurus/front.svg"
  9026. }
  9027. },
  9028. back: {
  9029. height: math.unit(6, "feet"),
  9030. weight: math.unit(150, "lb"),
  9031. name: "Back",
  9032. image: {
  9033. source: "./media/characters/zero-alurus/back.svg"
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(5 + 10 / 12, "feet")
  9041. },
  9042. {
  9043. name: "Macro",
  9044. height: math.unit(60, "feet"),
  9045. default: true
  9046. },
  9047. {
  9048. name: "Macro+",
  9049. height: math.unit(450, "feet")
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(200, "lb"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/mega-shi/front.svg",
  9062. extra: 1279 / 1250,
  9063. bottom: 0.02
  9064. }
  9065. },
  9066. back: {
  9067. height: math.unit(6, "feet"),
  9068. weight: math.unit(200, "lb"),
  9069. name: "Back",
  9070. image: {
  9071. source: "./media/characters/mega-shi/back.svg",
  9072. extra: 1279 / 1250,
  9073. bottom: 0.02
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Micro",
  9080. height: math.unit(16 + 6 / 12, "feet")
  9081. },
  9082. {
  9083. name: "Third Dimension",
  9084. height: math.unit(40, "meters")
  9085. },
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(660, "feet"),
  9089. default: true
  9090. },
  9091. {
  9092. name: "Megamacro",
  9093. height: math.unit(10, "miles")
  9094. },
  9095. {
  9096. name: "Planetary Launch",
  9097. height: math.unit(500, "miles")
  9098. },
  9099. {
  9100. name: "Interstellar",
  9101. height: math.unit(1e9, "miles")
  9102. },
  9103. {
  9104. name: "Leaving the Universe",
  9105. height: math.unit(1, "gigaparsec")
  9106. },
  9107. {
  9108. name: "Travelling Universes",
  9109. height: math.unit(30e15, "parsecs")
  9110. },
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9115. {
  9116. front: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(150, "lb"),
  9119. name: "Front",
  9120. image: {
  9121. source: "./media/characters/odyssey/front.svg",
  9122. extra: 1782 / 1582,
  9123. bottom: 0.01
  9124. }
  9125. },
  9126. side: {
  9127. height: math.unit(5.7, "feet"),
  9128. weight: math.unit(140, "lb"),
  9129. name: "Side",
  9130. image: {
  9131. source: "./media/characters/odyssey/side.svg",
  9132. extra: 6462 / 5700
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Normal",
  9139. height: math.unit(5 + 4 / 12, "feet")
  9140. },
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(1, "km")
  9144. },
  9145. {
  9146. name: "Megamacro",
  9147. height: math.unit(3000, "km")
  9148. },
  9149. {
  9150. name: "Gigamacro",
  9151. height: math.unit(1, "AU"),
  9152. default: true
  9153. },
  9154. {
  9155. name: "Omniversal",
  9156. height: math.unit(100e14, "lightyears")
  9157. },
  9158. ]
  9159. ))
  9160. characterMakers.push(() => makeCharacter(
  9161. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9162. {
  9163. front: {
  9164. height: math.unit(6, "feet"),
  9165. weight: math.unit(300, "lb"),
  9166. name: "Front",
  9167. image: {
  9168. source: "./media/characters/mekuto/front.svg",
  9169. extra: 921 / 832,
  9170. bottom: 0.03
  9171. }
  9172. },
  9173. hand: {
  9174. height: math.unit(6 / 10.24, "feet"),
  9175. name: "Hand",
  9176. image: {
  9177. source: "./media/characters/mekuto/hand.svg"
  9178. }
  9179. },
  9180. foot: {
  9181. height: math.unit(6 / 5.05, "feet"),
  9182. name: "Foot",
  9183. image: {
  9184. source: "./media/characters/mekuto/foot.svg"
  9185. }
  9186. },
  9187. },
  9188. [
  9189. {
  9190. name: "Minimicro",
  9191. height: math.unit(0.2, "inches")
  9192. },
  9193. {
  9194. name: "Micro",
  9195. height: math.unit(1.5, "inches")
  9196. },
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(5 + 11 / 12, "feet"),
  9200. default: true
  9201. },
  9202. {
  9203. name: "Minimacro",
  9204. height: math.unit(17 + 9 / 12, "feet")
  9205. },
  9206. {
  9207. name: "Macro",
  9208. height: math.unit(177.5, "feet")
  9209. },
  9210. {
  9211. name: "Megamacro",
  9212. height: math.unit(152, "miles")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(6.5, "inches"),
  9221. weight: math.unit(13, "oz"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/dafydd-tomos/front.svg",
  9225. extra: 2990 / 2603,
  9226. bottom: 0.03
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Micro",
  9233. height: math.unit(6.5, "inches"),
  9234. default: true
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(6, "feet"),
  9243. weight: math.unit(150, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/splinter/front.svg",
  9247. extra: 2990 / 2882,
  9248. bottom: 0.04
  9249. }
  9250. },
  9251. back: {
  9252. height: math.unit(6, "feet"),
  9253. weight: math.unit(150, "lb"),
  9254. name: "Back",
  9255. image: {
  9256. source: "./media/characters/splinter/back.svg",
  9257. extra: 2990 / 2882,
  9258. bottom: 0.04
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(6, "feet")
  9266. },
  9267. {
  9268. name: "Macro",
  9269. height: math.unit(230, "meters"),
  9270. default: true
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(4 + 10 / 12, "feet"),
  9279. weight: math.unit(480, "lb"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/snow-gabumon/front.svg",
  9283. extra: 1140 / 963,
  9284. bottom: 0.058
  9285. }
  9286. },
  9287. back: {
  9288. height: math.unit(4 + 10 / 12, "feet"),
  9289. weight: math.unit(480, "lb"),
  9290. name: "Back",
  9291. image: {
  9292. source: "./media/characters/snow-gabumon/back.svg",
  9293. extra: 1115 / 962,
  9294. bottom: 0.041
  9295. }
  9296. },
  9297. frontUndresed: {
  9298. height: math.unit(4 + 10 / 12, "feet"),
  9299. weight: math.unit(480, "lb"),
  9300. name: "Front (Undressed)",
  9301. image: {
  9302. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9303. extra: 1061 / 960,
  9304. bottom: 0.045
  9305. }
  9306. },
  9307. },
  9308. [
  9309. {
  9310. name: "Micro",
  9311. height: math.unit(1, "inch")
  9312. },
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(4 + 10 / 12, "feet"),
  9316. default: true
  9317. },
  9318. {
  9319. name: "Macro",
  9320. height: math.unit(200, "feet")
  9321. },
  9322. {
  9323. name: "Megamacro",
  9324. height: math.unit(120, "miles")
  9325. },
  9326. {
  9327. name: "Gigamacro",
  9328. height: math.unit(9800, "miles")
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(1.7, "meters"),
  9337. weight: math.unit(140, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/moody/front.svg",
  9341. extra: 3226 / 3007,
  9342. bottom: 0.087
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Micro",
  9349. height: math.unit(1, "mm")
  9350. },
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(1.7, "meters"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Macro",
  9358. height: math.unit(80, "meters")
  9359. },
  9360. {
  9361. name: "Macro+",
  9362. height: math.unit(500, "meters")
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(150, "lb"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/zyas/front.svg",
  9375. extra: 1180 / 1120,
  9376. bottom: 0.045
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(10, "feet"),
  9384. default: true
  9385. },
  9386. {
  9387. name: "Macro",
  9388. height: math.unit(500, "feet")
  9389. },
  9390. {
  9391. name: "Megamacro",
  9392. height: math.unit(5, "miles")
  9393. },
  9394. {
  9395. name: "Teramacro",
  9396. height: math.unit(150000, "miles")
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9402. {
  9403. front: {
  9404. height: math.unit(6, "feet"),
  9405. weight: math.unit(150, "lb"),
  9406. name: "Front",
  9407. image: {
  9408. source: "./media/characters/cuon/front.svg",
  9409. extra: 1390 / 1320,
  9410. bottom: 0.008
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Micro",
  9417. height: math.unit(3, "inches")
  9418. },
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(18 + 9 / 12, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(360, "feet")
  9427. },
  9428. {
  9429. name: "Megamacro",
  9430. height: math.unit(360, "miles")
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(2.4, "meters"),
  9439. weight: math.unit(70, "kg"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/nyanuxk/front.svg",
  9443. extra: 1172 / 1084,
  9444. bottom: 0.065
  9445. }
  9446. },
  9447. side: {
  9448. height: math.unit(2.4, "meters"),
  9449. weight: math.unit(70, "kg"),
  9450. name: "Side",
  9451. image: {
  9452. source: "./media/characters/nyanuxk/side.svg",
  9453. extra: 1190 / 1132,
  9454. bottom: 0.007
  9455. }
  9456. },
  9457. back: {
  9458. height: math.unit(2.4, "meters"),
  9459. weight: math.unit(70, "kg"),
  9460. name: "Back",
  9461. image: {
  9462. source: "./media/characters/nyanuxk/back.svg",
  9463. extra: 1200 / 1141,
  9464. bottom: 0.015
  9465. }
  9466. },
  9467. foot: {
  9468. height: math.unit(0.52, "meters"),
  9469. name: "Foot",
  9470. image: {
  9471. source: "./media/characters/nyanuxk/foot.svg"
  9472. }
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Micro",
  9478. height: math.unit(2, "cm")
  9479. },
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(2.4, "meters"),
  9483. default: true
  9484. },
  9485. {
  9486. name: "Smaller Macro",
  9487. height: math.unit(120, "meters")
  9488. },
  9489. {
  9490. name: "Bigger Macro",
  9491. height: math.unit(1.2, "km")
  9492. },
  9493. {
  9494. name: "Megamacro",
  9495. height: math.unit(15, "kilometers")
  9496. },
  9497. {
  9498. name: "Gigamacro",
  9499. height: math.unit(2000, "km")
  9500. },
  9501. {
  9502. name: "Teramacro",
  9503. height: math.unit(500000, "km")
  9504. },
  9505. ]
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9509. {
  9510. side: {
  9511. height: math.unit(6, "feet"),
  9512. name: "Side",
  9513. image: {
  9514. source: "./media/characters/ailbhe/side.svg",
  9515. extra: 757 / 464,
  9516. bottom: 0.041
  9517. }
  9518. },
  9519. },
  9520. [
  9521. {
  9522. name: "Normal",
  9523. height: math.unit(1.07, "meters"),
  9524. default: true
  9525. },
  9526. ]
  9527. ))
  9528. characterMakers.push(() => makeCharacter(
  9529. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9530. {
  9531. front: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(120, "kg"),
  9534. name: "Front",
  9535. image: {
  9536. source: "./media/characters/zevulfius/front.svg",
  9537. extra: 965 / 903
  9538. }
  9539. },
  9540. side: {
  9541. height: math.unit(6, "feet"),
  9542. weight: math.unit(120, "kg"),
  9543. name: "Side",
  9544. image: {
  9545. source: "./media/characters/zevulfius/side.svg",
  9546. extra: 939 / 900
  9547. }
  9548. },
  9549. back: {
  9550. height: math.unit(6, "feet"),
  9551. weight: math.unit(120, "kg"),
  9552. name: "Back",
  9553. image: {
  9554. source: "./media/characters/zevulfius/back.svg",
  9555. extra: 918 / 854,
  9556. bottom: 0.005
  9557. }
  9558. },
  9559. foot: {
  9560. height: math.unit(6 / 3.72, "feet"),
  9561. name: "Foot",
  9562. image: {
  9563. source: "./media/characters/zevulfius/foot.svg"
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(750, "meters")
  9571. },
  9572. {
  9573. name: "Megamacro",
  9574. height: math.unit(20, "km"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Gigamacro",
  9579. height: math.unit(2000, "km")
  9580. },
  9581. {
  9582. name: "Teramacro",
  9583. height: math.unit(250000, "km")
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(100, "feet"),
  9592. weight: math.unit(350, "kg"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/rikes/front.svg",
  9596. extra: 1565 / 1483,
  9597. bottom: 0.017
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(100, "feet"),
  9605. default: true
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9611. {
  9612. anthro: {
  9613. height: math.unit(8, "feet"),
  9614. weight: math.unit(120, "kg"),
  9615. name: "Anthro",
  9616. image: {
  9617. source: "./media/characters/adam-silver-mane/anthro.svg",
  9618. extra: 5743 / 5339,
  9619. bottom: 0.07
  9620. }
  9621. },
  9622. taur: {
  9623. height: math.unit(16, "feet"),
  9624. weight: math.unit(1500, "kg"),
  9625. name: "Taur",
  9626. image: {
  9627. source: "./media/characters/adam-silver-mane/taur.svg",
  9628. extra: 1713 / 1571,
  9629. bottom: 0.01
  9630. }
  9631. },
  9632. },
  9633. [
  9634. {
  9635. name: "Normal",
  9636. height: math.unit(8, "feet")
  9637. },
  9638. {
  9639. name: "Minimacro",
  9640. height: math.unit(80, "feet")
  9641. },
  9642. {
  9643. name: "Macro",
  9644. height: math.unit(800, "feet"),
  9645. default: true
  9646. },
  9647. {
  9648. name: "Megamacro",
  9649. height: math.unit(8000, "feet")
  9650. },
  9651. {
  9652. name: "Gigamacro",
  9653. height: math.unit(800, "miles")
  9654. },
  9655. {
  9656. name: "Teramacro",
  9657. height: math.unit(80000, "miles")
  9658. },
  9659. {
  9660. name: "Celestial",
  9661. height: math.unit(8e6, "miles")
  9662. },
  9663. {
  9664. name: "Star Dragon",
  9665. height: math.unit(800000, "parsecs")
  9666. },
  9667. {
  9668. name: "Godly",
  9669. height: math.unit(800, "teraparsecs")
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(6, "feet"),
  9678. weight: math.unit(150, "lb"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/ky'owin/front.svg",
  9682. extra: 3888 / 3068,
  9683. bottom: 0.015
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(6 + 8 / 12, "feet")
  9691. },
  9692. {
  9693. name: "Large",
  9694. height: math.unit(68, "feet")
  9695. },
  9696. {
  9697. name: "Macro",
  9698. height: math.unit(132, "feet")
  9699. },
  9700. {
  9701. name: "Macro+",
  9702. height: math.unit(340, "feet")
  9703. },
  9704. {
  9705. name: "Macro++",
  9706. height: math.unit(680, "feet"),
  9707. default: true
  9708. },
  9709. {
  9710. name: "Megamacro",
  9711. height: math.unit(1, "mile")
  9712. },
  9713. {
  9714. name: "Megamacro+",
  9715. height: math.unit(10, "miles")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(4, "feet"),
  9724. weight: math.unit(50, "lb"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/mal/front.svg",
  9728. extra: 785 / 724,
  9729. bottom: 0.07
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Micro",
  9736. height: math.unit(4, "inches")
  9737. },
  9738. {
  9739. name: "Normal",
  9740. height: math.unit(4, "feet"),
  9741. default: true
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(200, "feet")
  9746. },
  9747. ]
  9748. ))
  9749. characterMakers.push(() => makeCharacter(
  9750. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9751. {
  9752. front: {
  9753. height: math.unit(6, "feet"),
  9754. weight: math.unit(150, "lb"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/jordan-deware/front.svg",
  9758. extra: 1191 / 1012
  9759. }
  9760. },
  9761. },
  9762. [
  9763. {
  9764. name: "Nano",
  9765. height: math.unit(0.01, "mm")
  9766. },
  9767. {
  9768. name: "Minimicro",
  9769. height: math.unit(1, "mm")
  9770. },
  9771. {
  9772. name: "Micro",
  9773. height: math.unit(0.5, "inches")
  9774. },
  9775. {
  9776. name: "Normal",
  9777. height: math.unit(4, "feet"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Minimacro",
  9782. height: math.unit(40, "meters")
  9783. },
  9784. {
  9785. name: "Small Macro",
  9786. height: math.unit(400, "meters")
  9787. },
  9788. {
  9789. name: "Macro",
  9790. height: math.unit(4, "miles")
  9791. },
  9792. {
  9793. name: "Megamacro",
  9794. height: math.unit(40, "miles")
  9795. },
  9796. {
  9797. name: "Megamacro+",
  9798. height: math.unit(400, "miles")
  9799. },
  9800. {
  9801. name: "Gigamacro",
  9802. height: math.unit(400000, "miles")
  9803. },
  9804. ]
  9805. ))
  9806. characterMakers.push(() => makeCharacter(
  9807. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9808. {
  9809. side: {
  9810. height: math.unit(6, "feet"),
  9811. weight: math.unit(150, "lb"),
  9812. name: "Side",
  9813. image: {
  9814. source: "./media/characters/kimiko/side.svg",
  9815. extra: 600 / 358
  9816. }
  9817. },
  9818. },
  9819. [
  9820. {
  9821. name: "Normal",
  9822. height: math.unit(15, "feet"),
  9823. default: true
  9824. },
  9825. {
  9826. name: "Macro",
  9827. height: math.unit(220, "feet")
  9828. },
  9829. {
  9830. name: "Macro+",
  9831. height: math.unit(1450, "feet")
  9832. },
  9833. {
  9834. name: "Megamacro",
  9835. height: math.unit(11500, "feet")
  9836. },
  9837. {
  9838. name: "Gigamacro",
  9839. height: math.unit(9500, "miles")
  9840. },
  9841. {
  9842. name: "Teramacro",
  9843. height: math.unit(2208005005, "miles")
  9844. },
  9845. {
  9846. name: "Examacro",
  9847. height: math.unit(2750, "parsecs")
  9848. },
  9849. {
  9850. name: "Zettamacro",
  9851. height: math.unit(101500, "parsecs")
  9852. },
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9857. {
  9858. front: {
  9859. height: math.unit(6, "feet"),
  9860. weight: math.unit(70, "kg"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/andrew-sleepy/front.svg"
  9864. }
  9865. },
  9866. side: {
  9867. height: math.unit(6, "feet"),
  9868. weight: math.unit(70, "kg"),
  9869. name: "Side",
  9870. image: {
  9871. source: "./media/characters/andrew-sleepy/side.svg"
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Micro",
  9878. height: math.unit(1, "mm"),
  9879. default: true
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(150, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/judio/front.svg",
  9892. extra: 1258 / 1110
  9893. }
  9894. },
  9895. },
  9896. [
  9897. {
  9898. name: "Normal",
  9899. height: math.unit(5 + 6 / 12, "feet")
  9900. },
  9901. {
  9902. name: "Macro",
  9903. height: math.unit(1000, "feet"),
  9904. default: true
  9905. },
  9906. {
  9907. name: "Megamacro",
  9908. height: math.unit(10, "miles")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(68, "kg"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/nomaxice/front.svg",
  9921. extra: 1498 / 1073,
  9922. bottom: 0.075
  9923. }
  9924. },
  9925. foot: {
  9926. height: math.unit(1.1, "feet"),
  9927. name: "Foot",
  9928. image: {
  9929. source: "./media/characters/nomaxice/foot.svg"
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Micro",
  9936. height: math.unit(8, "cm")
  9937. },
  9938. {
  9939. name: "Norm",
  9940. height: math.unit(1.82, "m")
  9941. },
  9942. {
  9943. name: "Norm+",
  9944. height: math.unit(8.8, "feet")
  9945. },
  9946. {
  9947. name: "Big",
  9948. height: math.unit(8, "meters"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(18, "meters")
  9954. },
  9955. {
  9956. name: "Macro+",
  9957. height: math.unit(88, "meters")
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(12, "feet"),
  9966. weight: math.unit(1.5, "tons"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/dydros/front.svg",
  9970. extra: 863 / 800,
  9971. bottom: 0.015
  9972. }
  9973. },
  9974. back: {
  9975. height: math.unit(12, "feet"),
  9976. weight: math.unit(1.5, "tons"),
  9977. name: "Back",
  9978. image: {
  9979. source: "./media/characters/dydros/back.svg",
  9980. extra: 900 / 843,
  9981. bottom: 0.005
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(12, "feet"),
  9989. default: true
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(100, "kg"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/riggi/front.svg",
  10002. extra: 5787 / 5303
  10003. }
  10004. },
  10005. hyper: {
  10006. height: math.unit(6 * 5 / 3, "feet"),
  10007. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10008. name: "Hyper",
  10009. image: {
  10010. source: "./media/characters/riggi/hyper.svg",
  10011. extra: 3595 / 3485
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Small Macro",
  10018. height: math.unit(50, "feet")
  10019. },
  10020. {
  10021. name: "Default",
  10022. height: math.unit(200, "feet"),
  10023. default: true
  10024. },
  10025. {
  10026. name: "Loom",
  10027. height: math.unit(10000, "feet")
  10028. },
  10029. {
  10030. name: "Cruising Altitude",
  10031. height: math.unit(30000, "feet")
  10032. },
  10033. {
  10034. name: "Megamacro",
  10035. height: math.unit(100, "miles")
  10036. },
  10037. {
  10038. name: "Continent Sized",
  10039. height: math.unit(2800, "miles")
  10040. },
  10041. {
  10042. name: "Earth Sized",
  10043. height: math.unit(8000, "miles")
  10044. },
  10045. ]
  10046. ))
  10047. characterMakers.push(() => makeCharacter(
  10048. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10049. {
  10050. front: {
  10051. height: math.unit(6, "feet"),
  10052. weight: math.unit(250, "lb"),
  10053. name: "Front",
  10054. image: {
  10055. source: "./media/characters/alexi/front.svg",
  10056. extra: 3483 / 3291,
  10057. bottom: 0.04
  10058. }
  10059. },
  10060. back: {
  10061. height: math.unit(6, "feet"),
  10062. weight: math.unit(250, "lb"),
  10063. name: "Back",
  10064. image: {
  10065. source: "./media/characters/alexi/back.svg",
  10066. extra: 3533 / 3356,
  10067. bottom: 0.021
  10068. }
  10069. },
  10070. frontTransforming: {
  10071. height: math.unit(8.58, "feet"),
  10072. weight: math.unit(1300, "lb"),
  10073. name: "Transforming",
  10074. image: {
  10075. source: "./media/characters/alexi/front-transforming.svg",
  10076. extra: 437 / 409,
  10077. bottom: 19 / 458.66
  10078. }
  10079. },
  10080. frontTransformed: {
  10081. height: math.unit(12.5, "feet"),
  10082. weight: math.unit(4000, "lb"),
  10083. name: "Transformed",
  10084. image: {
  10085. source: "./media/characters/alexi/front-transformed.svg",
  10086. extra: 639 / 614,
  10087. bottom: 30.55 / 671
  10088. }
  10089. },
  10090. },
  10091. [
  10092. {
  10093. name: "Normal",
  10094. height: math.unit(3, "meters"),
  10095. default: true
  10096. },
  10097. {
  10098. name: "Minimacro",
  10099. height: math.unit(30, "meters")
  10100. },
  10101. {
  10102. name: "Macro",
  10103. height: math.unit(500, "meters")
  10104. },
  10105. {
  10106. name: "Megamacro",
  10107. height: math.unit(9000, "km")
  10108. },
  10109. {
  10110. name: "Teramacro",
  10111. height: math.unit(384000, "km")
  10112. },
  10113. ]
  10114. ))
  10115. characterMakers.push(() => makeCharacter(
  10116. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10117. {
  10118. front: {
  10119. height: math.unit(6, "feet"),
  10120. weight: math.unit(150, "lb"),
  10121. name: "Front",
  10122. image: {
  10123. source: "./media/characters/kayroo/front.svg",
  10124. extra: 1153 / 1038,
  10125. bottom: 0.06
  10126. }
  10127. },
  10128. foot: {
  10129. height: math.unit(6, "feet"),
  10130. weight: math.unit(150, "lb"),
  10131. name: "Foot",
  10132. image: {
  10133. source: "./media/characters/kayroo/foot.svg"
  10134. }
  10135. },
  10136. },
  10137. [
  10138. {
  10139. name: "Normal",
  10140. height: math.unit(8, "feet"),
  10141. default: true
  10142. },
  10143. {
  10144. name: "Minimacro",
  10145. height: math.unit(250, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(2800, "feet")
  10150. },
  10151. {
  10152. name: "Megamacro",
  10153. height: math.unit(5200, "feet")
  10154. },
  10155. {
  10156. name: "Gigamacro",
  10157. height: math.unit(27000, "feet")
  10158. },
  10159. {
  10160. name: "Omega",
  10161. height: math.unit(45000, "feet")
  10162. },
  10163. ]
  10164. ))
  10165. characterMakers.push(() => makeCharacter(
  10166. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10167. {
  10168. front: {
  10169. height: math.unit(18, "feet"),
  10170. weight: math.unit(5800, "lb"),
  10171. name: "Front",
  10172. image: {
  10173. source: "./media/characters/rhys/front.svg",
  10174. extra: 3386 / 3090,
  10175. bottom: 0.07
  10176. }
  10177. },
  10178. },
  10179. [
  10180. {
  10181. name: "Normal",
  10182. height: math.unit(18, "feet"),
  10183. default: true
  10184. },
  10185. {
  10186. name: "Working Size",
  10187. height: math.unit(200, "feet")
  10188. },
  10189. {
  10190. name: "Demolition Size",
  10191. height: math.unit(2000, "feet")
  10192. },
  10193. {
  10194. name: "Maximum Licensed Size",
  10195. height: math.unit(5, "miles")
  10196. },
  10197. {
  10198. name: "Maximum Observed Size",
  10199. height: math.unit(10, "yottameters")
  10200. },
  10201. ]
  10202. ))
  10203. characterMakers.push(() => makeCharacter(
  10204. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10205. {
  10206. front: {
  10207. height: math.unit(6, "feet"),
  10208. weight: math.unit(250, "lb"),
  10209. name: "Front",
  10210. image: {
  10211. source: "./media/characters/toto/front.svg",
  10212. extra: 527 / 479,
  10213. bottom: 0.05
  10214. }
  10215. },
  10216. },
  10217. [
  10218. {
  10219. name: "Micro",
  10220. height: math.unit(3, "feet")
  10221. },
  10222. {
  10223. name: "Normal",
  10224. height: math.unit(10, "feet")
  10225. },
  10226. {
  10227. name: "Macro",
  10228. height: math.unit(150, "feet"),
  10229. default: true
  10230. },
  10231. {
  10232. name: "Megamacro",
  10233. height: math.unit(1200, "feet")
  10234. },
  10235. ]
  10236. ))
  10237. characterMakers.push(() => makeCharacter(
  10238. { name: "King", species: ["lion"], tags: ["anthro"] },
  10239. {
  10240. back: {
  10241. height: math.unit(6, "feet"),
  10242. weight: math.unit(150, "lb"),
  10243. name: "Back",
  10244. image: {
  10245. source: "./media/characters/king/back.svg"
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Micro",
  10252. height: math.unit(2, "inches")
  10253. },
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(8, "feet")
  10257. },
  10258. {
  10259. name: "Macro",
  10260. height: math.unit(200, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(50, "miles")
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10271. {
  10272. anthro: {
  10273. height: math.unit(6 + 5 / 12, "feet"),
  10274. weight: math.unit(280, "lb"),
  10275. name: "Anthro",
  10276. image: {
  10277. source: "./media/characters/cordite/anthro.svg",
  10278. extra: 1986 / 1905,
  10279. bottom: 0.025
  10280. }
  10281. },
  10282. feral: {
  10283. height: math.unit(2, "feet"),
  10284. weight: math.unit(90, "lb"),
  10285. name: "Feral",
  10286. image: {
  10287. source: "./media/characters/cordite/feral.svg",
  10288. extra: 1260 / 755,
  10289. bottom: 0.05
  10290. }
  10291. },
  10292. },
  10293. [
  10294. {
  10295. name: "Normal",
  10296. height: math.unit(6 + 5 / 12, "feet"),
  10297. default: true
  10298. },
  10299. ]
  10300. ))
  10301. characterMakers.push(() => makeCharacter(
  10302. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10303. {
  10304. front: {
  10305. height: math.unit(6, "feet"),
  10306. weight: math.unit(150, "lb"),
  10307. name: "Front",
  10308. image: {
  10309. source: "./media/characters/pianostrong/front.svg",
  10310. extra: 6577 / 6254,
  10311. bottom: 0.02
  10312. }
  10313. },
  10314. side: {
  10315. height: math.unit(6, "feet"),
  10316. weight: math.unit(150, "lb"),
  10317. name: "Side",
  10318. image: {
  10319. source: "./media/characters/pianostrong/side.svg",
  10320. extra: 6106 / 5730
  10321. }
  10322. },
  10323. back: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(150, "lb"),
  10326. name: "Back",
  10327. image: {
  10328. source: "./media/characters/pianostrong/back.svg",
  10329. extra: 6085 / 5733,
  10330. bottom: 0.01
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Macro",
  10337. height: math.unit(100, "feet")
  10338. },
  10339. {
  10340. name: "Macro+",
  10341. height: math.unit(300, "feet"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Macro++",
  10346. height: math.unit(1000, "feet")
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(150, "lb"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/kona/front.svg",
  10359. extra: 2960 / 2629,
  10360. bottom: 0.005
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Normal",
  10367. height: math.unit(11 + 8 / 12, "feet")
  10368. },
  10369. {
  10370. name: "Macro",
  10371. height: math.unit(850, "feet"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Macro+",
  10376. height: math.unit(1.5, "km"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Megamacro",
  10381. height: math.unit(80, "miles")
  10382. },
  10383. {
  10384. name: "Gigamacro",
  10385. height: math.unit(3500, "miles")
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10391. {
  10392. side: {
  10393. height: math.unit(1.9, "meters"),
  10394. weight: math.unit(326, "kg"),
  10395. name: "Side",
  10396. image: {
  10397. source: "./media/characters/levi/side.svg",
  10398. extra: 1704 / 1334,
  10399. bottom: 0.02
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(1.9, "meters"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(20, "meters")
  10412. },
  10413. {
  10414. name: "Macro+",
  10415. height: math.unit(200, "meters")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(2, "km")
  10420. },
  10421. {
  10422. name: "Megamacro+",
  10423. height: math.unit(20, "km")
  10424. },
  10425. {
  10426. name: "Gigamacro",
  10427. height: math.unit(2500, "km")
  10428. },
  10429. {
  10430. name: "Gigamacro+",
  10431. height: math.unit(120000, "km")
  10432. },
  10433. {
  10434. name: "Teramacro",
  10435. height: math.unit(7.77e6, "km")
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(6 + 4 / 12, "feet"),
  10444. weight: math.unit(188, "lb"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/bmc/front.svg",
  10448. extra: 1067 / 1022,
  10449. bottom: 0.047
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Human-sized",
  10456. height: math.unit(6 + 4 / 12, "feet")
  10457. },
  10458. {
  10459. name: "Small",
  10460. height: math.unit(250, "feet")
  10461. },
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(1250, "feet"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Good Day",
  10469. height: math.unit(88, "miles")
  10470. },
  10471. {
  10472. name: "Largest Measured Size",
  10473. height: math.unit(11.2e6, "lightyears")
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(20, "feet"),
  10482. weight: math.unit(2016, "kg"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/sven-the-kaiju/front.svg",
  10486. extra: 1479 / 1449,
  10487. bottom: 0.05
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Fairy",
  10494. height: math.unit(6, "inches")
  10495. },
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(20, "feet"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Rampage",
  10503. height: math.unit(200, "feet")
  10504. },
  10505. {
  10506. name: "Archfey Forest Guardian",
  10507. height: math.unit(1, "mile")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(4, "meters"),
  10516. weight: math.unit(2, "tons"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/marik/front.svg",
  10520. extra: 1057 / 1003,
  10521. bottom: 0.08
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(4, "meters"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(20, "meters")
  10534. },
  10535. {
  10536. name: "Megamacro",
  10537. height: math.unit(50, "km")
  10538. },
  10539. {
  10540. name: "Gigamacro",
  10541. height: math.unit(100, "km")
  10542. },
  10543. {
  10544. name: "Alpha Macro",
  10545. height: math.unit(7.88e7, "yottameters")
  10546. },
  10547. ]
  10548. ))
  10549. characterMakers.push(() => makeCharacter(
  10550. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10551. {
  10552. front: {
  10553. height: math.unit(6, "feet"),
  10554. weight: math.unit(110, "lb"),
  10555. name: "Front",
  10556. image: {
  10557. source: "./media/characters/mel/front.svg",
  10558. extra: 736 / 617,
  10559. bottom: 0.017
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Pico",
  10566. height: math.unit(3, "pm")
  10567. },
  10568. {
  10569. name: "Nano",
  10570. height: math.unit(3, "nm")
  10571. },
  10572. {
  10573. name: "Micro",
  10574. height: math.unit(0.3, "mm"),
  10575. default: true
  10576. },
  10577. {
  10578. name: "Micro+",
  10579. height: math.unit(3, "mm")
  10580. },
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(5 + 10.5 / 12, "feet")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10589. {
  10590. kaiju: {
  10591. height: math.unit(1.75, "meters"),
  10592. weight: math.unit(55, "kg"),
  10593. name: "Kaiju",
  10594. image: {
  10595. source: "./media/characters/lykonous/kaiju.svg",
  10596. extra: 1055 / 946,
  10597. bottom: 0.135
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Normal",
  10604. height: math.unit(2.5, "meters"),
  10605. default: true
  10606. },
  10607. {
  10608. name: "Kaiju Dragon",
  10609. height: math.unit(60, "meters")
  10610. },
  10611. {
  10612. name: "Mega Kaiju",
  10613. height: math.unit(120, "km")
  10614. },
  10615. {
  10616. name: "Giga Kaiju",
  10617. height: math.unit(200, "megameters")
  10618. },
  10619. {
  10620. name: "Terra Kaiju",
  10621. height: math.unit(400, "gigameters")
  10622. },
  10623. {
  10624. name: "Kaiju Dragon God",
  10625. height: math.unit(13000, "exaparsecs")
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10631. {
  10632. front: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(150, "lb"),
  10635. name: "Front",
  10636. image: {
  10637. source: "./media/characters/blü/front.svg",
  10638. extra: 1883 / 1564,
  10639. bottom: 0.031
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Normal",
  10646. height: math.unit(13, "feet"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Big Boi",
  10651. height: math.unit(150, "meters")
  10652. },
  10653. {
  10654. name: "Mini Stomper",
  10655. height: math.unit(300, "meters")
  10656. },
  10657. {
  10658. name: "Macro",
  10659. height: math.unit(1000, "meters")
  10660. },
  10661. {
  10662. name: "Megamacro",
  10663. height: math.unit(11000, "meters")
  10664. },
  10665. {
  10666. name: "Gigamacro",
  10667. height: math.unit(11000, "km")
  10668. },
  10669. {
  10670. name: "Teramacro",
  10671. height: math.unit(420000, "km")
  10672. },
  10673. {
  10674. name: "Examacro",
  10675. height: math.unit(120, "parsecs")
  10676. },
  10677. {
  10678. name: "God Tho",
  10679. height: math.unit(98000000000, "parsecs")
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10685. {
  10686. taurFront: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(200, "lb"),
  10689. name: "Taur (Front)",
  10690. image: {
  10691. source: "./media/characters/scales/taur-front.svg",
  10692. extra: 1,
  10693. bottom: 0.05
  10694. }
  10695. },
  10696. taurBack: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(200, "lb"),
  10699. name: "Taur (Back)",
  10700. image: {
  10701. source: "./media/characters/scales/taur-back.svg",
  10702. extra: 1,
  10703. bottom: 0.08
  10704. }
  10705. },
  10706. anthro: {
  10707. height: math.unit(6 * 7 / 12, "feet"),
  10708. weight: math.unit(100, "lb"),
  10709. name: "Anthro",
  10710. image: {
  10711. source: "./media/characters/scales/anthro.svg",
  10712. extra: 1,
  10713. bottom: 0.06
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(12, "feet"),
  10721. default: true
  10722. },
  10723. ]
  10724. ))
  10725. characterMakers.push(() => makeCharacter(
  10726. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10727. {
  10728. front: {
  10729. height: math.unit(6, "feet"),
  10730. weight: math.unit(150, "lb"),
  10731. name: "Front",
  10732. image: {
  10733. source: "./media/characters/koragos/front.svg",
  10734. extra: 841 / 794,
  10735. bottom: 0.035
  10736. }
  10737. },
  10738. back: {
  10739. height: math.unit(6, "feet"),
  10740. weight: math.unit(150, "lb"),
  10741. name: "Back",
  10742. image: {
  10743. source: "./media/characters/koragos/back.svg",
  10744. extra: 841 / 810,
  10745. bottom: 0.022
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(6 + 11 / 12, "feet"),
  10753. default: true
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(490, "feet")
  10758. },
  10759. {
  10760. name: "Megamacro",
  10761. height: math.unit(10, "miles")
  10762. },
  10763. {
  10764. name: "Gigamacro",
  10765. height: math.unit(50, "miles")
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(250, "lb"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/xylrem/front.svg",
  10778. extra: 3323 / 3050,
  10779. bottom: 0.065
  10780. }
  10781. },
  10782. },
  10783. [
  10784. {
  10785. name: "Micro",
  10786. height: math.unit(4, "feet")
  10787. },
  10788. {
  10789. name: "Normal",
  10790. height: math.unit(16, "feet"),
  10791. default: true
  10792. },
  10793. {
  10794. name: "Macro",
  10795. height: math.unit(2720, "feet")
  10796. },
  10797. {
  10798. name: "Megamacro",
  10799. height: math.unit(25000, "miles")
  10800. },
  10801. ]
  10802. ))
  10803. characterMakers.push(() => makeCharacter(
  10804. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10805. {
  10806. front: {
  10807. height: math.unit(8, "feet"),
  10808. weight: math.unit(250, "kg"),
  10809. name: "Front",
  10810. image: {
  10811. source: "./media/characters/ikideru/front.svg",
  10812. extra: 930 / 870,
  10813. bottom: 0.087
  10814. }
  10815. },
  10816. back: {
  10817. height: math.unit(8, "feet"),
  10818. weight: math.unit(250, "kg"),
  10819. name: "Back",
  10820. image: {
  10821. source: "./media/characters/ikideru/back.svg",
  10822. extra: 919 / 852,
  10823. bottom: 0.055
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Rare",
  10830. height: math.unit(8, "feet"),
  10831. default: true
  10832. },
  10833. {
  10834. name: "Playful Loom",
  10835. height: math.unit(80, "feet")
  10836. },
  10837. {
  10838. name: "City Leaner",
  10839. height: math.unit(230, "feet")
  10840. },
  10841. {
  10842. name: "Megamacro",
  10843. height: math.unit(2500, "feet")
  10844. },
  10845. {
  10846. name: "Gigamacro",
  10847. height: math.unit(26400, "feet")
  10848. },
  10849. {
  10850. name: "Tectonic Shifter",
  10851. height: math.unit(1.7, "megameters")
  10852. },
  10853. {
  10854. name: "Planet Carer",
  10855. height: math.unit(21, "megameters")
  10856. },
  10857. {
  10858. name: "God",
  10859. height: math.unit(11157.22, "parsecs")
  10860. },
  10861. ]
  10862. ))
  10863. characterMakers.push(() => makeCharacter(
  10864. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10865. {
  10866. front: {
  10867. height: math.unit(6, "feet"),
  10868. weight: math.unit(120, "lb"),
  10869. name: "Front",
  10870. image: {
  10871. source: "./media/characters/neo/front.svg"
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Micro",
  10878. height: math.unit(2, "inches"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Human Size",
  10883. height: math.unit(5 + 8 / 12, "feet")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(13 + 10 / 12, "feet"),
  10892. weight: math.unit(5320, "lb"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/chauncey-chantz/front.svg",
  10896. extra: 1587 / 1435,
  10897. bottom: 0.02
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(13 + 10 / 12, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Macro",
  10909. height: math.unit(45, "feet")
  10910. },
  10911. {
  10912. name: "Megamacro",
  10913. height: math.unit(250, "miles")
  10914. },
  10915. {
  10916. name: "Planetary",
  10917. height: math.unit(10000, "miles")
  10918. },
  10919. {
  10920. name: "Galactic",
  10921. height: math.unit(40000, "parsecs")
  10922. },
  10923. {
  10924. name: "Universal",
  10925. height: math.unit(1, "yottameter")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10931. {
  10932. front: {
  10933. height: math.unit(6, "feet"),
  10934. weight: math.unit(150, "lb"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/epifox/front.svg",
  10938. extra: 1,
  10939. bottom: 0.075
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Micro",
  10946. height: math.unit(6, "inches")
  10947. },
  10948. {
  10949. name: "Normal",
  10950. height: math.unit(12, "feet"),
  10951. default: true
  10952. },
  10953. {
  10954. name: "Macro",
  10955. height: math.unit(3810, "feet")
  10956. },
  10957. {
  10958. name: "Megamacro",
  10959. height: math.unit(500, "miles")
  10960. },
  10961. ]
  10962. ))
  10963. characterMakers.push(() => makeCharacter(
  10964. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10965. {
  10966. front: {
  10967. height: math.unit(1.8796, "m"),
  10968. weight: math.unit(230, "lb"),
  10969. name: "Front",
  10970. image: {
  10971. source: "./media/characters/colin-t/front.svg",
  10972. extra: 1272 / 1193,
  10973. bottom: 0.07
  10974. }
  10975. },
  10976. },
  10977. [
  10978. {
  10979. name: "Micro",
  10980. height: math.unit(0.571, "meters")
  10981. },
  10982. {
  10983. name: "Normal",
  10984. height: math.unit(1.8796, "meters"),
  10985. default: true
  10986. },
  10987. {
  10988. name: "Tall",
  10989. height: math.unit(4, "meters")
  10990. },
  10991. {
  10992. name: "Macro",
  10993. height: math.unit(67.241, "meters")
  10994. },
  10995. {
  10996. name: "Megamacro",
  10997. height: math.unit(371.856, "meters")
  10998. },
  10999. {
  11000. name: "Planetary",
  11001. height: math.unit(12631.5689, "km")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(1.85, "meters"),
  11010. weight: math.unit(80, "kg"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/matvei/front.svg",
  11014. extra: 614 / 594,
  11015. bottom: 0.01
  11016. }
  11017. },
  11018. },
  11019. [
  11020. {
  11021. name: "Normal",
  11022. height: math.unit(1.85, "meters"),
  11023. default: true
  11024. },
  11025. ]
  11026. ))
  11027. characterMakers.push(() => makeCharacter(
  11028. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11029. {
  11030. front: {
  11031. height: math.unit(5 + 9 / 12, "feet"),
  11032. weight: math.unit(70, "lb"),
  11033. name: "Front",
  11034. image: {
  11035. source: "./media/characters/quincy/front.svg",
  11036. extra: 3041 / 2751
  11037. }
  11038. },
  11039. back: {
  11040. height: math.unit(5 + 9 / 12, "feet"),
  11041. weight: math.unit(70, "lb"),
  11042. name: "Back",
  11043. image: {
  11044. source: "./media/characters/quincy/back.svg",
  11045. extra: 3041 / 2751
  11046. }
  11047. },
  11048. flying: {
  11049. height: math.unit(5 + 4 / 12, "feet"),
  11050. weight: math.unit(70, "lb"),
  11051. name: "Flying",
  11052. image: {
  11053. source: "./media/characters/quincy/flying.svg",
  11054. extra: 1044 / 930
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Micro",
  11061. height: math.unit(3, "cm")
  11062. },
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(5 + 9 / 12, "feet")
  11066. },
  11067. {
  11068. name: "Macro",
  11069. height: math.unit(200, "meters"),
  11070. default: true
  11071. },
  11072. {
  11073. name: "Megamacro",
  11074. height: math.unit(1000, "meters")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(4 + 7 / 12, "feet"),
  11083. weight: math.unit(150, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/vanrel/front.svg",
  11087. extra: 1,
  11088. bottom: 0.02
  11089. }
  11090. },
  11091. elemental: {
  11092. height: math.unit(3, "feet"),
  11093. weight: math.unit(150, "lb"),
  11094. name: "Elemental",
  11095. image: {
  11096. source: "./media/characters/vanrel/elemental.svg",
  11097. extra: 192.3 / 162.8,
  11098. bottom: 1.79 / 194.17
  11099. }
  11100. },
  11101. side: {
  11102. height: math.unit(4 + 7 / 12, "feet"),
  11103. weight: math.unit(150, "lb"),
  11104. name: "Side",
  11105. image: {
  11106. source: "./media/characters/vanrel/side.svg",
  11107. extra: 1,
  11108. bottom: 0.025
  11109. }
  11110. },
  11111. tome: {
  11112. height: math.unit(1.35, "feet"),
  11113. weight: math.unit(10, "lb"),
  11114. name: "Vanrel's Tome",
  11115. rename: true,
  11116. image: {
  11117. source: "./media/characters/vanrel/tome.svg"
  11118. }
  11119. },
  11120. beans: {
  11121. height: math.unit(0.89, "feet"),
  11122. name: "Beans",
  11123. image: {
  11124. source: "./media/characters/vanrel/beans.svg"
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(4 + 7 / 12, "feet"),
  11132. default: true
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(7 + 5 / 12, "feet"),
  11141. weight: math.unit(150, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/kuiper-vanrel/front.svg",
  11145. extra: 1118 / 1068,
  11146. bottom: 0.09
  11147. }
  11148. },
  11149. foot: {
  11150. height: math.unit(0.55, "meters"),
  11151. name: "Foot",
  11152. image: {
  11153. source: "./media/characters/kuiper-vanrel/foot.svg",
  11154. }
  11155. },
  11156. battle: {
  11157. height: math.unit(6.824, "feet"),
  11158. weight: math.unit(150, "lb"),
  11159. name: "Battle",
  11160. image: {
  11161. source: "./media/characters/kuiper-vanrel/battle.svg",
  11162. extra: 1466 / 1327,
  11163. bottom: 29 / 1492.5
  11164. }
  11165. },
  11166. },
  11167. [
  11168. {
  11169. name: "Normal",
  11170. height: math.unit(7 + 5 / 12, "feet"),
  11171. default: true
  11172. },
  11173. ]
  11174. ))
  11175. characterMakers.push(() => makeCharacter(
  11176. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11177. {
  11178. front: {
  11179. height: math.unit(8 + 5 / 12, "feet"),
  11180. weight: math.unit(150, "lb"),
  11181. name: "Front",
  11182. image: {
  11183. source: "./media/characters/keset-vanrel/front.svg",
  11184. extra: 1150 / 1084,
  11185. bottom: 0.05
  11186. }
  11187. },
  11188. hand: {
  11189. height: math.unit(0.6, "meters"),
  11190. name: "Hand",
  11191. image: {
  11192. source: "./media/characters/keset-vanrel/hand.svg"
  11193. }
  11194. },
  11195. foot: {
  11196. height: math.unit(0.94978, "meters"),
  11197. name: "Foot",
  11198. image: {
  11199. source: "./media/characters/keset-vanrel/foot.svg"
  11200. }
  11201. },
  11202. battle: {
  11203. height: math.unit(7.408, "feet"),
  11204. weight: math.unit(150, "lb"),
  11205. name: "Battle",
  11206. image: {
  11207. source: "./media/characters/keset-vanrel/battle.svg",
  11208. extra: 1890 / 1386,
  11209. bottom: 73.28 / 1970
  11210. }
  11211. },
  11212. },
  11213. [
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(8 + 5 / 12, "feet"),
  11217. default: true
  11218. },
  11219. ]
  11220. ))
  11221. characterMakers.push(() => makeCharacter(
  11222. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11223. {
  11224. front: {
  11225. height: math.unit(6, "feet"),
  11226. weight: math.unit(150, "lb"),
  11227. name: "Front",
  11228. image: {
  11229. source: "./media/characters/neos/front.svg",
  11230. extra: 1696 / 992,
  11231. bottom: 0.14
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Normal",
  11238. height: math.unit(54, "cm"),
  11239. default: true
  11240. },
  11241. {
  11242. name: "Macro",
  11243. height: math.unit(100, "m")
  11244. },
  11245. {
  11246. name: "Megamacro",
  11247. height: math.unit(10, "km")
  11248. },
  11249. {
  11250. name: "Megamacro+",
  11251. height: math.unit(100, "km")
  11252. },
  11253. {
  11254. name: "Gigamacro",
  11255. height: math.unit(100, "Mm")
  11256. },
  11257. {
  11258. name: "Teramacro",
  11259. height: math.unit(100, "Gm")
  11260. },
  11261. {
  11262. name: "Examacro",
  11263. height: math.unit(100, "Em")
  11264. },
  11265. {
  11266. name: "Godly",
  11267. height: math.unit(10000, "Ym")
  11268. },
  11269. {
  11270. name: "Beyond Godly",
  11271. height: math.unit(25, "multiverses")
  11272. },
  11273. ]
  11274. ))
  11275. characterMakers.push(() => makeCharacter(
  11276. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11277. {
  11278. feminine: {
  11279. height: math.unit(5, "feet"),
  11280. weight: math.unit(100, "lb"),
  11281. name: "Feminine",
  11282. image: {
  11283. source: "./media/characters/sammy-mouse/feminine.svg",
  11284. extra: 2526 / 2425,
  11285. bottom: 0.123
  11286. }
  11287. },
  11288. masculine: {
  11289. height: math.unit(5, "feet"),
  11290. weight: math.unit(100, "lb"),
  11291. name: "Masculine",
  11292. image: {
  11293. source: "./media/characters/sammy-mouse/masculine.svg",
  11294. extra: 2526 / 2425,
  11295. bottom: 0.123
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Micro",
  11302. height: math.unit(5, "inches")
  11303. },
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(5, "feet"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Macro",
  11311. height: math.unit(60, "feet")
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11317. {
  11318. front: {
  11319. height: math.unit(4, "feet"),
  11320. weight: math.unit(50, "lb"),
  11321. name: "Front",
  11322. image: {
  11323. source: "./media/characters/kole/front.svg",
  11324. extra: 1423 / 1303,
  11325. bottom: 0.025
  11326. }
  11327. },
  11328. back: {
  11329. height: math.unit(4, "feet"),
  11330. weight: math.unit(50, "lb"),
  11331. name: "Back",
  11332. image: {
  11333. source: "./media/characters/kole/back.svg",
  11334. extra: 1426 / 1280,
  11335. bottom: 0.02
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(4, "feet"),
  11343. default: true
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(2 + 6 / 12, "feet"),
  11352. weight: math.unit(20, "lb"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/rufran/front.svg",
  11356. extra: 2041 / 1839,
  11357. bottom: 0.055
  11358. }
  11359. },
  11360. back: {
  11361. height: math.unit(2 + 6 / 12, "feet"),
  11362. weight: math.unit(20, "lb"),
  11363. name: "Back",
  11364. image: {
  11365. source: "./media/characters/rufran/back.svg",
  11366. extra: 2054 / 1839,
  11367. bottom: 0.01
  11368. }
  11369. },
  11370. hand: {
  11371. height: math.unit(0.2166, "meters"),
  11372. name: "Hand",
  11373. image: {
  11374. source: "./media/characters/rufran/hand.svg"
  11375. }
  11376. },
  11377. foot: {
  11378. height: math.unit(0.185, "meters"),
  11379. name: "Foot",
  11380. image: {
  11381. source: "./media/characters/rufran/foot.svg"
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Micro",
  11388. height: math.unit(1, "inch")
  11389. },
  11390. {
  11391. name: "Normal",
  11392. height: math.unit(2 + 6 / 12, "feet"),
  11393. default: true
  11394. },
  11395. {
  11396. name: "Big",
  11397. height: math.unit(60, "feet")
  11398. },
  11399. {
  11400. name: "Macro",
  11401. height: math.unit(325, "feet")
  11402. },
  11403. ]
  11404. ))
  11405. characterMakers.push(() => makeCharacter(
  11406. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11407. {
  11408. front: {
  11409. height: math.unit(0.3, "meters"),
  11410. weight: math.unit(3.5, "kg"),
  11411. name: "Front",
  11412. image: {
  11413. source: "./media/characters/chip/front.svg",
  11414. extra: 748 / 674
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Micro",
  11421. height: math.unit(1, "inch"),
  11422. default: true
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11428. {
  11429. side: {
  11430. height: math.unit(2.3, "meters"),
  11431. weight: math.unit(3500, "lb"),
  11432. name: "Side",
  11433. image: {
  11434. source: "./media/characters/torvid/side.svg",
  11435. extra: 1972 / 722,
  11436. bottom: 0.035
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(2.3, "meters"),
  11444. default: true
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(2, "meters"),
  11453. weight: math.unit(150.5, "kg"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/susan/front.svg",
  11457. extra: 693 / 635,
  11458. bottom: 0.05
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Megamacro",
  11465. height: math.unit(505, "miles"),
  11466. default: true
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(6, "feet"),
  11475. weight: math.unit(150, "lb"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/raindrops/front.svg",
  11479. extra: 2655 / 2461,
  11480. bottom: 49/2705
  11481. }
  11482. },
  11483. back: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(150, "lb"),
  11486. name: "Back",
  11487. image: {
  11488. source: "./media/characters/raindrops/back.svg",
  11489. extra: 2574 / 2400,
  11490. bottom: 65/2634
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Micro",
  11497. height: math.unit(6, "inches")
  11498. },
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(6 + 2 / 12, "feet")
  11502. },
  11503. {
  11504. name: "Macro",
  11505. height: math.unit(131, "feet"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Megamacro",
  11510. height: math.unit(15, "miles")
  11511. },
  11512. {
  11513. name: "Gigamacro",
  11514. height: math.unit(4000, "miles")
  11515. },
  11516. {
  11517. name: "Teramacro",
  11518. height: math.unit(315000, "miles")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(2.794, "meters"),
  11527. weight: math.unit(325, "kg"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/tezwa/front.svg",
  11531. extra: 2083 / 1906,
  11532. bottom: 0.031
  11533. }
  11534. },
  11535. foot: {
  11536. height: math.unit(0.687, "meters"),
  11537. name: "Foot",
  11538. image: {
  11539. source: "./media/characters/tezwa/foot.svg"
  11540. }
  11541. },
  11542. },
  11543. [
  11544. {
  11545. name: "Normal",
  11546. height: math.unit(9 + 2 / 12, "feet"),
  11547. default: true
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(58, "feet"),
  11556. weight: math.unit(89000, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/typhus/front.svg",
  11560. extra: 816 / 800,
  11561. bottom: 0.065
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Macro",
  11568. height: math.unit(58, "feet"),
  11569. default: true
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11575. {
  11576. front: {
  11577. height: math.unit(12, "feet"),
  11578. weight: math.unit(6, "tonnes"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/lyra-von-wulf/front.svg",
  11582. extra: 1,
  11583. bottom: 0.10
  11584. }
  11585. },
  11586. frontMecha: {
  11587. height: math.unit(12, "feet"),
  11588. weight: math.unit(12, "tonnes"),
  11589. name: "Front (Mecha)",
  11590. image: {
  11591. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11592. extra: 1,
  11593. bottom: 0.042
  11594. }
  11595. },
  11596. maw: {
  11597. height: math.unit(2.2, "feet"),
  11598. name: "Maw",
  11599. image: {
  11600. source: "./media/characters/lyra-von-wulf/maw.svg"
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(12, "feet"),
  11608. default: true
  11609. },
  11610. {
  11611. name: "Classic",
  11612. height: math.unit(50, "feet")
  11613. },
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(500, "feet")
  11617. },
  11618. {
  11619. name: "Megamacro",
  11620. height: math.unit(1, "mile")
  11621. },
  11622. {
  11623. name: "Gigamacro",
  11624. height: math.unit(400, "miles")
  11625. },
  11626. {
  11627. name: "Teramacro",
  11628. height: math.unit(22000, "miles")
  11629. },
  11630. {
  11631. name: "Solarmacro",
  11632. height: math.unit(8600000, "miles")
  11633. },
  11634. {
  11635. name: "Galactic",
  11636. height: math.unit(1057000, "lightyears")
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(6 + 10 / 12, "feet"),
  11645. weight: math.unit(150, "lb"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/dixon/front.svg",
  11649. extra: 3361 / 3209,
  11650. bottom: 0.01
  11651. }
  11652. },
  11653. },
  11654. [
  11655. {
  11656. name: "Normal",
  11657. height: math.unit(6 + 10 / 12, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Big",
  11662. height: math.unit(12, "meters")
  11663. },
  11664. {
  11665. name: "Macro",
  11666. height: math.unit(500, "meters")
  11667. },
  11668. {
  11669. name: "Megamacro",
  11670. height: math.unit(2, "km")
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11676. {
  11677. front: {
  11678. height: math.unit(185, "cm"),
  11679. weight: math.unit(68, "kg"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/kauko/front.svg",
  11683. extra: 1455 / 1421,
  11684. bottom: 0.03
  11685. }
  11686. },
  11687. back: {
  11688. height: math.unit(185, "cm"),
  11689. weight: math.unit(68, "kg"),
  11690. name: "Back",
  11691. image: {
  11692. source: "./media/characters/kauko/back.svg",
  11693. extra: 1455 / 1421,
  11694. bottom: 0.004
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(185, "cm"),
  11702. default: true
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(150, "kg"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/varg/front.svg",
  11715. extra: 1108 / 1018,
  11716. bottom: 0.0375
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(5, "meters")
  11724. },
  11725. {
  11726. name: "Macro",
  11727. height: math.unit(200, "meters")
  11728. },
  11729. {
  11730. name: "Megamacro",
  11731. height: math.unit(20, "kilometers")
  11732. },
  11733. {
  11734. name: "True Size",
  11735. height: math.unit(211, "km"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(1000, "km")
  11741. },
  11742. {
  11743. name: "Gigamacro+",
  11744. height: math.unit(8000, "km")
  11745. },
  11746. {
  11747. name: "Teramacro",
  11748. height: math.unit(1000000, "km")
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11754. {
  11755. front: {
  11756. height: math.unit(7 + 7 / 12, "feet"),
  11757. weight: math.unit(267, "lb"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/dayza/front.svg",
  11761. extra: 1262 / 1200,
  11762. bottom: 0.035
  11763. }
  11764. },
  11765. side: {
  11766. height: math.unit(7 + 7 / 12, "feet"),
  11767. weight: math.unit(267, "lb"),
  11768. name: "Side",
  11769. image: {
  11770. source: "./media/characters/dayza/side.svg",
  11771. extra: 1295 / 1245,
  11772. bottom: 0.05
  11773. }
  11774. },
  11775. back: {
  11776. height: math.unit(7 + 7 / 12, "feet"),
  11777. weight: math.unit(267, "lb"),
  11778. name: "Back",
  11779. image: {
  11780. source: "./media/characters/dayza/back.svg",
  11781. extra: 1241 / 1170
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(7 + 7 / 12, "feet"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Macro",
  11793. height: math.unit(155, "feet")
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(6 + 5 / 12, "feet"),
  11802. weight: math.unit(160, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/xanthos/front.svg",
  11806. extra: 1,
  11807. bottom: 0.04
  11808. }
  11809. },
  11810. back: {
  11811. height: math.unit(6 + 5 / 12, "feet"),
  11812. weight: math.unit(160, "lb"),
  11813. name: "Back",
  11814. image: {
  11815. source: "./media/characters/xanthos/back.svg",
  11816. extra: 1,
  11817. bottom: 0.03
  11818. }
  11819. },
  11820. hand: {
  11821. height: math.unit(0.928, "feet"),
  11822. name: "Hand",
  11823. image: {
  11824. source: "./media/characters/xanthos/hand.svg"
  11825. }
  11826. },
  11827. foot: {
  11828. height: math.unit(1.286, "feet"),
  11829. name: "Foot",
  11830. image: {
  11831. source: "./media/characters/xanthos/foot.svg"
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(6 + 5 / 12, "feet"),
  11839. default: true
  11840. },
  11841. {
  11842. name: "Normal+",
  11843. height: math.unit(6, "meters")
  11844. },
  11845. {
  11846. name: "Macro",
  11847. height: math.unit(40, "feet")
  11848. },
  11849. {
  11850. name: "Macro+",
  11851. height: math.unit(200, "meters")
  11852. },
  11853. {
  11854. name: "Megamacro",
  11855. height: math.unit(20, "km")
  11856. },
  11857. {
  11858. name: "Megamacro+",
  11859. height: math.unit(100, "km")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(6 + 3 / 12, "feet"),
  11868. weight: math.unit(215, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/grynn/front.svg",
  11872. extra: 4627 / 4209,
  11873. bottom: 0.047
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Micro",
  11880. height: math.unit(6, "inches")
  11881. },
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(6 + 3 / 12, "feet"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Big",
  11889. height: math.unit(104, "feet")
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(944, "feet")
  11894. },
  11895. {
  11896. name: "Macro+",
  11897. height: math.unit(9480, "feet")
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(78752, "feet")
  11902. },
  11903. {
  11904. name: "Megamacro+",
  11905. height: math.unit(630128, "feet")
  11906. },
  11907. {
  11908. name: "Megamacro++",
  11909. height: math.unit(3150695, "feet")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(7 + 5 / 12, "feet"),
  11918. weight: math.unit(450, "lb"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/mocha-aura/front.svg",
  11922. extra: 1907 / 1817,
  11923. bottom: 0.04
  11924. }
  11925. },
  11926. back: {
  11927. height: math.unit(7 + 5 / 12, "feet"),
  11928. weight: math.unit(450, "lb"),
  11929. name: "Back",
  11930. image: {
  11931. source: "./media/characters/mocha-aura/back.svg",
  11932. extra: 1900 / 1825,
  11933. bottom: 0.045
  11934. }
  11935. },
  11936. },
  11937. [
  11938. {
  11939. name: "Nano",
  11940. height: math.unit(1, "nm")
  11941. },
  11942. {
  11943. name: "Megamicro",
  11944. height: math.unit(1, "mm")
  11945. },
  11946. {
  11947. name: "Micro",
  11948. height: math.unit(3, "inches")
  11949. },
  11950. {
  11951. name: "Normal",
  11952. height: math.unit(7 + 5 / 12, "feet"),
  11953. default: true
  11954. },
  11955. {
  11956. name: "Macro",
  11957. height: math.unit(30, "feet")
  11958. },
  11959. {
  11960. name: "Megamacro",
  11961. height: math.unit(3500, "feet")
  11962. },
  11963. {
  11964. name: "Teramacro",
  11965. height: math.unit(500000, "miles")
  11966. },
  11967. {
  11968. name: "Petamacro",
  11969. height: math.unit(50000000000000000, "parsecs")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "lb"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/ilisha-devya/front.svg",
  11982. extra: 1,
  11983. bottom: 0.175
  11984. }
  11985. },
  11986. back: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(150, "lb"),
  11989. name: "Back",
  11990. image: {
  11991. source: "./media/characters/ilisha-devya/back.svg",
  11992. extra: 1,
  11993. bottom: 0.015
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(500, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Megamacro",
  12005. height: math.unit(10, "miles")
  12006. },
  12007. {
  12008. name: "Gigamacro",
  12009. height: math.unit(100000, "miles")
  12010. },
  12011. {
  12012. name: "Examacro",
  12013. height: math.unit(1e9, "lightyears")
  12014. },
  12015. {
  12016. name: "Omniversal",
  12017. height: math.unit(1e33, "lightyears")
  12018. },
  12019. {
  12020. name: "Beyond Infinite",
  12021. height: math.unit(1e100, "lightyears")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12027. {
  12028. Side: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(150, "lb"),
  12031. name: "Side",
  12032. image: {
  12033. source: "./media/characters/mira/side.svg",
  12034. extra: 900 / 799,
  12035. bottom: 0.02
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Human Size",
  12042. height: math.unit(6, "feet")
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(100, "feet"),
  12047. default: true
  12048. },
  12049. {
  12050. name: "Megamacro",
  12051. height: math.unit(10, "miles")
  12052. },
  12053. {
  12054. name: "Gigamacro",
  12055. height: math.unit(25000, "miles")
  12056. },
  12057. {
  12058. name: "Teramacro",
  12059. height: math.unit(300, "AU")
  12060. },
  12061. {
  12062. name: "Full Size",
  12063. height: math.unit(4.5e10, "lightyears")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "lb"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/holly/front.svg",
  12076. extra: 639 / 606
  12077. }
  12078. },
  12079. back: {
  12080. height: math.unit(6, "feet"),
  12081. weight: math.unit(150, "lb"),
  12082. name: "Back",
  12083. image: {
  12084. source: "./media/characters/holly/back.svg",
  12085. extra: 623 / 598
  12086. }
  12087. },
  12088. frontWorking: {
  12089. height: math.unit(6, "feet"),
  12090. weight: math.unit(150, "lb"),
  12091. name: "Front (Working)",
  12092. image: {
  12093. source: "./media/characters/holly/front-working.svg",
  12094. extra: 607 / 577,
  12095. bottom: 0.048
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(12 + 3 / 12, "feet"),
  12103. default: true
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12109. {
  12110. front: {
  12111. height: math.unit(6, "feet"),
  12112. weight: math.unit(150, "lb"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/porter/front.svg",
  12116. extra: 1,
  12117. bottom: 0.01
  12118. }
  12119. },
  12120. frontRobes: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front (Robes)",
  12124. image: {
  12125. source: "./media/characters/porter/front-robes.svg",
  12126. extra: 1.01,
  12127. bottom: 0.01
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Normal",
  12134. height: math.unit(11 + 9 / 12, "feet"),
  12135. default: true
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12141. {
  12142. legendary: {
  12143. height: math.unit(6, "feet"),
  12144. weight: math.unit(150, "lb"),
  12145. name: "Legendary",
  12146. image: {
  12147. source: "./media/characters/lucy/legendary.svg",
  12148. extra: 1355 / 1100,
  12149. bottom: 0.045
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Legendary",
  12156. height: math.unit(86882 * 2, "miles"),
  12157. default: true
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/drusilla/front.svg",
  12170. extra: 678 / 635,
  12171. bottom: 0.03
  12172. }
  12173. },
  12174. back: {
  12175. height: math.unit(6, "feet"),
  12176. weight: math.unit(150, "lb"),
  12177. name: "Back",
  12178. image: {
  12179. source: "./media/characters/drusilla/back.svg",
  12180. extra: 678 / 635,
  12181. bottom: 0.005
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Macro",
  12188. height: math.unit(100, "feet")
  12189. },
  12190. {
  12191. name: "Canon Height",
  12192. height: math.unit(2000, "feet"),
  12193. default: true
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12199. {
  12200. front: {
  12201. height: math.unit(6, "feet"),
  12202. weight: math.unit(180, "lb"),
  12203. name: "Front",
  12204. image: {
  12205. source: "./media/characters/renard-thatch/front.svg",
  12206. extra: 2411 / 2275,
  12207. bottom: 0.01
  12208. }
  12209. },
  12210. frontPosing: {
  12211. height: math.unit(6, "feet"),
  12212. weight: math.unit(180, "lb"),
  12213. name: "Front (Posing)",
  12214. image: {
  12215. source: "./media/characters/renard-thatch/front-posing.svg",
  12216. extra: 2381 / 2261,
  12217. bottom: 0.01
  12218. }
  12219. },
  12220. back: {
  12221. height: math.unit(6, "feet"),
  12222. weight: math.unit(180, "lb"),
  12223. name: "Back",
  12224. image: {
  12225. source: "./media/characters/renard-thatch/back.svg",
  12226. extra: 2428 / 2288
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Micro",
  12233. height: math.unit(3, "inches")
  12234. },
  12235. {
  12236. name: "Default",
  12237. height: math.unit(6, "feet"),
  12238. default: true
  12239. },
  12240. {
  12241. name: "Macro",
  12242. height: math.unit(75, "feet")
  12243. },
  12244. ]
  12245. ))
  12246. characterMakers.push(() => makeCharacter(
  12247. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12248. {
  12249. front: {
  12250. height: math.unit(1450, "feet"),
  12251. weight: math.unit(1.21e6, "tons"),
  12252. name: "Front",
  12253. image: {
  12254. source: "./media/characters/sekvra/front.svg",
  12255. extra: 1,
  12256. bottom: 0.03
  12257. }
  12258. },
  12259. frontClothed: {
  12260. height: math.unit(1450, "feet"),
  12261. weight: math.unit(1.21e6, "tons"),
  12262. name: "Front (Clothed)",
  12263. image: {
  12264. source: "./media/characters/sekvra/front-clothed.svg",
  12265. extra: 1,
  12266. bottom: 0.03
  12267. }
  12268. },
  12269. side: {
  12270. height: math.unit(1450, "feet"),
  12271. weight: math.unit(1.21e6, "tons"),
  12272. name: "Side",
  12273. image: {
  12274. source: "./media/characters/sekvra/side.svg",
  12275. extra: 1,
  12276. bottom: 0.025
  12277. }
  12278. },
  12279. back: {
  12280. height: math.unit(1450, "feet"),
  12281. weight: math.unit(1.21e6, "tons"),
  12282. name: "Back",
  12283. image: {
  12284. source: "./media/characters/sekvra/back.svg",
  12285. extra: 1,
  12286. bottom: 0.005
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Macro",
  12293. height: math.unit(1450, "feet"),
  12294. default: true
  12295. },
  12296. {
  12297. name: "Megamacro",
  12298. height: math.unit(15000, "feet")
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/carmine/front.svg",
  12311. extra: 1,
  12312. bottom: 0.035
  12313. }
  12314. },
  12315. frontArmor: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Front (Armor)",
  12319. image: {
  12320. source: "./media/characters/carmine/front-armor.svg",
  12321. extra: 1,
  12322. bottom: 0.035
  12323. }
  12324. },
  12325. },
  12326. [
  12327. {
  12328. name: "Large",
  12329. height: math.unit(1, "mile")
  12330. },
  12331. {
  12332. name: "Huge",
  12333. height: math.unit(40, "miles"),
  12334. default: true
  12335. },
  12336. {
  12337. name: "Colossal",
  12338. height: math.unit(2500, "miles")
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Elyssia", species: ["banchofossa"], 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/elyssia/front.svg",
  12351. extra: 2201 / 2035,
  12352. bottom: 0.05
  12353. }
  12354. },
  12355. frontClothed: {
  12356. height: math.unit(6, "feet"),
  12357. weight: math.unit(150, "lb"),
  12358. name: "Front (Clothed)",
  12359. image: {
  12360. source: "./media/characters/elyssia/front-clothed.svg",
  12361. extra: 2201 / 2035,
  12362. bottom: 0.05
  12363. }
  12364. },
  12365. back: {
  12366. height: math.unit(6, "feet"),
  12367. weight: math.unit(150, "lb"),
  12368. name: "Back",
  12369. image: {
  12370. source: "./media/characters/elyssia/back.svg",
  12371. extra: 2201 / 2035,
  12372. bottom: 0.013
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Smaller",
  12379. height: math.unit(150, "feet")
  12380. },
  12381. {
  12382. name: "Standard",
  12383. height: math.unit(1400, "feet"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Distracted",
  12388. height: math.unit(15000, "feet")
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(7 + 4 / 12, "feet"),
  12397. weight: math.unit(500, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/geno-maxwell/front.svg",
  12401. extra: 2207 / 2040,
  12402. bottom: 0.015
  12403. }
  12404. },
  12405. },
  12406. [
  12407. {
  12408. name: "Micro",
  12409. height: math.unit(3, "inches")
  12410. },
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(7 + 4 / 12, "feet"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Macro",
  12418. height: math.unit(220, "feet")
  12419. },
  12420. {
  12421. name: "Megamacro",
  12422. height: math.unit(11, "miles")
  12423. },
  12424. ]
  12425. ))
  12426. characterMakers.push(() => makeCharacter(
  12427. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12428. {
  12429. front: {
  12430. height: math.unit(7 + 4 / 12, "feet"),
  12431. weight: math.unit(500, "lb"),
  12432. name: "Front",
  12433. image: {
  12434. source: "./media/characters/regena-maxwell/front.svg",
  12435. extra: 3115 / 2770,
  12436. bottom: 0.02
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Normal",
  12443. height: math.unit(7 + 4 / 12, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Macro",
  12448. height: math.unit(220, "feet")
  12449. },
  12450. {
  12451. name: "Megamacro",
  12452. height: math.unit(11, "miles")
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(150, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12465. extra: 860 / 690,
  12466. bottom: 0.03
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Normal",
  12473. height: math.unit(1.7, "meters"),
  12474. default: true
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/quilly/front.svg",
  12487. extra: 890 / 776
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Gigamacro",
  12494. height: math.unit(404090, "miles"),
  12495. default: true
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(7 + 8 / 12, "feet"),
  12504. weight: math.unit(350, "lb"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/tempest/front.svg",
  12508. extra: 1175 / 1086,
  12509. bottom: 0.02
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Normal",
  12516. height: math.unit(7 + 8 / 12, "feet"),
  12517. default: true
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12523. {
  12524. side: {
  12525. height: math.unit(4 + 5 / 12, "feet"),
  12526. weight: math.unit(80, "lb"),
  12527. name: "Side",
  12528. image: {
  12529. source: "./media/characters/rodger/side.svg",
  12530. extra: 1235 / 1118
  12531. }
  12532. },
  12533. },
  12534. [
  12535. {
  12536. name: "Micro",
  12537. height: math.unit(1, "inch")
  12538. },
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(4 + 5 / 12, "feet"),
  12542. default: true
  12543. },
  12544. {
  12545. name: "Macro",
  12546. height: math.unit(120, "feet")
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Danyel", species: ["dragon"], 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/danyel/front.svg",
  12559. extra: 1185 / 1123,
  12560. bottom: 0.05
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Shrunken",
  12567. height: math.unit(0.5, "mm")
  12568. },
  12569. {
  12570. name: "Micro",
  12571. height: math.unit(1, "mm"),
  12572. default: true
  12573. },
  12574. {
  12575. name: "Upsized",
  12576. height: math.unit(5 + 5 / 12, "feet")
  12577. },
  12578. ]
  12579. ))
  12580. characterMakers.push(() => makeCharacter(
  12581. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12582. {
  12583. front: {
  12584. height: math.unit(5 + 6 / 12, "feet"),
  12585. weight: math.unit(200, "lb"),
  12586. name: "Front",
  12587. image: {
  12588. source: "./media/characters/vivian-bijoux/front.svg",
  12589. extra: 1,
  12590. bottom: 0.072
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Normal",
  12597. height: math.unit(5 + 6 / 12, "feet"),
  12598. default: true
  12599. },
  12600. {
  12601. name: "Bad Dream",
  12602. height: math.unit(500, "feet")
  12603. },
  12604. {
  12605. name: "Nightmare",
  12606. height: math.unit(500, "miles")
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12612. {
  12613. front: {
  12614. height: math.unit(6 + 1 / 12, "feet"),
  12615. weight: math.unit(260, "lb"),
  12616. name: "Front",
  12617. image: {
  12618. source: "./media/characters/zeta/front.svg",
  12619. extra: 1968 / 1889,
  12620. bottom: 0.06
  12621. }
  12622. },
  12623. back: {
  12624. height: math.unit(6 + 1 / 12, "feet"),
  12625. weight: math.unit(260, "lb"),
  12626. name: "Back",
  12627. image: {
  12628. source: "./media/characters/zeta/back.svg",
  12629. extra: 1944 / 1858,
  12630. bottom: 0.03
  12631. }
  12632. },
  12633. hand: {
  12634. height: math.unit(1.112, "feet"),
  12635. name: "Hand",
  12636. image: {
  12637. source: "./media/characters/zeta/hand.svg"
  12638. }
  12639. },
  12640. foot: {
  12641. height: math.unit(1.48, "feet"),
  12642. name: "Foot",
  12643. image: {
  12644. source: "./media/characters/zeta/foot.svg"
  12645. }
  12646. },
  12647. },
  12648. [
  12649. {
  12650. name: "Micro",
  12651. height: math.unit(6, "inches")
  12652. },
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(6 + 1 / 12, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Macro",
  12660. height: math.unit(20, "feet")
  12661. },
  12662. ]
  12663. ))
  12664. characterMakers.push(() => makeCharacter(
  12665. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12666. {
  12667. front: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Front",
  12671. image: {
  12672. source: "./media/characters/jamie-larsen/front.svg",
  12673. extra: 962 / 933,
  12674. bottom: 0.02
  12675. }
  12676. },
  12677. back: {
  12678. height: math.unit(6, "feet"),
  12679. weight: math.unit(150, "lb"),
  12680. name: "Back",
  12681. image: {
  12682. source: "./media/characters/jamie-larsen/back.svg",
  12683. extra: 997 / 946
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Macro",
  12690. height: math.unit(28 + 7 / 12, "feet"),
  12691. default: true
  12692. },
  12693. {
  12694. name: "Macro+",
  12695. height: math.unit(180, "feet")
  12696. },
  12697. {
  12698. name: "Megamacro",
  12699. height: math.unit(10, "miles")
  12700. },
  12701. {
  12702. name: "Gigamacro",
  12703. height: math.unit(200000, "miles")
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(6, "feet"),
  12712. weight: math.unit(120, "lb"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/vance/front.svg",
  12716. extra: 1980 / 1890,
  12717. bottom: 0.09
  12718. }
  12719. },
  12720. back: {
  12721. height: math.unit(6, "feet"),
  12722. weight: math.unit(120, "lb"),
  12723. name: "Back",
  12724. image: {
  12725. source: "./media/characters/vance/back.svg",
  12726. extra: 2081 / 1994,
  12727. bottom: 0.014
  12728. }
  12729. },
  12730. hand: {
  12731. height: math.unit(0.88, "feet"),
  12732. name: "Hand",
  12733. image: {
  12734. source: "./media/characters/vance/hand.svg"
  12735. }
  12736. },
  12737. foot: {
  12738. height: math.unit(0.64, "feet"),
  12739. name: "Foot",
  12740. image: {
  12741. source: "./media/characters/vance/foot.svg"
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Small",
  12748. height: math.unit(90, "feet"),
  12749. default: true
  12750. },
  12751. {
  12752. name: "Macro",
  12753. height: math.unit(100, "meters")
  12754. },
  12755. {
  12756. name: "Megamacro",
  12757. height: math.unit(15, "miles")
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12763. {
  12764. front: {
  12765. height: math.unit(6, "feet"),
  12766. weight: math.unit(180, "lb"),
  12767. name: "Front",
  12768. image: {
  12769. source: "./media/characters/xochitl/front.svg",
  12770. extra: 2297 / 2261,
  12771. bottom: 0.065
  12772. }
  12773. },
  12774. back: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(180, "lb"),
  12777. name: "Back",
  12778. image: {
  12779. source: "./media/characters/xochitl/back.svg",
  12780. extra: 2386 / 2354,
  12781. bottom: 0.01
  12782. }
  12783. },
  12784. foot: {
  12785. height: math.unit(6 / 5 * 1.15, "feet"),
  12786. weight: math.unit(150, "lb"),
  12787. name: "Foot",
  12788. image: {
  12789. source: "./media/characters/xochitl/foot.svg"
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(80, "feet")
  12797. },
  12798. {
  12799. name: "Macro+",
  12800. height: math.unit(400, "feet"),
  12801. default: true
  12802. },
  12803. {
  12804. name: "Gigamacro",
  12805. height: math.unit(80000, "miles")
  12806. },
  12807. {
  12808. name: "Gigamacro+",
  12809. height: math.unit(400000, "miles")
  12810. },
  12811. {
  12812. name: "Teramacro",
  12813. height: math.unit(300, "AU")
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12819. {
  12820. front: {
  12821. height: math.unit(6, "feet"),
  12822. weight: math.unit(150, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/vincent/front.svg",
  12826. extra: 1130 / 1080,
  12827. bottom: 0.055
  12828. }
  12829. },
  12830. beak: {
  12831. height: math.unit(6 * 0.1, "feet"),
  12832. name: "Beak",
  12833. image: {
  12834. source: "./media/characters/vincent/beak.svg"
  12835. }
  12836. },
  12837. hand: {
  12838. height: math.unit(6 * 0.85, "feet"),
  12839. weight: math.unit(150, "lb"),
  12840. name: "Hand",
  12841. image: {
  12842. source: "./media/characters/vincent/hand.svg"
  12843. }
  12844. },
  12845. foot: {
  12846. height: math.unit(6 * 0.19, "feet"),
  12847. weight: math.unit(150, "lb"),
  12848. name: "Foot",
  12849. image: {
  12850. source: "./media/characters/vincent/foot.svg"
  12851. }
  12852. },
  12853. },
  12854. [
  12855. {
  12856. name: "Base",
  12857. height: math.unit(6 + 5 / 12, "feet"),
  12858. default: true
  12859. },
  12860. {
  12861. name: "Macro",
  12862. height: math.unit(300, "feet")
  12863. },
  12864. {
  12865. name: "Megamacro",
  12866. height: math.unit(2, "miles")
  12867. },
  12868. {
  12869. name: "Gigamacro",
  12870. height: math.unit(1000, "miles")
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(6 + 2 / 12, "feet"),
  12879. weight: math.unit(265, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/jay/front.svg",
  12883. extra: 1510 / 1430,
  12884. bottom: 0.042
  12885. }
  12886. },
  12887. back: {
  12888. height: math.unit(6 + 2 / 12, "feet"),
  12889. weight: math.unit(265, "lb"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/jay/back.svg",
  12893. extra: 1510 / 1430,
  12894. bottom: 0.025
  12895. }
  12896. },
  12897. clothed: {
  12898. height: math.unit(6 + 2 / 12, "feet"),
  12899. weight: math.unit(265, "lb"),
  12900. name: "Front (Clothed)",
  12901. image: {
  12902. source: "./media/characters/jay/clothed.svg",
  12903. extra: 744 / 699,
  12904. bottom: 0.043
  12905. }
  12906. },
  12907. head: {
  12908. height: math.unit(1.772, "feet"),
  12909. name: "Head",
  12910. image: {
  12911. source: "./media/characters/jay/head.svg"
  12912. }
  12913. },
  12914. sizeRay: {
  12915. height: math.unit(1.331, "feet"),
  12916. name: "Size Ray",
  12917. image: {
  12918. source: "./media/characters/jay/size-ray.svg"
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Micro",
  12925. height: math.unit(1, "inch")
  12926. },
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(6 + 2 / 12, "feet"),
  12930. default: true
  12931. },
  12932. {
  12933. name: "Macro",
  12934. height: math.unit(1, "mile")
  12935. },
  12936. {
  12937. name: "Megamacro",
  12938. height: math.unit(100, "miles")
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12944. {
  12945. front: {
  12946. height: math.unit(2, "meters"),
  12947. weight: math.unit(500, "kg"),
  12948. name: "Front",
  12949. image: {
  12950. source: "./media/characters/coatl/front.svg",
  12951. extra: 3948 / 3500,
  12952. bottom: 0.082
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(4, "meters")
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(100, "meters"),
  12964. default: true
  12965. },
  12966. {
  12967. name: "Macro+",
  12968. height: math.unit(300, "meters")
  12969. },
  12970. {
  12971. name: "Megamacro",
  12972. height: math.unit(3, "gigameters")
  12973. },
  12974. {
  12975. name: "Megamacro+",
  12976. height: math.unit(300, "terameters")
  12977. },
  12978. {
  12979. name: "Megamacro++",
  12980. height: math.unit(3, "lightyears")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(6, "feet"),
  12989. weight: math.unit(50, "kg"),
  12990. name: "front",
  12991. image: {
  12992. source: "./media/characters/shiroryu/front.svg",
  12993. extra: 1990 / 1935
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Mortal Mingling",
  13000. height: math.unit(3, "meters")
  13001. },
  13002. {
  13003. name: "Kaiju-ish",
  13004. height: math.unit(250, "meters")
  13005. },
  13006. {
  13007. name: "Somewhat Godly",
  13008. height: math.unit(400, "km"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Planetary",
  13013. height: math.unit(300, "megameters")
  13014. },
  13015. {
  13016. name: "Galaxy-dwarfing",
  13017. height: math.unit(450, "kiloparsecs")
  13018. },
  13019. {
  13020. name: "Universe Eater",
  13021. height: math.unit(150, "gigaparsecs")
  13022. },
  13023. {
  13024. name: "Almost Immeasurable",
  13025. height: math.unit(1.3e266, "yottaparsecs")
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(6, "feet"),
  13034. weight: math.unit(150, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/umeko/front.svg",
  13038. extra: 1,
  13039. bottom: 0.019
  13040. }
  13041. },
  13042. frontArmored: {
  13043. height: math.unit(6, "feet"),
  13044. weight: math.unit(150, "lb"),
  13045. name: "Front (Armored)",
  13046. image: {
  13047. source: "./media/characters/umeko/front-armored.svg",
  13048. extra: 1,
  13049. bottom: 0.021
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Macro",
  13056. height: math.unit(220, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Guardian Dragon",
  13061. height: math.unit(50, "miles")
  13062. },
  13063. {
  13064. name: "Cosmic",
  13065. height: math.unit(800000, "miles")
  13066. },
  13067. ]
  13068. ))
  13069. characterMakers.push(() => makeCharacter(
  13070. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13071. {
  13072. front: {
  13073. height: math.unit(6, "feet"),
  13074. weight: math.unit(150, "lb"),
  13075. name: "Front",
  13076. image: {
  13077. source: "./media/characters/cassidy/front.svg",
  13078. extra: 1,
  13079. bottom: 0.043
  13080. }
  13081. },
  13082. },
  13083. [
  13084. {
  13085. name: "Canon Height",
  13086. height: math.unit(120, "feet"),
  13087. default: true
  13088. },
  13089. {
  13090. name: "Macro+",
  13091. height: math.unit(400, "feet")
  13092. },
  13093. {
  13094. name: "Macro++",
  13095. height: math.unit(4000, "feet")
  13096. },
  13097. {
  13098. name: "Megamacro",
  13099. height: math.unit(3, "miles")
  13100. },
  13101. ]
  13102. ))
  13103. characterMakers.push(() => makeCharacter(
  13104. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13105. {
  13106. front: {
  13107. height: math.unit(6, "feet"),
  13108. weight: math.unit(150, "lb"),
  13109. name: "Front",
  13110. image: {
  13111. source: "./media/characters/isaac/front.svg",
  13112. extra: 896 / 815,
  13113. bottom: 0.11
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Human Size",
  13120. height: math.unit(8, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(400, "feet")
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(50, "miles")
  13130. },
  13131. {
  13132. name: "Canon Height",
  13133. height: math.unit(200, "AU")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6, "feet"),
  13142. weight: math.unit(72, "kg"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/sleekit/front.svg",
  13146. extra: 4693 / 4487,
  13147. bottom: 0.012
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Minimum Height",
  13154. height: math.unit(10, "meters")
  13155. },
  13156. {
  13157. name: "Smaller",
  13158. height: math.unit(25, "meters")
  13159. },
  13160. {
  13161. name: "Larger",
  13162. height: math.unit(38, "meters"),
  13163. default: true
  13164. },
  13165. {
  13166. name: "Maximum height",
  13167. height: math.unit(100, "meters")
  13168. },
  13169. ]
  13170. ))
  13171. characterMakers.push(() => makeCharacter(
  13172. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13173. {
  13174. front: {
  13175. height: math.unit(6, "feet"),
  13176. weight: math.unit(150, "lb"),
  13177. name: "Front",
  13178. image: {
  13179. source: "./media/characters/nillia/front.svg",
  13180. extra: 2195 / 2037,
  13181. bottom: 0.005
  13182. }
  13183. },
  13184. back: {
  13185. height: math.unit(6, "feet"),
  13186. weight: math.unit(150, "lb"),
  13187. name: "Back",
  13188. image: {
  13189. source: "./media/characters/nillia/back.svg",
  13190. extra: 2195 / 2037,
  13191. bottom: 0.005
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Canon Height",
  13198. height: math.unit(489, "feet"),
  13199. default: true
  13200. }
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(150, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/mesmyriza/front.svg",
  13212. extra: 2067 / 1784,
  13213. bottom: 0.035
  13214. }
  13215. },
  13216. foot: {
  13217. height: math.unit(6 / (250 / 35), "feet"),
  13218. name: "Foot",
  13219. image: {
  13220. source: "./media/characters/mesmyriza/foot.svg"
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(457, "meters"),
  13228. default: true
  13229. },
  13230. {
  13231. name: "Megamacro",
  13232. height: math.unit(8, "megameters")
  13233. },
  13234. ]
  13235. ))
  13236. characterMakers.push(() => makeCharacter(
  13237. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13238. {
  13239. front: {
  13240. height: math.unit(6, "feet"),
  13241. weight: math.unit(250, "lb"),
  13242. name: "Front",
  13243. image: {
  13244. source: "./media/characters/saudade/front.svg",
  13245. extra: 1172 / 1139,
  13246. bottom: 0.035
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Micro",
  13253. height: math.unit(3, "inches")
  13254. },
  13255. {
  13256. name: "Normal",
  13257. height: math.unit(6, "feet"),
  13258. default: true
  13259. },
  13260. {
  13261. name: "Macro",
  13262. height: math.unit(50, "feet")
  13263. },
  13264. {
  13265. name: "Megamacro",
  13266. height: math.unit(2800, "feet")
  13267. },
  13268. ]
  13269. ))
  13270. characterMakers.push(() => makeCharacter(
  13271. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13272. {
  13273. front: {
  13274. height: math.unit(5 + 4 / 12, "feet"),
  13275. weight: math.unit(100, "lb"),
  13276. name: "Front",
  13277. image: {
  13278. source: "./media/characters/keireer/front.svg",
  13279. extra: 716 / 666,
  13280. bottom: 0.05
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Normal",
  13287. height: math.unit(5 + 4 / 12, "feet"),
  13288. default: true
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(90, "kg"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/mirja/front.svg",
  13301. extra: 1789 / 1683,
  13302. bottom: 0.05
  13303. }
  13304. },
  13305. frontDressed: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(90, "lb"),
  13308. name: "Front (Dressed)",
  13309. image: {
  13310. source: "./media/characters/mirja/front-dressed.svg",
  13311. extra: 1789 / 1683,
  13312. bottom: 0.05
  13313. }
  13314. },
  13315. back: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(90, "lb"),
  13318. name: "Back",
  13319. image: {
  13320. source: "./media/characters/mirja/back.svg",
  13321. extra: 953 / 917,
  13322. bottom: 0.017
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "\"Incognito\"",
  13329. height: math.unit(3, "meters")
  13330. },
  13331. {
  13332. name: "Strolling Size",
  13333. height: math.unit(15, "km")
  13334. },
  13335. {
  13336. name: "Larger Strolling Size",
  13337. height: math.unit(400, "km")
  13338. },
  13339. {
  13340. name: "Preferred Size",
  13341. height: math.unit(5000, "km")
  13342. },
  13343. {
  13344. name: "True Size",
  13345. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13346. default: true
  13347. },
  13348. ]
  13349. ))
  13350. characterMakers.push(() => makeCharacter(
  13351. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13352. {
  13353. front: {
  13354. height: math.unit(15, "feet"),
  13355. weight: math.unit(880, "kg"),
  13356. name: "Front",
  13357. image: {
  13358. source: "./media/characters/nightraver/front.svg",
  13359. extra: 2444 / 2160,
  13360. bottom: 0.027
  13361. }
  13362. },
  13363. back: {
  13364. height: math.unit(15, "feet"),
  13365. weight: math.unit(880, "kg"),
  13366. name: "Back",
  13367. image: {
  13368. source: "./media/characters/nightraver/back.svg",
  13369. extra: 2309 / 2180,
  13370. bottom: 0.005
  13371. }
  13372. },
  13373. sole: {
  13374. height: math.unit(2.878, "feet"),
  13375. name: "Sole",
  13376. image: {
  13377. source: "./media/characters/nightraver/sole.svg"
  13378. }
  13379. },
  13380. foot: {
  13381. height: math.unit(2.285, "feet"),
  13382. name: "Foot",
  13383. image: {
  13384. source: "./media/characters/nightraver/foot.svg"
  13385. }
  13386. },
  13387. maw: {
  13388. height: math.unit(2.67, "feet"),
  13389. name: "Maw",
  13390. image: {
  13391. source: "./media/characters/nightraver/maw.svg"
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Micro",
  13398. height: math.unit(1, "cm")
  13399. },
  13400. {
  13401. name: "Normal",
  13402. height: math.unit(15, "feet"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Macro",
  13407. height: math.unit(300, "feet")
  13408. },
  13409. {
  13410. name: "Megamacro",
  13411. height: math.unit(300, "miles")
  13412. },
  13413. {
  13414. name: "Gigamacro",
  13415. height: math.unit(10000, "miles")
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13421. {
  13422. side: {
  13423. height: math.unit(2, "inches"),
  13424. weight: math.unit(5, "grams"),
  13425. name: "Side",
  13426. image: {
  13427. source: "./media/characters/arc/side.svg"
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Micro",
  13434. height: math.unit(2, "inches"),
  13435. default: true
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(1.1938, "meters"),
  13444. weight: math.unit(54, "kg"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/nebula-shahar/front.svg",
  13448. extra: 1642 / 1436,
  13449. bottom: 0.06
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Megamicro",
  13456. height: math.unit(0.3, "mm")
  13457. },
  13458. {
  13459. name: "Micro",
  13460. height: math.unit(3, "cm")
  13461. },
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(138, "cm"),
  13465. default: true
  13466. },
  13467. {
  13468. name: "Macro",
  13469. height: math.unit(30, "m")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(5.24, "feet"),
  13478. weight: math.unit(150, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/shayla/front.svg",
  13482. extra: 1512 / 1414,
  13483. bottom: 0.01
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(5.24, "feet"),
  13488. weight: math.unit(150, "lb"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/shayla/back.svg",
  13492. extra: 1512 / 1414
  13493. }
  13494. },
  13495. hand: {
  13496. height: math.unit(0.7781496062992126, "feet"),
  13497. name: "Hand",
  13498. image: {
  13499. source: "./media/characters/shayla/hand.svg"
  13500. }
  13501. },
  13502. foot: {
  13503. height: math.unit(1.4206036745406823, "feet"),
  13504. name: "Foot",
  13505. image: {
  13506. source: "./media/characters/shayla/foot.svg"
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Micro",
  13513. height: math.unit(0.32, "feet")
  13514. },
  13515. {
  13516. name: "Normal",
  13517. height: math.unit(5.24, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(492.12, "feet")
  13523. },
  13524. {
  13525. name: "Megamacro",
  13526. height: math.unit(186.41, "miles")
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(2.2, "m"),
  13535. weight: math.unit(120, "kg"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/pia-jr/front.svg",
  13539. extra: 1000 / 970,
  13540. bottom: 0.035
  13541. }
  13542. },
  13543. hand: {
  13544. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13545. name: "Hand",
  13546. image: {
  13547. source: "./media/characters/pia-jr/hand.svg"
  13548. }
  13549. },
  13550. paw: {
  13551. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13552. name: "Paw",
  13553. image: {
  13554. source: "./media/characters/pia-jr/paw.svg"
  13555. }
  13556. },
  13557. },
  13558. [
  13559. {
  13560. name: "Micro",
  13561. height: math.unit(1.2, "cm")
  13562. },
  13563. {
  13564. name: "Normal",
  13565. height: math.unit(2.2, "m"),
  13566. default: true
  13567. },
  13568. {
  13569. name: "Macro",
  13570. height: math.unit(180, "m")
  13571. },
  13572. {
  13573. name: "Megamacro",
  13574. height: math.unit(420, "km")
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13580. {
  13581. front: {
  13582. height: math.unit(2, "m"),
  13583. weight: math.unit(115, "kg"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/pia-sr/front.svg",
  13587. extra: 760 / 730,
  13588. bottom: 0.015
  13589. }
  13590. },
  13591. back: {
  13592. height: math.unit(2, "m"),
  13593. weight: math.unit(115, "kg"),
  13594. name: "Back",
  13595. image: {
  13596. source: "./media/characters/pia-sr/back.svg",
  13597. extra: 760 / 730,
  13598. bottom: 0.01
  13599. }
  13600. },
  13601. hand: {
  13602. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13603. name: "Hand",
  13604. image: {
  13605. source: "./media/characters/pia-sr/hand.svg"
  13606. }
  13607. },
  13608. foot: {
  13609. height: math.unit(1.83, "feet"),
  13610. name: "Foot",
  13611. image: {
  13612. source: "./media/characters/pia-sr/foot.svg"
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Micro",
  13619. height: math.unit(88, "mm")
  13620. },
  13621. {
  13622. name: "Normal",
  13623. height: math.unit(2, "m"),
  13624. default: true
  13625. },
  13626. {
  13627. name: "Macro",
  13628. height: math.unit(200, "m")
  13629. },
  13630. {
  13631. name: "Megamacro",
  13632. height: math.unit(420, "km")
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(8 + 2 / 12, "feet"),
  13641. weight: math.unit(300, "lb"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/kibibyte/front.svg",
  13645. extra: 2221 / 2098,
  13646. bottom: 0.04
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Normal",
  13653. height: math.unit(8 + 2 / 12, "feet"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Socialable Macro",
  13658. height: math.unit(50, "feet")
  13659. },
  13660. {
  13661. name: "Macro",
  13662. height: math.unit(300, "feet")
  13663. },
  13664. {
  13665. name: "Megamacro",
  13666. height: math.unit(500, "miles")
  13667. },
  13668. ]
  13669. ))
  13670. characterMakers.push(() => makeCharacter(
  13671. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13672. {
  13673. front: {
  13674. height: math.unit(6, "feet"),
  13675. weight: math.unit(150, "lb"),
  13676. name: "Front",
  13677. image: {
  13678. source: "./media/characters/felix/front.svg",
  13679. extra: 762 / 722,
  13680. bottom: 0.02
  13681. }
  13682. },
  13683. frontClothed: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(150, "lb"),
  13686. name: "Front (Clothed)",
  13687. image: {
  13688. source: "./media/characters/felix/front-clothed.svg",
  13689. extra: 762 / 722,
  13690. bottom: 0.02
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Normal",
  13697. height: math.unit(6 + 8 / 12, "feet"),
  13698. default: true
  13699. },
  13700. {
  13701. name: "Macro",
  13702. height: math.unit(2600, "feet")
  13703. },
  13704. {
  13705. name: "Megamacro",
  13706. height: math.unit(450, "miles")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6 + 1 / 12, "feet"),
  13715. weight: math.unit(250, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/tobo/front.svg",
  13719. extra: 608 / 586,
  13720. bottom: 0.023
  13721. }
  13722. },
  13723. back: {
  13724. height: math.unit(6 + 1 / 12, "feet"),
  13725. weight: math.unit(250, "lb"),
  13726. name: "Back",
  13727. image: {
  13728. source: "./media/characters/tobo/back.svg",
  13729. extra: 608 / 586
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Nano",
  13736. height: math.unit(2, "nm")
  13737. },
  13738. {
  13739. name: "Megamicro",
  13740. height: math.unit(0.1, "mm")
  13741. },
  13742. {
  13743. name: "Micro",
  13744. height: math.unit(1, "inch"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Human-sized",
  13749. height: math.unit(6 + 1 / 12, "feet")
  13750. },
  13751. {
  13752. name: "Macro",
  13753. height: math.unit(250, "feet")
  13754. },
  13755. {
  13756. name: "Megamacro",
  13757. height: math.unit(75, "miles")
  13758. },
  13759. {
  13760. name: "Texas-sized",
  13761. height: math.unit(750, "miles")
  13762. },
  13763. {
  13764. name: "Teramacro",
  13765. height: math.unit(50000, "miles")
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(6, "feet"),
  13774. weight: math.unit(269, "lb"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/danny-kapowsky/front.svg",
  13778. extra: 766 / 736,
  13779. bottom: 0.044
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(269, "lb"),
  13785. name: "Back",
  13786. image: {
  13787. source: "./media/characters/danny-kapowsky/back.svg",
  13788. extra: 797 / 760,
  13789. bottom: 0.025
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Macro",
  13796. height: math.unit(150, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Macro+",
  13801. height: math.unit(200, "feet")
  13802. },
  13803. {
  13804. name: "Macro++",
  13805. height: math.unit(300, "feet")
  13806. },
  13807. {
  13808. name: "Macro+++",
  13809. height: math.unit(400, "feet")
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13815. {
  13816. side: {
  13817. height: math.unit(6, "feet"),
  13818. weight: math.unit(170, "lb"),
  13819. name: "Side",
  13820. image: {
  13821. source: "./media/characters/finn/side.svg",
  13822. extra: 1953 / 1807,
  13823. bottom: 0.057
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Megamacro",
  13830. height: math.unit(14445, "feet"),
  13831. default: true
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(5 + 6 / 12, "feet"),
  13840. weight: math.unit(125, "lb"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/roy/front.svg",
  13844. extra: 1,
  13845. bottom: 0.11
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Micro",
  13852. height: math.unit(3, "inches"),
  13853. default: true
  13854. },
  13855. {
  13856. name: "Normal",
  13857. height: math.unit(5 + 6 / 12, "feet")
  13858. },
  13859. {
  13860. name: "Lesser Macro",
  13861. height: math.unit(60, "feet")
  13862. },
  13863. {
  13864. name: "Greater Macro",
  13865. height: math.unit(120, "feet")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(100, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/aevsivs/front.svg",
  13878. extra: 1,
  13879. bottom: 0.03
  13880. }
  13881. },
  13882. back: {
  13883. height: math.unit(6, "feet"),
  13884. weight: math.unit(100, "lb"),
  13885. name: "Back",
  13886. image: {
  13887. source: "./media/characters/aevsivs/back.svg"
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Micro",
  13894. height: math.unit(2, "inches"),
  13895. default: true
  13896. },
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(5, "feet")
  13900. },
  13901. ]
  13902. ))
  13903. characterMakers.push(() => makeCharacter(
  13904. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13905. {
  13906. front: {
  13907. height: math.unit(5 + 7 / 12, "feet"),
  13908. weight: math.unit(159, "lb"),
  13909. name: "Front",
  13910. image: {
  13911. source: "./media/characters/hildegard/front.svg",
  13912. extra: 289 / 269,
  13913. bottom: 7.63/297.8
  13914. }
  13915. },
  13916. back: {
  13917. height: math.unit(5 + 7 / 12, "feet"),
  13918. weight: math.unit(159, "lb"),
  13919. name: "Back",
  13920. image: {
  13921. source: "./media/characters/hildegard/back.svg",
  13922. extra: 280/260,
  13923. bottom: 2.3/282
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Normal",
  13930. height: math.unit(5 + 7 / 12, "feet"),
  13931. default: true
  13932. },
  13933. ]
  13934. ))
  13935. characterMakers.push(() => makeCharacter(
  13936. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13937. {
  13938. bernard: {
  13939. height: math.unit(2 + 7 / 12, "feet"),
  13940. weight: math.unit(66, "lb"),
  13941. name: "Bernard",
  13942. rename: true,
  13943. image: {
  13944. source: "./media/characters/bernard-wilder/bernard.svg",
  13945. extra: 192 / 128,
  13946. bottom: 0.05
  13947. }
  13948. },
  13949. wilder: {
  13950. height: math.unit(5 + 8 / 12, "feet"),
  13951. weight: math.unit(143, "lb"),
  13952. name: "Wilder",
  13953. rename: true,
  13954. image: {
  13955. source: "./media/characters/bernard-wilder/wilder.svg",
  13956. extra: 361 / 312,
  13957. bottom: 0.02
  13958. }
  13959. },
  13960. },
  13961. [
  13962. {
  13963. name: "Normal",
  13964. height: math.unit(2 + 7 / 12, "feet"),
  13965. default: true
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13971. {
  13972. anthro: {
  13973. height: math.unit(6 + 1 / 12, "feet"),
  13974. weight: math.unit(155, "lb"),
  13975. name: "Anthro",
  13976. image: {
  13977. source: "./media/characters/hearth/anthro.svg",
  13978. extra: 260 / 250,
  13979. bottom: 0.02
  13980. }
  13981. },
  13982. feral: {
  13983. height: math.unit(3.78, "feet"),
  13984. weight: math.unit(35, "kg"),
  13985. name: "Feral",
  13986. image: {
  13987. source: "./media/characters/hearth/feral.svg",
  13988. extra: 153 / 135,
  13989. bottom: 0.03
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Normal",
  13996. height: math.unit(6 + 1 / 12, "feet"),
  13997. default: true
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14003. {
  14004. front: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(182, "lb"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/ingrid/front.svg",
  14010. extra: 294 / 268,
  14011. bottom: 0.027
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(6, "feet"),
  14019. default: true
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14025. {
  14026. eevee: {
  14027. height: math.unit(2 + 10 / 12, "feet"),
  14028. weight: math.unit(86, "lb"),
  14029. name: "Malgam",
  14030. image: {
  14031. source: "./media/characters/malgam/eevee.svg",
  14032. extra: 218 / 180,
  14033. bottom: 0.2
  14034. }
  14035. },
  14036. sylveon: {
  14037. height: math.unit(4, "feet"),
  14038. weight: math.unit(101, "lb"),
  14039. name: "Future Malgam",
  14040. rename: true,
  14041. image: {
  14042. source: "./media/characters/malgam/sylveon.svg",
  14043. extra: 371 / 325,
  14044. bottom: 0.015
  14045. }
  14046. },
  14047. gigantamax: {
  14048. height: math.unit(50, "feet"),
  14049. name: "Gigantamax Malgam",
  14050. rename: true,
  14051. image: {
  14052. source: "./media/characters/malgam/gigantamax.svg"
  14053. }
  14054. },
  14055. },
  14056. [
  14057. {
  14058. name: "Normal",
  14059. height: math.unit(2 + 10 / 12, "feet"),
  14060. default: true
  14061. },
  14062. ]
  14063. ))
  14064. characterMakers.push(() => makeCharacter(
  14065. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14066. {
  14067. front: {
  14068. height: math.unit(5 + 11 / 12, "feet"),
  14069. weight: math.unit(188, "lb"),
  14070. name: "Front",
  14071. image: {
  14072. source: "./media/characters/fleur/front.svg",
  14073. extra: 309 / 283,
  14074. bottom: 0.007
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(5 + 11 / 12, "feet"),
  14082. default: true
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14088. {
  14089. front: {
  14090. height: math.unit(5 + 4 / 12, "feet"),
  14091. weight: math.unit(122, "lb"),
  14092. name: "Front",
  14093. image: {
  14094. source: "./media/characters/jude/front.svg",
  14095. extra: 288 / 273,
  14096. bottom: 0.03
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(5 + 4 / 12, "feet"),
  14104. default: true
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14110. {
  14111. front: {
  14112. height: math.unit(5 + 11 / 12, "feet"),
  14113. weight: math.unit(190, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/seara/front.svg",
  14117. extra: 1,
  14118. bottom: 0.05
  14119. }
  14120. },
  14121. },
  14122. [
  14123. {
  14124. name: "Normal",
  14125. height: math.unit(5 + 11 / 12, "feet"),
  14126. default: true
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14132. {
  14133. front: {
  14134. height: math.unit(16 + 5 / 12, "feet"),
  14135. weight: math.unit(524, "lb"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/caspian/front.svg",
  14139. extra: 1,
  14140. bottom: 0.04
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(16 + 5 / 12, "feet"),
  14148. default: true
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(5 + 7 / 12, "feet"),
  14157. weight: math.unit(170, "lb"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/mika/front.svg",
  14161. extra: 1,
  14162. bottom: 0.016
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Normal",
  14169. height: math.unit(5 + 7 / 12, "feet"),
  14170. default: true
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6 + 2 / 12, "feet"),
  14179. weight: math.unit(268, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/sol/front.svg",
  14183. extra: 247 / 231,
  14184. bottom: 0.05
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(6 + 2 / 12, "feet"),
  14192. default: true
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14198. {
  14199. buizel: {
  14200. height: math.unit(2 + 5 / 12, "feet"),
  14201. weight: math.unit(87, "lb"),
  14202. name: "Buizel",
  14203. image: {
  14204. source: "./media/characters/umiko/buizel.svg",
  14205. extra: 172 / 157,
  14206. bottom: 0.01
  14207. }
  14208. },
  14209. floatzel: {
  14210. height: math.unit(5 + 9 / 12, "feet"),
  14211. weight: math.unit(250, "lb"),
  14212. name: "Floatzel",
  14213. image: {
  14214. source: "./media/characters/umiko/floatzel.svg",
  14215. extra: 262 / 248
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Normal",
  14222. height: math.unit(2 + 5 / 12, "feet"),
  14223. default: true
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14229. {
  14230. front: {
  14231. height: math.unit(6 + 2 / 12, "feet"),
  14232. weight: math.unit(146, "lb"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/iliac/front.svg",
  14236. extra: 389 / 365,
  14237. bottom: 0.035
  14238. }
  14239. },
  14240. },
  14241. [
  14242. {
  14243. name: "Normal",
  14244. height: math.unit(6 + 2 / 12, "feet"),
  14245. default: true
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(170, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/topaz/front.svg",
  14258. extra: 317 / 303,
  14259. bottom: 0.055
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(6, "feet"),
  14267. default: true
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(5 + 11 / 12, "feet"),
  14276. weight: math.unit(144, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/gabriel/front.svg",
  14280. extra: 285 / 262,
  14281. bottom: 0.004
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(5 + 11 / 12, "feet"),
  14289. default: true
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14295. {
  14296. side: {
  14297. height: math.unit(6 + 5 / 12, "feet"),
  14298. weight: math.unit(300, "lb"),
  14299. name: "Side",
  14300. image: {
  14301. source: "./media/characters/tempest-suicune/side.svg",
  14302. extra: 195 / 154,
  14303. bottom: 0.04
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(6 + 5 / 12, "feet"),
  14311. default: true
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14317. {
  14318. front: {
  14319. height: math.unit(7 + 2 / 12, "feet"),
  14320. weight: math.unit(322, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/vulcan/front.svg",
  14324. extra: 154 / 147,
  14325. bottom: 0.04
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(7 + 2 / 12, "feet"),
  14333. default: true
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14339. {
  14340. front: {
  14341. height: math.unit(5 + 10 / 12, "feet"),
  14342. weight: math.unit(264, "lb"),
  14343. name: "Front",
  14344. image: {
  14345. source: "./media/characters/gault/front.svg",
  14346. extra: 161 / 140,
  14347. bottom: 0.028
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Normal",
  14354. height: math.unit(5 + 10 / 12, "feet"),
  14355. default: true
  14356. },
  14357. ]
  14358. ))
  14359. characterMakers.push(() => makeCharacter(
  14360. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14361. {
  14362. front: {
  14363. height: math.unit(6, "feet"),
  14364. weight: math.unit(150, "lb"),
  14365. name: "Front",
  14366. image: {
  14367. source: "./media/characters/shard/front.svg",
  14368. extra: 273 / 238,
  14369. bottom: 0.02
  14370. }
  14371. },
  14372. },
  14373. [
  14374. {
  14375. name: "Normal",
  14376. height: math.unit(3 + 6 / 12, "feet"),
  14377. default: true
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(5 + 11 / 12, "feet"),
  14386. weight: math.unit(146, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/ashe/front.svg",
  14390. extra: 400 / 373,
  14391. bottom: 0.01
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(5 + 11 / 12, "feet"),
  14399. default: true
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(5 + 5 / 12, "feet"),
  14408. weight: math.unit(135, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/beatrix/front.svg",
  14412. extra: 392 / 379,
  14413. bottom: 0.01
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(6, "feet"),
  14421. default: true
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14427. {
  14428. front: {
  14429. height: math.unit(6, "feet"),
  14430. weight: math.unit(150, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/ignatius/front.svg",
  14434. extra: 245 / 222,
  14435. bottom: 0.01
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(5 + 5 / 12, "feet"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14449. {
  14450. front: {
  14451. height: math.unit(6 + 2 / 12, "feet"),
  14452. weight: math.unit(138, "lb"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/mei-li/front.svg",
  14456. extra: 237 / 229,
  14457. bottom: 0.03
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(6 + 2 / 12, "feet"),
  14465. default: true
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(2 + 4 / 12, "feet"),
  14474. weight: math.unit(62, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/puru/front.svg",
  14478. extra: 206 / 149,
  14479. bottom: 0.06
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(2 + 4 / 12, "feet"),
  14487. default: true
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14493. {
  14494. taur: {
  14495. height: math.unit(11, "feet"),
  14496. weight: math.unit(500, "lb"),
  14497. name: "Taur",
  14498. image: {
  14499. source: "./media/characters/kee/taur.svg",
  14500. extra: 1,
  14501. bottom: 0.04
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Normal",
  14508. height: math.unit(11, "feet"),
  14509. default: true
  14510. },
  14511. ]
  14512. ))
  14513. characterMakers.push(() => makeCharacter(
  14514. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14515. {
  14516. anthro: {
  14517. height: math.unit(7, "feet"),
  14518. weight: math.unit(190, "lb"),
  14519. name: "Anthro",
  14520. image: {
  14521. source: "./media/characters/cobalt-dracha/anthro.svg",
  14522. extra: 231 / 225,
  14523. bottom: 0.04
  14524. }
  14525. },
  14526. feral: {
  14527. height: math.unit(9 + 7 / 12, "feet"),
  14528. weight: math.unit(294, "lb"),
  14529. name: "Feral",
  14530. image: {
  14531. source: "./media/characters/cobalt-dracha/feral.svg",
  14532. extra: 692 / 633,
  14533. bottom: 0.05
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(7, "feet"),
  14541. default: true
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14547. {
  14548. fallen: {
  14549. height: math.unit(11 + 8 / 12, "feet"),
  14550. weight: math.unit(485, "lb"),
  14551. name: "Java (Fallen)",
  14552. rename: true,
  14553. image: {
  14554. source: "./media/characters/java/fallen.svg",
  14555. extra: 226 / 208,
  14556. bottom: 0.005
  14557. }
  14558. },
  14559. godkin: {
  14560. height: math.unit(10 + 6 / 12, "feet"),
  14561. weight: math.unit(328, "lb"),
  14562. name: "Java (Godkin)",
  14563. rename: true,
  14564. image: {
  14565. source: "./media/characters/java/godkin.svg",
  14566. extra: 270 / 262,
  14567. bottom: 0.02
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Normal",
  14574. height: math.unit(11 + 8 / 12, "feet"),
  14575. default: true
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(7 + 8 / 12, "feet"),
  14584. weight: math.unit(320, "lb"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/skoll/front.svg",
  14588. extra: 232 / 220,
  14589. bottom: 0.02
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Normal",
  14596. height: math.unit(7 + 8 / 12, "feet"),
  14597. default: true
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(5 + 9 / 12, "feet"),
  14606. weight: math.unit(170, "lb"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/purna/front.svg",
  14610. extra: 239 / 229,
  14611. bottom: 0.01
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Normal",
  14618. height: math.unit(5 + 9 / 12, "feet"),
  14619. default: true
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(5 + 9 / 12, "feet"),
  14628. weight: math.unit(142, "lb"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/kuva/front.svg",
  14632. extra: 281 / 271,
  14633. bottom: 0.006
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Normal",
  14640. height: math.unit(5 + 9 / 12, "feet"),
  14641. default: true
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14647. {
  14648. anthro: {
  14649. height: math.unit(9 + 2 / 12, "feet"),
  14650. weight: math.unit(270, "lb"),
  14651. name: "Anthro",
  14652. image: {
  14653. source: "./media/characters/embra/anthro.svg",
  14654. extra: 200 / 187,
  14655. bottom: 0.02
  14656. }
  14657. },
  14658. feral: {
  14659. height: math.unit(18 + 8 / 12, "feet"),
  14660. weight: math.unit(576, "lb"),
  14661. name: "Feral",
  14662. image: {
  14663. source: "./media/characters/embra/feral.svg",
  14664. extra: 152 / 137,
  14665. bottom: 0.037
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(9 + 2 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14679. {
  14680. anthro: {
  14681. height: math.unit(10 + 9 / 12, "feet"),
  14682. weight: math.unit(224, "lb"),
  14683. name: "Anthro",
  14684. image: {
  14685. source: "./media/characters/grottos/anthro.svg",
  14686. extra: 350 / 332,
  14687. bottom: 0.045
  14688. }
  14689. },
  14690. feral: {
  14691. height: math.unit(20 + 7 / 12, "feet"),
  14692. weight: math.unit(629, "lb"),
  14693. name: "Feral",
  14694. image: {
  14695. source: "./media/characters/grottos/feral.svg",
  14696. extra: 207 / 190,
  14697. bottom: 0.05
  14698. }
  14699. },
  14700. },
  14701. [
  14702. {
  14703. name: "Normal",
  14704. height: math.unit(10 + 9 / 12, "feet"),
  14705. default: true
  14706. },
  14707. ]
  14708. ))
  14709. characterMakers.push(() => makeCharacter(
  14710. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14711. {
  14712. anthro: {
  14713. height: math.unit(9 + 6 / 12, "feet"),
  14714. weight: math.unit(298, "lb"),
  14715. name: "Anthro",
  14716. image: {
  14717. source: "./media/characters/frifna/anthro.svg",
  14718. extra: 282 / 269,
  14719. bottom: 0.015
  14720. }
  14721. },
  14722. feral: {
  14723. height: math.unit(16 + 2 / 12, "feet"),
  14724. weight: math.unit(624, "lb"),
  14725. name: "Feral",
  14726. image: {
  14727. source: "./media/characters/frifna/feral.svg"
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(9 + 6 / 12, "feet"),
  14735. default: true
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(6 + 2 / 12, "feet"),
  14744. weight: math.unit(168, "lb"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/elise/front.svg",
  14748. extra: 276 / 271
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(6 + 2 / 12, "feet"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(5 + 10 / 12, "feet"),
  14765. weight: math.unit(210, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/glade/front.svg",
  14769. extra: 258 / 247,
  14770. bottom: 0.008
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Normal",
  14777. height: math.unit(5 + 10 / 12, "feet"),
  14778. default: true
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(5 + 10 / 12, "feet"),
  14787. weight: math.unit(129, "lb"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/rina/front.svg",
  14791. extra: 266 / 255,
  14792. bottom: 0.005
  14793. }
  14794. },
  14795. },
  14796. [
  14797. {
  14798. name: "Normal",
  14799. height: math.unit(5 + 10 / 12, "feet"),
  14800. default: true
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(6 + 1 / 12, "feet"),
  14809. weight: math.unit(192, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/veronica/front.svg",
  14813. extra: 319 / 309,
  14814. bottom: 0.005
  14815. }
  14816. },
  14817. },
  14818. [
  14819. {
  14820. name: "Normal",
  14821. height: math.unit(6 + 1 / 12, "feet"),
  14822. default: true
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14828. {
  14829. front: {
  14830. height: math.unit(9 + 3 / 12, "feet"),
  14831. weight: math.unit(1100, "lb"),
  14832. name: "Front",
  14833. image: {
  14834. source: "./media/characters/braxton/front.svg",
  14835. extra: 1057 / 984,
  14836. bottom: 0.05
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Normal",
  14843. height: math.unit(9 + 3 / 12, "feet")
  14844. },
  14845. {
  14846. name: "Giant",
  14847. height: math.unit(300, "feet"),
  14848. default: true
  14849. },
  14850. {
  14851. name: "Macro",
  14852. height: math.unit(700, "feet")
  14853. },
  14854. {
  14855. name: "Megamacro",
  14856. height: math.unit(6000, "feet")
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(6 + 7 / 12, "feet"),
  14865. weight: math.unit(150, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/blue-feyonics/front.svg",
  14869. extra: 1403 / 1306,
  14870. bottom: 0.047
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(6 + 7 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(1.8, "meters"),
  14887. weight: math.unit(60, "kg"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/maxwell/front.svg",
  14891. extra: 2060 / 1873
  14892. }
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Micro",
  14898. height: math.unit(1, "mm")
  14899. },
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(1.8, "meter"),
  14903. default: true
  14904. },
  14905. {
  14906. name: "Macro",
  14907. height: math.unit(30, "meters")
  14908. },
  14909. {
  14910. name: "Megamacro",
  14911. height: math.unit(10, "km")
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/jack/front.svg",
  14924. extra: 1754 / 1640,
  14925. bottom: 0.01
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Normal",
  14932. height: math.unit(80000, "feet"),
  14933. default: true
  14934. },
  14935. {
  14936. name: "Max size",
  14937. height: math.unit(10, "lightyears")
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14943. {
  14944. upright: {
  14945. height: math.unit(7, "feet"),
  14946. weight: math.unit(170, "lb"),
  14947. name: "Upright",
  14948. image: {
  14949. source: "./media/characters/cafat/upright.svg",
  14950. bottom: 0.01
  14951. }
  14952. },
  14953. uprightFull: {
  14954. height: math.unit(7, "feet"),
  14955. weight: math.unit(170, "lb"),
  14956. name: "Upright (Full)",
  14957. image: {
  14958. source: "./media/characters/cafat/upright-full.svg",
  14959. bottom: 0.01
  14960. }
  14961. },
  14962. side: {
  14963. height: math.unit(5, "feet"),
  14964. weight: math.unit(150, "lb"),
  14965. name: "Side",
  14966. image: {
  14967. source: "./media/characters/cafat/side.svg"
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Small",
  14974. height: math.unit(7, "feet"),
  14975. default: true
  14976. },
  14977. {
  14978. name: "Large",
  14979. height: math.unit(15.5, "feet")
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14985. {
  14986. front: {
  14987. height: math.unit(6, "feet"),
  14988. weight: math.unit(150, "lb"),
  14989. name: "Front",
  14990. image: {
  14991. source: "./media/characters/verin-raharra/front.svg",
  14992. extra: 5019 / 4835,
  14993. bottom: 0.023
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Normal",
  15000. height: math.unit(7 + 5 / 12, "feet"),
  15001. default: true
  15002. },
  15003. {
  15004. name: "Upsized",
  15005. height: math.unit(20, "feet")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(7, "feet"),
  15014. weight: math.unit(230, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/nakata/front.svg",
  15018. extra: 1.005,
  15019. bottom: 0.01
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(7, "feet"),
  15027. default: true
  15028. },
  15029. {
  15030. name: "Big",
  15031. height: math.unit(14, "feet")
  15032. },
  15033. {
  15034. name: "Macro",
  15035. height: math.unit(400, "feet")
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(4.91, "feet"),
  15044. weight: math.unit(100, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/lily/front.svg",
  15048. extra: 1585 / 1415,
  15049. bottom: 0.02
  15050. }
  15051. },
  15052. },
  15053. [
  15054. {
  15055. name: "Normal",
  15056. height: math.unit(4.91, "feet"),
  15057. default: true
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15063. {
  15064. laying: {
  15065. height: math.unit(4 + 4 / 12, "feet"),
  15066. weight: math.unit(600, "lb"),
  15067. name: "Laying",
  15068. image: {
  15069. source: "./media/characters/sheila/laying.svg",
  15070. extra: 1333 / 1265,
  15071. bottom: 0.16
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Normal",
  15078. height: math.unit(4 + 4 / 12, "feet"),
  15079. default: true
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(6, "feet"),
  15088. weight: math.unit(190, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/sax/front.svg",
  15092. extra: 1187 / 973,
  15093. bottom: 0.042
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Micro",
  15100. height: math.unit(4, "inches"),
  15101. default: true
  15102. },
  15103. ]
  15104. ))
  15105. characterMakers.push(() => makeCharacter(
  15106. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15107. {
  15108. front: {
  15109. height: math.unit(6, "feet"),
  15110. weight: math.unit(150, "lb"),
  15111. name: "Front",
  15112. image: {
  15113. source: "./media/characters/pandora/front.svg",
  15114. extra: 2720 / 2556,
  15115. bottom: 0.015
  15116. }
  15117. },
  15118. back: {
  15119. height: math.unit(6, "feet"),
  15120. weight: math.unit(150, "lb"),
  15121. name: "Back",
  15122. image: {
  15123. source: "./media/characters/pandora/back.svg",
  15124. extra: 2720 / 2556,
  15125. bottom: 0.01
  15126. }
  15127. },
  15128. beans: {
  15129. height: math.unit(6 / 8, "feet"),
  15130. name: "Beans",
  15131. image: {
  15132. source: "./media/characters/pandora/beans.svg"
  15133. }
  15134. },
  15135. skirt: {
  15136. height: math.unit(6, "feet"),
  15137. weight: math.unit(150, "lb"),
  15138. name: "Skirt",
  15139. image: {
  15140. source: "./media/characters/pandora/skirt.svg",
  15141. extra: 1622 / 1525,
  15142. bottom: 0.015
  15143. }
  15144. },
  15145. hoodie: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(150, "lb"),
  15148. name: "Hoodie",
  15149. image: {
  15150. source: "./media/characters/pandora/hoodie.svg",
  15151. extra: 1622 / 1525,
  15152. bottom: 0.015
  15153. }
  15154. },
  15155. casual: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(150, "lb"),
  15158. name: "Casual",
  15159. image: {
  15160. source: "./media/characters/pandora/casual.svg",
  15161. extra: 1622 / 1525,
  15162. bottom: 0.015
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(6, "feet")
  15170. },
  15171. {
  15172. name: "Big Steppy",
  15173. height: math.unit(1, "km"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15180. {
  15181. side: {
  15182. height: math.unit(10, "feet"),
  15183. weight: math.unit(800, "kg"),
  15184. name: "Side",
  15185. image: {
  15186. source: "./media/characters/venio-darcony/side.svg",
  15187. extra: 1373 / 1003,
  15188. bottom: 0.037
  15189. }
  15190. },
  15191. front: {
  15192. height: math.unit(19, "feet"),
  15193. weight: math.unit(800, "kg"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/venio-darcony/front.svg"
  15197. }
  15198. },
  15199. back: {
  15200. height: math.unit(19, "feet"),
  15201. weight: math.unit(800, "kg"),
  15202. name: "Back",
  15203. image: {
  15204. source: "./media/characters/venio-darcony/back.svg"
  15205. }
  15206. },
  15207. sideNsfw: {
  15208. height: math.unit(10, "feet"),
  15209. weight: math.unit(800, "kg"),
  15210. name: "Side (NSFW)",
  15211. image: {
  15212. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15213. extra: 1373 / 1003,
  15214. bottom: 0.037
  15215. }
  15216. },
  15217. frontNsfw: {
  15218. height: math.unit(19, "feet"),
  15219. weight: math.unit(800, "kg"),
  15220. name: "Front (NSFW)",
  15221. image: {
  15222. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15223. }
  15224. },
  15225. backNsfw: {
  15226. height: math.unit(19, "feet"),
  15227. weight: math.unit(800, "kg"),
  15228. name: "Back (NSFW)",
  15229. image: {
  15230. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15231. }
  15232. },
  15233. sideArmored: {
  15234. height: math.unit(10, "feet"),
  15235. weight: math.unit(800, "kg"),
  15236. name: "Side (Armored)",
  15237. image: {
  15238. source: "./media/characters/venio-darcony/side-armored.svg",
  15239. extra: 1373 / 1003,
  15240. bottom: 0.037
  15241. }
  15242. },
  15243. frontArmored: {
  15244. height: math.unit(19, "feet"),
  15245. weight: math.unit(900, "kg"),
  15246. name: "Front (Armored)",
  15247. image: {
  15248. source: "./media/characters/venio-darcony/front-armored.svg"
  15249. }
  15250. },
  15251. backArmored: {
  15252. height: math.unit(19, "feet"),
  15253. weight: math.unit(900, "kg"),
  15254. name: "Back (Armored)",
  15255. image: {
  15256. source: "./media/characters/venio-darcony/back-armored.svg"
  15257. }
  15258. },
  15259. sword: {
  15260. height: math.unit(10, "feet"),
  15261. weight: math.unit(50, "lb"),
  15262. name: "Sword",
  15263. image: {
  15264. source: "./media/characters/venio-darcony/sword.svg"
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(10, "feet")
  15272. },
  15273. {
  15274. name: "Macro",
  15275. height: math.unit(130, "feet"),
  15276. default: true
  15277. },
  15278. {
  15279. name: "Macro+",
  15280. height: math.unit(240, "feet")
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15286. {
  15287. front: {
  15288. height: math.unit(6, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/veski/front.svg",
  15293. extra: 1299 / 1225,
  15294. bottom: 0.04
  15295. }
  15296. },
  15297. back: {
  15298. height: math.unit(6, "feet"),
  15299. weight: math.unit(150, "lb"),
  15300. name: "Back",
  15301. image: {
  15302. source: "./media/characters/veski/back.svg",
  15303. extra: 1299 / 1225,
  15304. bottom: 0.008
  15305. }
  15306. },
  15307. maw: {
  15308. height: math.unit(1.5 * 1.21, "feet"),
  15309. name: "Maw",
  15310. image: {
  15311. source: "./media/characters/veski/maw.svg"
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Macro",
  15318. height: math.unit(2, "km"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(5 + 7 / 12, "feet"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/isabelle/front.svg",
  15331. extra: 2130 / 1976,
  15332. bottom: 0.05
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Supermicro",
  15339. height: math.unit(10, "micrometers")
  15340. },
  15341. {
  15342. name: "Micro",
  15343. height: math.unit(1, "inch")
  15344. },
  15345. {
  15346. name: "Tiny",
  15347. height: math.unit(5, "inches")
  15348. },
  15349. {
  15350. name: "Standard",
  15351. height: math.unit(5 + 7 / 12, "inches")
  15352. },
  15353. {
  15354. name: "Macro",
  15355. height: math.unit(80, "meters"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Megamacro",
  15360. height: math.unit(250, "meters")
  15361. },
  15362. {
  15363. name: "Gigamacro",
  15364. height: math.unit(5, "km")
  15365. },
  15366. {
  15367. name: "Cosmic",
  15368. height: math.unit(2.5e6, "miles")
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15374. {
  15375. front: {
  15376. height: math.unit(6, "feet"),
  15377. weight: math.unit(150, "lb"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/hanzo/front.svg",
  15381. extra: 374 / 344,
  15382. bottom: 0.02
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(8, "feet"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(7, "feet"),
  15399. weight: math.unit(130, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/anna/front.svg",
  15403. extra: 169 / 145,
  15404. bottom: 0.06
  15405. }
  15406. },
  15407. full: {
  15408. height: math.unit(4.96, "feet"),
  15409. weight: math.unit(220, "lb"),
  15410. name: "Full",
  15411. image: {
  15412. source: "./media/characters/anna/full.svg",
  15413. extra: 138 / 114,
  15414. bottom: 0.15
  15415. }
  15416. },
  15417. tongue: {
  15418. height: math.unit(2.53, "feet"),
  15419. name: "Tongue",
  15420. image: {
  15421. source: "./media/characters/anna/tongue.svg"
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(7, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(7, "feet"),
  15438. weight: math.unit(150, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/ian-corvid/front.svg",
  15442. extra: 150 / 142,
  15443. bottom: 0.02
  15444. }
  15445. },
  15446. back: {
  15447. height: math.unit(7, "feet"),
  15448. weight: math.unit(150, "lb"),
  15449. name: "Back",
  15450. image: {
  15451. source: "./media/characters/ian-corvid/back.svg",
  15452. extra: 150 / 143,
  15453. bottom: 0.01
  15454. }
  15455. },
  15456. stomping: {
  15457. height: math.unit(7, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Stomping",
  15460. image: {
  15461. source: "./media/characters/ian-corvid/stomping.svg",
  15462. extra: 76 / 72
  15463. }
  15464. },
  15465. sitting: {
  15466. height: math.unit(7 / 1.8, "feet"),
  15467. weight: math.unit(150, "lb"),
  15468. name: "Sitting",
  15469. image: {
  15470. source: "./media/characters/ian-corvid/sitting.svg",
  15471. extra: 1400 / 1269,
  15472. bottom: 0.15
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Tiny Microw",
  15479. height: math.unit(1, "inch")
  15480. },
  15481. {
  15482. name: "Microw",
  15483. height: math.unit(6, "inches")
  15484. },
  15485. {
  15486. name: "Crow",
  15487. height: math.unit(7 + 1 / 12, "feet"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Macrow",
  15492. height: math.unit(176, "feet")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(5 + 7 / 12, "feet"),
  15501. weight: math.unit(147, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/natalie-kellon/front.svg",
  15505. extra: 1214 / 1141,
  15506. bottom: 0.02
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Micro",
  15513. height: math.unit(1 / 16, "inch")
  15514. },
  15515. {
  15516. name: "Tiny",
  15517. height: math.unit(4, "inches")
  15518. },
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(5 + 7 / 12, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Amazon",
  15526. height: math.unit(12, "feet")
  15527. },
  15528. {
  15529. name: "Giantess",
  15530. height: math.unit(160, "meters")
  15531. },
  15532. {
  15533. name: "Titaness",
  15534. height: math.unit(800, "meters")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(6, "feet"),
  15543. weight: math.unit(150, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/alluria/front.svg",
  15547. extra: 806 / 738,
  15548. bottom: 0.01
  15549. }
  15550. },
  15551. side: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Side",
  15555. image: {
  15556. source: "./media/characters/alluria/side.svg",
  15557. extra: 800 / 750,
  15558. }
  15559. },
  15560. back: {
  15561. height: math.unit(6, "feet"),
  15562. weight: math.unit(150, "lb"),
  15563. name: "Back",
  15564. image: {
  15565. source: "./media/characters/alluria/back.svg",
  15566. extra: 806 / 738,
  15567. }
  15568. },
  15569. frontMaid: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(150, "lb"),
  15572. name: "Front (Maid)",
  15573. image: {
  15574. source: "./media/characters/alluria/front-maid.svg",
  15575. extra: 806 / 738,
  15576. bottom: 0.01
  15577. }
  15578. },
  15579. sideMaid: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(150, "lb"),
  15582. name: "Side (Maid)",
  15583. image: {
  15584. source: "./media/characters/alluria/side-maid.svg",
  15585. extra: 800 / 750,
  15586. bottom: 0.005
  15587. }
  15588. },
  15589. backMaid: {
  15590. height: math.unit(6, "feet"),
  15591. weight: math.unit(150, "lb"),
  15592. name: "Back (Maid)",
  15593. image: {
  15594. source: "./media/characters/alluria/back-maid.svg",
  15595. extra: 806 / 738,
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Micro",
  15602. height: math.unit(6, "inches"),
  15603. default: true
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15609. {
  15610. front: {
  15611. height: math.unit(6, "feet"),
  15612. weight: math.unit(150, "lb"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/kyle/front.svg",
  15616. extra: 1069 / 962,
  15617. bottom: 77.228 / 1727.45
  15618. }
  15619. },
  15620. },
  15621. [
  15622. {
  15623. name: "Macro",
  15624. height: math.unit(150, "feet"),
  15625. default: true
  15626. },
  15627. ]
  15628. ))
  15629. characterMakers.push(() => makeCharacter(
  15630. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15631. {
  15632. front: {
  15633. height: math.unit(6, "feet"),
  15634. weight: math.unit(300, "lb"),
  15635. name: "Front",
  15636. image: {
  15637. source: "./media/characters/duncan/front.svg",
  15638. extra: 1650 / 1482,
  15639. bottom: 0.05
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Macro",
  15646. height: math.unit(100, "feet"),
  15647. default: true
  15648. },
  15649. ]
  15650. ))
  15651. characterMakers.push(() => makeCharacter(
  15652. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15653. {
  15654. front: {
  15655. height: math.unit(5 + 4 / 12, "feet"),
  15656. weight: math.unit(220, "lb"),
  15657. name: "Front",
  15658. image: {
  15659. source: "./media/characters/memory/front.svg",
  15660. extra: 3641 / 3545,
  15661. bottom: 0.03
  15662. }
  15663. },
  15664. back: {
  15665. height: math.unit(5 + 4 / 12, "feet"),
  15666. weight: math.unit(220, "lb"),
  15667. name: "Back",
  15668. image: {
  15669. source: "./media/characters/memory/back.svg",
  15670. extra: 3641 / 3545,
  15671. bottom: 0.025
  15672. }
  15673. },
  15674. frontSkirt: {
  15675. height: math.unit(5 + 4 / 12, "feet"),
  15676. weight: math.unit(220, "lb"),
  15677. name: "Front (Skirt)",
  15678. image: {
  15679. source: "./media/characters/memory/front-skirt.svg",
  15680. extra: 3641 / 3545,
  15681. bottom: 0.03
  15682. }
  15683. },
  15684. frontDress: {
  15685. height: math.unit(5 + 4 / 12, "feet"),
  15686. weight: math.unit(220, "lb"),
  15687. name: "Front (Dress)",
  15688. image: {
  15689. source: "./media/characters/memory/front-dress.svg",
  15690. extra: 3641 / 3545,
  15691. bottom: 0.03
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Micro",
  15698. height: math.unit(6, "inches"),
  15699. default: true
  15700. },
  15701. {
  15702. name: "Normal",
  15703. height: math.unit(5 + 4 / 12, "feet")
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(4 + 11 / 12, "feet"),
  15712. weight: math.unit(100, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/luno/front.svg",
  15716. extra: 1535 / 1487,
  15717. bottom: 0.03
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Micro",
  15724. height: math.unit(3, "inches")
  15725. },
  15726. {
  15727. name: "Normal",
  15728. height: math.unit(4 + 11 / 12, "feet"),
  15729. default: true
  15730. },
  15731. {
  15732. name: "Macro",
  15733. height: math.unit(300, "feet")
  15734. },
  15735. {
  15736. name: "Megamacro",
  15737. height: math.unit(700, "miles")
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15743. {
  15744. front: {
  15745. height: math.unit(6 + 2 / 12, "feet"),
  15746. weight: math.unit(170, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/jamesy/front.svg",
  15750. extra: 440 / 382,
  15751. bottom: 0.005
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(3, "inches")
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(6 + 2 / 12, "feet"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(300, "feet")
  15768. },
  15769. {
  15770. name: "Megamacro",
  15771. height: math.unit(700, "miles")
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(6, "feet"),
  15780. weight: math.unit(160, "lb"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/mark/front.svg",
  15784. extra: 3300 / 3100,
  15785. bottom: 136.42 / 3440.47
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Macro",
  15792. height: math.unit(120, "meters")
  15793. },
  15794. {
  15795. name: "Bigger Macro",
  15796. height: math.unit(350, "meters")
  15797. },
  15798. {
  15799. name: "Megamacro",
  15800. height: math.unit(8, "km"),
  15801. default: true
  15802. },
  15803. {
  15804. name: "Continental",
  15805. height: math.unit(4550, "km")
  15806. },
  15807. {
  15808. name: "Planetary",
  15809. height: math.unit(65000, "km")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(400, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/mac/front.svg",
  15822. extra: 1048 / 987.7,
  15823. bottom: 60 / 1107.6,
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Macro",
  15830. height: math.unit(500, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(5 + 2 / 12, "feet"),
  15840. weight: math.unit(190, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/bari/front.svg",
  15844. extra: 3156 / 2880,
  15845. bottom: 0.03
  15846. }
  15847. },
  15848. back: {
  15849. height: math.unit(5 + 2 / 12, "feet"),
  15850. weight: math.unit(190, "lb"),
  15851. name: "Back",
  15852. image: {
  15853. source: "./media/characters/bari/back.svg",
  15854. extra: 3260 / 2834,
  15855. bottom: 0.025
  15856. }
  15857. },
  15858. frontPlush: {
  15859. height: math.unit(5 + 2 / 12, "feet"),
  15860. weight: math.unit(190, "lb"),
  15861. name: "Front (Plush)",
  15862. image: {
  15863. source: "./media/characters/bari/front-plush.svg",
  15864. extra: 1112 / 1061,
  15865. bottom: 0.002
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Micro",
  15872. height: math.unit(3, "inches")
  15873. },
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(5 + 2 / 12, "feet"),
  15877. default: true
  15878. },
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(20, "feet")
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(6 + 1 / 12, "feet"),
  15890. weight: math.unit(275, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/hunter-misha-raven/front.svg"
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Mortal",
  15900. height: math.unit(6 + 1 / 12, "feet")
  15901. },
  15902. {
  15903. name: "Divine",
  15904. height: math.unit(1.12134e34, "parsecs"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(6 + 3 / 12, "feet"),
  15914. weight: math.unit(220, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/max-calore/front.svg",
  15918. extra: 1700 / 1648,
  15919. bottom: 0.01
  15920. }
  15921. },
  15922. back: {
  15923. height: math.unit(6 + 3 / 12, "feet"),
  15924. weight: math.unit(220, "lb"),
  15925. name: "Back",
  15926. image: {
  15927. source: "./media/characters/max-calore/back.svg",
  15928. extra: 1700 / 1648,
  15929. bottom: 0.01
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(6 + 3 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15943. {
  15944. side: {
  15945. height: math.unit(2 + 8 / 12, "feet"),
  15946. weight: math.unit(99, "lb"),
  15947. name: "Side",
  15948. image: {
  15949. source: "./media/characters/aspen/side.svg",
  15950. extra: 152 / 138,
  15951. bottom: 0.032
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(2 + 8 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15965. {
  15966. side: {
  15967. height: math.unit(3 + 2 / 12, "feet"),
  15968. weight: math.unit(224, "lb"),
  15969. name: "Side",
  15970. image: {
  15971. source: "./media/characters/sheila-feral-wolf/side.svg",
  15972. extra: 179 / 166,
  15973. bottom: 0.03
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(3 + 2 / 12, "feet"),
  15981. default: true
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15987. {
  15988. side: {
  15989. height: math.unit(1 + 9 / 12, "feet"),
  15990. weight: math.unit(38, "lb"),
  15991. name: "Side",
  15992. image: {
  15993. source: "./media/characters/michelle/side.svg",
  15994. extra: 147 / 136.7,
  15995. bottom: 0.03
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(1 + 9 / 12, "feet"),
  16003. default: true
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(1 + 1 / 12, "feet"),
  16012. weight: math.unit(18, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/nino/front.svg"
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(1 + 1 / 12, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16029. {
  16030. front: {
  16031. height: math.unit(1, "feet"),
  16032. weight: math.unit(16, "lb"),
  16033. name: "Front",
  16034. image: {
  16035. source: "./media/characters/viola/front.svg"
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(1, "feet"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(6 + 5 / 12, "feet"),
  16052. weight: math.unit(580, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/atlas/front.svg",
  16056. extra: 298.5 / 290,
  16057. bottom: 0.015
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(6 + 5 / 12, "feet"),
  16065. default: true
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16071. {
  16072. side: {
  16073. height: math.unit(1 + 10 / 12, "feet"),
  16074. weight: math.unit(25, "lb"),
  16075. name: "Side",
  16076. image: {
  16077. source: "./media/characters/davy/side.svg",
  16078. extra: 200 / 170,
  16079. bottom: 0.01
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Normal",
  16086. height: math.unit(1 + 10 / 12, "feet"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16093. {
  16094. side: {
  16095. height: math.unit(4 + 8 / 12, "feet"),
  16096. weight: math.unit(166, "lb"),
  16097. name: "Side",
  16098. image: {
  16099. source: "./media/characters/fiona/side.svg",
  16100. extra: 232 / 220,
  16101. bottom: 0.03
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Normal",
  16108. height: math.unit(4 + 8 / 12, "feet"),
  16109. default: true
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16115. {
  16116. front: {
  16117. height: math.unit(2, "feet"),
  16118. weight: math.unit(62, "lb"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/lyla/front.svg",
  16122. bottom: 0.1
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Normal",
  16129. height: math.unit(2, "feet"),
  16130. default: true
  16131. },
  16132. ]
  16133. ))
  16134. characterMakers.push(() => makeCharacter(
  16135. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16136. {
  16137. side: {
  16138. height: math.unit(1.8, "feet"),
  16139. weight: math.unit(44, "lb"),
  16140. name: "Side",
  16141. image: {
  16142. source: "./media/characters/perseus/side.svg",
  16143. bottom: 0.21
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Normal",
  16150. height: math.unit(1.8, "feet"),
  16151. default: true
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16157. {
  16158. side: {
  16159. height: math.unit(4 + 2 / 12, "feet"),
  16160. weight: math.unit(20, "lb"),
  16161. name: "Side",
  16162. image: {
  16163. source: "./media/characters/remus/side.svg"
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(4 + 2 / 12, "feet"),
  16171. default: true
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16177. {
  16178. front: {
  16179. height: math.unit(4 + 11 / 12, "feet"),
  16180. weight: math.unit(114, "lb"),
  16181. name: "Front",
  16182. image: {
  16183. source: "./media/characters/raf/front.svg",
  16184. bottom: 20.5/1863
  16185. }
  16186. },
  16187. side: {
  16188. height: math.unit(4 + 11 / 12, "feet"),
  16189. weight: math.unit(114, "lb"),
  16190. name: "Side",
  16191. image: {
  16192. source: "./media/characters/raf/side.svg",
  16193. bottom: 22/1822
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Micro",
  16200. height: math.unit(2, "inches")
  16201. },
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(4 + 11 / 12, "feet"),
  16205. default: true
  16206. },
  16207. {
  16208. name: "Macro",
  16209. height: math.unit(70, "feet")
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(1.5, "meters"),
  16218. weight: math.unit(68, "kg"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/liam-einarr/front.svg",
  16222. extra: 2822 / 2666
  16223. }
  16224. },
  16225. back: {
  16226. height: math.unit(1.5, "meters"),
  16227. weight: math.unit(68, "kg"),
  16228. name: "Back",
  16229. image: {
  16230. source: "./media/characters/liam-einarr/back.svg",
  16231. extra: 2822 / 2666,
  16232. bottom: 0.015
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Normal",
  16239. height: math.unit(1.5, "meters"),
  16240. default: true
  16241. },
  16242. {
  16243. name: "Macro",
  16244. height: math.unit(150, "meters")
  16245. },
  16246. {
  16247. name: "Megamacro",
  16248. height: math.unit(35, "km")
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(75, "kg"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/linda/front.svg",
  16261. extra: 930 / 874,
  16262. bottom: 0.004
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(6, "feet"),
  16270. default: true
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(6 + 8 / 12, "feet"),
  16279. weight: math.unit(220, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/caylex/front.svg",
  16283. extra: 821 / 772,
  16284. bottom: 0.07
  16285. }
  16286. },
  16287. back: {
  16288. height: math.unit(6 + 8 / 12, "feet"),
  16289. weight: math.unit(220, "lb"),
  16290. name: "Back",
  16291. image: {
  16292. source: "./media/characters/caylex/back.svg",
  16293. extra: 821 / 772,
  16294. bottom: 0.022
  16295. }
  16296. },
  16297. hand: {
  16298. height: math.unit(1.25, "feet"),
  16299. name: "Hand",
  16300. image: {
  16301. source: "./media/characters/caylex/hand.svg"
  16302. }
  16303. },
  16304. foot: {
  16305. height: math.unit(1.6, "feet"),
  16306. name: "Foot",
  16307. image: {
  16308. source: "./media/characters/caylex/foot.svg"
  16309. }
  16310. },
  16311. armored: {
  16312. height: math.unit(6 + 8 / 12, "feet"),
  16313. weight: math.unit(250, "lb"),
  16314. name: "Armored",
  16315. image: {
  16316. source: "./media/characters/caylex/armored.svg",
  16317. extra: 1420 / 1310,
  16318. bottom: 0.045
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(6 + 8 / 12, "feet"),
  16326. default: true
  16327. },
  16328. {
  16329. name: "Normal+",
  16330. height: math.unit(12, "feet")
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(7 + 6 / 12, "feet"),
  16339. weight: math.unit(288, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/alana/front.svg",
  16343. extra: 679 / 653,
  16344. bottom: 22.5 / 701
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(7 + 6 / 12, "feet")
  16352. },
  16353. {
  16354. name: "Large",
  16355. height: math.unit(50, "feet")
  16356. },
  16357. {
  16358. name: "Macro",
  16359. height: math.unit(100, "feet"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "Macro+",
  16364. height: math.unit(200, "feet")
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(6 + 1 / 12, "feet"),
  16373. weight: math.unit(210, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/hasani/front.svg",
  16377. extra: 244 / 232,
  16378. bottom: 0.01
  16379. }
  16380. },
  16381. back: {
  16382. height: math.unit(6 + 1 / 12, "feet"),
  16383. weight: math.unit(210, "lb"),
  16384. name: "Back",
  16385. image: {
  16386. source: "./media/characters/hasani/back.svg",
  16387. extra: 244 / 232,
  16388. bottom: 0.01
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Normal",
  16395. height: math.unit(6 + 1 / 12, "feet")
  16396. },
  16397. {
  16398. name: "Macro",
  16399. height: math.unit(175, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(1.82, "meters"),
  16409. weight: math.unit(140, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/nita/front.svg",
  16413. extra: 2473 / 2363,
  16414. bottom: 0.01
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(1.82, "m")
  16422. },
  16423. {
  16424. name: "Macro",
  16425. height: math.unit(300, "m")
  16426. },
  16427. {
  16428. name: "Mistake Canon",
  16429. height: math.unit(0.5, "miles"),
  16430. default: true
  16431. },
  16432. {
  16433. name: "Big Mistake",
  16434. height: math.unit(13, "miles")
  16435. },
  16436. {
  16437. name: "Playing God",
  16438. height: math.unit(2450, "miles")
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(4, "feet"),
  16447. weight: math.unit(120, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/shiriko/front.svg",
  16451. extra: 195 / 188
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(4, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(6, "feet"),
  16468. name: "front",
  16469. image: {
  16470. source: "./media/characters/deja/front.svg",
  16471. extra: 926 / 840,
  16472. bottom: 0.07
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Planck Length",
  16479. height: math.unit(1.6e-35, "meters")
  16480. },
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(30.48, "meters"),
  16484. default: true
  16485. },
  16486. {
  16487. name: "Universal",
  16488. height: math.unit(8.8e26, "meters")
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16494. {
  16495. side: {
  16496. height: math.unit(8, "feet"),
  16497. weight: math.unit(6300, "lb"),
  16498. name: "Side",
  16499. image: {
  16500. source: "./media/characters/anima/side.svg",
  16501. bottom: 0.035
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(8, "feet"),
  16509. default: true
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16515. {
  16516. front: {
  16517. height: math.unit(8, "feet"),
  16518. weight: math.unit(350, "lb"),
  16519. name: "Front",
  16520. image: {
  16521. source: "./media/characters/bianca/front.svg",
  16522. extra: 234 / 225,
  16523. bottom: 0.03
  16524. }
  16525. },
  16526. },
  16527. [
  16528. {
  16529. name: "Normal",
  16530. height: math.unit(8, "feet"),
  16531. default: true
  16532. },
  16533. ]
  16534. ))
  16535. characterMakers.push(() => makeCharacter(
  16536. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16537. {
  16538. front: {
  16539. height: math.unit(6, "feet"),
  16540. weight: math.unit(150, "lb"),
  16541. name: "Front",
  16542. image: {
  16543. source: "./media/characters/adinia/front.svg",
  16544. extra: 1845 / 1672,
  16545. bottom: 0.02
  16546. }
  16547. },
  16548. back: {
  16549. height: math.unit(6, "feet"),
  16550. weight: math.unit(150, "lb"),
  16551. name: "Back",
  16552. image: {
  16553. source: "./media/characters/adinia/back.svg",
  16554. extra: 1845 / 1672,
  16555. bottom: 0.002
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Normal",
  16562. height: math.unit(11 + 5 / 12, "feet"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(3, "meters"),
  16572. weight: math.unit(200, "kg"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/lykasa/front.svg",
  16576. extra: 1076 / 976,
  16577. bottom: 0.06
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(3, "meters")
  16585. },
  16586. {
  16587. name: "Kaiju",
  16588. height: math.unit(120, "meters"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Mega Kaiju",
  16593. height: math.unit(240, "km")
  16594. },
  16595. {
  16596. name: "Giga Kaiju",
  16597. height: math.unit(400, "megameters")
  16598. },
  16599. {
  16600. name: "Tera Kaiju",
  16601. height: math.unit(800, "gigameters")
  16602. },
  16603. {
  16604. name: "Kaiju Dragon Goddess",
  16605. height: math.unit(26, "zettaparsecs")
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16611. {
  16612. side: {
  16613. height: math.unit(283 / 124 * 6, "feet"),
  16614. weight: math.unit(35000, "lb"),
  16615. name: "Side",
  16616. image: {
  16617. source: "./media/characters/malfaren/side.svg",
  16618. extra: 2500 / 1010,
  16619. bottom: 0.01
  16620. }
  16621. },
  16622. front: {
  16623. height: math.unit(22.36, "feet"),
  16624. weight: math.unit(35000, "lb"),
  16625. name: "Front",
  16626. image: {
  16627. source: "./media/characters/malfaren/front.svg",
  16628. extra: 1631 / 1476,
  16629. bottom: 0.01
  16630. }
  16631. },
  16632. maw: {
  16633. height: math.unit(6.9, "feet"),
  16634. name: "Maw",
  16635. image: {
  16636. source: "./media/characters/malfaren/maw.svg"
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Big",
  16643. height: math.unit(283 / 162 * 6, "feet"),
  16644. },
  16645. {
  16646. name: "Bigger",
  16647. height: math.unit(283 / 124 * 6, "feet")
  16648. },
  16649. {
  16650. name: "Massive",
  16651. height: math.unit(283 / 92 * 6, "feet"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "👀💦",
  16656. height: math.unit(283 / 73 * 6, "feet"),
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(1.7, "m"),
  16665. weight: math.unit(70, "kg"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/kernel/front.svg",
  16669. extra: 222 / 210,
  16670. bottom: 0.007
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Nano",
  16677. height: math.unit(17, "micrometers")
  16678. },
  16679. {
  16680. name: "Micro",
  16681. height: math.unit(1.7, "mm")
  16682. },
  16683. {
  16684. name: "Small",
  16685. height: math.unit(1.7, "cm")
  16686. },
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(1.7, "m"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(1.75, "meters"),
  16699. weight: math.unit(65, "kg"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/jayne-folest/front.svg",
  16703. extra: 2115 / 2007,
  16704. bottom: 0.02
  16705. }
  16706. },
  16707. back: {
  16708. height: math.unit(1.75, "meters"),
  16709. weight: math.unit(65, "kg"),
  16710. name: "Back",
  16711. image: {
  16712. source: "./media/characters/jayne-folest/back.svg",
  16713. extra: 2115 / 2007,
  16714. bottom: 0.005
  16715. }
  16716. },
  16717. frontClothed: {
  16718. height: math.unit(1.75, "meters"),
  16719. weight: math.unit(65, "kg"),
  16720. name: "Front (Clothed)",
  16721. image: {
  16722. source: "./media/characters/jayne-folest/front-clothed.svg",
  16723. extra: 2115 / 2007,
  16724. bottom: 0.035
  16725. }
  16726. },
  16727. hand: {
  16728. height: math.unit(1 / 1.260, "feet"),
  16729. name: "Hand",
  16730. image: {
  16731. source: "./media/characters/jayne-folest/hand.svg"
  16732. }
  16733. },
  16734. foot: {
  16735. height: math.unit(1 / 0.918, "feet"),
  16736. name: "Foot",
  16737. image: {
  16738. source: "./media/characters/jayne-folest/foot.svg"
  16739. }
  16740. },
  16741. },
  16742. [
  16743. {
  16744. name: "Micro",
  16745. height: math.unit(4, "cm")
  16746. },
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(1.75, "meters")
  16750. },
  16751. {
  16752. name: "Macro",
  16753. height: math.unit(47.5, "meters"),
  16754. default: true
  16755. },
  16756. ]
  16757. ))
  16758. characterMakers.push(() => makeCharacter(
  16759. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16760. {
  16761. front: {
  16762. height: math.unit(180, "cm"),
  16763. weight: math.unit(70, "kg"),
  16764. name: "Front",
  16765. image: {
  16766. source: "./media/characters/algier/front.svg",
  16767. extra: 596 / 572,
  16768. bottom: 0.04
  16769. }
  16770. },
  16771. back: {
  16772. height: math.unit(180, "cm"),
  16773. weight: math.unit(70, "kg"),
  16774. name: "Back",
  16775. image: {
  16776. source: "./media/characters/algier/back.svg",
  16777. extra: 596 / 572,
  16778. bottom: 0.025
  16779. }
  16780. },
  16781. frontdressed: {
  16782. height: math.unit(180, "cm"),
  16783. weight: math.unit(150, "kg"),
  16784. name: "Front-dressed",
  16785. image: {
  16786. source: "./media/characters/algier/front-dressed.svg",
  16787. extra: 596 / 572,
  16788. bottom: 0.038
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Micro",
  16795. height: math.unit(5, "cm")
  16796. },
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(180, "cm"),
  16800. default: true
  16801. },
  16802. {
  16803. name: "Macro",
  16804. height: math.unit(64, "m")
  16805. },
  16806. ]
  16807. ))
  16808. characterMakers.push(() => makeCharacter(
  16809. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16810. {
  16811. upright: {
  16812. height: math.unit(7, "feet"),
  16813. weight: math.unit(300, "lb"),
  16814. name: "Upright",
  16815. image: {
  16816. source: "./media/characters/pretzel/upright.svg",
  16817. extra: 534 / 522,
  16818. bottom: 0.065
  16819. }
  16820. },
  16821. sprawling: {
  16822. height: math.unit(3.75, "feet"),
  16823. weight: math.unit(300, "lb"),
  16824. name: "Sprawling",
  16825. image: {
  16826. source: "./media/characters/pretzel/sprawling.svg",
  16827. extra: 314 / 281,
  16828. bottom: 0.1
  16829. }
  16830. },
  16831. tongue: {
  16832. height: math.unit(2, "feet"),
  16833. name: "Tongue",
  16834. image: {
  16835. source: "./media/characters/pretzel/tongue.svg"
  16836. }
  16837. },
  16838. },
  16839. [
  16840. {
  16841. name: "Normal",
  16842. height: math.unit(7, "feet"),
  16843. default: true
  16844. },
  16845. {
  16846. name: "Oversized",
  16847. height: math.unit(15, "feet")
  16848. },
  16849. {
  16850. name: "Huge",
  16851. height: math.unit(30, "feet")
  16852. },
  16853. {
  16854. name: "Macro",
  16855. height: math.unit(250, "feet")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16861. {
  16862. sideFront: {
  16863. height: math.unit(5 + 2 / 12, "feet"),
  16864. weight: math.unit(120, "lb"),
  16865. name: "Front Side",
  16866. image: {
  16867. source: "./media/characters/roxi/side-front.svg",
  16868. extra: 2924 / 2717,
  16869. bottom: 0.08
  16870. }
  16871. },
  16872. sideBack: {
  16873. height: math.unit(5 + 2 / 12, "feet"),
  16874. weight: math.unit(120, "lb"),
  16875. name: "Back Side",
  16876. image: {
  16877. source: "./media/characters/roxi/side-back.svg",
  16878. extra: 2904 / 2693,
  16879. bottom: 0.06
  16880. }
  16881. },
  16882. front: {
  16883. height: math.unit(5 + 2 / 12, "feet"),
  16884. weight: math.unit(120, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/roxi/front.svg",
  16888. extra: 2028 / 1907,
  16889. bottom: 0.01
  16890. }
  16891. },
  16892. frontAlt: {
  16893. height: math.unit(5 + 2 / 12, "feet"),
  16894. weight: math.unit(120, "lb"),
  16895. name: "Front (Alt)",
  16896. image: {
  16897. source: "./media/characters/roxi/front-alt.svg",
  16898. extra: 1828 / 1798,
  16899. bottom: 0.01
  16900. }
  16901. },
  16902. sitting: {
  16903. height: math.unit(2.8, "feet"),
  16904. weight: math.unit(120, "lb"),
  16905. name: "Sitting",
  16906. image: {
  16907. source: "./media/characters/roxi/sitting.svg",
  16908. extra: 2660 / 2462,
  16909. bottom: 0.1
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(5 + 2 / 12, "feet"),
  16917. default: true
  16918. },
  16919. ]
  16920. ))
  16921. characterMakers.push(() => makeCharacter(
  16922. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16923. {
  16924. side: {
  16925. height: math.unit(55, "feet"),
  16926. weight: math.unit(153, "tons"),
  16927. name: "Side",
  16928. image: {
  16929. source: "./media/characters/shadow/side.svg",
  16930. extra: 701 / 628,
  16931. bottom: 0.02
  16932. }
  16933. },
  16934. flying: {
  16935. height: math.unit(145, "feet"),
  16936. weight: math.unit(153, "tons"),
  16937. name: "Flying",
  16938. image: {
  16939. source: "./media/characters/shadow/flying.svg"
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Normal",
  16946. height: math.unit(55, "feet"),
  16947. default: true
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16953. {
  16954. front: {
  16955. height: math.unit(6, "feet"),
  16956. weight: math.unit(200, "lb"),
  16957. name: "Front",
  16958. image: {
  16959. source: "./media/characters/marcie/front.svg",
  16960. extra: 960 / 876,
  16961. bottom: 58 / 1017.87
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Macro",
  16968. height: math.unit(1, "mile"),
  16969. default: true
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(7, "feet"),
  16978. weight: math.unit(200, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/kachina/front.svg",
  16982. extra: 1290.68 / 1119,
  16983. bottom: 36.5 / 1327.18
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(7, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16997. {
  16998. looking: {
  16999. height: math.unit(2, "meters"),
  17000. weight: math.unit(300, "kg"),
  17001. name: "Looking",
  17002. image: {
  17003. source: "./media/characters/kash/looking.svg",
  17004. extra: 474 / 344,
  17005. bottom: 0.03
  17006. }
  17007. },
  17008. side: {
  17009. height: math.unit(2, "meters"),
  17010. weight: math.unit(300, "kg"),
  17011. name: "Side",
  17012. image: {
  17013. source: "./media/characters/kash/side.svg",
  17014. extra: 302 / 251,
  17015. bottom: 0.03
  17016. }
  17017. },
  17018. front: {
  17019. height: math.unit(2, "meters"),
  17020. weight: math.unit(300, "kg"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/kash/front.svg",
  17024. extra: 495 / 360,
  17025. bottom: 0.015
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(2, "meters"),
  17033. default: true
  17034. },
  17035. {
  17036. name: "Big",
  17037. height: math.unit(3, "meters")
  17038. },
  17039. {
  17040. name: "Large",
  17041. height: math.unit(5, "meters")
  17042. },
  17043. ]
  17044. ))
  17045. characterMakers.push(() => makeCharacter(
  17046. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17047. {
  17048. feeding: {
  17049. height: math.unit(6.7, "feet"),
  17050. weight: math.unit(350, "lb"),
  17051. name: "Feeding",
  17052. image: {
  17053. source: "./media/characters/lalim/feeding.svg",
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(6.7, "feet"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17067. {
  17068. front: {
  17069. height: math.unit(9.5, "feet"),
  17070. weight: math.unit(600, "lb"),
  17071. name: "Front",
  17072. image: {
  17073. source: "./media/characters/de'vout/front.svg",
  17074. extra: 1443 / 1328,
  17075. bottom: 0.025
  17076. }
  17077. },
  17078. back: {
  17079. height: math.unit(9.5, "feet"),
  17080. weight: math.unit(600, "lb"),
  17081. name: "Back",
  17082. image: {
  17083. source: "./media/characters/de'vout/back.svg",
  17084. extra: 1443 / 1328
  17085. }
  17086. },
  17087. frontDressed: {
  17088. height: math.unit(9.5, "feet"),
  17089. weight: math.unit(600, "lb"),
  17090. name: "Front (Dressed",
  17091. image: {
  17092. source: "./media/characters/de'vout/front-dressed.svg",
  17093. extra: 1443 / 1328,
  17094. bottom: 0.025
  17095. }
  17096. },
  17097. backDressed: {
  17098. height: math.unit(9.5, "feet"),
  17099. weight: math.unit(600, "lb"),
  17100. name: "Back (Dressed",
  17101. image: {
  17102. source: "./media/characters/de'vout/back-dressed.svg",
  17103. extra: 1443 / 1328
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(9.5, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(8, "feet"),
  17120. weight: math.unit(225, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/talana/front.svg",
  17124. extra: 1410 / 1300,
  17125. bottom: 0.015
  17126. }
  17127. },
  17128. frontDressed: {
  17129. height: math.unit(8, "feet"),
  17130. weight: math.unit(225, "lb"),
  17131. name: "Front (Dressed",
  17132. image: {
  17133. source: "./media/characters/talana/front-dressed.svg",
  17134. extra: 1410 / 1300,
  17135. bottom: 0.015
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(8, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17149. {
  17150. side: {
  17151. height: math.unit(7.2, "feet"),
  17152. weight: math.unit(150, "lb"),
  17153. name: "Side",
  17154. image: {
  17155. source: "./media/characters/xeauvok/side.svg",
  17156. extra: 1975 / 1523,
  17157. bottom: 0.07
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(7.2, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17171. {
  17172. side: {
  17173. height: math.unit(10, "feet"),
  17174. weight: math.unit(900, "kg"),
  17175. name: "Side",
  17176. image: {
  17177. source: "./media/characters/zara/side.svg",
  17178. extra: 504 / 498
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(10, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17192. {
  17193. side: {
  17194. height: math.unit(6, "feet"),
  17195. weight: math.unit(150, "lb"),
  17196. name: "Side",
  17197. image: {
  17198. source: "./media/characters/richard-dragon/side.svg",
  17199. extra: 845 / 340,
  17200. bottom: 0.017
  17201. }
  17202. },
  17203. maw: {
  17204. height: math.unit(2.97, "feet"),
  17205. name: "Maw",
  17206. image: {
  17207. source: "./media/characters/richard-dragon/maw.svg"
  17208. }
  17209. },
  17210. },
  17211. [
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(4, "feet"),
  17219. weight: math.unit(100, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/richard-smeargle/front.svg",
  17223. extra: 2952 / 2820,
  17224. bottom: 0.028
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(4, "feet"),
  17232. default: true
  17233. },
  17234. {
  17235. name: "Dynamax",
  17236. height: math.unit(20, "meters")
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17242. {
  17243. front: {
  17244. height: math.unit(6, "feet"),
  17245. weight: math.unit(110, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/klay/front.svg",
  17249. extra: 962 / 883,
  17250. bottom: 0.04
  17251. }
  17252. },
  17253. back: {
  17254. height: math.unit(6, "feet"),
  17255. weight: math.unit(110, "lb"),
  17256. name: "Back",
  17257. image: {
  17258. source: "./media/characters/klay/back.svg",
  17259. extra: 962 / 883
  17260. }
  17261. },
  17262. beans: {
  17263. height: math.unit(1.15, "feet"),
  17264. name: "Beans",
  17265. image: {
  17266. source: "./media/characters/klay/beans.svg"
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Micro",
  17273. height: math.unit(6, "inches")
  17274. },
  17275. {
  17276. name: "Mini",
  17277. height: math.unit(3, "feet")
  17278. },
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(6, "feet"),
  17282. default: true
  17283. },
  17284. {
  17285. name: "Big",
  17286. height: math.unit(25, "feet")
  17287. },
  17288. {
  17289. name: "Macro",
  17290. height: math.unit(100, "feet")
  17291. },
  17292. {
  17293. name: "Megamacro",
  17294. height: math.unit(400, "feet")
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17300. {
  17301. front: {
  17302. height: math.unit(6, "feet"),
  17303. weight: math.unit(160, "lb"),
  17304. name: "Front",
  17305. image: {
  17306. source: "./media/characters/marcus/front.svg",
  17307. extra: 734 / 676,
  17308. bottom: 0.03
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Little",
  17315. height: math.unit(6, "feet")
  17316. },
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(110, "feet"),
  17320. default: true
  17321. },
  17322. {
  17323. name: "Macro",
  17324. height: math.unit(250, "feet")
  17325. },
  17326. {
  17327. name: "Megamacro",
  17328. height: math.unit(1000, "feet")
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(7, "feet"),
  17337. weight: math.unit(275, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/claude-delroute/front.svg",
  17341. extra: 230 / 214,
  17342. bottom: 0.007
  17343. }
  17344. },
  17345. side: {
  17346. height: math.unit(7, "feet"),
  17347. weight: math.unit(275, "lb"),
  17348. name: "Side",
  17349. image: {
  17350. source: "./media/characters/claude-delroute/side.svg",
  17351. extra: 222 / 214,
  17352. bottom: 0.01
  17353. }
  17354. },
  17355. back: {
  17356. height: math.unit(7, "feet"),
  17357. weight: math.unit(275, "lb"),
  17358. name: "Back",
  17359. image: {
  17360. source: "./media/characters/claude-delroute/back.svg",
  17361. extra: 230 / 214,
  17362. bottom: 0.015
  17363. }
  17364. },
  17365. maw: {
  17366. height: math.unit(0.6407, "meters"),
  17367. name: "Maw",
  17368. image: {
  17369. source: "./media/characters/claude-delroute/maw.svg"
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Normal",
  17376. height: math.unit(7, "feet"),
  17377. default: true
  17378. },
  17379. {
  17380. name: "Lorge",
  17381. height: math.unit(20, "feet")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(8 + 4 / 12, "feet"),
  17390. weight: math.unit(600, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/dragonien/front.svg",
  17394. extra: 100 / 94,
  17395. bottom: 3.3 / 103.3445
  17396. }
  17397. },
  17398. back: {
  17399. height: math.unit(8 + 4 / 12, "feet"),
  17400. weight: math.unit(600, "lb"),
  17401. name: "Back",
  17402. image: {
  17403. source: "./media/characters/dragonien/back.svg",
  17404. extra: 776 / 746,
  17405. bottom: 6.4 / 782.0616
  17406. }
  17407. },
  17408. foot: {
  17409. height: math.unit(1.54, "feet"),
  17410. name: "Foot",
  17411. image: {
  17412. source: "./media/characters/dragonien/foot.svg",
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(8 + 4 / 12, "feet"),
  17420. default: true
  17421. },
  17422. {
  17423. name: "Macro",
  17424. height: math.unit(200, "feet")
  17425. },
  17426. {
  17427. name: "Megamacro",
  17428. height: math.unit(1, "mile")
  17429. },
  17430. {
  17431. name: "Gigamacro",
  17432. height: math.unit(1000, "miles")
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(5 + 2 / 12, "feet"),
  17441. weight: math.unit(110, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/desta/front.svg",
  17445. extra: 767/726,
  17446. bottom: 11.7/779
  17447. }
  17448. },
  17449. back: {
  17450. height: math.unit(5 + 2 / 12, "feet"),
  17451. weight: math.unit(110, "lb"),
  17452. name: "Back",
  17453. image: {
  17454. source: "./media/characters/desta/back.svg",
  17455. extra: 777/728,
  17456. bottom: 6/784
  17457. }
  17458. },
  17459. frontAlt: {
  17460. height: math.unit(5 + 2 / 12, "feet"),
  17461. weight: math.unit(110, "lb"),
  17462. name: "Front",
  17463. image: {
  17464. source: "./media/characters/desta/front-alt.svg",
  17465. extra: 1482 / 1417
  17466. }
  17467. },
  17468. side: {
  17469. height: math.unit(5 + 2 / 12, "feet"),
  17470. weight: math.unit(110, "lb"),
  17471. name: "Side",
  17472. image: {
  17473. source: "./media/characters/desta/side.svg",
  17474. extra: 2579 / 2491,
  17475. bottom: 0.053
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Micro",
  17482. height: math.unit(6, "inches")
  17483. },
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(5 + 2 / 12, "feet"),
  17487. default: true
  17488. },
  17489. {
  17490. name: "Macro",
  17491. height: math.unit(62, "feet")
  17492. },
  17493. {
  17494. name: "Megamacro",
  17495. height: math.unit(1800, "feet")
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(10, "feet"),
  17504. weight: math.unit(700, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/storm-alystar/front.svg",
  17508. extra: 2112 / 1898,
  17509. bottom: 0.034
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Micro",
  17516. height: math.unit(3.5, "inches")
  17517. },
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(10, "feet"),
  17521. default: true
  17522. },
  17523. {
  17524. name: "Macro",
  17525. height: math.unit(400, "feet")
  17526. },
  17527. {
  17528. name: "Deific",
  17529. height: math.unit(60, "miles")
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(2.35, "meters"),
  17538. weight: math.unit(119, "kg"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/ilia/front.svg",
  17542. extra: 1285 / 1255,
  17543. bottom: 0.06
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(2.35, "meters")
  17551. },
  17552. {
  17553. name: "Macro",
  17554. height: math.unit(140, "meters"),
  17555. default: true
  17556. },
  17557. {
  17558. name: "Megamacro",
  17559. height: math.unit(100, "miles")
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17565. {
  17566. front: {
  17567. height: math.unit(6 + 5 / 12, "feet"),
  17568. weight: math.unit(190, "lb"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/kingdead/front.svg",
  17572. extra: 1228 / 1177
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Micro",
  17579. height: math.unit(7, "inches")
  17580. },
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(6 + 5 / 12, "feet")
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(150, "feet"),
  17588. default: true
  17589. },
  17590. {
  17591. name: "Megamacro",
  17592. height: math.unit(200, "miles")
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17598. {
  17599. front: {
  17600. height: math.unit(8, "feet"),
  17601. weight: math.unit(600, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/kyrehx/front.svg",
  17605. extra: 1195 / 1095,
  17606. bottom: 0.034
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Micro",
  17613. height: math.unit(2, "inches")
  17614. },
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(8, "feet"),
  17618. default: true
  17619. },
  17620. {
  17621. name: "Macro",
  17622. height: math.unit(255, "feet")
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17631. weight: math.unit(184, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/xang/front.svg",
  17635. extra: 845 / 755
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17643. default: true
  17644. },
  17645. {
  17646. name: "Macro",
  17647. height: math.unit(0.935 * 146, "feet")
  17648. },
  17649. {
  17650. name: "Megamacro",
  17651. height: math.unit(0.935 * 3, "miles")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17657. {
  17658. frontDressed: {
  17659. height: math.unit(5 + 7 / 12, "feet"),
  17660. weight: math.unit(140, "lb"),
  17661. name: "Front (Dressed)",
  17662. image: {
  17663. source: "./media/characters/doc-weardno/front-dressed.svg",
  17664. extra: 263 / 234
  17665. }
  17666. },
  17667. backDressed: {
  17668. height: math.unit(5 + 7 / 12, "feet"),
  17669. weight: math.unit(140, "lb"),
  17670. name: "Back (Dressed)",
  17671. image: {
  17672. source: "./media/characters/doc-weardno/back-dressed.svg",
  17673. extra: 266 / 238
  17674. }
  17675. },
  17676. front: {
  17677. height: math.unit(5 + 7 / 12, "feet"),
  17678. weight: math.unit(140, "lb"),
  17679. name: "Front",
  17680. image: {
  17681. source: "./media/characters/doc-weardno/front.svg",
  17682. extra: 254 / 233
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Micro",
  17689. height: math.unit(3, "inches")
  17690. },
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(5 + 7 / 12, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Macro",
  17698. height: math.unit(25, "feet")
  17699. },
  17700. {
  17701. name: "Megamacro",
  17702. height: math.unit(2, "miles")
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17708. {
  17709. front: {
  17710. height: math.unit(6 + 2 / 12, "feet"),
  17711. weight: math.unit(153, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/seth-whilst/front.svg",
  17715. bottom: 0.07
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Micro",
  17722. height: math.unit(5, "inches")
  17723. },
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(6 + 2 / 12, "feet"),
  17727. default: true
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17733. {
  17734. front: {
  17735. height: math.unit(3, "inches"),
  17736. weight: math.unit(8, "grams"),
  17737. name: "Front",
  17738. image: {
  17739. source: "./media/characters/pocket-jabari/front.svg",
  17740. extra: 1024 / 974,
  17741. bottom: 0.039
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Minimicro",
  17748. height: math.unit(8, "mm")
  17749. },
  17750. {
  17751. name: "Micro",
  17752. height: math.unit(3, "inches"),
  17753. default: true
  17754. },
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(3, "feet")
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(15, "feet"),
  17766. weight: math.unit(3280, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/sapphy/front.svg",
  17770. extra: 671 / 577,
  17771. bottom: 0.085
  17772. }
  17773. },
  17774. back: {
  17775. height: math.unit(15, "feet"),
  17776. weight: math.unit(3280, "lb"),
  17777. name: "Back",
  17778. image: {
  17779. source: "./media/characters/sapphy/back.svg",
  17780. extra: 631 / 607,
  17781. bottom: 0.045
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Normal",
  17788. height: math.unit(15, "feet")
  17789. },
  17790. {
  17791. name: "Casual Macro",
  17792. height: math.unit(120, "feet")
  17793. },
  17794. {
  17795. name: "Macro",
  17796. height: math.unit(2150, "feet"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "Megamacro",
  17801. height: math.unit(8, "miles")
  17802. },
  17803. {
  17804. name: "Galaxy Mom",
  17805. height: math.unit(6, "megalightyears")
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(6, "feet"),
  17814. weight: math.unit(170, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/kiro/front.svg",
  17818. extra: 1064 / 1012,
  17819. bottom: 0.052
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Micro",
  17826. height: math.unit(6, "inches")
  17827. },
  17828. {
  17829. name: "Normal",
  17830. height: math.unit(6, "feet"),
  17831. default: true
  17832. },
  17833. {
  17834. name: "Macro",
  17835. height: math.unit(72, "feet")
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17841. {
  17842. front: {
  17843. height: math.unit(5 + 9 / 12, "feet"),
  17844. weight: math.unit(175, "lb"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/irishfox/front.svg",
  17848. extra: 1912 / 1680,
  17849. bottom: 0.02
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Nano",
  17856. height: math.unit(1, "mm")
  17857. },
  17858. {
  17859. name: "Micro",
  17860. height: math.unit(2, "inches")
  17861. },
  17862. {
  17863. name: "Normal",
  17864. height: math.unit(5 + 9 / 12, "feet"),
  17865. default: true
  17866. },
  17867. {
  17868. name: "Macro",
  17869. height: math.unit(45, "feet")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(6 + 1 / 12, "feet"),
  17878. weight: math.unit(150, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/aronai-sieyes/front.svg",
  17882. extra: 1556 / 1480,
  17883. bottom: 0.015
  17884. }
  17885. },
  17886. side: {
  17887. height: math.unit(6 + 1 / 12, "feet"),
  17888. weight: math.unit(150, "lb"),
  17889. name: "Side",
  17890. image: {
  17891. source: "./media/characters/aronai-sieyes/side.svg",
  17892. extra: 1433 / 1390,
  17893. bottom: 0.0393
  17894. }
  17895. },
  17896. back: {
  17897. height: math.unit(6 + 1 / 12, "feet"),
  17898. weight: math.unit(150, "lb"),
  17899. name: "Back",
  17900. image: {
  17901. source: "./media/characters/aronai-sieyes/back.svg",
  17902. extra: 1544 / 1494,
  17903. bottom: 0.02
  17904. }
  17905. },
  17906. frontClothed: {
  17907. height: math.unit(6 + 1 / 12, "feet"),
  17908. weight: math.unit(150, "lb"),
  17909. name: "Front (Clothed)",
  17910. image: {
  17911. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17912. extra: 1582 / 1527
  17913. }
  17914. },
  17915. feral: {
  17916. height: math.unit(18, "feet"),
  17917. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17918. name: "Feral",
  17919. image: {
  17920. source: "./media/characters/aronai-sieyes/feral.svg",
  17921. extra: 1530 / 1240,
  17922. bottom: 0.035
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Micro",
  17929. height: math.unit(2, "inches")
  17930. },
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(6 + 1 / 12, "feet"),
  17934. default: true
  17935. }
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(12, "feet"),
  17943. weight: math.unit(410, "kg"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/xuna/front.svg",
  17947. extra: 2184 / 1980
  17948. }
  17949. },
  17950. side: {
  17951. height: math.unit(12, "feet"),
  17952. weight: math.unit(410, "kg"),
  17953. name: "Side",
  17954. image: {
  17955. source: "./media/characters/xuna/side.svg",
  17956. extra: 2184 / 1980
  17957. }
  17958. },
  17959. back: {
  17960. height: math.unit(12, "feet"),
  17961. weight: math.unit(410, "kg"),
  17962. name: "Back",
  17963. image: {
  17964. source: "./media/characters/xuna/back.svg",
  17965. extra: 2184 / 1980
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Nano glow",
  17972. height: math.unit(10, "nm")
  17973. },
  17974. {
  17975. name: "Micro floof",
  17976. height: math.unit(0.3, "m")
  17977. },
  17978. {
  17979. name: "Huggable softy boi",
  17980. height: math.unit(3.6576, "m"),
  17981. default: true
  17982. },
  17983. {
  17984. name: "Admirable floof",
  17985. height: math.unit(80, "meters")
  17986. },
  17987. {
  17988. name: "Gentle macro",
  17989. height: math.unit(300, "meters")
  17990. },
  17991. {
  17992. name: "Very careful floof",
  17993. height: math.unit(3200, "meters")
  17994. },
  17995. {
  17996. name: "The mega floof",
  17997. height: math.unit(36000, "meters")
  17998. },
  17999. {
  18000. name: "Giga-fur-Wicker",
  18001. height: math.unit(4800000, "meters")
  18002. },
  18003. {
  18004. name: "Licky world",
  18005. height: math.unit(20000000, "meters")
  18006. },
  18007. {
  18008. name: "Floofy cyan sun",
  18009. height: math.unit(1500000000, "meters")
  18010. },
  18011. {
  18012. name: "Milky Wicker",
  18013. height: math.unit(1000000000000000000000, "meters")
  18014. },
  18015. {
  18016. name: "The observing Wicker",
  18017. height: math.unit(999999999999999999999999999, "meters")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(5 + 9 / 12, "feet"),
  18026. weight: math.unit(150, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/arokha-sieyes/front.svg",
  18030. extra: 1425 / 1284,
  18031. bottom: 0.05
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(5 + 9 / 12, "feet")
  18039. },
  18040. {
  18041. name: "Macro",
  18042. height: math.unit(30, "meters"),
  18043. default: true
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(6, "feet"),
  18052. weight: math.unit(180, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/arokh-sieyes/front.svg",
  18056. extra: 1830 / 1769,
  18057. bottom: 0.01
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(6, "feet")
  18065. },
  18066. {
  18067. name: "Macro",
  18068. height: math.unit(30, "meters"),
  18069. default: true
  18070. },
  18071. ]
  18072. ))
  18073. characterMakers.push(() => makeCharacter(
  18074. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18075. {
  18076. side: {
  18077. height: math.unit(13 + 1 / 12, "feet"),
  18078. weight: math.unit(8.5, "tonnes"),
  18079. name: "Side",
  18080. image: {
  18081. source: "./media/characters/goldeneye/side.svg",
  18082. extra: 1182 / 778,
  18083. bottom: 0.067
  18084. }
  18085. },
  18086. paw: {
  18087. height: math.unit(3.4, "feet"),
  18088. name: "Paw",
  18089. image: {
  18090. source: "./media/characters/goldeneye/paw.svg"
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(13 + 1 / 12, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6 + 1 / 12, "feet"),
  18107. weight: math.unit(210, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/leonardo-lycheborne/front.svg",
  18111. extra: 390 / 365,
  18112. bottom: 0.032
  18113. }
  18114. },
  18115. side: {
  18116. height: math.unit(6 + 1 / 12, "feet"),
  18117. weight: math.unit(210, "lb"),
  18118. name: "Side",
  18119. image: {
  18120. source: "./media/characters/leonardo-lycheborne/side.svg",
  18121. extra: 390 / 365,
  18122. bottom: 0.005
  18123. }
  18124. },
  18125. back: {
  18126. height: math.unit(6 + 1 / 12, "feet"),
  18127. weight: math.unit(210, "lb"),
  18128. name: "Back",
  18129. image: {
  18130. source: "./media/characters/leonardo-lycheborne/back.svg",
  18131. extra: 392 / 366,
  18132. bottom: 0.01
  18133. }
  18134. },
  18135. hand: {
  18136. height: math.unit(1.08, "feet"),
  18137. name: "Hand",
  18138. image: {
  18139. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18140. }
  18141. },
  18142. foot: {
  18143. height: math.unit(1.32, "feet"),
  18144. name: "Foot",
  18145. image: {
  18146. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18147. }
  18148. },
  18149. were: {
  18150. height: math.unit(20, "feet"),
  18151. weight: math.unit(7800, "lb"),
  18152. name: "Were",
  18153. image: {
  18154. source: "./media/characters/leonardo-lycheborne/were.svg",
  18155. extra: 308 / 294,
  18156. bottom: 0.048
  18157. }
  18158. },
  18159. feral: {
  18160. height: math.unit(7.5, "feet"),
  18161. weight: math.unit(600, "lb"),
  18162. name: "Feral",
  18163. image: {
  18164. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18165. extra: 210 / 186,
  18166. bottom: 0.108
  18167. }
  18168. },
  18169. taur: {
  18170. height: math.unit(11, "feet"),
  18171. weight: math.unit(3300, "lb"),
  18172. name: "Taur",
  18173. image: {
  18174. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18175. extra: 320 / 303,
  18176. bottom: 0.025
  18177. }
  18178. },
  18179. barghest: {
  18180. height: math.unit(11, "feet"),
  18181. weight: math.unit(1300, "lb"),
  18182. name: "Barghest",
  18183. image: {
  18184. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18185. extra: 323 / 302,
  18186. bottom: 0.027
  18187. }
  18188. },
  18189. dick: {
  18190. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18191. name: "Dick",
  18192. image: {
  18193. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18194. }
  18195. },
  18196. dickWere: {
  18197. height: math.unit((20) / 3.8, "feet"),
  18198. name: "Dick (Were)",
  18199. image: {
  18200. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Normal",
  18207. height: math.unit(6 + 1 / 12, "feet"),
  18208. default: true
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(10, "feet"),
  18217. weight: math.unit(350, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/jet/front.svg",
  18221. extra: 2050 / 1980,
  18222. bottom: 0.013
  18223. }
  18224. },
  18225. back: {
  18226. height: math.unit(10, "feet"),
  18227. weight: math.unit(350, "lb"),
  18228. name: "Back",
  18229. image: {
  18230. source: "./media/characters/jet/back.svg",
  18231. extra: 2050 / 1980,
  18232. bottom: 0.013
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Micro",
  18239. height: math.unit(6, "inches")
  18240. },
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(10, "feet"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Macro",
  18248. height: math.unit(100, "feet")
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18254. {
  18255. front: {
  18256. height: math.unit(15, "feet"),
  18257. weight: math.unit(2800, "lb"),
  18258. name: "Front",
  18259. image: {
  18260. source: "./media/characters/tanarath/front.svg",
  18261. extra: 2392 / 2220,
  18262. bottom: 0.03
  18263. }
  18264. },
  18265. back: {
  18266. height: math.unit(15, "feet"),
  18267. weight: math.unit(2800, "lb"),
  18268. name: "Back",
  18269. image: {
  18270. source: "./media/characters/tanarath/back.svg",
  18271. extra: 2392 / 2220,
  18272. bottom: 0.03
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(15, "feet"),
  18280. default: true
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18286. {
  18287. front: {
  18288. height: math.unit(7 + 1 / 12, "feet"),
  18289. weight: math.unit(175, "lb"),
  18290. name: "Front",
  18291. image: {
  18292. source: "./media/characters/patty-cattybatty/front.svg",
  18293. extra: 908 / 874,
  18294. bottom: 0.025
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Micro",
  18301. height: math.unit(1, "inch")
  18302. },
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(7 + 1 / 12, "feet")
  18306. },
  18307. {
  18308. name: "Mini Macro",
  18309. height: math.unit(155, "feet")
  18310. },
  18311. {
  18312. name: "Macro",
  18313. height: math.unit(1077, "feet")
  18314. },
  18315. {
  18316. name: "Mega Macro",
  18317. height: math.unit(47650, "feet"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Giga Macro",
  18322. height: math.unit(440, "miles")
  18323. },
  18324. {
  18325. name: "Tera Macro",
  18326. height: math.unit(8700, "miles")
  18327. },
  18328. {
  18329. name: "Planetary Macro",
  18330. height: math.unit(32700, "miles")
  18331. },
  18332. {
  18333. name: "Solar Macro",
  18334. height: math.unit(550000, "miles")
  18335. },
  18336. {
  18337. name: "Celestial Macro",
  18338. height: math.unit(2.5, "AU")
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(4 + 5 / 12, "feet"),
  18347. weight: math.unit(90, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/cappu/front.svg",
  18351. extra: 1247 / 1152,
  18352. bottom: 0.012
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(4 + 5 / 12, "feet"),
  18360. default: true
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18366. {
  18367. frontDressed: {
  18368. height: math.unit(70, "cm"),
  18369. weight: math.unit(6, "kg"),
  18370. name: "Front (Dressed)",
  18371. image: {
  18372. source: "./media/characters/sebi/front-dressed.svg",
  18373. extra: 713.5 / 686.5,
  18374. bottom: 0.003
  18375. }
  18376. },
  18377. front: {
  18378. height: math.unit(70, "cm"),
  18379. weight: math.unit(5, "kg"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/sebi/front.svg",
  18383. extra: 713.5 / 686.5,
  18384. bottom: 0.003
  18385. }
  18386. }
  18387. },
  18388. [
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(70, "cm"),
  18392. default: true
  18393. },
  18394. {
  18395. name: "Macro",
  18396. height: math.unit(8, "meters")
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(6, "feet"),
  18405. weight: math.unit(150, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/typhek/front.svg",
  18409. extra: 1948 / 1929,
  18410. bottom: 0.025
  18411. }
  18412. },
  18413. side: {
  18414. height: math.unit(6, "feet"),
  18415. weight: math.unit(150, "lb"),
  18416. name: "Side",
  18417. image: {
  18418. source: "./media/characters/typhek/side.svg",
  18419. extra: 2034 / 2010,
  18420. bottom: 0.003
  18421. }
  18422. },
  18423. back: {
  18424. height: math.unit(6, "feet"),
  18425. weight: math.unit(150, "lb"),
  18426. name: "Back",
  18427. image: {
  18428. source: "./media/characters/typhek/back.svg",
  18429. extra: 2005 / 1978,
  18430. bottom: 0.004
  18431. }
  18432. },
  18433. palm: {
  18434. height: math.unit(1.2, "feet"),
  18435. name: "Palm",
  18436. image: {
  18437. source: "./media/characters/typhek/palm.svg"
  18438. }
  18439. },
  18440. fist: {
  18441. height: math.unit(1.1, "feet"),
  18442. name: "Fist",
  18443. image: {
  18444. source: "./media/characters/typhek/fist.svg"
  18445. }
  18446. },
  18447. foot: {
  18448. height: math.unit(1.57, "feet"),
  18449. name: "Foot",
  18450. image: {
  18451. source: "./media/characters/typhek/foot.svg"
  18452. }
  18453. },
  18454. sole: {
  18455. height: math.unit(2.05, "feet"),
  18456. name: "Sole",
  18457. image: {
  18458. source: "./media/characters/typhek/sole.svg"
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Macro",
  18465. height: math.unit(40, "stories"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Megamacro",
  18470. height: math.unit(1, "mile")
  18471. },
  18472. {
  18473. name: "Gigamacro",
  18474. height: math.unit(4000, "solarradii")
  18475. },
  18476. {
  18477. name: "Universal",
  18478. height: math.unit(1.1, "universes")
  18479. }
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18484. {
  18485. side: {
  18486. height: math.unit(5 + 7 / 12, "feet"),
  18487. weight: math.unit(150, "lb"),
  18488. name: "Side",
  18489. image: {
  18490. source: "./media/characters/kassy/side.svg",
  18491. extra: 1280 / 1225,
  18492. bottom: 0.002
  18493. }
  18494. },
  18495. front: {
  18496. height: math.unit(5 + 7 / 12, "feet"),
  18497. weight: math.unit(150, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/kassy/front.svg",
  18501. extra: 1280 / 1225,
  18502. bottom: 0.025
  18503. }
  18504. },
  18505. back: {
  18506. height: math.unit(5 + 7 / 12, "feet"),
  18507. weight: math.unit(150, "lb"),
  18508. name: "Back",
  18509. image: {
  18510. source: "./media/characters/kassy/back.svg",
  18511. extra: 1280 / 1225,
  18512. bottom: 0.002
  18513. }
  18514. },
  18515. foot: {
  18516. height: math.unit(1.266, "feet"),
  18517. name: "Foot",
  18518. image: {
  18519. source: "./media/characters/kassy/foot.svg"
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(5 + 7 / 12, "feet")
  18527. },
  18528. {
  18529. name: "Macro",
  18530. height: math.unit(137, "feet"),
  18531. default: true
  18532. },
  18533. {
  18534. name: "Megamacro",
  18535. height: math.unit(1, "mile")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6 + 1 / 12, "feet"),
  18544. weight: math.unit(200, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/neil/front.svg",
  18548. extra: 1326 / 1250,
  18549. bottom: 0.023
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(6 + 1 / 12, "feet"),
  18557. default: true
  18558. },
  18559. {
  18560. name: "Macro",
  18561. height: math.unit(200, "feet")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(5 + 9 / 12, "feet"),
  18570. weight: math.unit(190, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/atticus/front.svg",
  18574. extra: 2934 / 2785,
  18575. bottom: 0.025
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(5 + 9 / 12, "feet"),
  18583. default: true
  18584. },
  18585. {
  18586. name: "Macro",
  18587. height: math.unit(180, "feet")
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18593. {
  18594. side: {
  18595. height: math.unit(9, "feet"),
  18596. weight: math.unit(650, "lb"),
  18597. name: "Side",
  18598. image: {
  18599. source: "./media/characters/milo/side.svg",
  18600. extra: 2644 / 2310,
  18601. bottom: 0.032
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(9, "feet"),
  18609. default: true
  18610. },
  18611. {
  18612. name: "Macro",
  18613. height: math.unit(300, "feet")
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18619. {
  18620. side: {
  18621. height: math.unit(8, "meters"),
  18622. weight: math.unit(90000, "kg"),
  18623. name: "Side",
  18624. image: {
  18625. source: "./media/characters/ijzer/side.svg",
  18626. extra: 2756 / 1600,
  18627. bottom: 0.01
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Small",
  18634. height: math.unit(3, "meters")
  18635. },
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(8, "meters"),
  18639. default: true
  18640. },
  18641. {
  18642. name: "Normal+",
  18643. height: math.unit(10, "meters")
  18644. },
  18645. {
  18646. name: "Bigger",
  18647. height: math.unit(24, "meters")
  18648. },
  18649. {
  18650. name: "Huge",
  18651. height: math.unit(80, "meters")
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(6 + 2 / 12, "feet"),
  18660. weight: math.unit(153, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/luca-cervicum/front.svg",
  18664. extra: 370 / 327,
  18665. bottom: 0.015
  18666. }
  18667. },
  18668. back: {
  18669. height: math.unit(6 + 2 / 12, "feet"),
  18670. weight: math.unit(153, "lb"),
  18671. name: "Back",
  18672. image: {
  18673. source: "./media/characters/luca-cervicum/back.svg",
  18674. extra: 367 / 333,
  18675. bottom: 0.005
  18676. }
  18677. },
  18678. frontGear: {
  18679. height: math.unit(6 + 2 / 12, "feet"),
  18680. weight: math.unit(173, "lb"),
  18681. name: "Front (Gear)",
  18682. image: {
  18683. source: "./media/characters/luca-cervicum/front-gear.svg",
  18684. extra: 377 / 333,
  18685. bottom: 0.006
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(6 + 2 / 12, "feet"),
  18693. default: true
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(6 + 1 / 12, "feet"),
  18702. weight: math.unit(304, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/oliver/front.svg",
  18706. extra: 157 / 143,
  18707. bottom: 0.08
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(6 + 1 / 12, "feet"),
  18715. default: true
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(5 + 7 / 12, "feet"),
  18724. weight: math.unit(140, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/shane/front.svg",
  18728. extra: 304 / 289,
  18729. bottom: 0.005
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(5 + 7 / 12, "feet"),
  18737. default: true
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(5 + 9 / 12, "feet"),
  18746. weight: math.unit(178, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/shin/front.svg",
  18750. extra: 159 / 151,
  18751. bottom: 0.015
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(5 + 9 / 12, "feet"),
  18759. default: true
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(5 + 10 / 12, "feet"),
  18768. weight: math.unit(168, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/xerxes/front.svg",
  18772. extra: 282 / 260,
  18773. bottom: 0.045
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Normal",
  18780. height: math.unit(5 + 10 / 12, "feet"),
  18781. default: true
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(6 + 7 / 12, "feet"),
  18790. weight: math.unit(208, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/chaska/front.svg",
  18794. extra: 332 / 319,
  18795. bottom: 0.015
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(6 + 7 / 12, "feet"),
  18803. default: true
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(5 + 8 / 12, "feet"),
  18812. weight: math.unit(208, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/enuk/front.svg",
  18816. extra: 437 / 406,
  18817. bottom: 0.02
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(5 + 8 / 12, "feet"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(5 + 10 / 12, "feet"),
  18834. weight: math.unit(252, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/bruun/front.svg",
  18838. extra: 197 / 187,
  18839. bottom: 0.012
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(5 + 10 / 12, "feet"),
  18847. default: true
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18853. {
  18854. front: {
  18855. height: math.unit(6 + 10 / 12, "feet"),
  18856. weight: math.unit(255, "lb"),
  18857. name: "Front",
  18858. image: {
  18859. source: "./media/characters/alexeev/front.svg",
  18860. extra: 213 / 200,
  18861. bottom: 0.05
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(6 + 10 / 12, "feet"),
  18869. default: true
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18875. {
  18876. front: {
  18877. height: math.unit(2 + 8 / 12, "feet"),
  18878. weight: math.unit(22, "lb"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/evelyn/front.svg",
  18882. extra: 208 / 180
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(2 + 8 / 12, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(5 + 9 / 12, "feet"),
  18899. weight: math.unit(139, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/inca/front.svg",
  18903. extra: 294 / 291,
  18904. bottom: 0.03
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(5 + 9 / 12, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(5 + 1 / 12, "feet"),
  18921. weight: math.unit(84, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/magdalene/front.svg",
  18925. extra: 293 / 273
  18926. }
  18927. },
  18928. },
  18929. [
  18930. {
  18931. name: "Normal",
  18932. height: math.unit(5 + 1 / 12, "feet"),
  18933. default: true
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18939. {
  18940. front: {
  18941. height: math.unit(6 + 3 / 12, "feet"),
  18942. weight: math.unit(185, "lb"),
  18943. name: "Front",
  18944. image: {
  18945. source: "./media/characters/mera/front.svg",
  18946. extra: 291 / 277,
  18947. bottom: 0.03
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(6 + 3 / 12, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18961. {
  18962. front: {
  18963. height: math.unit(6 + 7 / 12, "feet"),
  18964. weight: math.unit(160, "lb"),
  18965. name: "Front",
  18966. image: {
  18967. source: "./media/characters/ceres/front.svg",
  18968. extra: 1023 / 950,
  18969. bottom: 0.027
  18970. }
  18971. },
  18972. back: {
  18973. height: math.unit(6 + 7 / 12, "feet"),
  18974. weight: math.unit(160, "lb"),
  18975. name: "Back",
  18976. image: {
  18977. source: "./media/characters/ceres/back.svg",
  18978. extra: 1023 / 950
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(6 + 7 / 12, "feet"),
  18986. default: true
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(5 + 10 / 12, "feet"),
  18995. weight: math.unit(150, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/kris/front.svg",
  18999. extra: 885 / 803,
  19000. bottom: 0.03
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(5 + 10 / 12, "feet"),
  19008. default: true
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19014. {
  19015. front: {
  19016. height: math.unit(7, "feet"),
  19017. weight: math.unit(120, "kg"),
  19018. name: "Front",
  19019. image: {
  19020. source: "./media/characters/taluthus/front.svg",
  19021. extra: 903 / 833,
  19022. bottom: 0.015
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(7, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Macro",
  19034. height: math.unit(300, "feet")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(5 + 9 / 12, "feet"),
  19043. weight: math.unit(145, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/dawn/front.svg",
  19047. extra: 2094 / 2016,
  19048. bottom: 0.025
  19049. }
  19050. },
  19051. back: {
  19052. height: math.unit(5 + 9 / 12, "feet"),
  19053. weight: math.unit(160, "lb"),
  19054. name: "Back",
  19055. image: {
  19056. source: "./media/characters/dawn/back.svg",
  19057. extra: 2112 / 2080,
  19058. bottom: 0.005
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(6 + 7 / 12, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19072. {
  19073. anthro: {
  19074. height: math.unit(8 + 3 / 12, "feet"),
  19075. weight: math.unit(450, "lb"),
  19076. name: "Anthro",
  19077. image: {
  19078. source: "./media/characters/arador/anthro.svg",
  19079. extra: 1835 / 1718,
  19080. bottom: 0.025
  19081. }
  19082. },
  19083. feral: {
  19084. height: math.unit(4, "feet"),
  19085. weight: math.unit(200, "lb"),
  19086. name: "Feral",
  19087. image: {
  19088. source: "./media/characters/arador/feral.svg",
  19089. extra: 1683 / 1514,
  19090. bottom: 0.07
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(8 + 3 / 12, "feet")
  19098. },
  19099. {
  19100. name: "Macro",
  19101. height: math.unit(82.5, "feet"),
  19102. default: true
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(5 + 10 / 12, "feet"),
  19111. weight: math.unit(125, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/dharsi/front.svg",
  19115. extra: 716 / 630,
  19116. bottom: 0.035
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Nano",
  19123. height: math.unit(100, "nm")
  19124. },
  19125. {
  19126. name: "Micro",
  19127. height: math.unit(2, "inches")
  19128. },
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(5 + 10 / 12, "feet"),
  19132. default: true
  19133. },
  19134. {
  19135. name: "Macro",
  19136. height: math.unit(1000, "feet")
  19137. },
  19138. {
  19139. name: "Megamacro",
  19140. height: math.unit(10, "miles")
  19141. },
  19142. {
  19143. name: "Gigamacro",
  19144. height: math.unit(3000, "miles")
  19145. },
  19146. {
  19147. name: "Teramacro",
  19148. height: math.unit(500000, "miles")
  19149. },
  19150. {
  19151. name: "Teramacro+",
  19152. height: math.unit(30, "galaxies")
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(6, "feet"),
  19161. weight: math.unit(150, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/deathy/front.svg",
  19165. extra: 1552 / 1463,
  19166. bottom: 0.025
  19167. }
  19168. },
  19169. side: {
  19170. height: math.unit(6, "feet"),
  19171. weight: math.unit(150, "lb"),
  19172. name: "Side",
  19173. image: {
  19174. source: "./media/characters/deathy/side.svg",
  19175. extra: 1604 / 1455,
  19176. bottom: 0.025
  19177. }
  19178. },
  19179. back: {
  19180. height: math.unit(6, "feet"),
  19181. weight: math.unit(150, "lb"),
  19182. name: "Back",
  19183. image: {
  19184. source: "./media/characters/deathy/back.svg",
  19185. extra: 1580 / 1463,
  19186. bottom: 0.005
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Micro",
  19193. height: math.unit(5, "millimeters")
  19194. },
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(6 + 5 / 12, "feet"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19204. {
  19205. front: {
  19206. height: math.unit(16, "feet"),
  19207. weight: math.unit(4000, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/juniper/front.svg",
  19211. bottom: 0.04
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(16, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19225. {
  19226. front: {
  19227. height: math.unit(6, "feet"),
  19228. weight: math.unit(150, "lb"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/hipster/front.svg",
  19232. extra: 1312 / 1209,
  19233. bottom: 0.025
  19234. }
  19235. },
  19236. back: {
  19237. height: math.unit(6, "feet"),
  19238. weight: math.unit(150, "lb"),
  19239. name: "Back",
  19240. image: {
  19241. source: "./media/characters/hipster/back.svg",
  19242. extra: 1281 / 1196,
  19243. bottom: 0.01
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Micro",
  19250. height: math.unit(1, "mm")
  19251. },
  19252. {
  19253. name: "Normal",
  19254. height: math.unit(4, "inches"),
  19255. default: true
  19256. },
  19257. {
  19258. name: "Macro",
  19259. height: math.unit(500, "feet")
  19260. },
  19261. {
  19262. name: "Megamacro",
  19263. height: math.unit(1000, "miles")
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(6, "feet"),
  19272. weight: math.unit(150, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/tendirmuldr/front.svg",
  19276. extra: 1878 / 1772,
  19277. bottom: 0.015
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Megamacro",
  19284. height: math.unit(1500, "miles"),
  19285. default: true
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19291. {
  19292. front: {
  19293. height: math.unit(14, "feet"),
  19294. weight: math.unit(12000, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/mort/front.svg",
  19298. extra: 365 / 318,
  19299. bottom: 0.01
  19300. }
  19301. },
  19302. side: {
  19303. height: math.unit(14, "feet"),
  19304. weight: math.unit(12000, "lb"),
  19305. name: "Side",
  19306. image: {
  19307. source: "./media/characters/mort/side.svg",
  19308. extra: 365 / 318,
  19309. bottom: 0.052
  19310. },
  19311. default: true
  19312. },
  19313. back: {
  19314. height: math.unit(14, "feet"),
  19315. weight: math.unit(12000, "lb"),
  19316. name: "Back",
  19317. image: {
  19318. source: "./media/characters/mort/back.svg",
  19319. extra: 371 / 332,
  19320. bottom: 0.18
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(14, "feet"),
  19328. default: true
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19334. {
  19335. front: {
  19336. height: math.unit(8, "feet"),
  19337. weight: math.unit(1, "ton"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/lycoa/front.svg",
  19341. extra: 1875 / 1789,
  19342. bottom: 0.022
  19343. }
  19344. },
  19345. back: {
  19346. height: math.unit(8, "feet"),
  19347. weight: math.unit(1, "ton"),
  19348. name: "Back",
  19349. image: {
  19350. source: "./media/characters/lycoa/back.svg",
  19351. extra: 1835 / 1781,
  19352. bottom: 0.03
  19353. }
  19354. },
  19355. head: {
  19356. height: math.unit(2.1, "feet"),
  19357. name: "Head",
  19358. image: {
  19359. source: "./media/characters/lycoa/head.svg"
  19360. }
  19361. },
  19362. tailmaw: {
  19363. height: math.unit(1.9, "feet"),
  19364. name: "Tailmaw",
  19365. image: {
  19366. source: "./media/characters/lycoa/tailmaw.svg"
  19367. }
  19368. },
  19369. tentacles: {
  19370. height: math.unit(2.1, "feet"),
  19371. name: "Tentacles",
  19372. image: {
  19373. source: "./media/characters/lycoa/tentacles.svg"
  19374. }
  19375. },
  19376. dick: {
  19377. height: math.unit(1.73, "feet"),
  19378. name: "Dick",
  19379. image: {
  19380. source: "./media/characters/lycoa/dick.svg"
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(8, "feet"),
  19388. default: true
  19389. },
  19390. {
  19391. name: "Macro",
  19392. height: math.unit(30, "feet")
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19398. {
  19399. front: {
  19400. height: math.unit(4 + 2 / 12, "feet"),
  19401. weight: math.unit(70, "lb"),
  19402. name: "Front",
  19403. image: {
  19404. source: "./media/characters/naldara/front.svg",
  19405. extra: 841 / 720,
  19406. bottom: 0.04
  19407. }
  19408. },
  19409. naga: {
  19410. height: math.unit(23, "feet"),
  19411. weight: math.unit(15000, "kg"),
  19412. name: "Naga",
  19413. image: {
  19414. source: "./media/characters/naldara/naga.svg",
  19415. extra: 3290/2959,
  19416. bottom: 124/3432
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(4 + 2 / 12, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19430. {
  19431. front: {
  19432. height: math.unit(13 + 7 / 12, "feet"),
  19433. weight: math.unit(1500, "lb"),
  19434. name: "Front",
  19435. image: {
  19436. source: "./media/characters/briar/front.svg",
  19437. extra: 626 / 596,
  19438. bottom: 0.08
  19439. }
  19440. },
  19441. },
  19442. [
  19443. {
  19444. name: "Normal",
  19445. height: math.unit(13 + 7 / 12, "feet"),
  19446. default: true
  19447. },
  19448. ]
  19449. ))
  19450. characterMakers.push(() => makeCharacter(
  19451. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19452. {
  19453. side: {
  19454. height: math.unit(10, "feet"),
  19455. weight: math.unit(500, "lb"),
  19456. name: "Side",
  19457. image: {
  19458. source: "./media/characters/vanguard/side.svg",
  19459. extra: 502 / 425,
  19460. bottom: 0.087
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(10, "feet"),
  19468. default: true
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19474. {
  19475. front: {
  19476. height: math.unit(7.5, "feet"),
  19477. weight: math.unit(2, "lb"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/artemis/front.svg",
  19481. extra: 1192 / 1075,
  19482. bottom: 0.07
  19483. }
  19484. },
  19485. frontNsfw: {
  19486. height: math.unit(7.5, "feet"),
  19487. weight: math.unit(2, "lb"),
  19488. name: "Front (NSFW)",
  19489. image: {
  19490. source: "./media/characters/artemis/front-nsfw.svg",
  19491. extra: 1192 / 1075,
  19492. bottom: 0.07
  19493. }
  19494. },
  19495. frontNsfwer: {
  19496. height: math.unit(7.5, "feet"),
  19497. weight: math.unit(2, "lb"),
  19498. name: "Front (NSFW-er)",
  19499. image: {
  19500. source: "./media/characters/artemis/front-nsfwer.svg",
  19501. extra: 1192 / 1075,
  19502. bottom: 0.07
  19503. }
  19504. },
  19505. side: {
  19506. height: math.unit(7.5, "feet"),
  19507. weight: math.unit(2, "lb"),
  19508. name: "Side",
  19509. image: {
  19510. source: "./media/characters/artemis/side.svg",
  19511. extra: 1192 / 1075,
  19512. bottom: 0.07
  19513. }
  19514. },
  19515. sideNsfw: {
  19516. height: math.unit(7.5, "feet"),
  19517. weight: math.unit(2, "lb"),
  19518. name: "Side (NSFW)",
  19519. image: {
  19520. source: "./media/characters/artemis/side-nsfw.svg",
  19521. extra: 1192 / 1075,
  19522. bottom: 0.07
  19523. }
  19524. },
  19525. sideNsfwer: {
  19526. height: math.unit(7.5, "feet"),
  19527. weight: math.unit(2, "lb"),
  19528. name: "Side (NSFW-er)",
  19529. image: {
  19530. source: "./media/characters/artemis/side-nsfwer.svg",
  19531. extra: 1192 / 1075,
  19532. bottom: 0.07
  19533. }
  19534. },
  19535. maw: {
  19536. height: math.unit(1.1, "feet"),
  19537. name: "Maw",
  19538. image: {
  19539. source: "./media/characters/artemis/maw.svg"
  19540. }
  19541. },
  19542. stomach: {
  19543. height: math.unit(0.95, "feet"),
  19544. name: "Stomach",
  19545. image: {
  19546. source: "./media/characters/artemis/stomach.svg"
  19547. }
  19548. },
  19549. dickCanine: {
  19550. height: math.unit(1, "feet"),
  19551. name: "Dick (Canine)",
  19552. image: {
  19553. source: "./media/characters/artemis/dick-canine.svg"
  19554. }
  19555. },
  19556. dickEquine: {
  19557. height: math.unit(0.85, "feet"),
  19558. name: "Dick (Equine)",
  19559. image: {
  19560. source: "./media/characters/artemis/dick-equine.svg"
  19561. }
  19562. },
  19563. dickExotic: {
  19564. height: math.unit(0.85, "feet"),
  19565. name: "Dick (Exotic)",
  19566. image: {
  19567. source: "./media/characters/artemis/dick-exotic.svg"
  19568. }
  19569. },
  19570. },
  19571. [
  19572. {
  19573. name: "Normal",
  19574. height: math.unit(7.5, "feet"),
  19575. default: true
  19576. },
  19577. {
  19578. name: "Enlarged",
  19579. height: math.unit(12, "feet")
  19580. },
  19581. ]
  19582. ))
  19583. characterMakers.push(() => makeCharacter(
  19584. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19585. {
  19586. front: {
  19587. height: math.unit(5 + 3 / 12, "feet"),
  19588. weight: math.unit(160, "lb"),
  19589. name: "Front",
  19590. image: {
  19591. source: "./media/characters/kira/front.svg",
  19592. extra: 906 / 786,
  19593. bottom: 0.01
  19594. }
  19595. },
  19596. back: {
  19597. height: math.unit(5 + 3 / 12, "feet"),
  19598. weight: math.unit(160, "lb"),
  19599. name: "Back",
  19600. image: {
  19601. source: "./media/characters/kira/back.svg",
  19602. extra: 882 / 757,
  19603. bottom: 0.005
  19604. }
  19605. },
  19606. frontDressed: {
  19607. height: math.unit(5 + 3 / 12, "feet"),
  19608. weight: math.unit(160, "lb"),
  19609. name: "Front (Dressed)",
  19610. image: {
  19611. source: "./media/characters/kira/front-dressed.svg",
  19612. extra: 906 / 786,
  19613. bottom: 0.01
  19614. }
  19615. },
  19616. beans: {
  19617. height: math.unit(0.92, "feet"),
  19618. name: "Beans",
  19619. image: {
  19620. source: "./media/characters/kira/beans.svg"
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(5 + 3 / 12, "feet"),
  19628. default: true
  19629. },
  19630. ]
  19631. ))
  19632. characterMakers.push(() => makeCharacter(
  19633. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19634. {
  19635. front: {
  19636. height: math.unit(5 + 4 / 12, "feet"),
  19637. weight: math.unit(145, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/scramble/front.svg",
  19641. extra: 763 / 727,
  19642. bottom: 0.05
  19643. }
  19644. },
  19645. back: {
  19646. height: math.unit(5 + 4 / 12, "feet"),
  19647. weight: math.unit(145, "lb"),
  19648. name: "Back",
  19649. image: {
  19650. source: "./media/characters/scramble/back.svg",
  19651. extra: 826 / 737,
  19652. bottom: 0.002
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(5 + 4 / 12, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19666. {
  19667. side: {
  19668. height: math.unit(6 + 2 / 12, "feet"),
  19669. weight: math.unit(190, "lb"),
  19670. name: "Side",
  19671. image: {
  19672. source: "./media/characters/biscuit/side.svg",
  19673. extra: 858 / 791,
  19674. bottom: 0.044
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(6 + 2 / 12, "feet"),
  19682. default: true
  19683. },
  19684. ]
  19685. ))
  19686. characterMakers.push(() => makeCharacter(
  19687. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19688. {
  19689. front: {
  19690. height: math.unit(5 + 2 / 12, "feet"),
  19691. weight: math.unit(120, "lb"),
  19692. name: "Front",
  19693. image: {
  19694. source: "./media/characters/poffin/front.svg",
  19695. extra: 786 / 680,
  19696. bottom: 0.005
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(5 + 2 / 12, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(6 + 3 / 12, "feet"),
  19713. weight: math.unit(519, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/dhari/front.svg",
  19717. extra: 1048 / 946,
  19718. bottom: 0.015
  19719. }
  19720. },
  19721. back: {
  19722. height: math.unit(6 + 3 / 12, "feet"),
  19723. weight: math.unit(519, "lb"),
  19724. name: "Back",
  19725. image: {
  19726. source: "./media/characters/dhari/back.svg",
  19727. extra: 1048 / 931,
  19728. bottom: 0.005
  19729. }
  19730. },
  19731. frontDressed: {
  19732. height: math.unit(6 + 3 / 12, "feet"),
  19733. weight: math.unit(519, "lb"),
  19734. name: "Front (Dressed)",
  19735. image: {
  19736. source: "./media/characters/dhari/front-dressed.svg",
  19737. extra: 1713 / 1546,
  19738. bottom: 0.02
  19739. }
  19740. },
  19741. backDressed: {
  19742. height: math.unit(6 + 3 / 12, "feet"),
  19743. weight: math.unit(519, "lb"),
  19744. name: "Back (Dressed)",
  19745. image: {
  19746. source: "./media/characters/dhari/back-dressed.svg",
  19747. extra: 1699 / 1537,
  19748. bottom: 0.01
  19749. }
  19750. },
  19751. maw: {
  19752. height: math.unit(0.95, "feet"),
  19753. name: "Maw",
  19754. image: {
  19755. source: "./media/characters/dhari/maw.svg"
  19756. }
  19757. },
  19758. wereFront: {
  19759. height: math.unit(12 + 8 / 12, "feet"),
  19760. weight: math.unit(4000, "lb"),
  19761. name: "Front (Were)",
  19762. image: {
  19763. source: "./media/characters/dhari/were-front.svg",
  19764. extra: 1065 / 969,
  19765. bottom: 0.015
  19766. }
  19767. },
  19768. wereBack: {
  19769. height: math.unit(12 + 8 / 12, "feet"),
  19770. weight: math.unit(4000, "lb"),
  19771. name: "Back (Were)",
  19772. image: {
  19773. source: "./media/characters/dhari/were-back.svg",
  19774. extra: 1065 / 969,
  19775. bottom: 0.012
  19776. }
  19777. },
  19778. wereMaw: {
  19779. height: math.unit(0.625, "meters"),
  19780. name: "Maw (Were)",
  19781. image: {
  19782. source: "./media/characters/dhari/were-maw.svg"
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(6 + 3 / 12, "feet"),
  19790. default: true
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19796. {
  19797. anthro: {
  19798. height: math.unit(5 + 7 / 12, "feet"),
  19799. weight: math.unit(175, "lb"),
  19800. name: "Anthro",
  19801. image: {
  19802. source: "./media/characters/rena-dyne/anthro.svg",
  19803. extra: 1849 / 1785,
  19804. bottom: 0.005
  19805. }
  19806. },
  19807. taur: {
  19808. height: math.unit(15 + 6 / 12, "feet"),
  19809. weight: math.unit(8000, "lb"),
  19810. name: "Taur",
  19811. image: {
  19812. source: "./media/characters/rena-dyne/taur.svg",
  19813. extra: 2315 / 2234,
  19814. bottom: 0.033
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(5 + 7 / 12, "feet"),
  19822. default: true
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19828. {
  19829. front: {
  19830. height: math.unit(8, "feet"),
  19831. weight: math.unit(600, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/weremeep/front.svg",
  19835. extra: 967 / 862,
  19836. bottom: 0.01
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(8, "feet"),
  19844. default: true
  19845. },
  19846. {
  19847. name: "Lorg",
  19848. height: math.unit(12, "feet")
  19849. },
  19850. {
  19851. name: "Oh Lawd She Comin'",
  19852. height: math.unit(20, "feet")
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19858. {
  19859. front: {
  19860. height: math.unit(4, "feet"),
  19861. weight: math.unit(90, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/reza/front.svg",
  19865. extra: 1183 / 1111,
  19866. bottom: 0.017
  19867. }
  19868. },
  19869. back: {
  19870. height: math.unit(4, "feet"),
  19871. weight: math.unit(90, "lb"),
  19872. name: "Back",
  19873. image: {
  19874. source: "./media/characters/reza/back.svg",
  19875. extra: 1183 / 1111,
  19876. bottom: 0.01
  19877. }
  19878. },
  19879. drake: {
  19880. height: math.unit(30, "feet"),
  19881. weight: math.unit(246960, "lb"),
  19882. name: "Drake",
  19883. image: {
  19884. source: "./media/characters/reza/drake.svg",
  19885. extra: 2350 / 2024,
  19886. bottom: 60.7 / 2403
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Normal",
  19893. height: math.unit(4, "feet"),
  19894. default: true
  19895. },
  19896. ]
  19897. ))
  19898. characterMakers.push(() => makeCharacter(
  19899. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19900. {
  19901. side: {
  19902. height: math.unit(15, "feet"),
  19903. weight: math.unit(14, "tons"),
  19904. name: "Side",
  19905. image: {
  19906. source: "./media/characters/athea/side.svg",
  19907. extra: 960 / 540,
  19908. bottom: 0.003
  19909. }
  19910. },
  19911. sitting: {
  19912. height: math.unit(6 * 2.85, "feet"),
  19913. weight: math.unit(14, "tons"),
  19914. name: "Sitting",
  19915. image: {
  19916. source: "./media/characters/athea/sitting.svg",
  19917. extra: 621 / 581,
  19918. bottom: 0.075
  19919. }
  19920. },
  19921. maw: {
  19922. height: math.unit(7.59498031496063, "feet"),
  19923. name: "Maw",
  19924. image: {
  19925. source: "./media/characters/athea/maw.svg"
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Lap Cat",
  19932. height: math.unit(2.5, "feet")
  19933. },
  19934. {
  19935. name: "Minimacro",
  19936. height: math.unit(15, "feet"),
  19937. default: true
  19938. },
  19939. {
  19940. name: "Macro",
  19941. height: math.unit(120, "feet")
  19942. },
  19943. {
  19944. name: "Macro+",
  19945. height: math.unit(640, "feet")
  19946. },
  19947. {
  19948. name: "Colossus",
  19949. height: math.unit(2.2, "miles")
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(8 + 8 / 12, "feet"),
  19958. weight: math.unit(130, "kg"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/seroko/front.svg",
  19962. extra: 1385 / 1280,
  19963. bottom: 0.025
  19964. }
  19965. },
  19966. back: {
  19967. height: math.unit(8 + 8 / 12, "feet"),
  19968. weight: math.unit(130, "kg"),
  19969. name: "Back",
  19970. image: {
  19971. source: "./media/characters/seroko/back.svg",
  19972. extra: 1369 / 1238,
  19973. bottom: 0.018
  19974. }
  19975. },
  19976. frontDressed: {
  19977. height: math.unit(8 + 8 / 12, "feet"),
  19978. weight: math.unit(130, "kg"),
  19979. name: "Front (Dressed)",
  19980. image: {
  19981. source: "./media/characters/seroko/front-dressed.svg",
  19982. extra: 1366 / 1275,
  19983. bottom: 0.03
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(8 + 8 / 12, "feet"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(5.5, "feet"),
  20000. weight: math.unit(160, "lb"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/quatzi/front.svg",
  20004. extra: 2346 / 2242,
  20005. bottom: 0.015
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(5.5, "feet"),
  20013. default: true
  20014. },
  20015. {
  20016. name: "Big",
  20017. height: math.unit(7.7, "feet")
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20023. {
  20024. front: {
  20025. height: math.unit(5 + 11 / 12, "feet"),
  20026. weight: math.unit(180, "lb"),
  20027. name: "Front",
  20028. image: {
  20029. source: "./media/characters/sen/front.svg",
  20030. extra: 1321 / 1254,
  20031. bottom: 0.015
  20032. }
  20033. },
  20034. side: {
  20035. height: math.unit(5 + 11 / 12, "feet"),
  20036. weight: math.unit(180, "lb"),
  20037. name: "Side",
  20038. image: {
  20039. source: "./media/characters/sen/side.svg",
  20040. extra: 1321 / 1254,
  20041. bottom: 0.007
  20042. }
  20043. },
  20044. back: {
  20045. height: math.unit(5 + 11 / 12, "feet"),
  20046. weight: math.unit(180, "lb"),
  20047. name: "Back",
  20048. image: {
  20049. source: "./media/characters/sen/back.svg",
  20050. extra: 1321 / 1254
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(5 + 11 / 12, "feet"),
  20058. default: true
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20064. {
  20065. front: {
  20066. height: math.unit(166.6, "cm"),
  20067. weight: math.unit(66.6, "kg"),
  20068. name: "Front",
  20069. image: {
  20070. source: "./media/characters/fruity/front.svg",
  20071. extra: 1510 / 1386,
  20072. bottom: 0.04
  20073. }
  20074. },
  20075. back: {
  20076. height: math.unit(166.6, "cm"),
  20077. weight: math.unit(66.6, "lb"),
  20078. name: "Back",
  20079. image: {
  20080. source: "./media/characters/fruity/back.svg",
  20081. extra: 1563 / 1435,
  20082. bottom: 0.005
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(166.6, "cm"),
  20090. default: true
  20091. },
  20092. {
  20093. name: "Demonic",
  20094. height: math.unit(166.6, "feet")
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20100. {
  20101. side: {
  20102. height: math.unit(10, "feet"),
  20103. weight: math.unit(500, "lb"),
  20104. name: "Side",
  20105. image: {
  20106. source: "./media/characters/zost/side.svg",
  20107. extra: 966 / 880,
  20108. bottom: 0.075
  20109. }
  20110. },
  20111. mawFront: {
  20112. height: math.unit(1.08, "meters"),
  20113. name: "Maw (Front)",
  20114. image: {
  20115. source: "./media/characters/zost/maw-front.svg"
  20116. }
  20117. },
  20118. mawSide: {
  20119. height: math.unit(2.66, "feet"),
  20120. name: "Maw (Side)",
  20121. image: {
  20122. source: "./media/characters/zost/maw-side.svg"
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(10, "feet"),
  20130. default: true
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(5 + 4 / 12, "feet"),
  20139. weight: math.unit(120, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/luci/front.svg",
  20143. extra: 1985 / 1884,
  20144. bottom: 0.04
  20145. }
  20146. },
  20147. back: {
  20148. height: math.unit(5 + 4 / 12, "feet"),
  20149. weight: math.unit(120, "lb"),
  20150. name: "Back",
  20151. image: {
  20152. source: "./media/characters/luci/back.svg",
  20153. extra: 1892 / 1791,
  20154. bottom: 0.002
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(5 + 4 / 12, "feet"),
  20162. default: true
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(1500, "feet"),
  20171. weight: math.unit(3.8e6, "tons"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/2th/front.svg",
  20175. extra: 3489 / 3350,
  20176. bottom: 0.1
  20177. }
  20178. },
  20179. foot: {
  20180. height: math.unit(461, "feet"),
  20181. name: "Foot",
  20182. image: {
  20183. source: "./media/characters/2th/foot.svg"
  20184. }
  20185. },
  20186. },
  20187. [
  20188. {
  20189. name: "\"Micro\"",
  20190. height: math.unit(15 + 7 / 12, "feet")
  20191. },
  20192. {
  20193. name: "Normal",
  20194. height: math.unit(1500, "feet"),
  20195. default: true
  20196. },
  20197. {
  20198. name: "Macro",
  20199. height: math.unit(5000, "feet")
  20200. },
  20201. {
  20202. name: "Megamacro",
  20203. height: math.unit(15, "miles")
  20204. },
  20205. {
  20206. name: "Gigamacro",
  20207. height: math.unit(4000, "miles")
  20208. },
  20209. {
  20210. name: "Galactic",
  20211. height: math.unit(50, "AU")
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(5 + 6 / 12, "feet"),
  20220. weight: math.unit(220, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/amethyst/front.svg",
  20224. extra: 2078 / 2040,
  20225. bottom: 0.045
  20226. }
  20227. },
  20228. back: {
  20229. height: math.unit(5 + 6 / 12, "feet"),
  20230. weight: math.unit(220, "lb"),
  20231. name: "Back",
  20232. image: {
  20233. source: "./media/characters/amethyst/back.svg",
  20234. extra: 2021 / 1989,
  20235. bottom: 0.02
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(5 + 6 / 12, "feet"),
  20243. default: true
  20244. },
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20249. {
  20250. front: {
  20251. height: math.unit(4 + 11 / 12, "feet"),
  20252. weight: math.unit(120, "lb"),
  20253. name: "Front",
  20254. image: {
  20255. source: "./media/characters/yumi-akiyama/front.svg",
  20256. extra: 1327 / 1235,
  20257. bottom: 0.02
  20258. }
  20259. },
  20260. back: {
  20261. height: math.unit(4 + 11 / 12, "feet"),
  20262. weight: math.unit(120, "lb"),
  20263. name: "Back",
  20264. image: {
  20265. source: "./media/characters/yumi-akiyama/back.svg",
  20266. extra: 1287 / 1245,
  20267. bottom: 0.002
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Galactic",
  20274. height: math.unit(50, "galaxies"),
  20275. default: true
  20276. },
  20277. {
  20278. name: "Universal",
  20279. height: math.unit(100, "universes")
  20280. },
  20281. ]
  20282. ))
  20283. characterMakers.push(() => makeCharacter(
  20284. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20285. {
  20286. front: {
  20287. height: math.unit(8, "feet"),
  20288. weight: math.unit(500, "lb"),
  20289. name: "Front",
  20290. image: {
  20291. source: "./media/characters/rifter-yrmori/front.svg",
  20292. extra: 1180 / 1125,
  20293. bottom: 0.02
  20294. }
  20295. },
  20296. back: {
  20297. height: math.unit(8, "feet"),
  20298. weight: math.unit(500, "lb"),
  20299. name: "Back",
  20300. image: {
  20301. source: "./media/characters/rifter-yrmori/back.svg",
  20302. extra: 1190 / 1145,
  20303. bottom: 0.001
  20304. }
  20305. },
  20306. wings: {
  20307. height: math.unit(7.75, "feet"),
  20308. weight: math.unit(500, "lb"),
  20309. name: "Wings",
  20310. image: {
  20311. source: "./media/characters/rifter-yrmori/wings.svg",
  20312. extra: 1357 / 1285
  20313. }
  20314. },
  20315. maw: {
  20316. height: math.unit(0.8, "feet"),
  20317. name: "Maw",
  20318. image: {
  20319. source: "./media/characters/rifter-yrmori/maw.svg"
  20320. }
  20321. },
  20322. mawfront: {
  20323. height: math.unit(1.45, "feet"),
  20324. name: "Maw (Front)",
  20325. image: {
  20326. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(8, "feet"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Macro",
  20338. height: math.unit(42, "meters")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20344. {
  20345. were: {
  20346. height: math.unit(25 + 6 / 12, "feet"),
  20347. weight: math.unit(10000, "lb"),
  20348. name: "Were",
  20349. image: {
  20350. source: "./media/characters/tahajin/were.svg",
  20351. extra: 801 / 770,
  20352. bottom: 0.042
  20353. }
  20354. },
  20355. aquatic: {
  20356. height: math.unit(6 + 4 / 12, "feet"),
  20357. weight: math.unit(160, "lb"),
  20358. name: "Aquatic",
  20359. image: {
  20360. source: "./media/characters/tahajin/aquatic.svg",
  20361. extra: 572 / 542,
  20362. bottom: 0.04
  20363. }
  20364. },
  20365. chow: {
  20366. height: math.unit(8 + 11 / 12, "feet"),
  20367. weight: math.unit(450, "lb"),
  20368. name: "Chow",
  20369. image: {
  20370. source: "./media/characters/tahajin/chow.svg",
  20371. extra: 660 / 640,
  20372. bottom: 0.015
  20373. }
  20374. },
  20375. demiNaga: {
  20376. height: math.unit(6 + 8 / 12, "feet"),
  20377. weight: math.unit(300, "lb"),
  20378. name: "Demi Naga",
  20379. image: {
  20380. source: "./media/characters/tahajin/demi-naga.svg",
  20381. extra: 643 / 615,
  20382. bottom: 0.1
  20383. }
  20384. },
  20385. data: {
  20386. height: math.unit(5, "inches"),
  20387. weight: math.unit(0.1, "lb"),
  20388. name: "Data",
  20389. image: {
  20390. source: "./media/characters/tahajin/data.svg"
  20391. }
  20392. },
  20393. fluu: {
  20394. height: math.unit(5 + 7 / 12, "feet"),
  20395. weight: math.unit(140, "lb"),
  20396. name: "Fluu",
  20397. image: {
  20398. source: "./media/characters/tahajin/fluu.svg",
  20399. extra: 628 / 592,
  20400. bottom: 0.02
  20401. }
  20402. },
  20403. starWarrior: {
  20404. height: math.unit(4 + 5 / 12, "feet"),
  20405. weight: math.unit(50, "lb"),
  20406. name: "Star Warrior",
  20407. image: {
  20408. source: "./media/characters/tahajin/star-warrior.svg"
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(25 + 6 / 12, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(8, "feet"),
  20425. weight: math.unit(350, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/gabira/front.svg",
  20429. extra: 608 / 580,
  20430. bottom: 0.03
  20431. }
  20432. },
  20433. back: {
  20434. height: math.unit(8, "feet"),
  20435. weight: math.unit(350, "lb"),
  20436. name: "Back",
  20437. image: {
  20438. source: "./media/characters/gabira/back.svg",
  20439. extra: 608 / 580,
  20440. bottom: 0.03
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(8, "feet"),
  20448. default: true
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(5 + 3 / 12, "feet"),
  20457. weight: math.unit(137, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/sasha-katraine/front.svg",
  20461. bottom: 0.045
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Micro",
  20468. height: math.unit(5, "inches")
  20469. },
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(5 + 3 / 12, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20479. {
  20480. side: {
  20481. height: math.unit(4, "inches"),
  20482. weight: math.unit(200, "grams"),
  20483. name: "Side",
  20484. image: {
  20485. source: "./media/characters/der/side.svg",
  20486. extra: 719 / 400,
  20487. bottom: 30.6 / 749.9187
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Micro",
  20494. height: math.unit(4, "inches"),
  20495. default: true
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20501. {
  20502. side: {
  20503. height: math.unit(30, "meters"),
  20504. weight: math.unit(700, "tonnes"),
  20505. name: "Side",
  20506. image: {
  20507. source: "./media/characters/fixerdragon/side.svg",
  20508. extra: (1293.0514 - 116.03) / 1106.86,
  20509. bottom: 116.03 / 1293.0514
  20510. }
  20511. },
  20512. },
  20513. [
  20514. {
  20515. name: "Planck",
  20516. height: math.unit(1.6e-35, "meters")
  20517. },
  20518. {
  20519. name: "Micro",
  20520. height: math.unit(0.4, "meters")
  20521. },
  20522. {
  20523. name: "Normal",
  20524. height: math.unit(30, "meters"),
  20525. default: true
  20526. },
  20527. {
  20528. name: "Megamacro",
  20529. height: math.unit(1.2, "megameters")
  20530. },
  20531. {
  20532. name: "Teramacro",
  20533. height: math.unit(130, "terameters")
  20534. },
  20535. {
  20536. name: "Yottamacro",
  20537. height: math.unit(6200, "yottameters")
  20538. },
  20539. ]
  20540. ));
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20543. {
  20544. front: {
  20545. height: math.unit(8, "feet"),
  20546. weight: math.unit(250, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/kite/front.svg",
  20550. extra: 2796 / 2659,
  20551. bottom: 0.002
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(8, "feet"),
  20559. default: true
  20560. },
  20561. {
  20562. name: "Macro",
  20563. height: math.unit(360, "feet")
  20564. },
  20565. {
  20566. name: "Megamacro",
  20567. height: math.unit(1500, "feet")
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(5 + 10 / 12, "feet"),
  20576. weight: math.unit(150, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/poojawa-vynar/front.svg",
  20580. extra: (1506.1547 - 55) / 1356.6,
  20581. bottom: 55 / 1506.1547
  20582. }
  20583. },
  20584. frontTailless: {
  20585. height: math.unit(5 + 10 / 12, "feet"),
  20586. weight: math.unit(150, "lb"),
  20587. name: "Front (Tailless)",
  20588. image: {
  20589. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20590. extra: (1506.1547 - 55) / 1356.6,
  20591. bottom: 55 / 1506.1547
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(5 + 10 / 12, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20605. {
  20606. front: {
  20607. height: math.unit(293, "meters"),
  20608. weight: math.unit(70400, "tons"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/violette/front.svg",
  20612. extra: 1227 / 1180,
  20613. bottom: 0.005
  20614. }
  20615. },
  20616. back: {
  20617. height: math.unit(293, "meters"),
  20618. weight: math.unit(70400, "tons"),
  20619. name: "Back",
  20620. image: {
  20621. source: "./media/characters/violette/back.svg",
  20622. extra: 1227 / 1180,
  20623. bottom: 0.005
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Macro",
  20630. height: math.unit(293, "meters"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(1050, "feet"),
  20640. weight: math.unit(200000, "tons"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/alessandra/front.svg",
  20644. extra: 960 / 912,
  20645. bottom: 0.06
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Macro",
  20652. height: math.unit(1050, "feet")
  20653. },
  20654. {
  20655. name: "Macro+",
  20656. height: math.unit(900, "meters"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(5, "feet"),
  20666. weight: math.unit(187, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/person/front.svg",
  20670. extra: 3087 / 2945,
  20671. bottom: 91 / 3181
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Micro",
  20678. height: math.unit(3, "inches")
  20679. },
  20680. {
  20681. name: "Normal",
  20682. height: math.unit(5, "feet"),
  20683. default: true
  20684. },
  20685. {
  20686. name: "Macro",
  20687. height: math.unit(90, "feet")
  20688. },
  20689. {
  20690. name: "Max Size",
  20691. height: math.unit(280, "feet")
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(4.5, "meters"),
  20700. weight: math.unit(3200, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/ty/front.svg",
  20704. extra: 1038 / 960,
  20705. bottom: 31.156 / 1068
  20706. }
  20707. },
  20708. back: {
  20709. height: math.unit(4.5, "meters"),
  20710. weight: math.unit(3200, "lb"),
  20711. name: "Back",
  20712. image: {
  20713. source: "./media/characters/ty/back.svg",
  20714. extra: 1044 / 966,
  20715. bottom: 7.48 / 1049
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Normal",
  20722. height: math.unit(4.5, "meters"),
  20723. default: true
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20729. {
  20730. front: {
  20731. height: math.unit(5 + 4 / 12, "feet"),
  20732. weight: math.unit(115, "lb"),
  20733. name: "Front",
  20734. image: {
  20735. source: "./media/characters/rocky/front.svg",
  20736. extra: 1012 / 975,
  20737. bottom: 54 / 1066
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Normal",
  20744. height: math.unit(5 + 4 / 12, "feet"),
  20745. default: true
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20751. {
  20752. upright: {
  20753. height: math.unit(6, "meters"),
  20754. weight: math.unit(4000, "kg"),
  20755. name: "Upright",
  20756. image: {
  20757. source: "./media/characters/ruin/upright.svg",
  20758. extra: 668 / 661,
  20759. bottom: 42 / 799.8396
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(6, "meters"),
  20767. default: true
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20773. {
  20774. front: {
  20775. height: math.unit(5, "feet"),
  20776. weight: math.unit(106, "lb"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/robin/front.svg",
  20780. extra: 862 / 799,
  20781. bottom: 42.4 / 914.8856
  20782. }
  20783. },
  20784. },
  20785. [
  20786. {
  20787. name: "Normal",
  20788. height: math.unit(5, "feet"),
  20789. default: true
  20790. },
  20791. ]
  20792. ))
  20793. characterMakers.push(() => makeCharacter(
  20794. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20795. {
  20796. side: {
  20797. height: math.unit(3, "feet"),
  20798. weight: math.unit(225, "lb"),
  20799. name: "Side",
  20800. image: {
  20801. source: "./media/characters/saian/side.svg",
  20802. extra: 566 / 356,
  20803. bottom: 79.7 / 643
  20804. }
  20805. },
  20806. maw: {
  20807. height: math.unit(2.85, "feet"),
  20808. name: "Maw",
  20809. image: {
  20810. source: "./media/characters/saian/maw.svg"
  20811. }
  20812. },
  20813. },
  20814. [
  20815. {
  20816. name: "Normal",
  20817. height: math.unit(3, "feet"),
  20818. default: true
  20819. },
  20820. ]
  20821. ))
  20822. characterMakers.push(() => makeCharacter(
  20823. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20824. {
  20825. side: {
  20826. height: math.unit(8, "feet"),
  20827. weight: math.unit(300, "lb"),
  20828. name: "Side",
  20829. image: {
  20830. source: "./media/characters/equus-silvermane/side.svg",
  20831. extra: 2176 / 2050,
  20832. bottom: 65.7 / 2245
  20833. }
  20834. },
  20835. front: {
  20836. height: math.unit(8, "feet"),
  20837. weight: math.unit(300, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/equus-silvermane/front.svg",
  20841. extra: 4633 / 4400,
  20842. bottom: 71.3 / 4706.915
  20843. }
  20844. },
  20845. sideStepping: {
  20846. height: math.unit(8, "feet"),
  20847. weight: math.unit(300, "lb"),
  20848. name: "Side (Stepping)",
  20849. image: {
  20850. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20851. extra: 1968 / 1860,
  20852. bottom: 16.4 / 1989
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Normal",
  20859. height: math.unit(8, "feet")
  20860. },
  20861. {
  20862. name: "Minimacro",
  20863. height: math.unit(75, "feet"),
  20864. default: true
  20865. },
  20866. {
  20867. name: "Macro",
  20868. height: math.unit(150, "feet")
  20869. },
  20870. {
  20871. name: "Macro+",
  20872. height: math.unit(1000, "feet")
  20873. },
  20874. {
  20875. name: "Megamacro",
  20876. height: math.unit(1, "mile")
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20882. {
  20883. side: {
  20884. height: math.unit(20, "feet"),
  20885. weight: math.unit(30000, "kg"),
  20886. name: "Side",
  20887. image: {
  20888. source: "./media/characters/windar/side.svg",
  20889. extra: 1491 / 1248,
  20890. bottom: 82.56 / 1568
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(20, "feet"),
  20898. default: true
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20904. {
  20905. side: {
  20906. height: math.unit(15.66, "feet"),
  20907. weight: math.unit(150, "lb"),
  20908. name: "Side",
  20909. image: {
  20910. source: "./media/characters/melody/side.svg",
  20911. extra: 1097 / 944,
  20912. bottom: 11.8 / 1109
  20913. }
  20914. },
  20915. sideOutfit: {
  20916. height: math.unit(15.66, "feet"),
  20917. weight: math.unit(150, "lb"),
  20918. name: "Side (Outfit)",
  20919. image: {
  20920. source: "./media/characters/melody/side-outfit.svg",
  20921. extra: 1097 / 944,
  20922. bottom: 11.8 / 1109
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(15.66, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(8, "feet"),
  20939. weight: math.unit(325, "lb"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/windera/front.svg",
  20943. extra: 3180 / 2845,
  20944. bottom: 178 / 3365
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(8, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20958. {
  20959. front: {
  20960. height: math.unit(28.75, "feet"),
  20961. weight: math.unit(2000, "kg"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/sonear/front.svg",
  20965. extra: 1041.1 / 964.9,
  20966. bottom: 53.7 / 1096.6
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(28.75, "feet"),
  20974. default: true
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20980. {
  20981. side: {
  20982. height: math.unit(25.5, "feet"),
  20983. weight: math.unit(23000, "kg"),
  20984. name: "Side",
  20985. image: {
  20986. source: "./media/characters/kanara/side.svg"
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(25.5, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21000. {
  21001. side: {
  21002. height: math.unit(10, "feet"),
  21003. weight: math.unit(1000, "kg"),
  21004. name: "Side",
  21005. image: {
  21006. source: "./media/characters/ereus/side.svg",
  21007. extra: 1157 / 959,
  21008. bottom: 153 / 1312.5
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Normal",
  21015. height: math.unit(10, "feet"),
  21016. default: true
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21022. {
  21023. side: {
  21024. height: math.unit(4.5, "feet"),
  21025. weight: math.unit(500, "lb"),
  21026. name: "Side",
  21027. image: {
  21028. source: "./media/characters/e-ter/side.svg",
  21029. extra: 1550 / 1248,
  21030. bottom: 146 / 1694
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Normal",
  21037. height: math.unit(4.5, "feet"),
  21038. default: true
  21039. },
  21040. ]
  21041. ))
  21042. characterMakers.push(() => makeCharacter(
  21043. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21044. {
  21045. side: {
  21046. height: math.unit(9.7, "feet"),
  21047. weight: math.unit(4000, "kg"),
  21048. name: "Side",
  21049. image: {
  21050. source: "./media/characters/yamie/side.svg"
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(9.7, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21064. {
  21065. front: {
  21066. height: math.unit(50, "feet"),
  21067. weight: math.unit(50000, "kg"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/anders/front.svg",
  21071. extra: 570 / 539,
  21072. bottom: 14.7 / 586.7
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Large",
  21079. height: math.unit(50, "feet")
  21080. },
  21081. {
  21082. name: "Macro",
  21083. height: math.unit(2000, "feet"),
  21084. default: true
  21085. },
  21086. {
  21087. name: "Megamacro",
  21088. height: math.unit(12, "miles")
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(7 + 2 / 12, "feet"),
  21097. weight: math.unit(300, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/reban/front.svg",
  21101. extra: 516 / 487,
  21102. bottom: 42.82 / 558.356
  21103. }
  21104. },
  21105. dick: {
  21106. height: math.unit(7 / 5, "feet"),
  21107. name: "Dick",
  21108. image: {
  21109. source: "./media/characters/reban/dick.svg"
  21110. }
  21111. },
  21112. },
  21113. [
  21114. {
  21115. name: "Natural Height",
  21116. height: math.unit(7 + 2 / 12, "feet")
  21117. },
  21118. {
  21119. name: "Macro",
  21120. height: math.unit(500, "feet"),
  21121. default: true
  21122. },
  21123. {
  21124. name: "Canon Height",
  21125. height: math.unit(50, "AU")
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21131. {
  21132. front: {
  21133. height: math.unit(6, "feet"),
  21134. weight: math.unit(150, "lb"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/terrance-keayes/front.svg",
  21138. extra: 1.005,
  21139. bottom: 151 / 1615
  21140. }
  21141. },
  21142. side: {
  21143. height: math.unit(6, "feet"),
  21144. weight: math.unit(150, "lb"),
  21145. name: "Side",
  21146. image: {
  21147. source: "./media/characters/terrance-keayes/side.svg",
  21148. extra: 1.005,
  21149. bottom: 129.4 / 1544
  21150. }
  21151. },
  21152. back: {
  21153. height: math.unit(6, "feet"),
  21154. weight: math.unit(150, "lb"),
  21155. name: "Back",
  21156. image: {
  21157. source: "./media/characters/terrance-keayes/back.svg",
  21158. extra: 1.005,
  21159. bottom: 58.4 / 1557.3
  21160. }
  21161. },
  21162. dick: {
  21163. height: math.unit(6 * 0.208, "feet"),
  21164. name: "Dick",
  21165. image: {
  21166. source: "./media/characters/terrance-keayes/dick.svg"
  21167. }
  21168. },
  21169. },
  21170. [
  21171. {
  21172. name: "Canon Height",
  21173. height: math.unit(35, "miles"),
  21174. default: true
  21175. },
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21180. {
  21181. front: {
  21182. height: math.unit(6, "feet"),
  21183. weight: math.unit(150, "lb"),
  21184. name: "Front",
  21185. image: {
  21186. source: "./media/characters/ofelia/front.svg",
  21187. extra: 546 / 541,
  21188. bottom: 39 / 583
  21189. }
  21190. },
  21191. back: {
  21192. height: math.unit(6, "feet"),
  21193. weight: math.unit(150, "lb"),
  21194. name: "Back",
  21195. image: {
  21196. source: "./media/characters/ofelia/back.svg",
  21197. extra: 564 / 559.5,
  21198. bottom: 8.69 / 573.02
  21199. }
  21200. },
  21201. maw: {
  21202. height: math.unit(1, "feet"),
  21203. name: "Maw",
  21204. image: {
  21205. source: "./media/characters/ofelia/maw.svg"
  21206. }
  21207. },
  21208. foot: {
  21209. height: math.unit(1.949, "feet"),
  21210. name: "Foot",
  21211. image: {
  21212. source: "./media/characters/ofelia/foot.svg"
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Canon Height",
  21219. height: math.unit(2000, "miles"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(6, "feet"),
  21229. weight: math.unit(150, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/samuel/front.svg",
  21233. extra: 265 / 258,
  21234. bottom: 2 / 266.1566
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Macro",
  21241. height: math.unit(100, "feet"),
  21242. default: true
  21243. },
  21244. {
  21245. name: "Full Size",
  21246. height: math.unit(1000, "miles")
  21247. },
  21248. ]
  21249. ))
  21250. characterMakers.push(() => makeCharacter(
  21251. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21252. {
  21253. front: {
  21254. height: math.unit(6, "feet"),
  21255. weight: math.unit(300, "lb"),
  21256. name: "Front",
  21257. image: {
  21258. source: "./media/characters/beishir-kiel/front.svg",
  21259. extra: 569 / 547,
  21260. bottom: 41.9 / 609
  21261. }
  21262. },
  21263. maw: {
  21264. height: math.unit(6 * 0.202, "feet"),
  21265. name: "Maw",
  21266. image: {
  21267. source: "./media/characters/beishir-kiel/maw.svg"
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Macro",
  21274. height: math.unit(300, "feet"),
  21275. default: true
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21281. {
  21282. front: {
  21283. height: math.unit(5 + 8 / 12, "feet"),
  21284. weight: math.unit(120, "lb"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/logan-grey/front.svg",
  21288. extra: 2539 / 2393,
  21289. bottom: 97.6 / 2636.37
  21290. }
  21291. },
  21292. frontAlt: {
  21293. height: math.unit(5 + 8 / 12, "feet"),
  21294. weight: math.unit(120, "lb"),
  21295. name: "Front (Alt)",
  21296. image: {
  21297. source: "./media/characters/logan-grey/front-alt.svg",
  21298. extra: 958 / 893,
  21299. bottom: 15 / 970.768
  21300. }
  21301. },
  21302. back: {
  21303. height: math.unit(5 + 8 / 12, "feet"),
  21304. weight: math.unit(120, "lb"),
  21305. name: "Back",
  21306. image: {
  21307. source: "./media/characters/logan-grey/back.svg",
  21308. extra: 958 / 893,
  21309. bottom: 2.1881 / 970.9788
  21310. }
  21311. },
  21312. dick: {
  21313. height: math.unit(1.437, "feet"),
  21314. name: "Dick",
  21315. image: {
  21316. source: "./media/characters/logan-grey/dick.svg"
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(5 + 8 / 12, "feet")
  21324. },
  21325. {
  21326. name: "The 500 Foot Femboy",
  21327. height: math.unit(500, "feet"),
  21328. default: true
  21329. },
  21330. {
  21331. name: "Megmacro",
  21332. height: math.unit(20, "miles")
  21333. },
  21334. ]
  21335. ))
  21336. characterMakers.push(() => makeCharacter(
  21337. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21338. {
  21339. front: {
  21340. height: math.unit(8 + 2 / 12, "feet"),
  21341. weight: math.unit(275, "lb"),
  21342. name: "Front",
  21343. image: {
  21344. source: "./media/characters/draganta/front.svg",
  21345. extra: 1177 / 1135,
  21346. bottom: 33.46 / 1212.1
  21347. }
  21348. },
  21349. },
  21350. [
  21351. {
  21352. name: "Normal",
  21353. height: math.unit(8 + 6 / 12, "feet"),
  21354. default: true
  21355. },
  21356. {
  21357. name: "Macro",
  21358. height: math.unit(150, "feet")
  21359. },
  21360. {
  21361. name: "Megamacro",
  21362. height: math.unit(1000, "miles")
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21368. {
  21369. front: {
  21370. height: math.unit(1.72, "m"),
  21371. weight: math.unit(80, "lb"),
  21372. name: "Front",
  21373. image: {
  21374. source: "./media/characters/voski/front.svg",
  21375. extra: 2076.22 / 2022.4,
  21376. bottom: 102.7 / 2177.3866
  21377. }
  21378. },
  21379. frontNsfw: {
  21380. height: math.unit(1.72, "m"),
  21381. weight: math.unit(80, "lb"),
  21382. name: "Front (NSFW)",
  21383. image: {
  21384. source: "./media/characters/voski/front-nsfw.svg",
  21385. extra: 2076.22 / 2022.4,
  21386. bottom: 102.7 / 2177.3866
  21387. }
  21388. },
  21389. back: {
  21390. height: math.unit(1.72, "m"),
  21391. weight: math.unit(80, "lb"),
  21392. name: "Back",
  21393. image: {
  21394. source: "./media/characters/voski/back.svg",
  21395. extra: 2104 / 2051,
  21396. bottom: 10.45 / 2113.63
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(1.72, "m")
  21404. },
  21405. {
  21406. name: "Macro",
  21407. height: math.unit(55, "m"),
  21408. default: true
  21409. },
  21410. {
  21411. name: "Macro+",
  21412. height: math.unit(300, "m")
  21413. },
  21414. {
  21415. name: "Macro++",
  21416. height: math.unit(700, "m")
  21417. },
  21418. {
  21419. name: "Macro+++",
  21420. height: math.unit(4500, "m")
  21421. },
  21422. {
  21423. name: "Macro++++",
  21424. height: math.unit(45, "km")
  21425. },
  21426. {
  21427. name: "Macro+++++",
  21428. height: math.unit(1220, "km")
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(2.3, "m"),
  21437. weight: math.unit(304, "kg"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/icowom-lee/front.svg",
  21441. extra: 985 / 955,
  21442. bottom: 25.4 / 1012
  21443. }
  21444. },
  21445. fronttentacles: {
  21446. height: math.unit(2.3, "m"),
  21447. weight: math.unit(304, "kg"),
  21448. name: "Front-tentacles",
  21449. image: {
  21450. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21451. extra: 985 / 955,
  21452. bottom: 25.4 / 1012
  21453. }
  21454. },
  21455. back: {
  21456. height: math.unit(2.3, "m"),
  21457. weight: math.unit(304, "kg"),
  21458. name: "Back",
  21459. image: {
  21460. source: "./media/characters/icowom-lee/back.svg",
  21461. extra: 975 / 954,
  21462. bottom: 9.5 / 985
  21463. }
  21464. },
  21465. backtentacles: {
  21466. height: math.unit(2.3, "m"),
  21467. weight: math.unit(304, "kg"),
  21468. name: "Back-tentacles",
  21469. image: {
  21470. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21471. extra: 975 / 954,
  21472. bottom: 9.5 / 985
  21473. }
  21474. },
  21475. frontDressed: {
  21476. height: math.unit(2.3, "m"),
  21477. weight: math.unit(304, "kg"),
  21478. name: "Front (Dressed)",
  21479. image: {
  21480. source: "./media/characters/icowom-lee/front-dressed.svg",
  21481. extra: 3076 / 2933,
  21482. bottom: 51.4 / 3125.1889
  21483. }
  21484. },
  21485. rump: {
  21486. height: math.unit(0.776, "meters"),
  21487. name: "Rump",
  21488. image: {
  21489. source: "./media/characters/icowom-lee/rump.svg"
  21490. }
  21491. },
  21492. genitals: {
  21493. height: math.unit(0.78, "meters"),
  21494. name: "Genitals",
  21495. image: {
  21496. source: "./media/characters/icowom-lee/genitals.svg"
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Normal",
  21503. height: math.unit(2.3, "meters"),
  21504. default: true
  21505. },
  21506. {
  21507. name: "Macro",
  21508. height: math.unit(94, "meters"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(22, "meters"),
  21518. weight: math.unit(21000, "kg"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/shock-diamond/front.svg",
  21522. extra: 2204 / 2053,
  21523. bottom: 65 / 2239.47
  21524. }
  21525. },
  21526. frontNude: {
  21527. height: math.unit(22, "meters"),
  21528. weight: math.unit(21000, "kg"),
  21529. name: "Front (Nude)",
  21530. image: {
  21531. source: "./media/characters/shock-diamond/front-nude.svg",
  21532. extra: 2514 / 2285,
  21533. bottom: 13 / 2527.56
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(3, "meters")
  21541. },
  21542. {
  21543. name: "Macro",
  21544. height: math.unit(22, "meters"),
  21545. default: true
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(5 + 4 / 12, "feet"),
  21554. weight: math.unit(120, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/rory/front.svg",
  21558. extra: 589 / 556,
  21559. bottom: 45.7 / 635.76
  21560. }
  21561. },
  21562. frontNude: {
  21563. height: math.unit(5 + 4 / 12, "feet"),
  21564. weight: math.unit(120, "lb"),
  21565. name: "Front (Nude)",
  21566. image: {
  21567. source: "./media/characters/rory/front-nude.svg",
  21568. extra: 589 / 556,
  21569. bottom: 45.7 / 635.76
  21570. }
  21571. },
  21572. side: {
  21573. height: math.unit(5 + 4 / 12, "feet"),
  21574. weight: math.unit(120, "lb"),
  21575. name: "Side",
  21576. image: {
  21577. source: "./media/characters/rory/side.svg",
  21578. extra: 597 / 564,
  21579. bottom: 55 / 653
  21580. }
  21581. },
  21582. back: {
  21583. height: math.unit(5 + 4 / 12, "feet"),
  21584. weight: math.unit(120, "lb"),
  21585. name: "Back",
  21586. image: {
  21587. source: "./media/characters/rory/back.svg",
  21588. extra: 620 / 585,
  21589. bottom: 8.86 / 630.43
  21590. }
  21591. },
  21592. dick: {
  21593. height: math.unit(0.86, "feet"),
  21594. name: "Dick",
  21595. image: {
  21596. source: "./media/characters/rory/dick.svg"
  21597. }
  21598. },
  21599. },
  21600. [
  21601. {
  21602. name: "Normal",
  21603. height: math.unit(5 + 4 / 12, "feet"),
  21604. default: true
  21605. },
  21606. {
  21607. name: "Macro",
  21608. height: math.unit(100, "feet")
  21609. },
  21610. {
  21611. name: "Macro+",
  21612. height: math.unit(140, "feet")
  21613. },
  21614. {
  21615. name: "Macro++",
  21616. height: math.unit(300, "feet")
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21622. {
  21623. front: {
  21624. height: math.unit(5 + 9 / 12, "feet"),
  21625. weight: math.unit(190, "lb"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/sprisk/front.svg",
  21629. extra: 1225 / 1180,
  21630. bottom: 42.7 / 1266.4
  21631. }
  21632. },
  21633. frontNsfw: {
  21634. height: math.unit(5 + 9 / 12, "feet"),
  21635. weight: math.unit(190, "lb"),
  21636. name: "Front (NSFW)",
  21637. image: {
  21638. source: "./media/characters/sprisk/front-nsfw.svg",
  21639. extra: 1225 / 1180,
  21640. bottom: 42.7 / 1266.4
  21641. }
  21642. },
  21643. back: {
  21644. height: math.unit(5 + 9 / 12, "feet"),
  21645. weight: math.unit(190, "lb"),
  21646. name: "Back",
  21647. image: {
  21648. source: "./media/characters/sprisk/back.svg",
  21649. extra: 1247 / 1200,
  21650. bottom: 5.6 / 1253.04
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Tiny",
  21657. height: math.unit(2, "inches")
  21658. },
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(5 + 9 / 12, "feet"),
  21662. default: true
  21663. },
  21664. {
  21665. name: "Mini Macro",
  21666. height: math.unit(18, "feet")
  21667. },
  21668. {
  21669. name: "Macro",
  21670. height: math.unit(100, "feet")
  21671. },
  21672. {
  21673. name: "MACRO",
  21674. height: math.unit(50, "miles")
  21675. },
  21676. {
  21677. name: "M A C R O",
  21678. height: math.unit(300, "miles")
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21684. {
  21685. side: {
  21686. height: math.unit(15.6, "meters"),
  21687. weight: math.unit(700000, "kg"),
  21688. name: "Side",
  21689. image: {
  21690. source: "./media/characters/bunsen/side.svg",
  21691. extra: 1644 / 358
  21692. }
  21693. },
  21694. foot: {
  21695. height: math.unit(1.611 * 1644 / 358, "meter"),
  21696. name: "Foot",
  21697. image: {
  21698. source: "./media/characters/bunsen/foot.svg"
  21699. }
  21700. },
  21701. },
  21702. [
  21703. {
  21704. name: "Small",
  21705. height: math.unit(10, "feet")
  21706. },
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(15.6, "meters"),
  21710. default: true
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21716. {
  21717. front: {
  21718. height: math.unit(4 + 11 / 12, "feet"),
  21719. weight: math.unit(140, "lb"),
  21720. name: "Front",
  21721. image: {
  21722. source: "./media/characters/sesh/front.svg",
  21723. extra: 3420 / 3231,
  21724. bottom: 72 / 3949.5
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Normal",
  21731. height: math.unit(4 + 11 / 12, "feet")
  21732. },
  21733. {
  21734. name: "Grown",
  21735. height: math.unit(15, "feet"),
  21736. default: true
  21737. },
  21738. {
  21739. name: "Macro",
  21740. height: math.unit(1500, "feet")
  21741. },
  21742. {
  21743. name: "Megamacro",
  21744. height: math.unit(30, "miles")
  21745. },
  21746. {
  21747. name: "Continental",
  21748. height: math.unit(3000, "miles")
  21749. },
  21750. {
  21751. name: "Gravity Mass",
  21752. height: math.unit(300000, "miles")
  21753. },
  21754. {
  21755. name: "Planet Buster",
  21756. height: math.unit(30000000, "miles")
  21757. },
  21758. {
  21759. name: "Big",
  21760. height: math.unit(3000000000, "miles")
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(9, "feet"),
  21769. weight: math.unit(350, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/pepper/front.svg",
  21773. extra: 1448 / 1312,
  21774. bottom: 9.4 / 1457.88
  21775. }
  21776. },
  21777. back: {
  21778. height: math.unit(9, "feet"),
  21779. weight: math.unit(350, "lb"),
  21780. name: "Back",
  21781. image: {
  21782. source: "./media/characters/pepper/back.svg",
  21783. extra: 1423 / 1300,
  21784. bottom: 4.6 / 1429
  21785. }
  21786. },
  21787. maw: {
  21788. height: math.unit(0.932, "feet"),
  21789. name: "Maw",
  21790. image: {
  21791. source: "./media/characters/pepper/maw.svg"
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(9, "feet"),
  21799. default: true
  21800. },
  21801. ]
  21802. ))
  21803. characterMakers.push(() => makeCharacter(
  21804. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21805. {
  21806. front: {
  21807. height: math.unit(6, "feet"),
  21808. weight: math.unit(150, "lb"),
  21809. name: "Front",
  21810. image: {
  21811. source: "./media/characters/maelstrom/front.svg",
  21812. extra: 2100 / 1883,
  21813. bottom: 94 / 2196.7
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Less Kaiju",
  21820. height: math.unit(200, "feet")
  21821. },
  21822. {
  21823. name: "Kaiju",
  21824. height: math.unit(400, "feet"),
  21825. default: true
  21826. },
  21827. {
  21828. name: "Kaiju-er",
  21829. height: math.unit(600, "feet")
  21830. },
  21831. ]
  21832. ))
  21833. characterMakers.push(() => makeCharacter(
  21834. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21835. {
  21836. front: {
  21837. height: math.unit(6 + 5 / 12, "feet"),
  21838. weight: math.unit(180, "lb"),
  21839. name: "Front",
  21840. image: {
  21841. source: "./media/characters/lexir/front.svg",
  21842. extra: 180 / 172,
  21843. bottom: 12 / 192
  21844. }
  21845. },
  21846. back: {
  21847. height: math.unit(6 + 5 / 12, "feet"),
  21848. weight: math.unit(180, "lb"),
  21849. name: "Back",
  21850. image: {
  21851. source: "./media/characters/lexir/back.svg",
  21852. extra: 183.84 / 175.5,
  21853. bottom: 3.1 / 187
  21854. }
  21855. },
  21856. },
  21857. [
  21858. {
  21859. name: "Very Smal",
  21860. height: math.unit(1, "nm")
  21861. },
  21862. {
  21863. name: "Normal",
  21864. height: math.unit(6 + 5 / 12, "feet"),
  21865. default: true
  21866. },
  21867. {
  21868. name: "Macro",
  21869. height: math.unit(1, "mile")
  21870. },
  21871. {
  21872. name: "Megamacro",
  21873. height: math.unit(50, "miles")
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21879. {
  21880. front: {
  21881. height: math.unit(1.5, "meters"),
  21882. weight: math.unit(100, "lb"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/maksio/front.svg",
  21886. extra: 1549 / 1531,
  21887. bottom: 123.7 / 1674.5429
  21888. }
  21889. },
  21890. back: {
  21891. height: math.unit(1.5, "meters"),
  21892. weight: math.unit(100, "lb"),
  21893. name: "Back",
  21894. image: {
  21895. source: "./media/characters/maksio/back.svg",
  21896. extra: 1541 / 1509,
  21897. bottom: 97 / 1639
  21898. }
  21899. },
  21900. hand: {
  21901. height: math.unit(0.621, "feet"),
  21902. name: "Hand",
  21903. image: {
  21904. source: "./media/characters/maksio/hand.svg"
  21905. }
  21906. },
  21907. foot: {
  21908. height: math.unit(1.611, "feet"),
  21909. name: "Foot",
  21910. image: {
  21911. source: "./media/characters/maksio/foot.svg"
  21912. }
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Shrunken",
  21918. height: math.unit(10, "cm")
  21919. },
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(150, "cm"),
  21923. default: true
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21929. {
  21930. front: {
  21931. height: math.unit(100, "feet"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/erza-bear/front.svg",
  21935. extra: 2449 / 2390,
  21936. bottom: 46 / 2494
  21937. }
  21938. },
  21939. back: {
  21940. height: math.unit(100, "feet"),
  21941. name: "Back",
  21942. image: {
  21943. source: "./media/characters/erza-bear/back.svg",
  21944. extra: 2489 / 2430,
  21945. bottom: 85.4 / 2480
  21946. }
  21947. },
  21948. tail: {
  21949. height: math.unit(42, "feet"),
  21950. name: "Tail",
  21951. image: {
  21952. source: "./media/characters/erza-bear/tail.svg"
  21953. }
  21954. },
  21955. tongue: {
  21956. height: math.unit(8, "feet"),
  21957. name: "Tongue",
  21958. image: {
  21959. source: "./media/characters/erza-bear/tongue.svg"
  21960. }
  21961. },
  21962. dick: {
  21963. height: math.unit(10.5, "feet"),
  21964. name: "Dick",
  21965. image: {
  21966. source: "./media/characters/erza-bear/dick.svg"
  21967. }
  21968. },
  21969. dickVertical: {
  21970. height: math.unit(16.9, "feet"),
  21971. name: "Dick (Vertical)",
  21972. image: {
  21973. source: "./media/characters/erza-bear/dick-vertical.svg"
  21974. }
  21975. },
  21976. },
  21977. [
  21978. {
  21979. name: "Macro",
  21980. height: math.unit(100, "feet"),
  21981. default: true
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21987. {
  21988. front: {
  21989. height: math.unit(172, "cm"),
  21990. weight: math.unit(73, "kg"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/violet-flor/front.svg",
  21994. extra: 1530 / 1442,
  21995. bottom: 61.9 / 1588.8
  21996. }
  21997. },
  21998. back: {
  21999. height: math.unit(180, "cm"),
  22000. weight: math.unit(73, "kg"),
  22001. name: "Back",
  22002. image: {
  22003. source: "./media/characters/violet-flor/back.svg",
  22004. extra: 1692 / 1630,
  22005. bottom: 20 / 1712
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(172, "cm"),
  22013. default: true
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22019. {
  22020. front: {
  22021. height: math.unit(6, "feet"),
  22022. weight: math.unit(220, "lb"),
  22023. name: "Front",
  22024. image: {
  22025. source: "./media/characters/lynn-rhea/front.svg",
  22026. extra: 310 / 273
  22027. }
  22028. },
  22029. back: {
  22030. height: math.unit(6, "feet"),
  22031. weight: math.unit(220, "lb"),
  22032. name: "Back",
  22033. image: {
  22034. source: "./media/characters/lynn-rhea/back.svg",
  22035. extra: 310 / 273
  22036. }
  22037. },
  22038. dicks: {
  22039. height: math.unit(0.9, "feet"),
  22040. name: "Dicks",
  22041. image: {
  22042. source: "./media/characters/lynn-rhea/dicks.svg"
  22043. }
  22044. },
  22045. slit: {
  22046. height: math.unit(0.4, "feet"),
  22047. name: "Slit",
  22048. image: {
  22049. source: "./media/characters/lynn-rhea/slit.svg"
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Micro",
  22056. height: math.unit(1, "inch")
  22057. },
  22058. {
  22059. name: "Macro",
  22060. height: math.unit(60, "feet"),
  22061. default: true
  22062. },
  22063. {
  22064. name: "Megamacro",
  22065. height: math.unit(2, "miles")
  22066. },
  22067. {
  22068. name: "Gigamacro",
  22069. height: math.unit(3, "earths")
  22070. },
  22071. {
  22072. name: "Galactic",
  22073. height: math.unit(0.8, "galaxies")
  22074. },
  22075. ]
  22076. ))
  22077. characterMakers.push(() => makeCharacter(
  22078. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22079. {
  22080. front: {
  22081. height: math.unit(1600, "feet"),
  22082. weight: math.unit(85758785169, "kg"),
  22083. name: "Front",
  22084. image: {
  22085. source: "./media/characters/valathos/front.svg",
  22086. extra: 1451 / 1339
  22087. }
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Macro",
  22093. height: math.unit(1600, "feet"),
  22094. default: true
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(7 + 5 / 12, "feet"),
  22103. weight: math.unit(300, "lb"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/azula/front.svg",
  22107. extra: 3208 / 2880,
  22108. bottom: 80.2 / 3277
  22109. }
  22110. },
  22111. back: {
  22112. height: math.unit(7 + 5 / 12, "feet"),
  22113. weight: math.unit(300, "lb"),
  22114. name: "Back",
  22115. image: {
  22116. source: "./media/characters/azula/back.svg",
  22117. extra: 3169 / 2822,
  22118. bottom: 150.6 / 3321
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Normal",
  22125. height: math.unit(7 + 5 / 12, "feet"),
  22126. default: true
  22127. },
  22128. {
  22129. name: "Big",
  22130. height: math.unit(20, "feet")
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(5 + 1 / 12, "feet"),
  22139. weight: math.unit(110, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/rupert/front.svg",
  22143. extra: 1549 / 1495,
  22144. bottom: 54.2 / 1604.4
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Normal",
  22151. height: math.unit(5 + 1 / 12, "feet"),
  22152. default: true
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22158. {
  22159. front: {
  22160. height: math.unit(8 + 4 / 12, "feet"),
  22161. weight: math.unit(350, "lb"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/sheera-castellar/front.svg",
  22165. extra: 1957 / 1894,
  22166. bottom: 26.97 / 1975.017
  22167. }
  22168. },
  22169. side: {
  22170. height: math.unit(8 + 4 / 12, "feet"),
  22171. weight: math.unit(350, "lb"),
  22172. name: "Side",
  22173. image: {
  22174. source: "./media/characters/sheera-castellar/side.svg",
  22175. extra: 1957 / 1894
  22176. }
  22177. },
  22178. back: {
  22179. height: math.unit(8 + 4 / 12, "feet"),
  22180. weight: math.unit(350, "lb"),
  22181. name: "Back",
  22182. image: {
  22183. source: "./media/characters/sheera-castellar/back.svg",
  22184. extra: 1957 / 1894
  22185. }
  22186. },
  22187. angled: {
  22188. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22189. weight: math.unit(350, "lb"),
  22190. name: "Angled",
  22191. image: {
  22192. source: "./media/characters/sheera-castellar/angled.svg",
  22193. extra: 1807 / 1707,
  22194. bottom: 68 / 1875
  22195. }
  22196. },
  22197. genitals: {
  22198. height: math.unit(2.2, "feet"),
  22199. name: "Genitals",
  22200. image: {
  22201. source: "./media/characters/sheera-castellar/genitals.svg"
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(8 + 4 / 12, "feet")
  22209. },
  22210. {
  22211. name: "Macro",
  22212. height: math.unit(150, "feet"),
  22213. default: true
  22214. },
  22215. {
  22216. name: "Macro+",
  22217. height: math.unit(800, "feet")
  22218. },
  22219. ]
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22223. {
  22224. front: {
  22225. height: math.unit(6, "feet"),
  22226. weight: math.unit(150, "lb"),
  22227. name: "Front",
  22228. image: {
  22229. source: "./media/characters/jaipur/front.svg",
  22230. extra: 3860 / 3731,
  22231. bottom: 287 / 4140
  22232. }
  22233. },
  22234. back: {
  22235. height: math.unit(6, "feet"),
  22236. weight: math.unit(150, "lb"),
  22237. name: "Back",
  22238. image: {
  22239. source: "./media/characters/jaipur/back.svg",
  22240. extra: 4060 / 3930,
  22241. bottom: 151 / 4200
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Normal",
  22248. height: math.unit(1.85, "meters"),
  22249. default: true
  22250. },
  22251. {
  22252. name: "Macro",
  22253. height: math.unit(150, "meters")
  22254. },
  22255. {
  22256. name: "Macro+",
  22257. height: math.unit(0.5, "miles")
  22258. },
  22259. {
  22260. name: "Macro++",
  22261. height: math.unit(2.5, "miles")
  22262. },
  22263. {
  22264. name: "Macro+++",
  22265. height: math.unit(12, "miles")
  22266. },
  22267. {
  22268. name: "Macro++++",
  22269. height: math.unit(120, "miles")
  22270. },
  22271. {
  22272. name: "Macro+++++",
  22273. height: math.unit(1200, "miles")
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22279. {
  22280. front: {
  22281. height: math.unit(6, "feet"),
  22282. weight: math.unit(150, "lb"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/sheila-wolf/front.svg",
  22286. extra: 1931 / 1808,
  22287. bottom: 29.5 / 1960
  22288. }
  22289. },
  22290. dick: {
  22291. height: math.unit(1.464, "feet"),
  22292. name: "Dick",
  22293. image: {
  22294. source: "./media/characters/sheila-wolf/dick.svg"
  22295. }
  22296. },
  22297. muzzle: {
  22298. height: math.unit(0.513, "feet"),
  22299. name: "Muzzle",
  22300. image: {
  22301. source: "./media/characters/sheila-wolf/muzzle.svg"
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "Macro",
  22308. height: math.unit(70, "feet"),
  22309. default: true
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22315. {
  22316. front: {
  22317. height: math.unit(32, "meters"),
  22318. weight: math.unit(300000, "kg"),
  22319. name: "Front",
  22320. image: {
  22321. source: "./media/characters/almor/front.svg",
  22322. extra: 1408 / 1322,
  22323. bottom: 94.6 / 1506.5
  22324. }
  22325. },
  22326. },
  22327. [
  22328. {
  22329. name: "Macro",
  22330. height: math.unit(32, "meters"),
  22331. default: true
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(7, "feet"),
  22340. weight: math.unit(200, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/silver/front.svg",
  22344. extra: 472.1 / 450.5,
  22345. bottom: 26.5 / 499.424
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(7, "feet"),
  22353. default: true
  22354. },
  22355. {
  22356. name: "Macro",
  22357. height: math.unit(800, "feet")
  22358. },
  22359. {
  22360. name: "Megamacro",
  22361. height: math.unit(250, "miles")
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(6, "feet"),
  22370. weight: math.unit(150, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/pliskin/front.svg",
  22374. extra: 1469 / 1359,
  22375. bottom: 70 / 1540
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Micro",
  22382. height: math.unit(3, "inches")
  22383. },
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(5 + 11 / 12, "feet"),
  22387. default: true
  22388. },
  22389. {
  22390. name: "Macro",
  22391. height: math.unit(120, "feet")
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22397. {
  22398. front: {
  22399. height: math.unit(6, "feet"),
  22400. weight: math.unit(150, "lb"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/sammy/front.svg",
  22404. extra: 1193 / 1089,
  22405. bottom: 30.5 / 1226
  22406. }
  22407. },
  22408. },
  22409. [
  22410. {
  22411. name: "Macro",
  22412. height: math.unit(1700, "feet"),
  22413. default: true
  22414. },
  22415. {
  22416. name: "Examacro",
  22417. height: math.unit(2.5e9, "lightyears")
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22423. {
  22424. front: {
  22425. height: math.unit(21, "meters"),
  22426. weight: math.unit(12, "tonnes"),
  22427. name: "Front",
  22428. image: {
  22429. source: "./media/characters/kuru/front.svg",
  22430. extra: 4301 / 3785,
  22431. bottom: 371.3 / 4691
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Macro",
  22438. height: math.unit(21, "meters"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22445. {
  22446. front: {
  22447. height: math.unit(23, "meters"),
  22448. weight: math.unit(12.2, "tonnes"),
  22449. name: "Front",
  22450. image: {
  22451. source: "./media/characters/rakka/front.svg",
  22452. extra: 4670 / 4169,
  22453. bottom: 301 / 4968.7
  22454. }
  22455. },
  22456. },
  22457. [
  22458. {
  22459. name: "Macro",
  22460. height: math.unit(23, "meters"),
  22461. default: true
  22462. },
  22463. ]
  22464. ))
  22465. characterMakers.push(() => makeCharacter(
  22466. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22467. {
  22468. front: {
  22469. height: math.unit(6, "feet"),
  22470. weight: math.unit(150, "lb"),
  22471. name: "Front",
  22472. image: {
  22473. source: "./media/characters/rhys-feline/front.svg",
  22474. extra: 2488 / 2308,
  22475. bottom: 35.67 / 2519.19
  22476. }
  22477. },
  22478. },
  22479. [
  22480. {
  22481. name: "Really Small",
  22482. height: math.unit(1, "nm")
  22483. },
  22484. {
  22485. name: "Micro",
  22486. height: math.unit(4, "inches")
  22487. },
  22488. {
  22489. name: "Normal",
  22490. height: math.unit(4 + 10 / 12, "feet"),
  22491. default: true
  22492. },
  22493. {
  22494. name: "Macro",
  22495. height: math.unit(100, "feet")
  22496. },
  22497. {
  22498. name: "Megamacto",
  22499. height: math.unit(50, "miles")
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22505. {
  22506. side: {
  22507. height: math.unit(30, "feet"),
  22508. weight: math.unit(35000, "kg"),
  22509. name: "Side",
  22510. image: {
  22511. source: "./media/characters/alydar/side.svg",
  22512. extra: 234 / 222,
  22513. bottom: 6.5 / 241
  22514. }
  22515. },
  22516. front: {
  22517. height: math.unit(30, "feet"),
  22518. weight: math.unit(35000, "kg"),
  22519. name: "Front",
  22520. image: {
  22521. source: "./media/characters/alydar/front.svg",
  22522. extra: 223.37 / 210.2,
  22523. bottom: 22.3 / 246.76
  22524. }
  22525. },
  22526. top: {
  22527. height: math.unit(64.54, "feet"),
  22528. weight: math.unit(35000, "kg"),
  22529. name: "Top",
  22530. image: {
  22531. source: "./media/characters/alydar/top.svg"
  22532. }
  22533. },
  22534. anthro: {
  22535. height: math.unit(30, "feet"),
  22536. weight: math.unit(9000, "kg"),
  22537. name: "Anthro",
  22538. image: {
  22539. source: "./media/characters/alydar/anthro.svg",
  22540. extra: 432 / 421,
  22541. bottom: 7.18 / 440
  22542. }
  22543. },
  22544. maw: {
  22545. height: math.unit(11.693, "feet"),
  22546. name: "Maw",
  22547. image: {
  22548. source: "./media/characters/alydar/maw.svg"
  22549. }
  22550. },
  22551. head: {
  22552. height: math.unit(11.693, "feet"),
  22553. name: "Head",
  22554. image: {
  22555. source: "./media/characters/alydar/head.svg"
  22556. }
  22557. },
  22558. headAlt: {
  22559. height: math.unit(12.861, "feet"),
  22560. name: "Head (Alt)",
  22561. image: {
  22562. source: "./media/characters/alydar/head-alt.svg"
  22563. }
  22564. },
  22565. wing: {
  22566. height: math.unit(20.712, "feet"),
  22567. name: "Wing",
  22568. image: {
  22569. source: "./media/characters/alydar/wing.svg"
  22570. }
  22571. },
  22572. wingFeather: {
  22573. height: math.unit(9.662, "feet"),
  22574. name: "Wing Feather",
  22575. image: {
  22576. source: "./media/characters/alydar/wing-feather.svg"
  22577. }
  22578. },
  22579. countourFeather: {
  22580. height: math.unit(4.154, "feet"),
  22581. name: "Contour Feather",
  22582. image: {
  22583. source: "./media/characters/alydar/contour-feather.svg"
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Diplomatic",
  22590. height: math.unit(13, "feet"),
  22591. default: true
  22592. },
  22593. {
  22594. name: "Small",
  22595. height: math.unit(30, "feet")
  22596. },
  22597. {
  22598. name: "Normal",
  22599. height: math.unit(95, "feet"),
  22600. default: true
  22601. },
  22602. {
  22603. name: "Large",
  22604. height: math.unit(285, "feet")
  22605. },
  22606. {
  22607. name: "Incomprehensible",
  22608. height: math.unit(450, "megameters")
  22609. },
  22610. ]
  22611. ))
  22612. characterMakers.push(() => makeCharacter(
  22613. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22614. {
  22615. side: {
  22616. height: math.unit(11, "feet"),
  22617. weight: math.unit(1750, "kg"),
  22618. name: "Side",
  22619. image: {
  22620. source: "./media/characters/selicia/side.svg",
  22621. extra: 440 / 396,
  22622. bottom: 24.8 / 465.979
  22623. }
  22624. },
  22625. maw: {
  22626. height: math.unit(4.665, "feet"),
  22627. name: "Maw",
  22628. image: {
  22629. source: "./media/characters/selicia/maw.svg"
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(11, "feet"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22643. {
  22644. side: {
  22645. height: math.unit(2 + 6 / 12, "feet"),
  22646. weight: math.unit(30, "lb"),
  22647. name: "Side",
  22648. image: {
  22649. source: "./media/characters/layla/side.svg",
  22650. extra: 244 / 188,
  22651. bottom: 18.2 / 262.1
  22652. }
  22653. },
  22654. back: {
  22655. height: math.unit(2 + 6 / 12, "feet"),
  22656. weight: math.unit(30, "lb"),
  22657. name: "Back",
  22658. image: {
  22659. source: "./media/characters/layla/back.svg",
  22660. extra: 308 / 241.5,
  22661. bottom: 8.9 / 316.8
  22662. }
  22663. },
  22664. cumming: {
  22665. height: math.unit(2 + 6 / 12, "feet"),
  22666. weight: math.unit(30, "lb"),
  22667. name: "Cumming",
  22668. image: {
  22669. source: "./media/characters/layla/cumming.svg",
  22670. extra: 342 / 279,
  22671. bottom: 595 / 938
  22672. }
  22673. },
  22674. dickFlaccid: {
  22675. height: math.unit(2.595, "feet"),
  22676. name: "Flaccid Genitals",
  22677. image: {
  22678. source: "./media/characters/layla/dick-flaccid.svg"
  22679. }
  22680. },
  22681. dickErect: {
  22682. height: math.unit(2.359, "feet"),
  22683. name: "Erect Genitals",
  22684. image: {
  22685. source: "./media/characters/layla/dick-erect.svg"
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Micro",
  22692. height: math.unit(1, "inch")
  22693. },
  22694. {
  22695. name: "Small",
  22696. height: math.unit(1, "foot")
  22697. },
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(2 + 6 / 12, "feet"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(200, "feet")
  22706. },
  22707. {
  22708. name: "Megamacro",
  22709. height: math.unit(1000, "miles")
  22710. },
  22711. {
  22712. name: "Planetary",
  22713. height: math.unit(8000, "miles")
  22714. },
  22715. {
  22716. name: "True Layla",
  22717. height: math.unit(200000 * 7, "multiverses")
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22723. {
  22724. back: {
  22725. height: math.unit(10.5, "feet"),
  22726. weight: math.unit(800, "lb"),
  22727. name: "Back",
  22728. image: {
  22729. source: "./media/characters/knox/back.svg",
  22730. extra: 1486 / 1089,
  22731. bottom: 107 / 1601.4
  22732. }
  22733. },
  22734. side: {
  22735. height: math.unit(10.5, "feet"),
  22736. weight: math.unit(800, "lb"),
  22737. name: "Side",
  22738. image: {
  22739. source: "./media/characters/knox/side.svg",
  22740. extra: 244 / 218,
  22741. bottom: 14 / 260
  22742. }
  22743. },
  22744. },
  22745. [
  22746. {
  22747. name: "Compact",
  22748. height: math.unit(10.5, "feet"),
  22749. default: true
  22750. },
  22751. {
  22752. name: "Dynamax",
  22753. height: math.unit(210, "feet")
  22754. },
  22755. {
  22756. name: "Full Macro",
  22757. height: math.unit(850, "feet")
  22758. },
  22759. ]
  22760. ))
  22761. characterMakers.push(() => makeCharacter(
  22762. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22763. {
  22764. front: {
  22765. height: math.unit(6, "feet"),
  22766. weight: math.unit(152, "lb"),
  22767. name: "Front",
  22768. image: {
  22769. source: "./media/characters/shin-pikachu/front.svg",
  22770. extra: 1574 / 1480,
  22771. bottom: 53.3 / 1626
  22772. }
  22773. },
  22774. hand: {
  22775. height: math.unit(1.055, "feet"),
  22776. name: "Hand",
  22777. image: {
  22778. source: "./media/characters/shin-pikachu/hand.svg"
  22779. }
  22780. },
  22781. foot: {
  22782. height: math.unit(1.1, "feet"),
  22783. name: "Foot",
  22784. image: {
  22785. source: "./media/characters/shin-pikachu/foot.svg"
  22786. }
  22787. },
  22788. collar: {
  22789. height: math.unit(0.386, "feet"),
  22790. name: "Collar",
  22791. image: {
  22792. source: "./media/characters/shin-pikachu/collar.svg"
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Smallest",
  22799. height: math.unit(0.5, "inches")
  22800. },
  22801. {
  22802. name: "Micro",
  22803. height: math.unit(6, "inches")
  22804. },
  22805. {
  22806. name: "Normal",
  22807. height: math.unit(6, "feet"),
  22808. default: true
  22809. },
  22810. {
  22811. name: "Macro",
  22812. height: math.unit(150, "feet")
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22818. {
  22819. front: {
  22820. height: math.unit(28, "feet"),
  22821. weight: math.unit(10500, "lb"),
  22822. name: "Front",
  22823. image: {
  22824. source: "./media/characters/kayda/front.svg",
  22825. extra: 1536 / 1428,
  22826. bottom: 68.7 / 1603
  22827. }
  22828. },
  22829. back: {
  22830. height: math.unit(28, "feet"),
  22831. weight: math.unit(10500, "lb"),
  22832. name: "Back",
  22833. image: {
  22834. source: "./media/characters/kayda/back.svg",
  22835. extra: 1557 / 1464,
  22836. bottom: 39.5 / 1597.49
  22837. }
  22838. },
  22839. dick: {
  22840. height: math.unit(3.858, "feet"),
  22841. name: "Dick",
  22842. image: {
  22843. source: "./media/characters/kayda/dick.svg"
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Macro",
  22850. height: math.unit(28, "feet"),
  22851. default: true
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22857. {
  22858. front: {
  22859. height: math.unit(10 + 11 / 12, "feet"),
  22860. weight: math.unit(1400, "lb"),
  22861. name: "Front",
  22862. image: {
  22863. source: "./media/characters/brian/front.svg",
  22864. extra: 737 / 692,
  22865. bottom: 55.4 / 785
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Normal",
  22872. height: math.unit(10 + 11 / 12, "feet"),
  22873. default: true
  22874. },
  22875. ]
  22876. ))
  22877. characterMakers.push(() => makeCharacter(
  22878. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22879. {
  22880. front: {
  22881. height: math.unit(5 + 8 / 12, "feet"),
  22882. weight: math.unit(140, "lb"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/khemri/front.svg",
  22886. extra: 4780 / 4059,
  22887. bottom: 80.1 / 4859.25
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Micro",
  22894. height: math.unit(6, "inches")
  22895. },
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(5 + 8 / 12, "feet"),
  22899. default: true
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22905. {
  22906. front: {
  22907. height: math.unit(13, "feet"),
  22908. weight: math.unit(1700, "lb"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/felix-braveheart/front.svg",
  22912. extra: 1222 / 1157,
  22913. bottom: 53.2 / 1280
  22914. }
  22915. },
  22916. back: {
  22917. height: math.unit(13, "feet"),
  22918. weight: math.unit(1700, "lb"),
  22919. name: "Back",
  22920. image: {
  22921. source: "./media/characters/felix-braveheart/back.svg",
  22922. extra: 1277 / 1203,
  22923. bottom: 50.2 / 1327
  22924. }
  22925. },
  22926. feral: {
  22927. height: math.unit(6, "feet"),
  22928. weight: math.unit(400, "lb"),
  22929. name: "Feral",
  22930. image: {
  22931. source: "./media/characters/felix-braveheart/feral.svg",
  22932. extra: 682 / 625,
  22933. bottom: 6.9 / 688
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Normal",
  22940. height: math.unit(13, "feet"),
  22941. default: true
  22942. },
  22943. ]
  22944. ))
  22945. characterMakers.push(() => makeCharacter(
  22946. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22947. {
  22948. side: {
  22949. height: math.unit(5 + 11 / 12, "feet"),
  22950. weight: math.unit(1400, "lb"),
  22951. name: "Side",
  22952. image: {
  22953. source: "./media/characters/shadow-blade/side.svg",
  22954. extra: 1726 / 1267,
  22955. bottom: 58.4 / 1785
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(5 + 11 / 12, "feet"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(1 + 6 / 12, "feet"),
  22972. weight: math.unit(25, "lb"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/karla-halldor/front.svg",
  22976. extra: 1459 / 1383,
  22977. bottom: 12 / 1472
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(1 + 6 / 12, "feet"),
  22985. default: true
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22991. {
  22992. front: {
  22993. height: math.unit(6 + 2 / 12, "feet"),
  22994. weight: math.unit(160, "lb"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/ariam/front.svg",
  22998. extra: 714 / 617,
  22999. bottom: 23.4 / 737,
  23000. }
  23001. },
  23002. squatting: {
  23003. height: math.unit(4.1, "feet"),
  23004. weight: math.unit(160, "lb"),
  23005. name: "Squatting",
  23006. image: {
  23007. source: "./media/characters/ariam/squatting.svg",
  23008. extra: 2617 / 2112,
  23009. bottom: 61.2 / 2681,
  23010. }
  23011. },
  23012. },
  23013. [
  23014. {
  23015. name: "Normal",
  23016. height: math.unit(6 + 2 / 12, "feet"),
  23017. default: true
  23018. },
  23019. {
  23020. name: "Normal+",
  23021. height: math.unit(4, "meters")
  23022. },
  23023. {
  23024. name: "Macro",
  23025. height: math.unit(50, "meters")
  23026. },
  23027. {
  23028. name: "Macro+",
  23029. height: math.unit(100, "meters")
  23030. },
  23031. {
  23032. name: "Megamacro",
  23033. height: math.unit(20, "km")
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23039. {
  23040. front: {
  23041. height: math.unit(1.67, "meters"),
  23042. weight: math.unit(140, "lb"),
  23043. name: "Front",
  23044. image: {
  23045. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23046. extra: 438 / 410,
  23047. bottom: 0.75 / 439
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Shrunken",
  23054. height: math.unit(7.6, "cm")
  23055. },
  23056. {
  23057. name: "Human Scale",
  23058. height: math.unit(1.67, "meters")
  23059. },
  23060. {
  23061. name: "Wolxi Scale",
  23062. height: math.unit(36.7, "meters"),
  23063. default: true
  23064. },
  23065. ]
  23066. ))
  23067. characterMakers.push(() => makeCharacter(
  23068. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23069. {
  23070. front: {
  23071. height: math.unit(1.73, "meters"),
  23072. weight: math.unit(240, "lb"),
  23073. name: "Front",
  23074. image: {
  23075. source: "./media/characters/izue-two-mothers/front.svg",
  23076. extra: 469 / 437,
  23077. bottom: 1.24 / 470.6
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Shrunken",
  23084. height: math.unit(7.86, "cm")
  23085. },
  23086. {
  23087. name: "Human Scale",
  23088. height: math.unit(1.73, "meters")
  23089. },
  23090. {
  23091. name: "Wolxi Scale",
  23092. height: math.unit(38, "meters"),
  23093. default: true
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23099. {
  23100. front: {
  23101. height: math.unit(1.55, "meters"),
  23102. weight: math.unit(120, "lb"),
  23103. name: "Front",
  23104. image: {
  23105. source: "./media/characters/teeku-love-shack/front.svg",
  23106. extra: 387 / 362,
  23107. bottom: 1.51 / 388
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Shrunken",
  23114. height: math.unit(7, "cm")
  23115. },
  23116. {
  23117. name: "Human Scale",
  23118. height: math.unit(1.55, "meters")
  23119. },
  23120. {
  23121. name: "Wolxi Scale",
  23122. height: math.unit(34.1, "meters"),
  23123. default: true
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(1.83, "meters"),
  23132. weight: math.unit(135, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/dejma-the-red/front.svg",
  23136. extra: 480 / 458,
  23137. bottom: 1.8 / 482
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Shrunken",
  23144. height: math.unit(8.3, "cm")
  23145. },
  23146. {
  23147. name: "Human Scale",
  23148. height: math.unit(1.83, "meters")
  23149. },
  23150. {
  23151. name: "Wolxi Scale",
  23152. height: math.unit(40, "meters"),
  23153. default: true
  23154. },
  23155. ]
  23156. ))
  23157. characterMakers.push(() => makeCharacter(
  23158. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23159. {
  23160. front: {
  23161. height: math.unit(1.78, "meters"),
  23162. weight: math.unit(65, "kg"),
  23163. name: "Front",
  23164. image: {
  23165. source: "./media/characters/aki/front.svg",
  23166. extra: 452 / 415
  23167. }
  23168. },
  23169. frontNsfw: {
  23170. height: math.unit(1.78, "meters"),
  23171. weight: math.unit(65, "kg"),
  23172. name: "Front (NSFW)",
  23173. image: {
  23174. source: "./media/characters/aki/front-nsfw.svg",
  23175. extra: 452 / 415
  23176. }
  23177. },
  23178. back: {
  23179. height: math.unit(1.78, "meters"),
  23180. weight: math.unit(65, "kg"),
  23181. name: "Back",
  23182. image: {
  23183. source: "./media/characters/aki/back.svg",
  23184. extra: 452 / 415
  23185. }
  23186. },
  23187. rump: {
  23188. height: math.unit(2.05, "feet"),
  23189. name: "Rump",
  23190. image: {
  23191. source: "./media/characters/aki/rump.svg"
  23192. }
  23193. },
  23194. dick: {
  23195. height: math.unit(0.95, "feet"),
  23196. name: "Dick",
  23197. image: {
  23198. source: "./media/characters/aki/dick.svg"
  23199. }
  23200. },
  23201. },
  23202. [
  23203. {
  23204. name: "Micro",
  23205. height: math.unit(15, "cm")
  23206. },
  23207. {
  23208. name: "Normal",
  23209. height: math.unit(178, "cm"),
  23210. default: true
  23211. },
  23212. {
  23213. name: "Macro",
  23214. height: math.unit(214, "m")
  23215. },
  23216. {
  23217. name: "Macro+",
  23218. height: math.unit(534, "m")
  23219. },
  23220. ]
  23221. ))
  23222. characterMakers.push(() => makeCharacter(
  23223. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23224. {
  23225. front: {
  23226. height: math.unit(5 + 5 / 12, "feet"),
  23227. weight: math.unit(120, "lb"),
  23228. name: "Front",
  23229. image: {
  23230. source: "./media/characters/ari/front.svg",
  23231. extra: 714.5 / 682,
  23232. bottom: 8 / 722.5
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Normal",
  23239. height: math.unit(5 + 5 / 12, "feet")
  23240. },
  23241. {
  23242. name: "Macro",
  23243. height: math.unit(100, "feet"),
  23244. default: true
  23245. },
  23246. {
  23247. name: "Megamacro",
  23248. height: math.unit(100, "miles")
  23249. },
  23250. {
  23251. name: "Gigamacro",
  23252. height: math.unit(80000, "miles")
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23258. {
  23259. side: {
  23260. height: math.unit(9, "feet"),
  23261. weight: math.unit(400, "kg"),
  23262. name: "Side",
  23263. image: {
  23264. source: "./media/characters/bolt/side.svg",
  23265. extra: 1126 / 896,
  23266. bottom: 60 / 1187.3,
  23267. }
  23268. },
  23269. },
  23270. [
  23271. {
  23272. name: "Micro",
  23273. height: math.unit(5, "inches")
  23274. },
  23275. {
  23276. name: "Normal",
  23277. height: math.unit(9, "feet"),
  23278. default: true
  23279. },
  23280. {
  23281. name: "Macro",
  23282. height: math.unit(700, "feet")
  23283. },
  23284. {
  23285. name: "Max Size",
  23286. height: math.unit(1.52e22, "yottameters")
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23292. {
  23293. front: {
  23294. height: math.unit(4.53, "meters"),
  23295. weight: math.unit(3, "tons"),
  23296. name: "Front",
  23297. image: {
  23298. source: "./media/characters/draekon-sylviar/front.svg",
  23299. extra: 1228 / 1068,
  23300. bottom: 41 / 1270
  23301. }
  23302. },
  23303. tail: {
  23304. height: math.unit(1.772, "meter"),
  23305. name: "Tail",
  23306. image: {
  23307. source: "./media/characters/draekon-sylviar/tail.svg"
  23308. }
  23309. },
  23310. head: {
  23311. height: math.unit(1.331, "meter"),
  23312. name: "Head",
  23313. image: {
  23314. source: "./media/characters/draekon-sylviar/head.svg"
  23315. }
  23316. },
  23317. hand: {
  23318. height: math.unit(0.564, "meter"),
  23319. name: "Hand",
  23320. image: {
  23321. source: "./media/characters/draekon-sylviar/hand.svg"
  23322. }
  23323. },
  23324. foot: {
  23325. height: math.unit(0.621, "meter"),
  23326. name: "Foot",
  23327. image: {
  23328. source: "./media/characters/draekon-sylviar/foot.svg",
  23329. bottom: 32 / 324
  23330. }
  23331. },
  23332. dick: {
  23333. height: math.unit(61, "cm"),
  23334. name: "Dick",
  23335. image: {
  23336. source: "./media/characters/draekon-sylviar/dick.svg"
  23337. }
  23338. },
  23339. dickseparated: {
  23340. height: math.unit(61, "cm"),
  23341. name: "Dick-separated",
  23342. image: {
  23343. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Small",
  23350. height: math.unit(4.53 / 2, "meters"),
  23351. default: true
  23352. },
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(4.53, "meters"),
  23356. default: true
  23357. },
  23358. {
  23359. name: "Large",
  23360. height: math.unit(4.53 * 2, "meters"),
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(6 + 2 / 12, "feet"),
  23369. weight: math.unit(180, "lb"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/brawler/front.svg",
  23373. extra: 3301 / 3027,
  23374. bottom: 138 / 3439
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Normal",
  23381. height: math.unit(6 + 2 / 12, "feet"),
  23382. default: true
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(11, "feet"),
  23391. weight: math.unit(1000, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/alex/front.svg",
  23395. bottom: 44.5 / 620
  23396. }
  23397. },
  23398. },
  23399. [
  23400. {
  23401. name: "Micro",
  23402. height: math.unit(5, "inches")
  23403. },
  23404. {
  23405. name: "Normal",
  23406. height: math.unit(11, "feet"),
  23407. default: true
  23408. },
  23409. {
  23410. name: "Macro",
  23411. height: math.unit(9.5e9, "feet")
  23412. },
  23413. {
  23414. name: "Max Size",
  23415. height: math.unit(1.4e283, "yottameters")
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23421. {
  23422. female: {
  23423. height: math.unit(29.9, "m"),
  23424. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23425. name: "Female",
  23426. image: {
  23427. source: "./media/characters/zenari/female.svg",
  23428. extra: 3281.6 / 3217,
  23429. bottom: 72.2 / 3353
  23430. }
  23431. },
  23432. male: {
  23433. height: math.unit(27.7, "m"),
  23434. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23435. name: "Male",
  23436. image: {
  23437. source: "./media/characters/zenari/male.svg",
  23438. extra: 3008 / 2991,
  23439. bottom: 54.6 / 3069
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(29.7, "meters"),
  23447. default: true
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23453. {
  23454. female: {
  23455. height: math.unit(23.8, "m"),
  23456. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23457. name: "Female",
  23458. image: {
  23459. source: "./media/characters/mactarian/female.svg",
  23460. extra: 2662 / 2569,
  23461. bottom: 73 / 2736
  23462. }
  23463. },
  23464. male: {
  23465. height: math.unit(23.8, "m"),
  23466. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23467. name: "Male",
  23468. image: {
  23469. source: "./media/characters/mactarian/male.svg",
  23470. extra: 2673 / 2600,
  23471. bottom: 76 / 2750
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Macro",
  23478. height: math.unit(23.8, "meters"),
  23479. default: true
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23485. {
  23486. female: {
  23487. height: math.unit(19.3, "m"),
  23488. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23489. name: "Female",
  23490. image: {
  23491. source: "./media/characters/umok/female.svg",
  23492. extra: 2186 / 2078,
  23493. bottom: 87 / 2277
  23494. }
  23495. },
  23496. male: {
  23497. height: math.unit(19.5, "m"),
  23498. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23499. name: "Male",
  23500. image: {
  23501. source: "./media/characters/umok/male.svg",
  23502. extra: 2233 / 2140,
  23503. bottom: 24.4 / 2258
  23504. }
  23505. },
  23506. },
  23507. [
  23508. {
  23509. name: "Macro",
  23510. height: math.unit(19.3, "meters"),
  23511. default: true
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23517. {
  23518. female: {
  23519. height: math.unit(26.15, "m"),
  23520. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23521. name: "Female",
  23522. image: {
  23523. source: "./media/characters/joraxian/female.svg",
  23524. extra: 2912 / 2824,
  23525. bottom: 36 / 2956
  23526. }
  23527. },
  23528. male: {
  23529. height: math.unit(25.4, "m"),
  23530. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23531. name: "Male",
  23532. image: {
  23533. source: "./media/characters/joraxian/male.svg",
  23534. extra: 2877 / 2721,
  23535. bottom: 82 / 2967
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Macro",
  23542. height: math.unit(26.15, "meters"),
  23543. default: true
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23549. {
  23550. female: {
  23551. height: math.unit(21.6, "m"),
  23552. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23553. name: "Female",
  23554. image: {
  23555. source: "./media/characters/sthara/female.svg",
  23556. extra: 2516 / 2347,
  23557. bottom: 21.5 / 2537
  23558. }
  23559. },
  23560. male: {
  23561. height: math.unit(24, "m"),
  23562. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23563. name: "Male",
  23564. image: {
  23565. source: "./media/characters/sthara/male.svg",
  23566. extra: 2732 / 2607,
  23567. bottom: 23 / 2732
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Macro",
  23574. height: math.unit(21.6, "meters"),
  23575. default: true
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(6 + 4 / 12, "feet"),
  23584. weight: math.unit(175, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/luka-bryzant/front.svg",
  23588. extra: 311 / 289,
  23589. bottom: 4 / 315
  23590. }
  23591. },
  23592. back: {
  23593. height: math.unit(6 + 4 / 12, "feet"),
  23594. weight: math.unit(175, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/luka-bryzant/back.svg",
  23598. extra: 311 / 289,
  23599. bottom: 3.8 / 313.7
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Micro",
  23606. height: math.unit(10, "inches")
  23607. },
  23608. {
  23609. name: "Normal",
  23610. height: math.unit(6 + 4 / 12, "feet"),
  23611. default: true
  23612. },
  23613. {
  23614. name: "Large",
  23615. height: math.unit(12, "feet")
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(5 + 7 / 12, "feet"),
  23624. weight: math.unit(185, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/aman-aquila/front.svg",
  23628. extra: 1013 / 976,
  23629. bottom: 45.6 / 1057
  23630. }
  23631. },
  23632. side: {
  23633. height: math.unit(5 + 7 / 12, "feet"),
  23634. weight: math.unit(185, "lb"),
  23635. name: "Side",
  23636. image: {
  23637. source: "./media/characters/aman-aquila/side.svg",
  23638. extra: 1054 / 1011,
  23639. bottom: 15 / 1070
  23640. }
  23641. },
  23642. back: {
  23643. height: math.unit(5 + 7 / 12, "feet"),
  23644. weight: math.unit(185, "lb"),
  23645. name: "Back",
  23646. image: {
  23647. source: "./media/characters/aman-aquila/back.svg",
  23648. extra: 1026 / 970,
  23649. bottom: 12 / 1039
  23650. }
  23651. },
  23652. head: {
  23653. height: math.unit(1.211, "feet"),
  23654. name: "Head",
  23655. image: {
  23656. source: "./media/characters/aman-aquila/head.svg",
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Minimicro",
  23663. height: math.unit(0.057, "inches")
  23664. },
  23665. {
  23666. name: "Micro",
  23667. height: math.unit(7, "inches")
  23668. },
  23669. {
  23670. name: "Mini",
  23671. height: math.unit(3 + 7 / 12, "feet")
  23672. },
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(5 + 7 / 12, "feet"),
  23676. default: true
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(157 + 7 / 12, "feet")
  23681. },
  23682. {
  23683. name: "Megamacro",
  23684. height: math.unit(1557 + 7 / 12, "feet")
  23685. },
  23686. {
  23687. name: "Gigamacro",
  23688. height: math.unit(15557 + 7 / 12, "feet")
  23689. },
  23690. ]
  23691. ))
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23694. {
  23695. front: {
  23696. height: math.unit(3 + 2 / 12, "inches"),
  23697. weight: math.unit(0.3, "ounces"),
  23698. name: "Front",
  23699. image: {
  23700. source: "./media/characters/hiphae/front.svg",
  23701. extra: 1931 / 1683,
  23702. bottom: 24 / 1955
  23703. }
  23704. },
  23705. },
  23706. [
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(3 + 1 / 2, "inches"),
  23710. default: true
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(5 + 10 / 12, "feet"),
  23719. weight: math.unit(165, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/nicky/front.svg",
  23723. extra: 3144 / 2886,
  23724. bottom: 45.6 / 3192
  23725. }
  23726. },
  23727. back: {
  23728. height: math.unit(5 + 10 / 12, "feet"),
  23729. weight: math.unit(165, "lb"),
  23730. name: "Back",
  23731. image: {
  23732. source: "./media/characters/nicky/back.svg",
  23733. extra: 3055 / 2804,
  23734. bottom: 28.4 / 3087
  23735. }
  23736. },
  23737. frontclothed: {
  23738. height: math.unit(5 + 10 / 12, "feet"),
  23739. weight: math.unit(165, "lb"),
  23740. name: "Front-clothed",
  23741. image: {
  23742. source: "./media/characters/nicky/front-clothed.svg",
  23743. extra: 3184.9 / 2926.9,
  23744. bottom: 86.5 / 3239.9
  23745. }
  23746. },
  23747. foot: {
  23748. height: math.unit(1.16, "feet"),
  23749. name: "Foot",
  23750. image: {
  23751. source: "./media/characters/nicky/foot.svg"
  23752. }
  23753. },
  23754. feet: {
  23755. height: math.unit(1.34, "feet"),
  23756. name: "Feet",
  23757. image: {
  23758. source: "./media/characters/nicky/feet.svg"
  23759. }
  23760. },
  23761. maw: {
  23762. height: math.unit(0.9, "feet"),
  23763. name: "Maw",
  23764. image: {
  23765. source: "./media/characters/nicky/maw.svg"
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Normal",
  23772. height: math.unit(5 + 10 / 12, "feet"),
  23773. default: true
  23774. },
  23775. {
  23776. name: "Macro",
  23777. height: math.unit(60, "feet")
  23778. },
  23779. {
  23780. name: "Megamacro",
  23781. height: math.unit(1, "mile")
  23782. },
  23783. ]
  23784. ))
  23785. characterMakers.push(() => makeCharacter(
  23786. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23787. {
  23788. side: {
  23789. height: math.unit(10, "feet"),
  23790. weight: math.unit(600, "lb"),
  23791. name: "Side",
  23792. image: {
  23793. source: "./media/characters/blair/side.svg",
  23794. bottom: 16.6 / 475,
  23795. extra: 458 / 431
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Micro",
  23802. height: math.unit(8, "inches")
  23803. },
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(10, "feet"),
  23807. default: true
  23808. },
  23809. {
  23810. name: "Macro",
  23811. height: math.unit(180, "feet")
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23817. {
  23818. front: {
  23819. height: math.unit(5 + 4 / 12, "feet"),
  23820. weight: math.unit(125, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/fisher/front.svg",
  23824. extra: 444 / 390,
  23825. bottom: 2 / 444.8
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Micro",
  23832. height: math.unit(4, "inches")
  23833. },
  23834. {
  23835. name: "Normal",
  23836. height: math.unit(5 + 4 / 12, "feet"),
  23837. default: true
  23838. },
  23839. {
  23840. name: "Macro",
  23841. height: math.unit(100, "feet")
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23847. {
  23848. front: {
  23849. height: math.unit(6.71, "feet"),
  23850. weight: math.unit(200, "lb"),
  23851. capacity: math.unit(1000000, "people"),
  23852. name: "Front",
  23853. image: {
  23854. source: "./media/characters/gliss/front.svg",
  23855. extra: 2347 / 2231,
  23856. bottom: 113 / 2462
  23857. }
  23858. },
  23859. hammerspaceSize: {
  23860. height: math.unit(6.71 * 717, "feet"),
  23861. weight: math.unit(200, "lb"),
  23862. capacity: math.unit(1000000, "people"),
  23863. name: "Hammerspace Size",
  23864. image: {
  23865. source: "./media/characters/gliss/front.svg",
  23866. extra: 2347 / 2231,
  23867. bottom: 113 / 2462
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(6.71, "feet"),
  23875. default: true
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23881. {
  23882. side: {
  23883. height: math.unit(1.44, "m"),
  23884. weight: math.unit(80, "kg"),
  23885. name: "Side",
  23886. image: {
  23887. source: "./media/characters/dune-anderson/side.svg",
  23888. bottom: 49 / 1426
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Wolf-sized",
  23895. height: math.unit(1.44, "meters")
  23896. },
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(5.05, "meters"),
  23900. default: true
  23901. },
  23902. {
  23903. name: "Big",
  23904. height: math.unit(14.4, "meters")
  23905. },
  23906. {
  23907. name: "Huge",
  23908. height: math.unit(144, "meters")
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(7, "feet"),
  23917. weight: math.unit(425, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/hind/front.svg",
  23921. extra: 2091 / 1860,
  23922. bottom: 129 / 2220
  23923. }
  23924. },
  23925. back: {
  23926. height: math.unit(7, "feet"),
  23927. weight: math.unit(425, "lb"),
  23928. name: "Back",
  23929. image: {
  23930. source: "./media/characters/hind/back.svg",
  23931. extra: 2091 / 1860,
  23932. bottom: 24.6 / 2309
  23933. }
  23934. },
  23935. tail: {
  23936. height: math.unit(2.8, "feet"),
  23937. name: "Tail",
  23938. image: {
  23939. source: "./media/characters/hind/tail.svg"
  23940. }
  23941. },
  23942. head: {
  23943. height: math.unit(2.55, "feet"),
  23944. name: "Head",
  23945. image: {
  23946. source: "./media/characters/hind/head.svg"
  23947. }
  23948. },
  23949. },
  23950. [
  23951. {
  23952. name: "XS",
  23953. height: math.unit(0.7, "feet")
  23954. },
  23955. {
  23956. name: "Normal",
  23957. height: math.unit(7, "feet"),
  23958. default: true
  23959. },
  23960. {
  23961. name: "XL",
  23962. height: math.unit(70, "feet")
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(6, "feet"),
  23971. weight: math.unit(150, "lb"),
  23972. name: "Front",
  23973. image: {
  23974. source: "./media/characters/dylan-skaven/front.svg",
  23975. extra: 2318 / 2063,
  23976. bottom: 93.4 / 2410
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Nano",
  23983. height: math.unit(1, "mm")
  23984. },
  23985. {
  23986. name: "Micro",
  23987. height: math.unit(1, "cm")
  23988. },
  23989. {
  23990. name: "Normal",
  23991. height: math.unit(2.1, "meters"),
  23992. default: true
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(7 + 5 / 12, "feet"),
  24001. weight: math.unit(357, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/solex-draconov/front.svg",
  24005. extra: 1993 / 1865,
  24006. bottom: 117 / 2111
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Natural Height",
  24013. height: math.unit(7 + 5 / 12, "feet"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Macro",
  24018. height: math.unit(350, "feet")
  24019. },
  24020. {
  24021. name: "Macro+",
  24022. height: math.unit(1000, "feet")
  24023. },
  24024. {
  24025. name: "Megamacro",
  24026. height: math.unit(20, "km")
  24027. },
  24028. {
  24029. name: "Megamacro+",
  24030. height: math.unit(1000, "km")
  24031. },
  24032. {
  24033. name: "Gigamacro",
  24034. height: math.unit(2.5, "Gm")
  24035. },
  24036. {
  24037. name: "Teramacro",
  24038. height: math.unit(15, "Tm")
  24039. },
  24040. {
  24041. name: "Galactic",
  24042. height: math.unit(30, "Zm")
  24043. },
  24044. {
  24045. name: "Universal",
  24046. height: math.unit(21000, "Ym")
  24047. },
  24048. {
  24049. name: "Omniversal",
  24050. height: math.unit(9.861e50, "Ym")
  24051. },
  24052. {
  24053. name: "Existential",
  24054. height: math.unit(1e300, "meters")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24060. {
  24061. side: {
  24062. height: math.unit(25, "feet"),
  24063. weight: math.unit(90000, "lb"),
  24064. name: "Side",
  24065. image: {
  24066. source: "./media/characters/mandarax/side.svg",
  24067. extra: 614 / 332,
  24068. bottom: 55 / 630
  24069. }
  24070. },
  24071. head: {
  24072. height: math.unit(11.4, "feet"),
  24073. name: "Head",
  24074. image: {
  24075. source: "./media/characters/mandarax/head.svg"
  24076. }
  24077. },
  24078. belly: {
  24079. height: math.unit(33, "feet"),
  24080. name: "Belly",
  24081. capacity: math.unit(500, "people"),
  24082. image: {
  24083. source: "./media/characters/mandarax/belly.svg"
  24084. }
  24085. },
  24086. dick: {
  24087. height: math.unit(8.46, "feet"),
  24088. name: "Dick",
  24089. image: {
  24090. source: "./media/characters/mandarax/dick.svg"
  24091. }
  24092. },
  24093. top: {
  24094. height: math.unit(28, "meters"),
  24095. name: "Top",
  24096. image: {
  24097. source: "./media/characters/mandarax/top.svg"
  24098. }
  24099. },
  24100. },
  24101. [
  24102. {
  24103. name: "Normal",
  24104. height: math.unit(25, "feet"),
  24105. default: true
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(5, "feet"),
  24114. weight: math.unit(90, "lb"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/pixil/front.svg",
  24118. extra: 2000 / 1618,
  24119. bottom: 12.3 / 2011
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Normal",
  24126. height: math.unit(5, "feet"),
  24127. default: true
  24128. },
  24129. {
  24130. name: "Megamacro",
  24131. height: math.unit(10, "miles"),
  24132. },
  24133. ]
  24134. ))
  24135. characterMakers.push(() => makeCharacter(
  24136. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24137. {
  24138. front: {
  24139. height: math.unit(7 + 2 / 12, "feet"),
  24140. weight: math.unit(200, "lb"),
  24141. name: "Front",
  24142. image: {
  24143. source: "./media/characters/angel/front.svg",
  24144. extra: 1830 / 1737,
  24145. bottom: 22.6 / 1854,
  24146. }
  24147. },
  24148. },
  24149. [
  24150. {
  24151. name: "Normal",
  24152. height: math.unit(7 + 2 / 12, "feet"),
  24153. default: true
  24154. },
  24155. {
  24156. name: "Macro",
  24157. height: math.unit(1000, "feet")
  24158. },
  24159. {
  24160. name: "Megamacro",
  24161. height: math.unit(2, "miles")
  24162. },
  24163. {
  24164. name: "Gigamacro",
  24165. height: math.unit(20, "earths")
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(5, "feet"),
  24174. weight: math.unit(180, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/mekana/front.svg",
  24178. extra: 1671 / 1605,
  24179. bottom: 3.5 / 1691
  24180. }
  24181. },
  24182. side: {
  24183. height: math.unit(5, "feet"),
  24184. weight: math.unit(180, "lb"),
  24185. name: "Side",
  24186. image: {
  24187. source: "./media/characters/mekana/side.svg",
  24188. extra: 1671 / 1605,
  24189. bottom: 3.5 / 1691
  24190. }
  24191. },
  24192. back: {
  24193. height: math.unit(5, "feet"),
  24194. weight: math.unit(180, "lb"),
  24195. name: "Back",
  24196. image: {
  24197. source: "./media/characters/mekana/back.svg",
  24198. extra: 1671 / 1605,
  24199. bottom: 3.5 / 1691
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Normal",
  24206. height: math.unit(5, "feet"),
  24207. default: true
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(4 + 6 / 12, "feet"),
  24216. weight: math.unit(80, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/pixie/front.svg",
  24220. extra: 1924 / 1825,
  24221. bottom: 22.4 / 1946
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Normal",
  24228. height: math.unit(4 + 6 / 12, "feet"),
  24229. default: true
  24230. },
  24231. {
  24232. name: "Macro",
  24233. height: math.unit(40, "feet")
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(2.1, "meters"),
  24242. weight: math.unit(200, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/the-lascivious/front.svg",
  24246. extra: 1 / 0.893,
  24247. bottom: 3.5 / 573.7
  24248. }
  24249. },
  24250. },
  24251. [
  24252. {
  24253. name: "Human Scale",
  24254. height: math.unit(2.1, "meters")
  24255. },
  24256. {
  24257. name: "Wolxi Scale",
  24258. height: math.unit(46.2, "m"),
  24259. default: true
  24260. },
  24261. {
  24262. name: "Boinker of Buildings",
  24263. height: math.unit(10, "km")
  24264. },
  24265. {
  24266. name: "Shagger of Skyscrapers",
  24267. height: math.unit(40, "km")
  24268. },
  24269. {
  24270. name: "Banger of Boroughs",
  24271. height: math.unit(4000, "km")
  24272. },
  24273. {
  24274. name: "Screwer of States",
  24275. height: math.unit(100000, "km")
  24276. },
  24277. {
  24278. name: "Pounder of Planets",
  24279. height: math.unit(2000000, "km")
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24285. {
  24286. front: {
  24287. height: math.unit(6, "feet"),
  24288. weight: math.unit(150, "lb"),
  24289. name: "Front",
  24290. image: {
  24291. source: "./media/characters/aj/front.svg",
  24292. extra: 2039 / 1562,
  24293. bottom: 40 / 2079
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Normal",
  24300. height: math.unit(11 + 6 / 12, "feet"),
  24301. default: true
  24302. },
  24303. {
  24304. name: "Megamacro",
  24305. height: math.unit(60, "megameters")
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24311. {
  24312. side: {
  24313. height: math.unit(31 + 8/12, "feet"),
  24314. weight: math.unit(75000, "kg"),
  24315. name: "Side",
  24316. image: {
  24317. source: "./media/characters/koros/side.svg",
  24318. extra: 1442/1297,
  24319. bottom: 122.7/1562
  24320. }
  24321. },
  24322. dicksKingsCrown: {
  24323. height: math.unit(6, "feet"),
  24324. name: "Dicks (King's Crown)",
  24325. image: {
  24326. source: "./media/characters/koros/dicks-kings-crown.svg"
  24327. }
  24328. },
  24329. dicksTailSet: {
  24330. height: math.unit(3, "feet"),
  24331. name: "Dicks (Tail Set)",
  24332. image: {
  24333. source: "./media/characters/koros/dicks-tail-set.svg"
  24334. }
  24335. },
  24336. dickCumming: {
  24337. height: math.unit(7.98, "feet"),
  24338. name: "Dick (Cumming)",
  24339. image: {
  24340. source: "./media/characters/koros/dick-cumming.svg"
  24341. }
  24342. },
  24343. dicksBack: {
  24344. height: math.unit(5.9, "feet"),
  24345. name: "Dicks (Back)",
  24346. image: {
  24347. source: "./media/characters/koros/dicks-back.svg"
  24348. }
  24349. },
  24350. dicksFront: {
  24351. height: math.unit(3.72, "feet"),
  24352. name: "Dicks (Front)",
  24353. image: {
  24354. source: "./media/characters/koros/dicks-front.svg"
  24355. }
  24356. },
  24357. dicksPeeking: {
  24358. height: math.unit(3.0, "feet"),
  24359. name: "Dicks (Peeking)",
  24360. image: {
  24361. source: "./media/characters/koros/dicks-peeking.svg"
  24362. }
  24363. },
  24364. eye: {
  24365. height: math.unit(1.7, "feet"),
  24366. name: "Eye",
  24367. image: {
  24368. source: "./media/characters/koros/eye.svg"
  24369. }
  24370. },
  24371. headFront: {
  24372. height: math.unit(11.69, "feet"),
  24373. name: "Head (Front)",
  24374. image: {
  24375. source: "./media/characters/koros/head-front.svg"
  24376. }
  24377. },
  24378. headSide: {
  24379. height: math.unit(14, "feet"),
  24380. name: "Head (Side)",
  24381. image: {
  24382. source: "./media/characters/koros/head-side.svg"
  24383. }
  24384. },
  24385. leg: {
  24386. height: math.unit(17, "feet"),
  24387. name: "Leg",
  24388. image: {
  24389. source: "./media/characters/koros/leg.svg"
  24390. }
  24391. },
  24392. mawSide: {
  24393. height: math.unit(12.8, "feet"),
  24394. name: "Maw (Side)",
  24395. image: {
  24396. source: "./media/characters/koros/maw-side.svg"
  24397. }
  24398. },
  24399. mawSpitting: {
  24400. height: math.unit(17, "feet"),
  24401. name: "Maw (Spitting)",
  24402. image: {
  24403. source: "./media/characters/koros/maw-spitting.svg"
  24404. }
  24405. },
  24406. slit: {
  24407. height: math.unit(2.8, "feet"),
  24408. name: "Slit",
  24409. image: {
  24410. source: "./media/characters/koros/slit.svg"
  24411. }
  24412. },
  24413. stomach: {
  24414. height: math.unit(6.8, "feet"),
  24415. capacity: math.unit(20, "people"),
  24416. name: "Stomach",
  24417. image: {
  24418. source: "./media/characters/koros/stomach.svg"
  24419. }
  24420. },
  24421. wingspanBottom: {
  24422. height: math.unit(114, "feet"),
  24423. name: "Wingspan (Bottom)",
  24424. image: {
  24425. source: "./media/characters/koros/wingspan-bottom.svg"
  24426. }
  24427. },
  24428. wingspanTop: {
  24429. height: math.unit(104, "feet"),
  24430. name: "Wingspan (Top)",
  24431. image: {
  24432. source: "./media/characters/koros/wingspan-top.svg"
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "Normal",
  24439. height: math.unit(31 + 8/12, "feet"),
  24440. default: true
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(18 + 5/12, "feet"),
  24449. weight: math.unit(3750, "kg"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/vexx/front.svg",
  24453. extra: 426/396,
  24454. bottom: 31.5/458
  24455. }
  24456. },
  24457. maw: {
  24458. height: math.unit(6, "feet"),
  24459. name: "Maw",
  24460. image: {
  24461. source: "./media/characters/vexx/maw.svg"
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Normal",
  24468. height: math.unit(18 + 5/12, "feet"),
  24469. default: true
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24475. {
  24476. front: {
  24477. height: math.unit(17 + 6/12, "feet"),
  24478. weight: math.unit(150, "lb"),
  24479. name: "Front",
  24480. image: {
  24481. source: "./media/characters/baadra/front.svg",
  24482. extra: 3137/2890,
  24483. bottom: 168.4/3305
  24484. }
  24485. },
  24486. back: {
  24487. height: math.unit(17 + 6/12, "feet"),
  24488. weight: math.unit(150, "lb"),
  24489. name: "Back",
  24490. image: {
  24491. source: "./media/characters/baadra/back.svg",
  24492. extra: 3142/2890,
  24493. bottom: 220/3371
  24494. }
  24495. },
  24496. head: {
  24497. height: math.unit(5.45, "feet"),
  24498. name: "Head",
  24499. image: {
  24500. source: "./media/characters/baadra/head.svg"
  24501. }
  24502. },
  24503. headAngry: {
  24504. height: math.unit(4.95, "feet"),
  24505. name: "Head (Angry)",
  24506. image: {
  24507. source: "./media/characters/baadra/head-angry.svg"
  24508. }
  24509. },
  24510. headOpen: {
  24511. height: math.unit(6, "feet"),
  24512. name: "Head (Open)",
  24513. image: {
  24514. source: "./media/characters/baadra/head-open.svg"
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Normal",
  24521. height: math.unit(17 + 6/12, "feet"),
  24522. default: true
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(7 + 3/12, "feet"),
  24531. weight: math.unit(180, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/juri/front.svg",
  24535. extra: 1401/1237,
  24536. bottom: 18.5/1418
  24537. }
  24538. },
  24539. side: {
  24540. height: math.unit(7 + 3/12, "feet"),
  24541. weight: math.unit(180, "lb"),
  24542. name: "Side",
  24543. image: {
  24544. source: "./media/characters/juri/side.svg",
  24545. extra: 1424/1242,
  24546. bottom: 18.5/1447
  24547. }
  24548. },
  24549. sitting: {
  24550. height: math.unit(6, "feet"),
  24551. weight: math.unit(180, "lb"),
  24552. name: "Sitting",
  24553. image: {
  24554. source: "./media/characters/juri/sitting.svg",
  24555. extra: 1270/1143,
  24556. bottom: 100/1343
  24557. }
  24558. },
  24559. back: {
  24560. height: math.unit(7 + 3/12, "feet"),
  24561. weight: math.unit(180, "lb"),
  24562. name: "Back",
  24563. image: {
  24564. source: "./media/characters/juri/back.svg",
  24565. extra: 1377/1240,
  24566. bottom: 23.7/1405
  24567. }
  24568. },
  24569. maw: {
  24570. height: math.unit(2.8, "feet"),
  24571. name: "Maw",
  24572. image: {
  24573. source: "./media/characters/juri/maw.svg"
  24574. }
  24575. },
  24576. stomach: {
  24577. height: math.unit(0.89, "feet"),
  24578. capacity: math.unit(4, "liters"),
  24579. name: "Stomach",
  24580. image: {
  24581. source: "./media/characters/juri/stomach.svg"
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(7 + 3/12, "feet"),
  24589. default: true
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24595. {
  24596. fox: {
  24597. height: math.unit(5 + 6/12, "feet"),
  24598. weight: math.unit(140, "lb"),
  24599. name: "Fox",
  24600. image: {
  24601. source: "./media/characters/maxene-sita/fox.svg",
  24602. extra: 146/138,
  24603. bottom: 2.1/148.19
  24604. }
  24605. },
  24606. kitsune: {
  24607. height: math.unit(10, "feet"),
  24608. weight: math.unit(800, "lb"),
  24609. name: "Kitsune",
  24610. image: {
  24611. source: "./media/characters/maxene-sita/kitsune.svg",
  24612. extra: 185/176,
  24613. bottom: 4.7/189.9
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "Normal",
  24620. height: math.unit(5 + 6/12, "feet"),
  24621. default: true
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24627. {
  24628. front: {
  24629. height: math.unit(3 + 4/12, "feet"),
  24630. weight: math.unit(70, "lb"),
  24631. name: "Front",
  24632. image: {
  24633. source: "./media/characters/maia/front.svg",
  24634. extra: 227/219.5,
  24635. bottom: 40 / 267
  24636. }
  24637. },
  24638. back: {
  24639. height: math.unit(3 + 4/12, "feet"),
  24640. weight: math.unit(70, "lb"),
  24641. name: "Back",
  24642. image: {
  24643. source: "./media/characters/maia/back.svg",
  24644. extra: 237/225
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Normal",
  24651. height: math.unit(3 + 4/12, "feet"),
  24652. default: true
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24658. {
  24659. front: {
  24660. height: math.unit(5 + 10/12, "feet"),
  24661. weight: math.unit(197, "lb"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/jabaro/front.svg",
  24665. extra: 225/216,
  24666. bottom: 5.06/230
  24667. }
  24668. },
  24669. back: {
  24670. height: math.unit(5 + 10/12, "feet"),
  24671. weight: math.unit(197, "lb"),
  24672. name: "Back",
  24673. image: {
  24674. source: "./media/characters/jabaro/back.svg",
  24675. extra: 225/219,
  24676. bottom: 1.9/227
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(5 + 10/12, "feet"),
  24684. default: true
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24690. {
  24691. front: {
  24692. height: math.unit(5 + 8/12, "feet"),
  24693. weight: math.unit(139, "lb"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/risa/front.svg",
  24697. extra: 270/260,
  24698. bottom: 11.2/282
  24699. }
  24700. },
  24701. back: {
  24702. height: math.unit(5 + 8/12, "feet"),
  24703. weight: math.unit(139, "lb"),
  24704. name: "Back",
  24705. image: {
  24706. source: "./media/characters/risa/back.svg",
  24707. extra: 264/255,
  24708. bottom: 4/268
  24709. }
  24710. },
  24711. },
  24712. [
  24713. {
  24714. name: "Normal",
  24715. height: math.unit(5 + 8/12, "feet"),
  24716. default: true
  24717. },
  24718. ]
  24719. ))
  24720. characterMakers.push(() => makeCharacter(
  24721. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24722. {
  24723. front: {
  24724. height: math.unit(2 + 11/12, "feet"),
  24725. weight: math.unit(30, "lb"),
  24726. name: "Front",
  24727. image: {
  24728. source: "./media/characters/weatley/front.svg",
  24729. bottom: 10.7/414,
  24730. extra: 403.5/362
  24731. }
  24732. },
  24733. back: {
  24734. height: math.unit(2 + 11/12, "feet"),
  24735. weight: math.unit(30, "lb"),
  24736. name: "Back",
  24737. image: {
  24738. source: "./media/characters/weatley/back.svg",
  24739. bottom: 10.7/414,
  24740. extra: 403.5/362
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(2 + 11/12, "feet"),
  24748. default: true
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24754. {
  24755. front: {
  24756. height: math.unit(5 + 2/12, "feet"),
  24757. weight: math.unit(50, "kg"),
  24758. name: "Front",
  24759. image: {
  24760. source: "./media/characters/mercury-crescent/front.svg",
  24761. extra: 1088/1033,
  24762. bottom: 18.9/1109
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(5 + 2/12, "feet"),
  24770. default: true
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(2, "feet"),
  24779. weight: math.unit(15, "kg"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/diamond-jones/front.svg",
  24783. bottom: 16/568
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Normal",
  24790. height: math.unit(2, "feet"),
  24791. default: true
  24792. },
  24793. ]
  24794. ))
  24795. characterMakers.push(() => makeCharacter(
  24796. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24797. {
  24798. front: {
  24799. height: math.unit(3, "feet"),
  24800. weight: math.unit(30, "kg"),
  24801. name: "Front",
  24802. image: {
  24803. source: "./media/characters/sweet-bit/front.svg",
  24804. extra: 675/567,
  24805. bottom: 27.7/703
  24806. }
  24807. },
  24808. },
  24809. [
  24810. {
  24811. name: "Normal",
  24812. height: math.unit(3, "feet"),
  24813. default: true
  24814. },
  24815. ]
  24816. ))
  24817. characterMakers.push(() => makeCharacter(
  24818. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24819. {
  24820. side: {
  24821. height: math.unit(9.178, "feet"),
  24822. weight: math.unit(500, "lb"),
  24823. name: "Side",
  24824. image: {
  24825. source: "./media/characters/umbrazen/side.svg",
  24826. extra: 1730/1473,
  24827. bottom: 34.6/1765
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Normal",
  24834. height: math.unit(9.178, "feet"),
  24835. default: true
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24841. {
  24842. front: {
  24843. height: math.unit(10, "feet"),
  24844. weight: math.unit(750, "lb"),
  24845. name: "Front",
  24846. image: {
  24847. source: "./media/characters/arlist/front.svg",
  24848. extra: 961/778,
  24849. bottom: 6.2/986
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(10, "feet"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(5 + 1/12, "feet"),
  24866. weight: math.unit(110, "lb"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/aradel/front.svg",
  24870. extra: 324/303,
  24871. bottom: 3.6/329.4
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(5 + 1/12, "feet"),
  24879. default: true
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(3 + 8/12, "feet"),
  24888. weight: math.unit(50, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/serryn/front.svg",
  24892. extra: 1792/1656,
  24893. bottom: 43.5/1840
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Normal",
  24900. height: math.unit(3 + 8/12, "feet"),
  24901. default: true
  24902. },
  24903. ]
  24904. ))
  24905. characterMakers.push(() => makeCharacter(
  24906. { name: "Xavier Thyme" },
  24907. {
  24908. front: {
  24909. height: math.unit(7 + 10/12, "feet"),
  24910. weight: math.unit(255, "lb"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/xavier-thyme/front.svg",
  24914. extra: 3733/3642,
  24915. bottom: 131/3869
  24916. }
  24917. },
  24918. frontRaven: {
  24919. height: math.unit(7 + 10/12, "feet"),
  24920. weight: math.unit(255, "lb"),
  24921. name: "Front (Raven)",
  24922. image: {
  24923. source: "./media/characters/xavier-thyme/front-raven.svg",
  24924. extra: 4385/3642,
  24925. bottom: 131/4517
  24926. }
  24927. },
  24928. },
  24929. [
  24930. {
  24931. name: "Normal",
  24932. height: math.unit(7 + 10/12, "feet"),
  24933. default: true
  24934. },
  24935. ]
  24936. ))
  24937. characterMakers.push(() => makeCharacter(
  24938. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24939. {
  24940. front: {
  24941. height: math.unit(1.6, "m"),
  24942. weight: math.unit(50, "kg"),
  24943. name: "Front",
  24944. image: {
  24945. source: "./media/characters/kiki/front.svg",
  24946. extra: 4682/3610,
  24947. bottom: 115/4777
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(1.6, "meters"),
  24955. default: true
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24961. {
  24962. front: {
  24963. height: math.unit(50, "m"),
  24964. weight: math.unit(500, "tonnes"),
  24965. name: "Front",
  24966. image: {
  24967. source: "./media/characters/ryoko/front.svg",
  24968. extra: 4632/3926,
  24969. bottom: 193/4823
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(50, "meters"),
  24977. default: true
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(30, "m"),
  24986. weight: math.unit(22, "tonnes"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/elio/front.svg",
  24990. extra: 4582/3720,
  24991. bottom: 236/4828
  24992. }
  24993. },
  24994. },
  24995. [
  24996. {
  24997. name: "Normal",
  24998. height: math.unit(30, "meters"),
  24999. default: true
  25000. },
  25001. ]
  25002. ))
  25003. characterMakers.push(() => makeCharacter(
  25004. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25005. {
  25006. front: {
  25007. height: math.unit(6 + 3/12, "feet"),
  25008. weight: math.unit(120, "lb"),
  25009. name: "Front",
  25010. image: {
  25011. source: "./media/characters/azura/front.svg",
  25012. extra: 1149/1135,
  25013. bottom: 45/1194
  25014. }
  25015. },
  25016. frontClothed: {
  25017. height: math.unit(6 + 3/12, "feet"),
  25018. weight: math.unit(120, "lb"),
  25019. name: "Front (Clothed)",
  25020. image: {
  25021. source: "./media/characters/azura/front-clothed.svg",
  25022. extra: 1149/1135,
  25023. bottom: 45/1194
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Normal",
  25030. height: math.unit(6 + 3/12, "feet"),
  25031. default: true
  25032. },
  25033. {
  25034. name: "Macro",
  25035. height: math.unit(20 + 6/12, "feet")
  25036. },
  25037. {
  25038. name: "Megamacro",
  25039. height: math.unit(12, "miles")
  25040. },
  25041. {
  25042. name: "Gigamacro",
  25043. height: math.unit(10000, "miles")
  25044. },
  25045. {
  25046. name: "Teramacro",
  25047. height: math.unit(900000, "miles")
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25053. {
  25054. front: {
  25055. height: math.unit(12, "feet"),
  25056. weight: math.unit(1, "ton"),
  25057. capacity: math.unit(660000, "gallons"),
  25058. name: "Front",
  25059. image: {
  25060. source: "./media/characters/zeus/front.svg",
  25061. extra: 5005/4717,
  25062. bottom: 363/5388
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Normal",
  25069. height: math.unit(12, "feet")
  25070. },
  25071. {
  25072. name: "Preferred Size",
  25073. height: math.unit(0.5, "miles"),
  25074. default: true
  25075. },
  25076. {
  25077. name: "Giga Horse",
  25078. height: math.unit(300, "miles")
  25079. },
  25080. {
  25081. name: "Riding Planets",
  25082. height: math.unit(30, "megameters")
  25083. },
  25084. {
  25085. name: "Cosmic Giant",
  25086. height: math.unit(3, "zettameters")
  25087. },
  25088. {
  25089. name: "Breeding God",
  25090. height: math.unit(9.92e22, "yottameters")
  25091. },
  25092. ]
  25093. ))
  25094. characterMakers.push(() => makeCharacter(
  25095. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25096. {
  25097. side: {
  25098. height: math.unit(9, "feet"),
  25099. weight: math.unit(1500, "kg"),
  25100. name: "Side",
  25101. image: {
  25102. source: "./media/characters/fang/side.svg",
  25103. extra: 924/866,
  25104. bottom: 47.5/972.3
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Normal",
  25111. height: math.unit(9, "feet"),
  25112. default: true
  25113. },
  25114. {
  25115. name: "Macro",
  25116. height: math.unit(75 + 6/12, "feet")
  25117. },
  25118. {
  25119. name: "Teramacro",
  25120. height: math.unit(50000, "miles")
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(10, "feet"),
  25129. weight: math.unit(2, "tons"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/rekhit/front.svg",
  25133. extra: 2796/2590,
  25134. bottom: 225/3022
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(10, "feet"),
  25142. default: true
  25143. },
  25144. {
  25145. name: "Macro",
  25146. height: math.unit(500, "feet")
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Dahlia Verrick" },
  25152. {
  25153. front: {
  25154. height: math.unit(7 + 6.451/12, "feet"),
  25155. weight: math.unit(310, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/dahlia-verrick/front.svg",
  25159. extra: 1488/1365,
  25160. bottom: 6.2/1495
  25161. }
  25162. },
  25163. back: {
  25164. height: math.unit(7 + 6.451/12, "feet"),
  25165. weight: math.unit(310, "lb"),
  25166. name: "Back",
  25167. image: {
  25168. source: "./media/characters/dahlia-verrick/back.svg",
  25169. extra: 1472/1351,
  25170. bottom: 5.28/1477
  25171. }
  25172. },
  25173. frontBusiness: {
  25174. height: math.unit(7 + 6.451/12, "feet"),
  25175. weight: math.unit(200, "lb"),
  25176. name: "Front (Business)",
  25177. image: {
  25178. source: "./media/characters/dahlia-verrick/front-business.svg",
  25179. extra: 1478/1381,
  25180. bottom: 5.5/1484
  25181. }
  25182. },
  25183. frontCasual: {
  25184. height: math.unit(7 + 6.451/12, "feet"),
  25185. weight: math.unit(200, "lb"),
  25186. name: "Front (Casual)",
  25187. image: {
  25188. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25189. extra: 1478/1381,
  25190. bottom: 5.5/1484
  25191. }
  25192. },
  25193. },
  25194. [
  25195. {
  25196. name: "Travel-Sized",
  25197. height: math.unit(7.45, "inches")
  25198. },
  25199. {
  25200. name: "Normal",
  25201. height: math.unit(7 + 6.451/12, "feet"),
  25202. default: true
  25203. },
  25204. {
  25205. name: "Hitting the Town",
  25206. height: math.unit(37 + 8/12, "feet")
  25207. },
  25208. {
  25209. name: "Stomp in the Suburbs",
  25210. height: math.unit(964 + 9.728/12, "feet")
  25211. },
  25212. {
  25213. name: "Sit on the City",
  25214. height: math.unit(61747 + 10.592/12, "feet")
  25215. },
  25216. {
  25217. name: "Glomp the Globe",
  25218. height: math.unit(252919327 + 4.832/12, "feet")
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25224. {
  25225. front: {
  25226. height: math.unit(6 + 4/12, "feet"),
  25227. weight: math.unit(320, "lb"),
  25228. name: "Front",
  25229. image: {
  25230. source: "./media/characters/balina-mahigan/front.svg",
  25231. extra: 447/428,
  25232. bottom: 18/466
  25233. }
  25234. },
  25235. back: {
  25236. height: math.unit(6 + 4/12, "feet"),
  25237. weight: math.unit(320, "lb"),
  25238. name: "Back",
  25239. image: {
  25240. source: "./media/characters/balina-mahigan/back.svg",
  25241. extra: 445/428,
  25242. bottom: 4.07/448
  25243. }
  25244. },
  25245. arm: {
  25246. height: math.unit(1.88, "feet"),
  25247. name: "Arm",
  25248. image: {
  25249. source: "./media/characters/balina-mahigan/arm.svg"
  25250. }
  25251. },
  25252. backPort: {
  25253. height: math.unit(0.685, "feet"),
  25254. name: "Back Port",
  25255. image: {
  25256. source: "./media/characters/balina-mahigan/back-port.svg"
  25257. }
  25258. },
  25259. hoofpaw: {
  25260. height: math.unit(1.41, "feet"),
  25261. name: "Hoofpaw",
  25262. image: {
  25263. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25264. }
  25265. },
  25266. leftHandBack: {
  25267. height: math.unit(0.938, "feet"),
  25268. name: "Left Hand (Back)",
  25269. image: {
  25270. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25271. }
  25272. },
  25273. leftHandFront: {
  25274. height: math.unit(0.938, "feet"),
  25275. name: "Left Hand (Front)",
  25276. image: {
  25277. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25278. }
  25279. },
  25280. rightHandBack: {
  25281. height: math.unit(0.95, "feet"),
  25282. name: "Right Hand (Back)",
  25283. image: {
  25284. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25285. }
  25286. },
  25287. rightHandFront: {
  25288. height: math.unit(0.95, "feet"),
  25289. name: "Right Hand (Front)",
  25290. image: {
  25291. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25292. }
  25293. },
  25294. },
  25295. [
  25296. {
  25297. name: "Normal",
  25298. height: math.unit(6 + 4/12, "feet"),
  25299. default: true
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25305. {
  25306. front: {
  25307. height: math.unit(6, "feet"),
  25308. weight: math.unit(320, "lb"),
  25309. name: "Front",
  25310. image: {
  25311. source: "./media/characters/balina-mejeri/front.svg",
  25312. extra: 517/488,
  25313. bottom: 44.2/561
  25314. }
  25315. },
  25316. },
  25317. [
  25318. {
  25319. name: "Normal",
  25320. height: math.unit(6 + 4/12, "feet")
  25321. },
  25322. {
  25323. name: "Business",
  25324. height: math.unit(155, "feet"),
  25325. default: true
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25331. {
  25332. kneeling: {
  25333. height: math.unit(6 + 4/12, "feet"),
  25334. weight: math.unit(300*20, "lb"),
  25335. name: "Kneeling",
  25336. image: {
  25337. source: "./media/characters/balbarian/kneeling.svg",
  25338. extra: 922/862,
  25339. bottom: 42.4/965
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Normal",
  25346. height: math.unit(6 + 4/12, "feet")
  25347. },
  25348. {
  25349. name: "Treasured",
  25350. height: math.unit(18 + 9/12, "feet"),
  25351. default: true
  25352. },
  25353. {
  25354. name: "Macro",
  25355. height: math.unit(900, "feet")
  25356. },
  25357. ]
  25358. ))
  25359. characterMakers.push(() => makeCharacter(
  25360. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25361. {
  25362. front: {
  25363. height: math.unit(6 + 4/12, "feet"),
  25364. weight: math.unit(325, "lb"),
  25365. name: "Front",
  25366. image: {
  25367. source: "./media/characters/balina-amarini/front.svg",
  25368. extra: 415/403,
  25369. bottom: 19/433.4
  25370. }
  25371. },
  25372. back: {
  25373. height: math.unit(6 + 4/12, "feet"),
  25374. weight: math.unit(325, "lb"),
  25375. name: "Back",
  25376. image: {
  25377. source: "./media/characters/balina-amarini/back.svg",
  25378. extra: 415/403,
  25379. bottom: 13.5/432
  25380. }
  25381. },
  25382. overdrive: {
  25383. height: math.unit(6 + 4/12, "feet"),
  25384. weight: math.unit(400, "lb"),
  25385. name: "Overdrive",
  25386. image: {
  25387. source: "./media/characters/balina-amarini/overdrive.svg",
  25388. extra: 269/259,
  25389. bottom: 12/282
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Boom",
  25396. height: math.unit(9 + 10/12, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(280, "feet")
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25407. {
  25408. goddess: {
  25409. height: math.unit(600, "feet"),
  25410. weight: math.unit(2000000, "tons"),
  25411. name: "Goddess",
  25412. image: {
  25413. source: "./media/characters/lady-kubwa/goddess.svg",
  25414. extra: 1240.5/1223,
  25415. bottom: 22/1263
  25416. }
  25417. },
  25418. goddesser: {
  25419. height: math.unit(900, "feet"),
  25420. weight: math.unit(20000000, "lb"),
  25421. name: "Goddess-er",
  25422. image: {
  25423. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25424. extra: 899/888,
  25425. bottom: 12.6/912
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Macro",
  25432. height: math.unit(600, "feet"),
  25433. default: true
  25434. },
  25435. {
  25436. name: "Megamacro",
  25437. height: math.unit(250, "miles")
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(7 + 7/12, "feet"),
  25446. weight: math.unit(250, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/tala-grovehorn/front.svg",
  25450. extra: 2636/2525,
  25451. bottom: 147/2781
  25452. }
  25453. },
  25454. back: {
  25455. height: math.unit(7 + 7/12, "feet"),
  25456. weight: math.unit(250, "lb"),
  25457. name: "Back",
  25458. image: {
  25459. source: "./media/characters/tala-grovehorn/back.svg",
  25460. extra: 2635/2539,
  25461. bottom: 100/2732.8
  25462. }
  25463. },
  25464. mouth: {
  25465. height: math.unit(1.15, "feet"),
  25466. name: "Mouth",
  25467. image: {
  25468. source: "./media/characters/tala-grovehorn/mouth.svg"
  25469. }
  25470. },
  25471. dick: {
  25472. height: math.unit(2.36, "feet"),
  25473. name: "Dick",
  25474. image: {
  25475. source: "./media/characters/tala-grovehorn/dick.svg"
  25476. }
  25477. },
  25478. slit: {
  25479. height: math.unit(0.61, "feet"),
  25480. name: "Slit",
  25481. image: {
  25482. source: "./media/characters/tala-grovehorn/slit.svg"
  25483. }
  25484. },
  25485. },
  25486. [
  25487. ]
  25488. ))
  25489. characterMakers.push(() => makeCharacter(
  25490. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25491. {
  25492. front: {
  25493. height: math.unit(7 + 7/12, "feet"),
  25494. weight: math.unit(225, "lb"),
  25495. name: "Front",
  25496. image: {
  25497. source: "./media/characters/epona/front.svg",
  25498. extra: 2445/2290,
  25499. bottom: 251/2696
  25500. }
  25501. },
  25502. back: {
  25503. height: math.unit(7 + 7/12, "feet"),
  25504. weight: math.unit(225, "lb"),
  25505. name: "Back",
  25506. image: {
  25507. source: "./media/characters/epona/back.svg",
  25508. extra: 2546/2408,
  25509. bottom: 44/2589
  25510. }
  25511. },
  25512. genitals: {
  25513. height: math.unit(1.5, "feet"),
  25514. name: "Genitals",
  25515. image: {
  25516. source: "./media/characters/epona/genitals.svg"
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Normal",
  25523. height: math.unit(7 + 7/12, "feet")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(7, "feet"),
  25532. weight: math.unit(518, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/avia-bloodbourn/front.svg",
  25536. extra: 1466/1350,
  25537. bottom: 65/1527
  25538. }
  25539. },
  25540. },
  25541. [
  25542. ]
  25543. ))
  25544. characterMakers.push(() => makeCharacter(
  25545. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25546. {
  25547. front: {
  25548. height: math.unit(9.35, "feet"),
  25549. weight: math.unit(600, "lb"),
  25550. name: "Front",
  25551. image: {
  25552. source: "./media/characters/amera/front.svg",
  25553. extra: 891/818,
  25554. bottom: 30/922.7
  25555. }
  25556. },
  25557. back: {
  25558. height: math.unit(9.35, "feet"),
  25559. weight: math.unit(600, "lb"),
  25560. name: "Back",
  25561. image: {
  25562. source: "./media/characters/amera/back.svg",
  25563. extra: 876/824,
  25564. bottom: 6.8/884
  25565. }
  25566. },
  25567. dick: {
  25568. height: math.unit(2.14, "feet"),
  25569. name: "Dick",
  25570. image: {
  25571. source: "./media/characters/amera/dick.svg"
  25572. }
  25573. },
  25574. },
  25575. [
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(9.35, "feet"),
  25579. default: true
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25585. {
  25586. kneeling: {
  25587. height: math.unit(3 + 4/12, "feet"),
  25588. weight: math.unit(90, "lb"),
  25589. name: "Kneeling",
  25590. image: {
  25591. source: "./media/characters/rosewen/kneeling.svg",
  25592. extra: 1835/1571,
  25593. bottom: 27.7/1862
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Normal",
  25600. height: math.unit(3 + 4/12, "feet"),
  25601. default: true
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(5 + 10/12, "feet"),
  25610. weight: math.unit(200, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/sabah/front.svg",
  25614. extra: 849/763,
  25615. bottom: 33.9/881
  25616. }
  25617. },
  25618. },
  25619. [
  25620. {
  25621. name: "Normal",
  25622. height: math.unit(5 + 10/12, "feet"),
  25623. default: true
  25624. },
  25625. ]
  25626. ))
  25627. characterMakers.push(() => makeCharacter(
  25628. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25629. {
  25630. front: {
  25631. height: math.unit(3 + 5/12, "feet"),
  25632. weight: math.unit(40, "kg"),
  25633. name: "Front",
  25634. image: {
  25635. source: "./media/characters/purple-flame/front.svg",
  25636. extra: 1577/1412,
  25637. bottom: 97/1694
  25638. }
  25639. },
  25640. frontDressed: {
  25641. height: math.unit(3 + 5/12, "feet"),
  25642. weight: math.unit(40, "kg"),
  25643. name: "Front (Dressed)",
  25644. image: {
  25645. source: "./media/characters/purple-flame/front-dressed.svg",
  25646. extra: 1577/1412,
  25647. bottom: 97/1694
  25648. }
  25649. },
  25650. headphones: {
  25651. height: math.unit(0.85, "feet"),
  25652. name: "Headphones",
  25653. image: {
  25654. source: "./media/characters/purple-flame/headphones.svg"
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Really Small",
  25661. height: math.unit(5, "cm")
  25662. },
  25663. {
  25664. name: "Micro",
  25665. height: math.unit(1 + 5/12, "feet")
  25666. },
  25667. {
  25668. name: "Normal",
  25669. height: math.unit(3 + 5/12, "feet"),
  25670. default: true
  25671. },
  25672. {
  25673. name: "Minimacro",
  25674. height: math.unit(125, "feet")
  25675. },
  25676. {
  25677. name: "Macro",
  25678. height: math.unit(0.5, "miles")
  25679. },
  25680. {
  25681. name: "Megamacro",
  25682. height: math.unit(50, "miles")
  25683. },
  25684. {
  25685. name: "Gigantic",
  25686. height: math.unit(750, "miles")
  25687. },
  25688. {
  25689. name: "Planetary",
  25690. height: math.unit(15000, "miles")
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(14, "feet"),
  25699. weight: math.unit(959, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/arsenal/front.svg",
  25703. extra: 2357/2157,
  25704. bottom: 93/2458
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(14, "feet"),
  25712. default: true
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(6, "feet"),
  25721. weight: math.unit(150, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/adira/front.svg",
  25725. extra: 1078/1029,
  25726. bottom: 87/1166
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Micro",
  25733. height: math.unit(4, "inches"),
  25734. default: true
  25735. },
  25736. {
  25737. name: "Macro",
  25738. height: math.unit(50, "feet")
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(16, "feet"),
  25747. weight: math.unit(1000, "lb"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/grim/front.svg",
  25751. extra: 622/614,
  25752. bottom: 18.1/642
  25753. }
  25754. },
  25755. back: {
  25756. height: math.unit(16, "feet"),
  25757. weight: math.unit(1000, "lb"),
  25758. name: "Back",
  25759. image: {
  25760. source: "./media/characters/grim/back.svg",
  25761. extra: 610.6/602,
  25762. bottom: 40.8/652
  25763. }
  25764. },
  25765. hunched: {
  25766. height: math.unit(9.75, "feet"),
  25767. weight: math.unit(1000, "lb"),
  25768. name: "Hunched",
  25769. image: {
  25770. source: "./media/characters/grim/hunched.svg",
  25771. extra: 304/297,
  25772. bottom: 35.4/394
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(16, "feet"),
  25780. default: true
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25786. {
  25787. front: {
  25788. height: math.unit(2.3, "meters"),
  25789. weight: math.unit(300, "lb"),
  25790. name: "Front",
  25791. image: {
  25792. source: "./media/characters/sinja/front-sfw.svg",
  25793. extra: 1393/1294,
  25794. bottom: 70/1463
  25795. }
  25796. },
  25797. frontNsfw: {
  25798. height: math.unit(2.3, "meters"),
  25799. weight: math.unit(300, "lb"),
  25800. name: "Front (NSFW)",
  25801. image: {
  25802. source: "./media/characters/sinja/front-nsfw.svg",
  25803. extra: 1393/1294,
  25804. bottom: 70/1463
  25805. }
  25806. },
  25807. back: {
  25808. height: math.unit(2.3, "meters"),
  25809. weight: math.unit(300, "lb"),
  25810. name: "Back",
  25811. image: {
  25812. source: "./media/characters/sinja/back.svg",
  25813. extra: 1393/1294,
  25814. bottom: 70/1463
  25815. }
  25816. },
  25817. head: {
  25818. height: math.unit(1.771, "feet"),
  25819. name: "Head",
  25820. image: {
  25821. source: "./media/characters/sinja/head.svg"
  25822. }
  25823. },
  25824. slit: {
  25825. height: math.unit(0.8, "feet"),
  25826. name: "Slit",
  25827. image: {
  25828. source: "./media/characters/sinja/slit.svg"
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Normal",
  25835. height: math.unit(2.3, "meters")
  25836. },
  25837. {
  25838. name: "Macro",
  25839. height: math.unit(91, "meters"),
  25840. default: true
  25841. },
  25842. {
  25843. name: "Megamacro",
  25844. height: math.unit(91440, "meters")
  25845. },
  25846. {
  25847. name: "Gigamacro",
  25848. height: math.unit(60960000, "meters")
  25849. },
  25850. {
  25851. name: "Teramacro",
  25852. height: math.unit(9144000000, "meters")
  25853. },
  25854. ]
  25855. ))
  25856. characterMakers.push(() => makeCharacter(
  25857. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25858. {
  25859. front: {
  25860. height: math.unit(1.7, "meters"),
  25861. weight: math.unit(130, "lb"),
  25862. name: "Front",
  25863. image: {
  25864. source: "./media/characters/kyu/front.svg",
  25865. extra: 415/395,
  25866. bottom: 5/420
  25867. }
  25868. },
  25869. head: {
  25870. height: math.unit(1.75, "feet"),
  25871. name: "Head",
  25872. image: {
  25873. source: "./media/characters/kyu/head.svg"
  25874. }
  25875. },
  25876. foot: {
  25877. height: math.unit(0.81, "feet"),
  25878. name: "Foot",
  25879. image: {
  25880. source: "./media/characters/kyu/foot.svg"
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Normal",
  25887. height: math.unit(1.7, "meters")
  25888. },
  25889. {
  25890. name: "Macro",
  25891. height: math.unit(131, "feet"),
  25892. default: true
  25893. },
  25894. {
  25895. name: "Megamacro",
  25896. height: math.unit(91440, "meters")
  25897. },
  25898. {
  25899. name: "Gigamacro",
  25900. height: math.unit(60960000, "meters")
  25901. },
  25902. {
  25903. name: "Teramacro",
  25904. height: math.unit(9144000000, "meters")
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25910. {
  25911. front: {
  25912. height: math.unit(7 + 1/12, "feet"),
  25913. weight: math.unit(250, "lb"),
  25914. name: "Front",
  25915. image: {
  25916. source: "./media/characters/joey/front.svg",
  25917. extra: 1791/1537,
  25918. bottom: 28/1816
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Micro",
  25925. height: math.unit(3, "inches")
  25926. },
  25927. {
  25928. name: "Normal",
  25929. height: math.unit(7 + 1/12, "feet"),
  25930. default: true
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(165, "cm"),
  25939. weight: math.unit(140, "lb"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/sam-evans/front.svg",
  25943. extra: 3417/3230,
  25944. bottom: 41.3/3417
  25945. }
  25946. },
  25947. frontSixTails: {
  25948. height: math.unit(165, "cm"),
  25949. weight: math.unit(140, "lb"),
  25950. name: "Front-six-tails",
  25951. image: {
  25952. source: "./media/characters/sam-evans/front-six-tails.svg",
  25953. extra: 3417/3230,
  25954. bottom: 41.3/3417
  25955. }
  25956. },
  25957. back: {
  25958. height: math.unit(165, "cm"),
  25959. weight: math.unit(140, "lb"),
  25960. name: "Back",
  25961. image: {
  25962. source: "./media/characters/sam-evans/back.svg",
  25963. extra: 3227/3032,
  25964. bottom: 6.8/3234
  25965. }
  25966. },
  25967. face: {
  25968. height: math.unit(0.68, "feet"),
  25969. name: "Face",
  25970. image: {
  25971. source: "./media/characters/sam-evans/face.svg"
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Normal",
  25978. height: math.unit(165, "cm"),
  25979. default: true
  25980. },
  25981. {
  25982. name: "Macro",
  25983. height: math.unit(100, "meters")
  25984. },
  25985. {
  25986. name: "Macro+",
  25987. height: math.unit(800, "meters")
  25988. },
  25989. {
  25990. name: "Macro++",
  25991. height: math.unit(3, "km")
  25992. },
  25993. {
  25994. name: "Macro+++",
  25995. height: math.unit(30, "km")
  25996. },
  25997. ]
  25998. ))
  25999. characterMakers.push(() => makeCharacter(
  26000. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26001. {
  26002. front: {
  26003. height: math.unit(10, "feet"),
  26004. weight: math.unit(750, "lb"),
  26005. name: "Front",
  26006. image: {
  26007. source: "./media/characters/juliet-a/front.svg",
  26008. extra: 1766/1720,
  26009. bottom: 43/1809
  26010. }
  26011. },
  26012. back: {
  26013. height: math.unit(10, "feet"),
  26014. weight: math.unit(750, "lb"),
  26015. name: "Back",
  26016. image: {
  26017. source: "./media/characters/juliet-a/back.svg",
  26018. extra: 1781/1734,
  26019. bottom: 35/1810,
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Normal",
  26026. height: math.unit(10, "feet"),
  26027. default: true
  26028. },
  26029. {
  26030. name: "Dragon Form",
  26031. height: math.unit(250, "feet")
  26032. },
  26033. {
  26034. name: "Macro",
  26035. height: math.unit(1000, "feet")
  26036. },
  26037. {
  26038. name: "Megamacro",
  26039. height: math.unit(10000, "feet")
  26040. }
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26045. {
  26046. regular: {
  26047. height: math.unit(7 + 3/12, "feet"),
  26048. weight: math.unit(260, "lb"),
  26049. name: "Regular",
  26050. image: {
  26051. source: "./media/characters/wild/regular.svg",
  26052. extra: 97.45/92,
  26053. bottom: 6.8/104.3
  26054. }
  26055. },
  26056. biggums: {
  26057. height: math.unit(8 + 6 /12, "feet"),
  26058. weight: math.unit(425, "lb"),
  26059. name: "Biggums",
  26060. image: {
  26061. source: "./media/characters/wild/biggums.svg",
  26062. extra: 97.45/92,
  26063. bottom: 7.5/132.34
  26064. }
  26065. },
  26066. mawRegular: {
  26067. height: math.unit(1.24, "feet"),
  26068. name: "Maw (Regular)",
  26069. image: {
  26070. source: "./media/characters/wild/maw.svg"
  26071. }
  26072. },
  26073. mawBiggums: {
  26074. height: math.unit(1.47, "feet"),
  26075. name: "Maw (Biggums)",
  26076. image: {
  26077. source: "./media/characters/wild/maw.svg"
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Normal",
  26084. height: math.unit(7 + 3/12, "feet"),
  26085. default: true
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26091. {
  26092. front: {
  26093. height: math.unit(2.5, "meters"),
  26094. weight: math.unit(200, "kg"),
  26095. name: "Front",
  26096. image: {
  26097. source: "./media/characters/vidar/front.svg",
  26098. extra: 2994/2795,
  26099. bottom: 56/3061
  26100. }
  26101. },
  26102. back: {
  26103. height: math.unit(2.5, "meters"),
  26104. weight: math.unit(200, "kg"),
  26105. name: "Back",
  26106. image: {
  26107. source: "./media/characters/vidar/back.svg",
  26108. extra: 3131/2928,
  26109. bottom: 13.5/3141.5
  26110. }
  26111. },
  26112. feral: {
  26113. height: math.unit(2.5, "meters"),
  26114. weight: math.unit(2000, "kg"),
  26115. name: "Feral",
  26116. image: {
  26117. source: "./media/characters/vidar/feral.svg",
  26118. extra: 2790/1765,
  26119. bottom: 6/2796
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Normal",
  26126. height: math.unit(2.5, "meters"),
  26127. default: true
  26128. },
  26129. {
  26130. name: "Macro",
  26131. height: math.unit(100, "meters")
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(5 + 9/12, "feet"),
  26140. weight: math.unit(120, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/ash/front.svg",
  26144. extra: 2189/1961,
  26145. bottom: 5.2/2194
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Normal",
  26152. height: math.unit(5 + 9/12, "feet"),
  26153. default: true
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26159. {
  26160. front: {
  26161. height: math.unit(9, "feet"),
  26162. weight: math.unit(10000, "lb"),
  26163. name: "Front",
  26164. image: {
  26165. source: "./media/characters/gygabite/front.svg",
  26166. bottom: 31.7/537.8,
  26167. extra: 505/370
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(9, "feet"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26181. {
  26182. front: {
  26183. height: math.unit(12, "feet"),
  26184. weight: math.unit(35000, "lb"),
  26185. name: "Front",
  26186. image: {
  26187. source: "./media/characters/p0tat0/front.svg",
  26188. extra: 1065/921,
  26189. bottom: 55.7/1121.25
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(12, "feet"),
  26197. default: true
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26203. {
  26204. side: {
  26205. height: math.unit(6.5, "feet"),
  26206. weight: math.unit(800, "lb"),
  26207. name: "Side",
  26208. image: {
  26209. source: "./media/characters/dusk/side.svg",
  26210. extra: 615/373,
  26211. bottom: 53/664
  26212. }
  26213. },
  26214. sitting: {
  26215. height: math.unit(7, "feet"),
  26216. weight: math.unit(800, "lb"),
  26217. name: "Sitting",
  26218. image: {
  26219. source: "./media/characters/dusk/sitting.svg",
  26220. extra: 753/425,
  26221. bottom: 33/774
  26222. }
  26223. },
  26224. head: {
  26225. height: math.unit(6.1, "feet"),
  26226. name: "Head",
  26227. image: {
  26228. source: "./media/characters/dusk/head.svg"
  26229. }
  26230. },
  26231. },
  26232. [
  26233. {
  26234. name: "Normal",
  26235. height: math.unit(7, "feet"),
  26236. default: true
  26237. },
  26238. ]
  26239. ))
  26240. characterMakers.push(() => makeCharacter(
  26241. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26242. {
  26243. front: {
  26244. height: math.unit(15, "feet"),
  26245. weight: math.unit(7000, "lb"),
  26246. name: "Front",
  26247. image: {
  26248. source: "./media/characters/jay-direwolf/front.svg",
  26249. extra: 1810/1732,
  26250. bottom: 66/1892
  26251. }
  26252. },
  26253. },
  26254. [
  26255. {
  26256. name: "Normal",
  26257. height: math.unit(15, "feet"),
  26258. default: true
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(4 + 9/12, "feet"),
  26267. weight: math.unit(130, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/anchovie/front.svg",
  26271. extra: 382/350,
  26272. bottom: 25/409
  26273. }
  26274. },
  26275. back: {
  26276. height: math.unit(4 + 9/12, "feet"),
  26277. weight: math.unit(130, "lb"),
  26278. name: "Back",
  26279. image: {
  26280. source: "./media/characters/anchovie/back.svg",
  26281. extra: 385/352,
  26282. bottom: 16.6/402
  26283. }
  26284. },
  26285. frontDressed: {
  26286. height: math.unit(4 + 9/12, "feet"),
  26287. weight: math.unit(130, "lb"),
  26288. name: "Front (Dressed)",
  26289. image: {
  26290. source: "./media/characters/anchovie/front-dressed.svg",
  26291. extra: 382/350,
  26292. bottom: 25/409
  26293. }
  26294. },
  26295. backDressed: {
  26296. height: math.unit(4 + 9/12, "feet"),
  26297. weight: math.unit(130, "lb"),
  26298. name: "Back (Dressed)",
  26299. image: {
  26300. source: "./media/characters/anchovie/back-dressed.svg",
  26301. extra: 385/352,
  26302. bottom: 16.6/402
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Micro",
  26309. height: math.unit(6.4, "inches")
  26310. },
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(4 + 9/12, "feet"),
  26314. default: true
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(2, "meters"),
  26323. weight: math.unit(180, "lb"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/acidrenamon/front.svg",
  26327. extra: 987/890,
  26328. bottom: 22.8/1009
  26329. }
  26330. },
  26331. back: {
  26332. height: math.unit(2, "meters"),
  26333. weight: math.unit(180, "lb"),
  26334. name: "Back",
  26335. image: {
  26336. source: "./media/characters/acidrenamon/back.svg",
  26337. extra: 983/891,
  26338. bottom: 8.4/992
  26339. }
  26340. },
  26341. head: {
  26342. height: math.unit(1.92, "feet"),
  26343. name: "Head",
  26344. image: {
  26345. source: "./media/characters/acidrenamon/head.svg"
  26346. }
  26347. },
  26348. rump: {
  26349. height: math.unit(1.72, "feet"),
  26350. name: "Rump",
  26351. image: {
  26352. source: "./media/characters/acidrenamon/rump.svg"
  26353. }
  26354. },
  26355. tail: {
  26356. height: math.unit(4.2, "feet"),
  26357. name: "Tail",
  26358. image: {
  26359. source: "./media/characters/acidrenamon/tail.svg"
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(2, "meters"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Minimacro",
  26371. height: math.unit(7, "meters")
  26372. },
  26373. {
  26374. name: "Macro",
  26375. height: math.unit(200, "meters")
  26376. },
  26377. {
  26378. name: "Gigamacro",
  26379. height: math.unit(0.2, "earths")
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(6, "feet"),
  26388. weight: math.unit(150, "lb"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/kenzie-lee/front.svg",
  26392. extra: 1525/1465,
  26393. bottom: 45/1570
  26394. }
  26395. },
  26396. side: {
  26397. height: math.unit(6, "feet"),
  26398. weight: math.unit(150, "lb"),
  26399. name: "Side",
  26400. image: {
  26401. source: "./media/characters/kenzie-lee/side.svg",
  26402. extra: 5505/5383,
  26403. bottom: 60/5573
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(152, "feet"),
  26411. default: true
  26412. },
  26413. {
  26414. name: "Megamacro",
  26415. height: math.unit(7, "miles")
  26416. },
  26417. {
  26418. name: "Gigamacro",
  26419. height: math.unit(8000, "miles")
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26425. {
  26426. side: {
  26427. height: math.unit(6, "feet"),
  26428. weight: math.unit(150, "lb"),
  26429. name: "Side",
  26430. image: {
  26431. source: "./media/characters/withers/side.svg",
  26432. extra: 1830/1728,
  26433. bottom: 96/1927
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(6, "feet")
  26441. },
  26442. {
  26443. name: "Macro",
  26444. height: math.unit(50, "feet")
  26445. },
  26446. {
  26447. name: "Megamacro",
  26448. height: math.unit(15, "miles"),
  26449. default: true
  26450. },
  26451. {
  26452. name: "Megamacro+",
  26453. height: math.unit(100, "km")
  26454. },
  26455. {
  26456. name: "Gigamacro",
  26457. height: math.unit(4750, "miles")
  26458. },
  26459. {
  26460. name: "Gigamacro+",
  26461. height: math.unit(32000, "miles")
  26462. },
  26463. ]
  26464. ))
  26465. //characters
  26466. function makeCharacters() {
  26467. const results = [];
  26468. characterMakers.forEach(character => {
  26469. results.push(character());
  26470. });
  26471. return results;
  26472. }