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

26241 строка
652 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. }
  1280. //species
  1281. function getSpeciesInfo(speciesList) {
  1282. let result = new Set();
  1283. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1284. result.add(entry)
  1285. });
  1286. return Array.from(result);
  1287. };
  1288. function getSpeciesInfoHelper(species) {
  1289. if (!speciesData[species]) {
  1290. console.warn(species + " doesn't exist");
  1291. return [];
  1292. }
  1293. if (speciesData[species].parents) {
  1294. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1295. } else {
  1296. return [species];
  1297. }
  1298. }
  1299. characterMakers.push(() => makeCharacter(
  1300. {
  1301. name: "Fen",
  1302. species: ["crux"],
  1303. description: {
  1304. title: "Bio",
  1305. text: "Very furry. Sheds on everything."
  1306. },
  1307. tags: [
  1308. "anthro",
  1309. "goo"
  1310. ]
  1311. },
  1312. {
  1313. back: {
  1314. height: math.unit(2.2428, "meter"),
  1315. weight: math.unit(124.738, "kg"),
  1316. name: "Back",
  1317. image: {
  1318. source: "./media/characters/fen/back.svg",
  1319. extra: 1025 / 935,
  1320. bottom: 0.01
  1321. },
  1322. info: {
  1323. description: {
  1324. mode: "append",
  1325. text: "\n\nHe is not currently looking at you."
  1326. }
  1327. }
  1328. },
  1329. full: {
  1330. height: math.unit(1.34, "meter"),
  1331. weight: math.unit(225, "kg"),
  1332. name: "Full",
  1333. image: {
  1334. source: "./media/characters/fen/full.svg"
  1335. },
  1336. info: {
  1337. description: {
  1338. mode: "append",
  1339. text: "\n\nMunch."
  1340. }
  1341. }
  1342. },
  1343. kneeling: {
  1344. height: math.unit(5.4, "feet"),
  1345. weight: math.unit(124.738, "kg"),
  1346. name: "Kneeling",
  1347. image: {
  1348. source: "./media/characters/fen/kneeling.svg",
  1349. extra: 563 / 507
  1350. }
  1351. },
  1352. goo: {
  1353. height: math.unit(2.8, "feet"),
  1354. weight: math.unit(125, "kg"),
  1355. capacity: math.unit(1, "people"),
  1356. name: "Goo",
  1357. image: {
  1358. source: "./media/characters/fen/goo.svg",
  1359. bottom: 116 / 613
  1360. }
  1361. },
  1362. lounging: {
  1363. height: math.unit(6.5, "feet"),
  1364. weight: math.unit(125, "kg"),
  1365. name: "Lounging",
  1366. image: {
  1367. source: "./media/characters/fen/lounging.svg"
  1368. }
  1369. },
  1370. },
  1371. [
  1372. {
  1373. name: "Normal",
  1374. height: math.unit(2.2428, "meter")
  1375. },
  1376. {
  1377. name: "Big",
  1378. height: math.unit(12, "feet")
  1379. },
  1380. {
  1381. name: "Minimacro",
  1382. height: math.unit(40, "feet"),
  1383. default: true,
  1384. info: {
  1385. description: {
  1386. mode: "append",
  1387. text: "\n\nTOO DAMN BIG"
  1388. }
  1389. }
  1390. },
  1391. {
  1392. name: "Macro",
  1393. height: math.unit(100, "feet"),
  1394. info: {
  1395. description: {
  1396. mode: "append",
  1397. text: "\n\nTOO DAMN BIG"
  1398. }
  1399. }
  1400. },
  1401. {
  1402. name: "Macro+",
  1403. height: math.unit(300, "feet")
  1404. },
  1405. {
  1406. name: "Megamacro",
  1407. height: math.unit(2, "miles")
  1408. }
  1409. ]
  1410. ))
  1411. characterMakers.push(() => makeCharacter(
  1412. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1413. {
  1414. front: {
  1415. height: math.unit(183, "cm"),
  1416. weight: math.unit(80, "kg"),
  1417. name: "Front",
  1418. image: {
  1419. source: "./media/characters/sofia-fluttertail/front.svg",
  1420. bottom: 0.01,
  1421. extra: 2154 / 2081
  1422. }
  1423. },
  1424. frontAlt: {
  1425. height: math.unit(183, "cm"),
  1426. weight: math.unit(80, "kg"),
  1427. name: "Front (alt)",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1430. }
  1431. },
  1432. back: {
  1433. height: math.unit(183, "cm"),
  1434. weight: math.unit(80, "kg"),
  1435. name: "Back",
  1436. image: {
  1437. source: "./media/characters/sofia-fluttertail/back.svg"
  1438. }
  1439. },
  1440. kneeling: {
  1441. height: math.unit(125, "cm"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Kneeling",
  1444. image: {
  1445. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1446. extra: 1033 / 977,
  1447. bottom: 23.7 / 1057
  1448. }
  1449. },
  1450. maw: {
  1451. height: math.unit(183 / 5, "cm"),
  1452. name: "Maw",
  1453. image: {
  1454. source: "./media/characters/sofia-fluttertail/maw.svg"
  1455. }
  1456. },
  1457. mawcloseup: {
  1458. height: math.unit(183 / 5 * 0.41, "cm"),
  1459. name: "Maw (Closeup)",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1462. }
  1463. },
  1464. },
  1465. [
  1466. {
  1467. name: "Normal",
  1468. height: math.unit(1.83, "meter")
  1469. },
  1470. {
  1471. name: "Size Thief",
  1472. height: math.unit(18, "feet")
  1473. },
  1474. {
  1475. name: "50 Foot Collie",
  1476. height: math.unit(50, "feet")
  1477. },
  1478. {
  1479. name: "Macro",
  1480. height: math.unit(96, "feet"),
  1481. default: true
  1482. },
  1483. {
  1484. name: "Megamerger",
  1485. height: math.unit(650, "feet")
  1486. },
  1487. ]
  1488. ))
  1489. characterMakers.push(() => makeCharacter(
  1490. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1491. {
  1492. front: {
  1493. height: math.unit(7, "feet"),
  1494. weight: math.unit(100, "kg"),
  1495. name: "Front",
  1496. image: {
  1497. source: "./media/characters/march/front.svg",
  1498. extra: 1,
  1499. bottom: 0.015
  1500. }
  1501. },
  1502. foot: {
  1503. height: math.unit(0.9, "feet"),
  1504. name: "Foot",
  1505. image: {
  1506. source: "./media/characters/march/foot.svg"
  1507. }
  1508. },
  1509. },
  1510. [
  1511. {
  1512. name: "Normal",
  1513. height: math.unit(7.9, "feet")
  1514. },
  1515. {
  1516. name: "Macro",
  1517. height: math.unit(220, "meters")
  1518. },
  1519. {
  1520. name: "Megamacro",
  1521. height: math.unit(2.98, "km"),
  1522. default: true
  1523. },
  1524. {
  1525. name: "Gigamacro",
  1526. height: math.unit(15963, "km")
  1527. },
  1528. {
  1529. name: "Teramacro",
  1530. height: math.unit(2980000000, "km")
  1531. },
  1532. {
  1533. name: "Examacro",
  1534. height: math.unit(250, "parsecs")
  1535. },
  1536. ]
  1537. ))
  1538. characterMakers.push(() => makeCharacter(
  1539. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1540. {
  1541. front: {
  1542. height: math.unit(6, "feet"),
  1543. weight: math.unit(60, "kg"),
  1544. name: "Front",
  1545. image: {
  1546. source: "./media/characters/noir/front.svg",
  1547. extra: 1,
  1548. bottom: 0.032
  1549. }
  1550. },
  1551. },
  1552. [
  1553. {
  1554. name: "Normal",
  1555. height: math.unit(6.6, "feet")
  1556. },
  1557. {
  1558. name: "Macro",
  1559. height: math.unit(500, "feet")
  1560. },
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(2.5, "km"),
  1564. default: true
  1565. },
  1566. {
  1567. name: "Gigamacro",
  1568. height: math.unit(22500, "km")
  1569. },
  1570. {
  1571. name: "Teramacro",
  1572. height: math.unit(2500000000, "km")
  1573. },
  1574. {
  1575. name: "Examacro",
  1576. height: math.unit(200, "parsecs")
  1577. },
  1578. ]
  1579. ))
  1580. characterMakers.push(() => makeCharacter(
  1581. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1582. {
  1583. front: {
  1584. height: math.unit(7, "feet"),
  1585. weight: math.unit(100, "kg"),
  1586. name: "Front",
  1587. image: {
  1588. source: "./media/characters/okuri/front.svg",
  1589. extra: 1,
  1590. bottom: 0.037
  1591. }
  1592. },
  1593. back: {
  1594. height: math.unit(7, "feet"),
  1595. weight: math.unit(100, "kg"),
  1596. name: "Back",
  1597. image: {
  1598. source: "./media/characters/okuri/back.svg",
  1599. extra: 1,
  1600. bottom: 0.007
  1601. }
  1602. },
  1603. },
  1604. [
  1605. {
  1606. name: "Megamacro",
  1607. height: math.unit(100, "miles"),
  1608. default: true
  1609. },
  1610. ]
  1611. ))
  1612. characterMakers.push(() => makeCharacter(
  1613. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1614. {
  1615. front: {
  1616. height: math.unit(7, "feet"),
  1617. weight: math.unit(100, "kg"),
  1618. name: "Front",
  1619. image: {
  1620. source: "./media/characters/manny/front.svg",
  1621. extra: 1,
  1622. bottom: 0.06
  1623. }
  1624. },
  1625. back: {
  1626. height: math.unit(7, "feet"),
  1627. weight: math.unit(100, "kg"),
  1628. name: "Back",
  1629. image: {
  1630. source: "./media/characters/manny/back.svg",
  1631. extra: 1,
  1632. bottom: 0.014
  1633. }
  1634. },
  1635. },
  1636. [
  1637. {
  1638. name: "Normal",
  1639. height: math.unit(7, "feet"),
  1640. },
  1641. {
  1642. name: "Macro",
  1643. height: math.unit(78, "feet"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Macro+",
  1648. height: math.unit(300, "meters")
  1649. },
  1650. {
  1651. name: "Macro++",
  1652. height: math.unit(2400, "meters")
  1653. },
  1654. {
  1655. name: "Megamacro",
  1656. height: math.unit(5167, "meters")
  1657. },
  1658. {
  1659. name: "Gigamacro",
  1660. height: math.unit(41769, "miles")
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1666. {
  1667. front: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/adake/front-1.svg"
  1673. }
  1674. },
  1675. frontAlt: {
  1676. height: math.unit(7, "feet"),
  1677. weight: math.unit(100, "kg"),
  1678. name: "Front (Alt)",
  1679. image: {
  1680. source: "./media/characters/adake/front-2.svg",
  1681. extra: 1,
  1682. bottom: 0.01
  1683. }
  1684. },
  1685. back: {
  1686. height: math.unit(7, "feet"),
  1687. weight: math.unit(100, "kg"),
  1688. name: "Back",
  1689. image: {
  1690. source: "./media/characters/adake/back.svg",
  1691. }
  1692. },
  1693. kneel: {
  1694. height: math.unit(5.385, "feet"),
  1695. weight: math.unit(100, "kg"),
  1696. name: "Kneeling",
  1697. image: {
  1698. source: "./media/characters/adake/kneel.svg",
  1699. bottom: 0.052
  1700. }
  1701. },
  1702. },
  1703. [
  1704. {
  1705. name: "Normal",
  1706. height: math.unit(7, "feet"),
  1707. },
  1708. {
  1709. name: "Macro",
  1710. height: math.unit(78, "feet"),
  1711. default: true
  1712. },
  1713. {
  1714. name: "Macro+",
  1715. height: math.unit(300, "meters")
  1716. },
  1717. {
  1718. name: "Macro++",
  1719. height: math.unit(2400, "meters")
  1720. },
  1721. {
  1722. name: "Megamacro",
  1723. height: math.unit(5167, "meters")
  1724. },
  1725. {
  1726. name: "Gigamacro",
  1727. height: math.unit(41769, "miles")
  1728. },
  1729. ]
  1730. ))
  1731. characterMakers.push(() => makeCharacter(
  1732. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1733. {
  1734. front: {
  1735. height: math.unit(1.65, "meters"),
  1736. weight: math.unit(50, "kg"),
  1737. name: "Front",
  1738. image: {
  1739. source: "./media/characters/elijah/front.svg",
  1740. extra: 858 / 830,
  1741. bottom: 95.5 / 953.8559
  1742. }
  1743. },
  1744. back: {
  1745. height: math.unit(1.65, "meters"),
  1746. weight: math.unit(50, "kg"),
  1747. name: "Back",
  1748. image: {
  1749. source: "./media/characters/elijah/back.svg",
  1750. extra: 895 / 850,
  1751. bottom: 5.3 / 897.956
  1752. }
  1753. },
  1754. frontNsfw: {
  1755. height: math.unit(1.65, "meters"),
  1756. weight: math.unit(50, "kg"),
  1757. name: "Front (NSFW)",
  1758. image: {
  1759. source: "./media/characters/elijah/front-nsfw.svg",
  1760. extra: 858 / 830,
  1761. bottom: 95.5 / 953.8559
  1762. }
  1763. },
  1764. backNsfw: {
  1765. height: math.unit(1.65, "meters"),
  1766. weight: math.unit(50, "kg"),
  1767. name: "Back (NSFW)",
  1768. image: {
  1769. source: "./media/characters/elijah/back-nsfw.svg",
  1770. extra: 895 / 850,
  1771. bottom: 5.3 / 897.956
  1772. }
  1773. },
  1774. dick: {
  1775. height: math.unit(1, "feet"),
  1776. name: "Dick",
  1777. image: {
  1778. source: "./media/characters/elijah/dick.svg"
  1779. }
  1780. },
  1781. beakOpen: {
  1782. height: math.unit(1.25, "feet"),
  1783. name: "Beak (Open)",
  1784. image: {
  1785. source: "./media/characters/elijah/beak-open.svg"
  1786. }
  1787. },
  1788. beakShut: {
  1789. height: math.unit(1.25, "feet"),
  1790. name: "Beak (Shut)",
  1791. image: {
  1792. source: "./media/characters/elijah/beak-shut.svg"
  1793. }
  1794. },
  1795. footFlexing: {
  1796. height: math.unit(1.61, "feet"),
  1797. name: "Foot (Flexing)",
  1798. image: {
  1799. source: "./media/characters/elijah/foot-flexing.svg"
  1800. }
  1801. },
  1802. footStepping: {
  1803. height: math.unit(1.44, "feet"),
  1804. name: "Foot (Stepping)",
  1805. image: {
  1806. source: "./media/characters/elijah/foot-stepping.svg"
  1807. }
  1808. },
  1809. plantigradeLeg: {
  1810. height: math.unit(2.34, "feet"),
  1811. name: "Plantigrade Leg",
  1812. image: {
  1813. source: "./media/characters/elijah/plantigrade-leg.svg"
  1814. }
  1815. },
  1816. plantigradeFootLeft: {
  1817. height: math.unit(0.9, "feet"),
  1818. name: "Plantigrade Foot (Left)",
  1819. image: {
  1820. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1821. }
  1822. },
  1823. plantigradeFootRight: {
  1824. height: math.unit(0.9, "feet"),
  1825. name: "Plantigrade Foot (Right)",
  1826. image: {
  1827. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1828. }
  1829. },
  1830. },
  1831. [
  1832. {
  1833. name: "Normal",
  1834. height: math.unit(1.65, "meters")
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(55, "meters"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Macro+",
  1843. height: math.unit(105, "meters")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(11, "feet"),
  1852. weight: math.unit(80, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/rai/front.svg",
  1856. extra: 1,
  1857. bottom: 0.03
  1858. }
  1859. },
  1860. side: {
  1861. height: math.unit(11, "feet"),
  1862. weight: math.unit(80, "kg"),
  1863. name: "Side",
  1864. image: {
  1865. source: "./media/characters/rai/side.svg"
  1866. }
  1867. },
  1868. back: {
  1869. height: math.unit(11, "feet"),
  1870. weight: math.unit(80, "lb"),
  1871. name: "Back",
  1872. image: {
  1873. source: "./media/characters/rai/back.svg",
  1874. extra: 1,
  1875. bottom: 0.01
  1876. }
  1877. },
  1878. feral: {
  1879. height: math.unit(11, "feet"),
  1880. weight: math.unit(800, "lb"),
  1881. name: "Feral",
  1882. image: {
  1883. source: "./media/characters/rai/feral.svg",
  1884. extra: 1050 / 659,
  1885. bottom: 0.07
  1886. }
  1887. },
  1888. dragon: {
  1889. height: math.unit(23, "feet"),
  1890. weight: math.unit(50000, "lb"),
  1891. name: "Dragon",
  1892. image: {
  1893. source: "./media/characters/rai/dragon.svg",
  1894. extra: 2498 / 2030,
  1895. bottom: 85.2 / 2584
  1896. }
  1897. },
  1898. maw: {
  1899. height: math.unit(6 / 3.81416, "feet"),
  1900. name: "Maw",
  1901. image: {
  1902. source: "./media/characters/rai/maw.svg"
  1903. }
  1904. },
  1905. },
  1906. [
  1907. {
  1908. name: "Normal",
  1909. height: math.unit(11, "feet")
  1910. },
  1911. {
  1912. name: "Macro",
  1913. height: math.unit(302, "feet"),
  1914. default: true
  1915. },
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1920. {
  1921. frontDressed: {
  1922. height: math.unit(216, "feet"),
  1923. weight: math.unit(7000000, "lb"),
  1924. name: "Front (Dressed)",
  1925. image: {
  1926. source: "./media/characters/jazzy/front-dressed.svg",
  1927. extra: 2738 / 2651,
  1928. bottom: 41.8 / 2786
  1929. }
  1930. },
  1931. backDressed: {
  1932. height: math.unit(216, "feet"),
  1933. weight: math.unit(7000000, "lb"),
  1934. name: "Back (Dressed)",
  1935. image: {
  1936. source: "./media/characters/jazzy/back-dressed.svg",
  1937. extra: 2775 / 2673,
  1938. bottom: 36.8 / 2817
  1939. }
  1940. },
  1941. front: {
  1942. height: math.unit(216, "feet"),
  1943. weight: math.unit(7000000, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/jazzy/front.svg",
  1947. extra: 2738 / 2651,
  1948. bottom: 41.8 / 2786
  1949. }
  1950. },
  1951. back: {
  1952. height: math.unit(216, "feet"),
  1953. weight: math.unit(7000000, "lb"),
  1954. name: "Back",
  1955. image: {
  1956. source: "./media/characters/jazzy/back.svg",
  1957. extra: 2775 / 2673,
  1958. bottom: 36.8 / 2817
  1959. }
  1960. },
  1961. maw: {
  1962. height: math.unit(20, "feet"),
  1963. name: "Maw",
  1964. image: {
  1965. source: "./media/characters/jazzy/maw.svg"
  1966. }
  1967. },
  1968. paws: {
  1969. height: math.unit(27.5, "feet"),
  1970. name: "Paws",
  1971. image: {
  1972. source: "./media/characters/jazzy/paws.svg"
  1973. }
  1974. },
  1975. eye: {
  1976. height: math.unit(4.4, "feet"),
  1977. name: "Eye",
  1978. image: {
  1979. source: "./media/characters/jazzy/eye.svg"
  1980. }
  1981. },
  1982. droneOffense: {
  1983. height: math.unit(9.5, "inches"),
  1984. name: "Drone (Offense)",
  1985. image: {
  1986. source: "./media/characters/jazzy/drone-offense.svg"
  1987. }
  1988. },
  1989. droneRecon: {
  1990. height: math.unit(9.5, "inches"),
  1991. name: "Drone (Recon)",
  1992. image: {
  1993. source: "./media/characters/jazzy/drone-recon.svg"
  1994. }
  1995. },
  1996. droneDefense: {
  1997. height: math.unit(9.5, "inches"),
  1998. name: "Drone (Defense)",
  1999. image: {
  2000. source: "./media/characters/jazzy/drone-defense.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(216, "feet"),
  2008. default: true
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(7, "feet"),
  2017. weight: math.unit(80, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/flamm/front.svg",
  2021. extra: 1794 / 1677,
  2022. bottom: 31.7 / 1828.5
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(9.5, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(200, "feet"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(80, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/zephiro/front.svg",
  2047. extra: 2309 / 2162,
  2048. bottom: 0.069
  2049. }
  2050. },
  2051. side: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(80, "kg"),
  2054. name: "Side",
  2055. image: {
  2056. source: "./media/characters/zephiro/side.svg",
  2057. extra: 2403 / 2279,
  2058. bottom: 0.015
  2059. }
  2060. },
  2061. back: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(80, "kg"),
  2064. name: "Back",
  2065. image: {
  2066. source: "./media/characters/zephiro/back.svg",
  2067. extra: 2373 / 2244,
  2068. bottom: 0.013
  2069. }
  2070. },
  2071. },
  2072. [
  2073. {
  2074. name: "Micro",
  2075. height: math.unit(3, "inches")
  2076. },
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(5 + 3 / 12, "feet"),
  2080. default: true
  2081. },
  2082. {
  2083. name: "Macro",
  2084. height: math.unit(118, "feet")
  2085. },
  2086. ]
  2087. ))
  2088. characterMakers.push(() => makeCharacter(
  2089. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2090. {
  2091. front: {
  2092. height: math.unit(5, "feet"),
  2093. weight: math.unit(90, "kg"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/fory/front.svg",
  2097. extra: 2862 / 2674,
  2098. bottom: 180 / 3043.8
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(5, "feet"),
  2103. weight: math.unit(90, "kg"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/fory/back.svg",
  2107. extra: 2962 / 2791,
  2108. bottom: 106 / 3071.8
  2109. }
  2110. },
  2111. foot: {
  2112. height: math.unit(2.14, "feet"),
  2113. name: "Foot",
  2114. image: {
  2115. source: "./media/characters/fory/foot.svg"
  2116. }
  2117. },
  2118. },
  2119. [
  2120. {
  2121. name: "Normal",
  2122. height: math.unit(5, "feet")
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(50, "feet"),
  2127. default: true
  2128. },
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(10, "miles")
  2132. },
  2133. {
  2134. name: "Gigamacro",
  2135. height: math.unit(5, "earths")
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(7, "feet"),
  2144. weight: math.unit(90, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/kurrikage/front.svg",
  2148. extra: 1,
  2149. bottom: 0.035
  2150. }
  2151. },
  2152. back: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(90, "lb"),
  2155. name: "Back",
  2156. image: {
  2157. source: "./media/characters/kurrikage/back.svg"
  2158. }
  2159. },
  2160. paw: {
  2161. height: math.unit(1.5, "feet"),
  2162. name: "Paw",
  2163. image: {
  2164. source: "./media/characters/kurrikage/paw.svg"
  2165. }
  2166. },
  2167. staff: {
  2168. height: math.unit(6.7, "feet"),
  2169. name: "Staff",
  2170. image: {
  2171. source: "./media/characters/kurrikage/staff.svg"
  2172. }
  2173. },
  2174. peek: {
  2175. height: math.unit(1.05, "feet"),
  2176. name: "Peeking",
  2177. image: {
  2178. source: "./media/characters/kurrikage/peek.svg",
  2179. bottom: 0.08
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(12, "feet"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Big",
  2191. height: math.unit(20, "feet")
  2192. },
  2193. {
  2194. name: "Macro",
  2195. height: math.unit(500, "feet")
  2196. },
  2197. {
  2198. name: "Megamacro",
  2199. height: math.unit(20, "miles")
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(6, "feet"),
  2208. weight: math.unit(75, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/shingo/front.svg",
  2212. extra: 3511 / 3338,
  2213. bottom: 0.005
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Micro",
  2220. height: math.unit(4, "inches")
  2221. },
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(6, "feet"),
  2225. default: true
  2226. },
  2227. {
  2228. name: "Macro",
  2229. height: math.unit(108, "feet")
  2230. }
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2235. {
  2236. side: {
  2237. height: math.unit(6, "feet"),
  2238. weight: math.unit(75, "kg"),
  2239. name: "Side",
  2240. image: {
  2241. source: "./media/characters/aigey/side.svg"
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Macro",
  2248. height: math.unit(200, "feet"),
  2249. default: true
  2250. },
  2251. {
  2252. name: "Megamacro",
  2253. height: math.unit(100, "miles")
  2254. },
  2255. ]
  2256. )
  2257. )
  2258. characterMakers.push(() => makeCharacter(
  2259. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2260. {
  2261. front: {
  2262. height: math.unit(5 + 5 / 12, "feet"),
  2263. weight: math.unit(75, "kg"),
  2264. name: "Front",
  2265. image: {
  2266. source: "./media/characters/natasha/front.svg",
  2267. extra: 859 / 824,
  2268. bottom: 23 / 879.6
  2269. }
  2270. },
  2271. frontNsfw: {
  2272. height: math.unit(5 + 5 / 12, "feet"),
  2273. weight: math.unit(75, "kg"),
  2274. name: "Front (NSFW)",
  2275. image: {
  2276. source: "./media/characters/natasha/front-nsfw.svg",
  2277. extra: 859 / 824,
  2278. bottom: 23 / 879.6
  2279. }
  2280. },
  2281. frontErect: {
  2282. height: math.unit(5 + 5 / 12, "feet"),
  2283. weight: math.unit(75, "kg"),
  2284. name: "Front (Erect)",
  2285. image: {
  2286. source: "./media/characters/natasha/front-erect.svg",
  2287. extra: 859 / 824,
  2288. bottom: 23 / 879.6
  2289. }
  2290. },
  2291. back: {
  2292. height: math.unit(5 + 5 / 12, "feet"),
  2293. weight: math.unit(75, "kg"),
  2294. name: "Back",
  2295. image: {
  2296. source: "./media/characters/natasha/back.svg",
  2297. extra: 887.9 / 852.6,
  2298. bottom: 9.7 / 896.4
  2299. }
  2300. },
  2301. backAlt: {
  2302. height: math.unit(5 + 5 / 12, "feet"),
  2303. weight: math.unit(75, "kg"),
  2304. name: "Back (Alt)",
  2305. image: {
  2306. source: "./media/characters/natasha/back-alt.svg",
  2307. extra: 1236.7 / 1192,
  2308. bottom: 22.3 / 1258.2
  2309. }
  2310. },
  2311. dick: {
  2312. height: math.unit(1.772, "feet"),
  2313. name: "Dick",
  2314. image: {
  2315. source: "./media/characters/natasha/dick.svg"
  2316. }
  2317. },
  2318. },
  2319. [
  2320. {
  2321. name: "Normal",
  2322. height: math.unit(5 + 5 / 12, "feet")
  2323. },
  2324. {
  2325. name: "Large",
  2326. height: math.unit(12, "feet")
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(100, "feet"),
  2331. default: true
  2332. },
  2333. {
  2334. name: "Macro+",
  2335. height: math.unit(260, "feet")
  2336. },
  2337. {
  2338. name: "Macro++",
  2339. height: math.unit(1, "mile")
  2340. },
  2341. ]
  2342. ))
  2343. characterMakers.push(() => makeCharacter(
  2344. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2345. {
  2346. front: {
  2347. height: math.unit(6, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Front",
  2350. image: {
  2351. source: "./media/characters/malik/front.svg"
  2352. }
  2353. },
  2354. side: {
  2355. height: math.unit(6, "feet"),
  2356. weight: math.unit(75, "kg"),
  2357. name: "Side",
  2358. image: {
  2359. source: "./media/characters/malik/side.svg",
  2360. extra: 1.1539
  2361. }
  2362. },
  2363. back: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Back",
  2367. image: {
  2368. source: "./media/characters/malik/back.svg"
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(156, "feet"),
  2376. default: true
  2377. },
  2378. {
  2379. name: "Macro+",
  2380. height: math.unit(1188, "feet")
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(6, "feet"),
  2389. weight: math.unit(75, "kg"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/sefer/front.svg",
  2393. extra: 848 / 659,
  2394. bottom: 28.3 / 876.442
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(6, "feet"),
  2399. weight: math.unit(75, "kg"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/sefer/back.svg",
  2403. extra: 864 / 695,
  2404. bottom: 10 / 871
  2405. }
  2406. },
  2407. frontDressed: {
  2408. height: math.unit(6, "feet"),
  2409. weight: math.unit(75, "kg"),
  2410. name: "Front (Dressed)",
  2411. image: {
  2412. source: "./media/characters/sefer/front-dressed.svg",
  2413. extra: 839 / 653,
  2414. bottom: 37.6 / 878
  2415. }
  2416. },
  2417. },
  2418. [
  2419. {
  2420. name: "Normal",
  2421. height: math.unit(6, "feet"),
  2422. default: true
  2423. },
  2424. ]
  2425. ))
  2426. characterMakers.push(() => makeCharacter(
  2427. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2428. {
  2429. body: {
  2430. height: math.unit(2.2428, "meter"),
  2431. weight: math.unit(124.738, "kg"),
  2432. name: "Body",
  2433. image: {
  2434. extra: 1225 / 1050,
  2435. source: "./media/characters/north/front.svg"
  2436. }
  2437. }
  2438. },
  2439. [
  2440. {
  2441. name: "Micro",
  2442. height: math.unit(4, "inches")
  2443. },
  2444. {
  2445. name: "Macro",
  2446. height: math.unit(63, "meters")
  2447. },
  2448. {
  2449. name: "Megamacro",
  2450. height: math.unit(101, "miles"),
  2451. default: true
  2452. }
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2457. {
  2458. angled: {
  2459. height: math.unit(4, "meter"),
  2460. weight: math.unit(150, "kg"),
  2461. name: "Angled",
  2462. image: {
  2463. source: "./media/characters/talan/angled-sfw.svg",
  2464. bottom: 29 / 3734
  2465. }
  2466. },
  2467. angledNsfw: {
  2468. height: math.unit(4, "meter"),
  2469. weight: math.unit(150, "kg"),
  2470. name: "Angled (NSFW)",
  2471. image: {
  2472. source: "./media/characters/talan/angled-nsfw.svg",
  2473. bottom: 29 / 3734
  2474. }
  2475. },
  2476. frontNsfw: {
  2477. height: math.unit(4, "meter"),
  2478. weight: math.unit(150, "kg"),
  2479. name: "Front (NSFW)",
  2480. image: {
  2481. source: "./media/characters/talan/front-nsfw.svg",
  2482. bottom: 29 / 3734
  2483. }
  2484. },
  2485. sideNsfw: {
  2486. height: math.unit(4, "meter"),
  2487. weight: math.unit(150, "kg"),
  2488. name: "Side (NSFW)",
  2489. image: {
  2490. source: "./media/characters/talan/side-nsfw.svg",
  2491. bottom: 29 / 3734
  2492. }
  2493. },
  2494. back: {
  2495. height: math.unit(4, "meter"),
  2496. weight: math.unit(150, "kg"),
  2497. name: "Back",
  2498. image: {
  2499. source: "./media/characters/talan/back.svg"
  2500. }
  2501. },
  2502. dickBottom: {
  2503. height: math.unit(0.621, "meter"),
  2504. name: "Dick (Bottom)",
  2505. image: {
  2506. source: "./media/characters/talan/dick-bottom.svg"
  2507. }
  2508. },
  2509. dickTop: {
  2510. height: math.unit(0.621, "meter"),
  2511. name: "Dick (Top)",
  2512. image: {
  2513. source: "./media/characters/talan/dick-top.svg"
  2514. }
  2515. },
  2516. dickSide: {
  2517. height: math.unit(0.305, "meter"),
  2518. name: "Dick (Side)",
  2519. image: {
  2520. source: "./media/characters/talan/dick-side.svg"
  2521. }
  2522. },
  2523. dickFront: {
  2524. height: math.unit(0.305, "meter"),
  2525. name: "Dick (Front)",
  2526. image: {
  2527. source: "./media/characters/talan/dick-front.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(4, "meters")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(100, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2, "miles"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(5000, "miles")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(100, "parsecs")
  2552. }
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(2, "meter"),
  2560. weight: math.unit(90, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/gael'rathus/front.svg"
  2564. }
  2565. },
  2566. frontAlt: {
  2567. height: math.unit(2, "meter"),
  2568. weight: math.unit(90, "kg"),
  2569. name: "Front (alt)",
  2570. image: {
  2571. source: "./media/characters/gael'rathus/front-alt.svg"
  2572. }
  2573. },
  2574. frontAlt2: {
  2575. height: math.unit(2, "meter"),
  2576. weight: math.unit(90, "kg"),
  2577. name: "Front (alt 2)",
  2578. image: {
  2579. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2580. }
  2581. }
  2582. },
  2583. [
  2584. {
  2585. name: "Normal",
  2586. height: math.unit(9, "feet"),
  2587. default: true
  2588. },
  2589. {
  2590. name: "Large",
  2591. height: math.unit(25, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(0.25, "miles")
  2596. },
  2597. {
  2598. name: "Megamacro",
  2599. height: math.unit(10, "miles")
  2600. }
  2601. ]
  2602. ))
  2603. characterMakers.push(() => makeCharacter(
  2604. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2605. {
  2606. side: {
  2607. height: math.unit(2, "meter"),
  2608. weight: math.unit(140, "kg"),
  2609. name: "Side",
  2610. image: {
  2611. source: "./media/characters/sosha/side.svg",
  2612. bottom: 0.042
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(12, "feet"),
  2620. default: true
  2621. }
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2626. {
  2627. side: {
  2628. height: math.unit(5 + 5 / 12, "feet"),
  2629. weight: math.unit(170, "kg"),
  2630. name: "Side",
  2631. image: {
  2632. source: "./media/characters/runnola/side.svg",
  2633. extra: 741 / 448,
  2634. bottom: 0.05
  2635. }
  2636. },
  2637. },
  2638. [
  2639. {
  2640. name: "Small",
  2641. height: math.unit(3, "feet")
  2642. },
  2643. {
  2644. name: "Normal",
  2645. height: math.unit(5 + 5 / 12, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(10, "feet")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(2, "meter"),
  2659. weight: math.unit(50, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/kurribird/front.svg",
  2663. bottom: 0.015
  2664. }
  2665. },
  2666. frontAlt: {
  2667. height: math.unit(1.5, "meter"),
  2668. weight: math.unit(50, "kg"),
  2669. name: "Front (Alt)",
  2670. image: {
  2671. source: "./media/characters/kurribird/front-alt.svg",
  2672. extra: 1.45
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(7, "feet")
  2680. },
  2681. {
  2682. name: "Big",
  2683. height: math.unit(12, "feet"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(1500, "feet")
  2689. },
  2690. {
  2691. name: "Megamacro",
  2692. height: math.unit(2, "miles")
  2693. }
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(2, "meter"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/elbial/front.svg",
  2705. extra: 1643 / 1556,
  2706. bottom: 60.2 / 1696
  2707. }
  2708. },
  2709. side: {
  2710. height: math.unit(2, "meter"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Side",
  2713. image: {
  2714. source: "./media/characters/elbial/side.svg",
  2715. extra: 1630 / 1565,
  2716. bottom: 71.5 / 1697
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(2, "meter"),
  2721. weight: math.unit(80, "kg"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/elbial/back.svg",
  2725. extra: 1668 / 1595,
  2726. bottom: 5.6 / 1672
  2727. }
  2728. },
  2729. frontDressed: {
  2730. height: math.unit(2, "meter"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Front (Dressed)",
  2733. image: {
  2734. source: "./media/characters/elbial/front-dressed.svg",
  2735. extra: 1653 / 1584,
  2736. bottom: 57 / 1708
  2737. }
  2738. },
  2739. genitals: {
  2740. height: math.unit(2 / 3.367, "meter"),
  2741. name: "Genitals",
  2742. image: {
  2743. source: "./media/characters/elbial/genitals.svg"
  2744. }
  2745. },
  2746. },
  2747. [
  2748. {
  2749. name: "Large",
  2750. height: math.unit(100, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(500, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(10, "miles")
  2760. },
  2761. {
  2762. name: "Gigamacro",
  2763. height: math.unit(25000, "miles")
  2764. },
  2765. {
  2766. name: "Full-Size",
  2767. height: math.unit(8000000, "gigaparsecs")
  2768. }
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(2, "meter"),
  2776. weight: math.unit(60, "kg"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/noah/front.svg"
  2780. }
  2781. },
  2782. talons: {
  2783. height: math.unit(0.315, "meter"),
  2784. name: "Talons",
  2785. image: {
  2786. source: "./media/characters/noah/talons.svg"
  2787. }
  2788. }
  2789. },
  2790. [
  2791. {
  2792. name: "Large",
  2793. height: math.unit(50, "feet")
  2794. },
  2795. {
  2796. name: "Macro",
  2797. height: math.unit(750, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Megamacro",
  2802. height: math.unit(50, "miles")
  2803. },
  2804. {
  2805. name: "Gigamacro",
  2806. height: math.unit(100000, "miles")
  2807. },
  2808. {
  2809. name: "Full-Size",
  2810. height: math.unit(3000000000, "miles")
  2811. }
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/natalya/front.svg"
  2823. }
  2824. },
  2825. back: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(80, "kg"),
  2828. name: "Back",
  2829. image: {
  2830. source: "./media/characters/natalya/back.svg"
  2831. }
  2832. }
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(150, "feet"),
  2838. default: true
  2839. },
  2840. {
  2841. name: "Megamacro",
  2842. height: math.unit(5, "miles")
  2843. },
  2844. {
  2845. name: "Full-Size",
  2846. height: math.unit(600, "kiloparsecs")
  2847. }
  2848. ]
  2849. ))
  2850. characterMakers.push(() => makeCharacter(
  2851. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2852. {
  2853. front: {
  2854. height: math.unit(2, "meter"),
  2855. weight: math.unit(50, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/erestrebah/front.svg",
  2859. extra: 208 / 193,
  2860. bottom: 0.055
  2861. }
  2862. },
  2863. back: {
  2864. height: math.unit(2, "meter"),
  2865. weight: math.unit(50, "kg"),
  2866. name: "Back",
  2867. image: {
  2868. source: "./media/characters/erestrebah/back.svg",
  2869. extra: 1.3
  2870. }
  2871. }
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(10, "feet")
  2877. },
  2878. {
  2879. name: "Large",
  2880. height: math.unit(50, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(300, "feet")
  2886. },
  2887. {
  2888. name: "Macro+",
  2889. height: math.unit(750, "feet")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(3, "miles")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/jennifer/front.svg",
  2906. bottom: 0.11,
  2907. extra: 1.16
  2908. }
  2909. },
  2910. frontAlt: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(80, "kg"),
  2913. name: "Front (Alt)",
  2914. image: {
  2915. source: "./media/characters/jennifer/front-alt.svg"
  2916. }
  2917. }
  2918. },
  2919. [
  2920. {
  2921. name: "Canon Height",
  2922. height: math.unit(120, "feet"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Macro+",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Megamacro",
  2931. height: math.unit(20000, "feet")
  2932. }
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(2, "meter"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/kalista/front.svg",
  2944. extra: 1947 / 1700,
  2945. bottom: 76.6 / 1412.98
  2946. }
  2947. },
  2948. back: {
  2949. height: math.unit(2, "meter"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Back",
  2952. image: {
  2953. source: "./media/characters/kalista/back.svg",
  2954. extra: 1366 / 1156,
  2955. bottom: 33.9 / 1362.78
  2956. }
  2957. }
  2958. },
  2959. [
  2960. {
  2961. name: "Uncomfortably Small",
  2962. height: math.unit(10, "feet")
  2963. },
  2964. {
  2965. name: "Small",
  2966. height: math.unit(30, "feet")
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(100, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(2000, "feet")
  2976. },
  2977. {
  2978. name: "True Form",
  2979. height: math.unit(8924, "miles")
  2980. }
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(120, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/ggv/front.svg"
  2992. }
  2993. },
  2994. side: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(120, "kg"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/ggv/side.svg"
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Extremely Puny",
  3006. height: math.unit(9 + 5 / 12, "feet")
  3007. },
  3008. {
  3009. name: "Horribly Small",
  3010. height: math.unit(47.7, "miles"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Reasonably Sized",
  3015. height: math.unit(25000, "parsecs")
  3016. },
  3017. {
  3018. name: "Slightly Uncompressed",
  3019. height: math.unit(7.77e31, "parsecs")
  3020. },
  3021. {
  3022. name: "Omniversal",
  3023. height: math.unit(1e300, "meters")
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(75, "lb"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/napalm/front.svg"
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(2, "meter"),
  3040. weight: math.unit(75, "lb"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/napalm/back.svg"
  3044. }
  3045. }
  3046. },
  3047. [
  3048. {
  3049. name: "Standard",
  3050. height: math.unit(55, "feet"),
  3051. default: true
  3052. }
  3053. ]
  3054. ))
  3055. characterMakers.push(() => makeCharacter(
  3056. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3057. {
  3058. front: {
  3059. height: math.unit(7 + 5 / 6, "feet"),
  3060. weight: math.unit(325, "lb"),
  3061. name: "Front",
  3062. image: {
  3063. source: "./media/characters/asana/front.svg",
  3064. extra: 1133 / 1060,
  3065. bottom: 15.2/1148.6
  3066. }
  3067. },
  3068. back: {
  3069. height: math.unit(7 + 5 / 6, "feet"),
  3070. weight: math.unit(325, "lb"),
  3071. name: "Back",
  3072. image: {
  3073. source: "./media/characters/asana/back.svg",
  3074. extra: 1114 / 1043,
  3075. bottom: 5/1120
  3076. }
  3077. },
  3078. dressedDark: {
  3079. height: math.unit(7 + 5 / 6, "feet"),
  3080. weight: math.unit(325, "lb"),
  3081. name: "Dressed (Dark)",
  3082. image: {
  3083. source: "./media/characters/asana/dressed-dark.svg",
  3084. extra: 1133 / 1060,
  3085. bottom: 15.2/1148.6
  3086. }
  3087. },
  3088. dressedLight: {
  3089. height: math.unit(7 + 5 / 6, "feet"),
  3090. weight: math.unit(325, "lb"),
  3091. name: "Dressed (Light)",
  3092. image: {
  3093. source: "./media/characters/asana/dressed-light.svg",
  3094. extra: 1133 / 1060,
  3095. bottom: 15.2/1148.6
  3096. }
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Standard",
  3102. height: math.unit(7 + 5 / 6, "feet"),
  3103. default: true
  3104. },
  3105. {
  3106. name: "Large",
  3107. height: math.unit(10, "meters")
  3108. },
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(2500, "meters")
  3112. },
  3113. {
  3114. name: "Megamacro",
  3115. height: math.unit(5e6, "meters")
  3116. },
  3117. {
  3118. name: "Examacro",
  3119. height: math.unit(5e12, "lightyears")
  3120. },
  3121. {
  3122. name: "Max Size",
  3123. height: math.unit(1e31, "lightyears")
  3124. }
  3125. ]
  3126. ))
  3127. characterMakers.push(() => makeCharacter(
  3128. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3129. {
  3130. front: {
  3131. height: math.unit(2, "meter"),
  3132. weight: math.unit(60, "kg"),
  3133. name: "Front",
  3134. image: {
  3135. source: "./media/characters/ebony/front.svg",
  3136. bottom: 0.03,
  3137. extra: 1045 / 810 + 0.03
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(2, "meter"),
  3142. weight: math.unit(60, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/ebony/side.svg",
  3146. bottom: 0.03,
  3147. extra: 1045 / 810 + 0.03
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(2, "meter"),
  3152. weight: math.unit(60, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/ebony/back.svg",
  3156. bottom: 0.01,
  3157. extra: 1045 / 810 + 0.01
  3158. }
  3159. },
  3160. },
  3161. [
  3162. // TODO check why I did this lol
  3163. {
  3164. name: "Standard",
  3165. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(200, "feet")
  3171. },
  3172. {
  3173. name: "Gigamacro",
  3174. height: math.unit(13000, "km")
  3175. }
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(175, "lb"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/mountain/front.svg",
  3187. extra: 972/955,
  3188. bottom: 64/1036.6
  3189. }
  3190. },
  3191. back: {
  3192. height: math.unit(6, "feet"),
  3193. weight: math.unit(175, "lb"),
  3194. name: "Back",
  3195. image: {
  3196. source: "./media/characters/mountain/back.svg",
  3197. extra: 970/950,
  3198. bottom: 28.25/999
  3199. }
  3200. },
  3201. },
  3202. [
  3203. {
  3204. name: "Large",
  3205. height: math.unit(20, "meters")
  3206. },
  3207. {
  3208. name: "Macro",
  3209. height: math.unit(300, "meters")
  3210. },
  3211. {
  3212. name: "Gigamacro",
  3213. height: math.unit(10000, "km"),
  3214. default: true
  3215. },
  3216. {
  3217. name: "Examacro",
  3218. height: math.unit(10e9, "lightyears")
  3219. }
  3220. ]
  3221. ))
  3222. characterMakers.push(() => makeCharacter(
  3223. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3224. {
  3225. front: {
  3226. height: math.unit(8, "feet"),
  3227. weight: math.unit(500, "lb"),
  3228. name: "Front",
  3229. image: {
  3230. source: "./media/characters/rick/front.svg"
  3231. }
  3232. }
  3233. },
  3234. [
  3235. {
  3236. name: "Normal",
  3237. height: math.unit(8, "feet"),
  3238. default: true
  3239. },
  3240. {
  3241. name: "Macro",
  3242. height: math.unit(5, "km")
  3243. }
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(8, "feet"),
  3251. weight: math.unit(120, "lb"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/ona/front.svg"
  3255. }
  3256. },
  3257. frontAlt: {
  3258. height: math.unit(8, "feet"),
  3259. weight: math.unit(120, "lb"),
  3260. name: "Front (Alt)",
  3261. image: {
  3262. source: "./media/characters/ona/front-alt.svg"
  3263. }
  3264. },
  3265. back: {
  3266. height: math.unit(8, "feet"),
  3267. weight: math.unit(120, "lb"),
  3268. name: "Back",
  3269. image: {
  3270. source: "./media/characters/ona/back.svg"
  3271. }
  3272. },
  3273. foot: {
  3274. height: math.unit(1.1, "feet"),
  3275. name: "Foot",
  3276. image: {
  3277. source: "./media/characters/ona/foot.svg"
  3278. }
  3279. }
  3280. },
  3281. [
  3282. {
  3283. name: "Megamacro",
  3284. height: math.unit(70, "km"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Gigamacro",
  3289. height: math.unit(681818, "miles")
  3290. },
  3291. {
  3292. name: "Examacro",
  3293. height: math.unit(3800000, "lightyears")
  3294. },
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(12, "feet"),
  3302. weight: math.unit(3000, "lb"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/mech/front.svg",
  3306. bottom: 0.025,
  3307. }
  3308. },
  3309. back: {
  3310. height: math.unit(12, "feet"),
  3311. weight: math.unit(3000, "lb"),
  3312. name: "Back",
  3313. image: {
  3314. source: "./media/characters/mech/back.svg",
  3315. bottom: 0.03,
  3316. }
  3317. }
  3318. },
  3319. [
  3320. {
  3321. name: "Normal",
  3322. height: math.unit(12, "feet")
  3323. },
  3324. {
  3325. name: "Macro",
  3326. height: math.unit(300, "feet"),
  3327. default: true
  3328. },
  3329. {
  3330. name: "Macro+",
  3331. height: math.unit(1500, "feet")
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(1.3, "meter"),
  3340. weight: math.unit(30, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/gregory/front.svg",
  3344. }
  3345. }
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(1.3, "meter"),
  3351. default: true
  3352. },
  3353. {
  3354. name: "Macro",
  3355. height: math.unit(20, "meter")
  3356. }
  3357. ]
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3361. {
  3362. front: {
  3363. height: math.unit(2.8, "meter"),
  3364. weight: math.unit(200, "kg"),
  3365. name: "Front",
  3366. image: {
  3367. source: "./media/characters/elory/front.svg",
  3368. }
  3369. }
  3370. },
  3371. [
  3372. {
  3373. name: "Normal",
  3374. height: math.unit(2.8, "meter"),
  3375. default: true
  3376. },
  3377. {
  3378. name: "Macro",
  3379. height: math.unit(38, "meter")
  3380. }
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(470, "feet"),
  3388. weight: math.unit(924, "tons"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/angelpatamon/front.svg",
  3392. }
  3393. }
  3394. },
  3395. [
  3396. {
  3397. name: "Normal",
  3398. height: math.unit(470, "feet"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Deity Size I",
  3403. height: math.unit(28651.2, "km")
  3404. },
  3405. {
  3406. name: "Deity Size II",
  3407. height: math.unit(171907.2, "km")
  3408. }
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3413. {
  3414. side: {
  3415. height: math.unit(7.2, "meter"),
  3416. weight: math.unit(8.2, "tons"),
  3417. name: "Side",
  3418. image: {
  3419. source: "./media/characters/cryae/side.svg",
  3420. extra: 3500 / 1500
  3421. }
  3422. }
  3423. },
  3424. [
  3425. {
  3426. name: "Normal",
  3427. height: math.unit(7.2, "meter"),
  3428. default: true
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(6, "feet"),
  3437. weight: math.unit(175, "lb"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/xera/front.svg",
  3441. extra: 2300 / 2061
  3442. }
  3443. },
  3444. side: {
  3445. height: math.unit(6, "feet"),
  3446. weight: math.unit(175, "lb"),
  3447. name: "Side",
  3448. image: {
  3449. source: "./media/characters/xera/side.svg",
  3450. extra: 2300 / 2061
  3451. }
  3452. },
  3453. back: {
  3454. height: math.unit(6, "feet"),
  3455. weight: math.unit(175, "lb"),
  3456. name: "Back",
  3457. image: {
  3458. source: "./media/characters/xera/back.svg"
  3459. }
  3460. },
  3461. },
  3462. [
  3463. {
  3464. name: "Small",
  3465. height: math.unit(10, "feet")
  3466. },
  3467. {
  3468. name: "Macro",
  3469. height: math.unit(500, "meters"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Macro+",
  3474. height: math.unit(10, "km")
  3475. },
  3476. {
  3477. name: "Gigamacro",
  3478. height: math.unit(25000, "km")
  3479. },
  3480. {
  3481. name: "Teramacro",
  3482. height: math.unit(3e6, "km")
  3483. }
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3488. {
  3489. front: {
  3490. height: math.unit(6, "feet"),
  3491. weight: math.unit(175, "lb"),
  3492. name: "Front",
  3493. image: {
  3494. source: "./media/characters/nebula/front.svg",
  3495. extra: 2600 / 2450
  3496. }
  3497. }
  3498. },
  3499. [
  3500. {
  3501. name: "Small",
  3502. height: math.unit(4.5, "meters")
  3503. },
  3504. {
  3505. name: "Macro",
  3506. height: math.unit(1500, "meters"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Megamacro",
  3511. height: math.unit(150, "km")
  3512. },
  3513. {
  3514. name: "Gigamacro",
  3515. height: math.unit(27000, "km")
  3516. }
  3517. ]
  3518. ))
  3519. characterMakers.push(() => makeCharacter(
  3520. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3521. {
  3522. front: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(225, "lb"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/abysgar/front.svg"
  3528. }
  3529. }
  3530. },
  3531. [
  3532. {
  3533. name: "Small",
  3534. height: math.unit(4.5, "meters")
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(1250, "meters"),
  3539. default: true
  3540. },
  3541. {
  3542. name: "Megamacro",
  3543. height: math.unit(125, "km")
  3544. },
  3545. {
  3546. name: "Gigamacro",
  3547. height: math.unit(26000, "km")
  3548. }
  3549. ]
  3550. ))
  3551. characterMakers.push(() => makeCharacter(
  3552. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3553. {
  3554. front: {
  3555. height: math.unit(6, "feet"),
  3556. weight: math.unit(180, "lb"),
  3557. name: "Front",
  3558. image: {
  3559. source: "./media/characters/yakuz/front.svg"
  3560. }
  3561. }
  3562. },
  3563. [
  3564. {
  3565. name: "Small",
  3566. height: math.unit(5, "meters")
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(1500, "meters"),
  3571. default: true
  3572. },
  3573. {
  3574. name: "Megamacro",
  3575. height: math.unit(200, "km")
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(100000, "km")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(175, "lb"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/mirova/front.svg"
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Small",
  3598. height: math.unit(5, "meters")
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(900, "meters"),
  3603. default: true
  3604. },
  3605. {
  3606. name: "Megamacro",
  3607. height: math.unit(135, "km")
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(20000, "km")
  3612. }
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3617. {
  3618. side: {
  3619. height: math.unit(28.35, "feet"),
  3620. weight: math.unit(99.75, "tons"),
  3621. name: "Side",
  3622. image: {
  3623. source: "./media/characters/asana-mech/side.svg",
  3624. extra: 923/699,
  3625. bottom: 50/975
  3626. }
  3627. },
  3628. chaingun: {
  3629. height: math.unit(7, "feet"),
  3630. weight: math.unit(300, "lb"),
  3631. name: "Chaingun",
  3632. image: {
  3633. source: "./media/characters/asana-mech/chaingun.svg"
  3634. }
  3635. },
  3636. laser: {
  3637. height: math.unit(7.12, "feet"),
  3638. weight: math.unit(250, "lb"),
  3639. name: "Laser",
  3640. image: {
  3641. source: "./media/characters/asana-mech/laser.svg"
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(28.35, "feet"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Macro",
  3653. height: math.unit(2500, "feet")
  3654. },
  3655. {
  3656. name: "Megamacro",
  3657. height: math.unit(25, "miles")
  3658. },
  3659. {
  3660. name: "Examacro",
  3661. height: math.unit(6e8, "lightyears")
  3662. },
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(2, "meters"),
  3670. weight: math.unit(70, "kg"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/ashtrek/front.svg",
  3674. extra: 560 / 524,
  3675. bottom: 0.01
  3676. }
  3677. },
  3678. frontArmor: {
  3679. height: math.unit(2, "meters"),
  3680. weight: math.unit(76, "kg"),
  3681. name: "Front (Armor)",
  3682. image: {
  3683. source: "./media/characters/ashtrek/front-armor.svg",
  3684. extra: 561 / 527,
  3685. bottom: 0.01
  3686. }
  3687. },
  3688. side: {
  3689. height: math.unit(2, "meters"),
  3690. weight: math.unit(70, "kg"),
  3691. name: "Side",
  3692. image: {
  3693. source: "./media/characters/ashtrek/side.svg",
  3694. extra: 1717 / 1609,
  3695. bottom: 0.005
  3696. }
  3697. },
  3698. back: {
  3699. height: math.unit(2, "meters"),
  3700. weight: math.unit(70, "kg"),
  3701. name: "Back",
  3702. image: {
  3703. source: "./media/characters/ashtrek/back.svg",
  3704. extra: 1570 / 1501
  3705. }
  3706. },
  3707. },
  3708. [
  3709. {
  3710. name: "DEFCON 5",
  3711. height: math.unit(5, "meters")
  3712. },
  3713. {
  3714. name: "DEFCON 4",
  3715. height: math.unit(500, "meters"),
  3716. default: true
  3717. },
  3718. {
  3719. name: "DEFCON 3",
  3720. height: math.unit(5, "km")
  3721. },
  3722. {
  3723. name: "DEFCON 2",
  3724. height: math.unit(500, "km")
  3725. },
  3726. {
  3727. name: "DEFCON 1",
  3728. height: math.unit(500000, "km")
  3729. },
  3730. {
  3731. name: "DEFCON 0",
  3732. height: math.unit(3, "gigaparsecs")
  3733. },
  3734. ]
  3735. ))
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3738. {
  3739. front: {
  3740. height: math.unit(2, "meters"),
  3741. weight: math.unit(76, "kg"),
  3742. name: "Front",
  3743. image: {
  3744. source: "./media/characters/gale/front.svg"
  3745. }
  3746. },
  3747. frontAlt1: {
  3748. height: math.unit(2, "meters"),
  3749. weight: math.unit(76, "kg"),
  3750. name: "Front (Alt 1)",
  3751. image: {
  3752. source: "./media/characters/gale/front-alt-1.svg"
  3753. }
  3754. },
  3755. frontAlt2: {
  3756. height: math.unit(2, "meters"),
  3757. weight: math.unit(76, "kg"),
  3758. name: "Front (Alt 2)",
  3759. image: {
  3760. source: "./media/characters/gale/front-alt-2.svg"
  3761. }
  3762. },
  3763. },
  3764. [
  3765. {
  3766. name: "Normal",
  3767. height: math.unit(7, "feet")
  3768. },
  3769. {
  3770. name: "Macro",
  3771. height: math.unit(150, "feet"),
  3772. default: true
  3773. },
  3774. {
  3775. name: "Macro+",
  3776. height: math.unit(300, "feet")
  3777. },
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(2, "meters"),
  3785. weight: math.unit(76, "kg"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/draylen/front.svg"
  3789. }
  3790. }
  3791. },
  3792. [
  3793. {
  3794. name: "Macro",
  3795. height: math.unit(150, "feet"),
  3796. default: true
  3797. }
  3798. ]
  3799. ))
  3800. characterMakers.push(() => makeCharacter(
  3801. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3802. {
  3803. front: {
  3804. height: math.unit(7 + 9 / 12, "feet"),
  3805. weight: math.unit(379, "lbs"),
  3806. name: "Front",
  3807. image: {
  3808. source: "./media/characters/chez/front.svg"
  3809. }
  3810. },
  3811. side: {
  3812. height: math.unit(7 + 9 / 12, "feet"),
  3813. weight: math.unit(379, "lbs"),
  3814. name: "Side",
  3815. image: {
  3816. source: "./media/characters/chez/side.svg"
  3817. }
  3818. }
  3819. },
  3820. [
  3821. {
  3822. name: "Normal",
  3823. height: math.unit(7 + 9 / 12, "feet"),
  3824. default: true
  3825. },
  3826. {
  3827. name: "God King",
  3828. height: math.unit(9750000, "meters")
  3829. }
  3830. ]
  3831. ))
  3832. characterMakers.push(() => makeCharacter(
  3833. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3834. {
  3835. front: {
  3836. height: math.unit(6, "feet"),
  3837. weight: math.unit(275, "lbs"),
  3838. name: "Front",
  3839. image: {
  3840. source: "./media/characters/kaylum/front.svg",
  3841. bottom: 0.01,
  3842. extra: 1166 / 1031
  3843. }
  3844. },
  3845. frontWingless: {
  3846. height: math.unit(6, "feet"),
  3847. weight: math.unit(275, "lbs"),
  3848. name: "Front (Wingless)",
  3849. image: {
  3850. source: "./media/characters/kaylum/front-wingless.svg",
  3851. bottom: 0.01,
  3852. extra: 1117 / 1031
  3853. }
  3854. }
  3855. },
  3856. [
  3857. {
  3858. name: "Normal",
  3859. height: math.unit(3.05, "meters")
  3860. },
  3861. {
  3862. name: "Master",
  3863. height: math.unit(5.5, "meters")
  3864. },
  3865. {
  3866. name: "Rampage",
  3867. height: math.unit(19, "meters")
  3868. },
  3869. {
  3870. name: "Macro Lite",
  3871. height: math.unit(37, "meters")
  3872. },
  3873. {
  3874. name: "Hyper Predator",
  3875. height: math.unit(61, "meters")
  3876. },
  3877. {
  3878. name: "Macro",
  3879. height: math.unit(138, "meters"),
  3880. default: true
  3881. }
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(6, "feet"),
  3889. weight: math.unit(150, "lbs"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/geta/front.svg"
  3893. }
  3894. }
  3895. },
  3896. [
  3897. {
  3898. name: "Micro",
  3899. height: math.unit(3, "inches"),
  3900. default: true
  3901. },
  3902. {
  3903. name: "Normal",
  3904. height: math.unit(5 + 5 / 12, "feet")
  3905. }
  3906. ]
  3907. ))
  3908. characterMakers.push(() => makeCharacter(
  3909. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3910. {
  3911. front: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(300, "lbs"),
  3914. name: "Front",
  3915. image: {
  3916. source: "./media/characters/tyrnn/front.svg"
  3917. }
  3918. }
  3919. },
  3920. [
  3921. {
  3922. name: "Main Height",
  3923. height: math.unit(355, "feet"),
  3924. default: true
  3925. },
  3926. {
  3927. name: "Fave. Height",
  3928. height: math.unit(2400, "feet")
  3929. }
  3930. ]
  3931. ))
  3932. characterMakers.push(() => makeCharacter(
  3933. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3934. {
  3935. front: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(300, "lbs"),
  3938. name: "Front",
  3939. image: {
  3940. source: "./media/characters/appledectomy/front.svg"
  3941. }
  3942. }
  3943. },
  3944. [
  3945. {
  3946. name: "Macro",
  3947. height: math.unit(2500, "feet")
  3948. },
  3949. {
  3950. name: "Megamacro",
  3951. height: math.unit(50, "miles"),
  3952. default: true
  3953. },
  3954. {
  3955. name: "Gigamacro",
  3956. height: math.unit(5000, "miles")
  3957. },
  3958. {
  3959. name: "Teramacro",
  3960. height: math.unit(250000, "miles")
  3961. },
  3962. ]
  3963. ))
  3964. characterMakers.push(() => makeCharacter(
  3965. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3966. {
  3967. front: {
  3968. height: math.unit(6, "feet"),
  3969. weight: math.unit(200, "lbs"),
  3970. name: "Front",
  3971. image: {
  3972. source: "./media/characters/vulpes/front.svg",
  3973. extra: 573 / 543,
  3974. bottom: 0.033
  3975. }
  3976. },
  3977. side: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(200, "lbs"),
  3980. name: "Side",
  3981. image: {
  3982. source: "./media/characters/vulpes/side.svg",
  3983. extra: 573 / 543,
  3984. bottom: 0.01
  3985. }
  3986. },
  3987. back: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(200, "lbs"),
  3990. name: "Back",
  3991. image: {
  3992. source: "./media/characters/vulpes/back.svg",
  3993. extra: 573 / 543,
  3994. }
  3995. },
  3996. feet: {
  3997. height: math.unit(1.276, "feet"),
  3998. name: "Feet",
  3999. image: {
  4000. source: "./media/characters/vulpes/feet.svg"
  4001. }
  4002. },
  4003. maw: {
  4004. height: math.unit(1.18, "feet"),
  4005. name: "Maw",
  4006. image: {
  4007. source: "./media/characters/vulpes/maw.svg"
  4008. }
  4009. },
  4010. },
  4011. [
  4012. {
  4013. name: "Micro",
  4014. height: math.unit(2, "inches")
  4015. },
  4016. {
  4017. name: "Normal",
  4018. height: math.unit(6.3, "feet")
  4019. },
  4020. {
  4021. name: "Macro",
  4022. height: math.unit(850, "feet")
  4023. },
  4024. {
  4025. name: "Megamacro",
  4026. height: math.unit(7500, "feet"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Gigamacro",
  4031. height: math.unit(570000, "miles")
  4032. }
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4037. {
  4038. front: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(210, "lbs"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/rain-fallen/front.svg"
  4044. }
  4045. },
  4046. side: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(210, "lbs"),
  4049. name: "Side",
  4050. image: {
  4051. source: "./media/characters/rain-fallen/side.svg"
  4052. }
  4053. },
  4054. back: {
  4055. height: math.unit(6, "feet"),
  4056. weight: math.unit(210, "lbs"),
  4057. name: "Back",
  4058. image: {
  4059. source: "./media/characters/rain-fallen/back.svg"
  4060. }
  4061. },
  4062. feral: {
  4063. height: math.unit(9, "feet"),
  4064. weight: math.unit(700, "lbs"),
  4065. name: "Feral",
  4066. image: {
  4067. source: "./media/characters/rain-fallen/feral.svg"
  4068. }
  4069. },
  4070. },
  4071. [
  4072. {
  4073. name: "Normal",
  4074. height: math.unit(5, "meter")
  4075. },
  4076. {
  4077. name: "Macro",
  4078. height: math.unit(150, "meter"),
  4079. default: true
  4080. },
  4081. {
  4082. name: "Megamacro",
  4083. height: math.unit(278e6, "meter")
  4084. },
  4085. {
  4086. name: "Gigamacro",
  4087. height: math.unit(2e9, "meter")
  4088. },
  4089. {
  4090. name: "Teramacro",
  4091. height: math.unit(8e12, "meter")
  4092. },
  4093. {
  4094. name: "Devourer",
  4095. height: math.unit(14, "zettameters")
  4096. },
  4097. {
  4098. name: "Scarlet King",
  4099. height: math.unit(18, "yottameters")
  4100. },
  4101. {
  4102. name: "Void",
  4103. height: math.unit(6.66e66, "yottameters")
  4104. }
  4105. ]
  4106. ))
  4107. characterMakers.push(() => makeCharacter(
  4108. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4109. {
  4110. standing: {
  4111. height: math.unit(6, "feet"),
  4112. weight: math.unit(180, "lbs"),
  4113. name: "Standing",
  4114. image: {
  4115. source: "./media/characters/zaakira/standing.svg"
  4116. }
  4117. },
  4118. laying: {
  4119. height: math.unit(3, "feet"),
  4120. weight: math.unit(180, "lbs"),
  4121. name: "Laying",
  4122. image: {
  4123. source: "./media/characters/zaakira/laying.svg"
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Normal",
  4130. height: math.unit(12, "feet")
  4131. },
  4132. {
  4133. name: "Macro",
  4134. height: math.unit(279, "feet"),
  4135. default: true
  4136. }
  4137. ]
  4138. ))
  4139. characterMakers.push(() => makeCharacter(
  4140. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4141. {
  4142. front: {
  4143. height: math.unit(6, "feet"),
  4144. weight: math.unit(250, "lbs"),
  4145. name: "Front",
  4146. image: {
  4147. source: "./media/characters/sigvald/front.svg",
  4148. extra: 1000 / 850
  4149. }
  4150. },
  4151. back: {
  4152. height: math.unit(6, "feet"),
  4153. weight: math.unit(250, "lbs"),
  4154. name: "Back",
  4155. image: {
  4156. source: "./media/characters/sigvald/back.svg"
  4157. }
  4158. },
  4159. },
  4160. [
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(8, "feet")
  4164. },
  4165. {
  4166. name: "Large",
  4167. height: math.unit(12, "feet")
  4168. },
  4169. {
  4170. name: "Larger",
  4171. height: math.unit(20, "feet")
  4172. },
  4173. {
  4174. name: "Macro",
  4175. height: math.unit(150, "feet")
  4176. },
  4177. {
  4178. name: "Macro+",
  4179. height: math.unit(200, "feet"),
  4180. default: true
  4181. },
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4186. {
  4187. side: {
  4188. height: math.unit(12, "feet"),
  4189. weight: math.unit(2000, "kg"),
  4190. name: "Side",
  4191. image: {
  4192. source: "./media/characters/scott/side.svg",
  4193. extra: 754 / 724,
  4194. bottom: 0.069
  4195. }
  4196. },
  4197. upright: {
  4198. height: math.unit(12, "feet"),
  4199. weight: math.unit(2000, "kg"),
  4200. name: "Upright",
  4201. image: {
  4202. source: "./media/characters/scott/upright.svg",
  4203. extra: 3881 / 3722,
  4204. bottom: 0.05
  4205. }
  4206. },
  4207. },
  4208. [
  4209. {
  4210. name: "Normal",
  4211. height: math.unit(12, "feet"),
  4212. default: true
  4213. },
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4218. {
  4219. side: {
  4220. height: math.unit(8, "meters"),
  4221. weight: math.unit(84755, "lbs"),
  4222. name: "Side",
  4223. image: {
  4224. source: "./media/characters/tobias/side.svg",
  4225. extra: 1474 / 1096,
  4226. bottom: 38.9 / 1513.1235
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(8, "meters"),
  4234. default: true
  4235. },
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4240. {
  4241. front: {
  4242. height: math.unit(5.5, "feet"),
  4243. weight: math.unit(400, "lbs"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/kieran/front.svg",
  4247. extra: 2694 / 2364,
  4248. bottom: 217 / 2908
  4249. }
  4250. },
  4251. side: {
  4252. height: math.unit(5.5, "feet"),
  4253. weight: math.unit(400, "lbs"),
  4254. name: "Side",
  4255. image: {
  4256. source: "./media/characters/kieran/side.svg",
  4257. extra: 875 / 777,
  4258. bottom: 84.6 / 959
  4259. }
  4260. },
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(5.5, "feet"),
  4266. default: true
  4267. },
  4268. ]
  4269. ))
  4270. characterMakers.push(() => makeCharacter(
  4271. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4272. {
  4273. side: {
  4274. height: math.unit(2, "meters"),
  4275. weight: math.unit(70, "kg"),
  4276. name: "Side",
  4277. image: {
  4278. source: "./media/characters/sanya/side.svg",
  4279. bottom: 0.02,
  4280. extra: 1.02
  4281. }
  4282. },
  4283. },
  4284. [
  4285. {
  4286. name: "Small",
  4287. height: math.unit(2, "meters")
  4288. },
  4289. {
  4290. name: "Normal",
  4291. height: math.unit(3, "meters")
  4292. },
  4293. {
  4294. name: "Macro",
  4295. height: math.unit(16, "meters"),
  4296. default: true
  4297. },
  4298. ]
  4299. ))
  4300. characterMakers.push(() => makeCharacter(
  4301. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4302. {
  4303. front: {
  4304. height: math.unit(2, "meters"),
  4305. weight: math.unit(120, "kg"),
  4306. name: "Front",
  4307. image: {
  4308. source: "./media/characters/miranda/front.svg",
  4309. extra: 195/185,
  4310. bottom: 10.9/206.5
  4311. }
  4312. },
  4313. back: {
  4314. height: math.unit(2, "meters"),
  4315. weight: math.unit(120, "kg"),
  4316. name: "Back",
  4317. image: {
  4318. source: "./media/characters/miranda/back.svg",
  4319. extra: 201/193,
  4320. bottom: 2.3/203.7
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Normal",
  4327. height: math.unit(10, "feet"),
  4328. default: true
  4329. }
  4330. ]
  4331. ))
  4332. characterMakers.push(() => makeCharacter(
  4333. { name: "James", species: ["deer"], tags: ["anthro"] },
  4334. {
  4335. side: {
  4336. height: math.unit(2, "meters"),
  4337. weight: math.unit(100, "kg"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/james/front.svg",
  4341. extra: 10 / 8.5
  4342. }
  4343. },
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(8.5, "feet"),
  4349. default: true
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4355. {
  4356. side: {
  4357. height: math.unit(9.5, "feet"),
  4358. weight: math.unit(2500, "lbs"),
  4359. name: "Side",
  4360. image: {
  4361. source: "./media/characters/heather/side.svg"
  4362. }
  4363. },
  4364. },
  4365. [
  4366. {
  4367. name: "Normal",
  4368. height: math.unit(9.5, "feet"),
  4369. default: true
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4375. {
  4376. side: {
  4377. height: math.unit(6.5, "feet"),
  4378. weight: math.unit(400, "lbs"),
  4379. name: "Side",
  4380. image: {
  4381. source: "./media/characters/lukas/side.svg",
  4382. extra: 7.25 / 6.5
  4383. }
  4384. },
  4385. },
  4386. [
  4387. {
  4388. name: "Normal",
  4389. height: math.unit(6.5, "feet"),
  4390. default: true
  4391. }
  4392. ]
  4393. ))
  4394. characterMakers.push(() => makeCharacter(
  4395. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4396. {
  4397. side: {
  4398. height: math.unit(5, "feet"),
  4399. weight: math.unit(3000, "lbs"),
  4400. name: "Side",
  4401. image: {
  4402. source: "./media/characters/louise/side.svg"
  4403. }
  4404. },
  4405. },
  4406. [
  4407. {
  4408. name: "Normal",
  4409. height: math.unit(5, "feet"),
  4410. default: true
  4411. }
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4416. {
  4417. side: {
  4418. height: math.unit(6, "feet"),
  4419. weight: math.unit(150, "lbs"),
  4420. name: "Side",
  4421. image: {
  4422. source: "./media/characters/ramona/side.svg"
  4423. }
  4424. },
  4425. },
  4426. [
  4427. {
  4428. name: "Normal",
  4429. height: math.unit(5.3, "meters"),
  4430. default: true
  4431. },
  4432. {
  4433. name: "Macro",
  4434. height: math.unit(20, "stories")
  4435. },
  4436. {
  4437. name: "Macro+",
  4438. height: math.unit(50, "stories")
  4439. },
  4440. ]
  4441. ))
  4442. characterMakers.push(() => makeCharacter(
  4443. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4444. {
  4445. standing: {
  4446. height: math.unit(5.75, "feet"),
  4447. weight: math.unit(160, "lbs"),
  4448. name: "Standing",
  4449. image: {
  4450. source: "./media/characters/deerpuff/standing.svg",
  4451. extra: 682 / 624
  4452. }
  4453. },
  4454. sitting: {
  4455. height: math.unit(5.75 / 1.79, "feet"),
  4456. weight: math.unit(160, "lbs"),
  4457. name: "Sitting",
  4458. image: {
  4459. source: "./media/characters/deerpuff/sitting.svg",
  4460. bottom: 44 / 400,
  4461. extra: 1
  4462. }
  4463. },
  4464. taurLaying: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(400, "lbs"),
  4467. name: "Taur (Laying)",
  4468. image: {
  4469. source: "./media/characters/deerpuff/taur-laying.svg"
  4470. }
  4471. },
  4472. },
  4473. [
  4474. {
  4475. name: "Puffball",
  4476. height: math.unit(6, "inches")
  4477. },
  4478. {
  4479. name: "Normalpuff",
  4480. height: math.unit(5.75, "feet")
  4481. },
  4482. {
  4483. name: "Macropuff",
  4484. height: math.unit(1500, "feet"),
  4485. default: true
  4486. },
  4487. {
  4488. name: "Megapuff",
  4489. height: math.unit(500, "miles")
  4490. },
  4491. {
  4492. name: "Gigapuff",
  4493. height: math.unit(250000, "miles")
  4494. },
  4495. {
  4496. name: "Omegapuff",
  4497. height: math.unit(1000, "lightyears")
  4498. },
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4503. {
  4504. stomping: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(170, "lbs"),
  4507. name: "Stomping",
  4508. image: {
  4509. source: "./media/characters/vivian/stomping.svg"
  4510. }
  4511. },
  4512. sitting: {
  4513. height: math.unit(6 / 1.75, "feet"),
  4514. weight: math.unit(170, "lbs"),
  4515. name: "Sitting",
  4516. image: {
  4517. source: "./media/characters/vivian/sitting.svg",
  4518. bottom: 1 / 6.4,
  4519. extra: 1,
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(7, "feet"),
  4527. default: true
  4528. },
  4529. {
  4530. name: "Macro",
  4531. height: math.unit(10, "stories")
  4532. },
  4533. {
  4534. name: "Macro+",
  4535. height: math.unit(30, "stories")
  4536. },
  4537. {
  4538. name: "Megamacro",
  4539. height: math.unit(10, "miles")
  4540. },
  4541. {
  4542. name: "Megamacro+",
  4543. height: math.unit(2750000, "meters")
  4544. },
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4549. {
  4550. front: {
  4551. height: math.unit(6, "feet"),
  4552. weight: math.unit(160, "lbs"),
  4553. name: "Front",
  4554. image: {
  4555. source: "./media/characters/prince/front.svg",
  4556. extra: 3400 / 3000
  4557. }
  4558. },
  4559. jumping: {
  4560. height: math.unit(6, "feet"),
  4561. weight: math.unit(160, "lbs"),
  4562. name: "Jumping",
  4563. image: {
  4564. source: "./media/characters/prince/jump.svg",
  4565. extra: 2555 / 2134
  4566. }
  4567. },
  4568. },
  4569. [
  4570. {
  4571. name: "Normal",
  4572. height: math.unit(7.75, "feet"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Not cute",
  4577. height: math.unit(17, "feet")
  4578. },
  4579. {
  4580. name: "I said NOT",
  4581. height: math.unit(91, "feet")
  4582. },
  4583. {
  4584. name: "Please stop",
  4585. height: math.unit(560, "feet")
  4586. },
  4587. {
  4588. name: "What have you done",
  4589. height: math.unit(2200, "feet")
  4590. },
  4591. {
  4592. name: "Deer God",
  4593. height: math.unit(3.6, "miles")
  4594. },
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4599. {
  4600. standing: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(300, "lbs"),
  4603. name: "Standing",
  4604. image: {
  4605. source: "./media/characters/psymon/standing.svg",
  4606. extra: 1888 / 1810,
  4607. bottom: 0.05
  4608. }
  4609. },
  4610. slithering: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(300, "lbs"),
  4613. name: "Slithering",
  4614. image: {
  4615. source: "./media/characters/psymon/slithering.svg",
  4616. extra: 1330 / 1224
  4617. }
  4618. },
  4619. slitheringAlt: {
  4620. height: math.unit(6, "feet"),
  4621. weight: math.unit(300, "lbs"),
  4622. name: "Slithering (Alt)",
  4623. image: {
  4624. source: "./media/characters/psymon/slithering-alt.svg",
  4625. extra: 1330 / 1224
  4626. }
  4627. },
  4628. },
  4629. [
  4630. {
  4631. name: "Normal",
  4632. height: math.unit(11.25, "feet"),
  4633. default: true
  4634. },
  4635. {
  4636. name: "Large",
  4637. height: math.unit(27, "feet")
  4638. },
  4639. {
  4640. name: "Giant",
  4641. height: math.unit(87, "feet")
  4642. },
  4643. {
  4644. name: "Macro",
  4645. height: math.unit(365, "feet")
  4646. },
  4647. {
  4648. name: "Megamacro",
  4649. height: math.unit(3, "miles")
  4650. },
  4651. {
  4652. name: "World Serpent",
  4653. height: math.unit(8000, "miles")
  4654. },
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(6, "feet"),
  4662. weight: math.unit(180, "lbs"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/daimos/front.svg",
  4666. extra: 4160 / 3897,
  4667. bottom: 0.021
  4668. }
  4669. }
  4670. },
  4671. [
  4672. {
  4673. name: "Normal",
  4674. height: math.unit(8, "feet"),
  4675. default: true
  4676. },
  4677. {
  4678. name: "Big Dog",
  4679. height: math.unit(22, "feet")
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(127, "feet")
  4684. },
  4685. {
  4686. name: "Megamacro",
  4687. height: math.unit(3600, "feet")
  4688. },
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4693. {
  4694. side: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(180, "lbs"),
  4697. name: "Side",
  4698. image: {
  4699. source: "./media/characters/blake/side.svg",
  4700. extra: 1212 / 1120,
  4701. bottom: 0.05
  4702. }
  4703. },
  4704. crouched: {
  4705. height: math.unit(6 * 0.57, "feet"),
  4706. weight: math.unit(180, "lbs"),
  4707. name: "Crouched",
  4708. image: {
  4709. source: "./media/characters/blake/crouched.svg",
  4710. extra: 840 / 587,
  4711. bottom: 0.04
  4712. }
  4713. },
  4714. bent: {
  4715. height: math.unit(6 * 0.75, "feet"),
  4716. weight: math.unit(180, "lbs"),
  4717. name: "Bent",
  4718. image: {
  4719. source: "./media/characters/blake/bent.svg",
  4720. extra: 592 / 544,
  4721. bottom: 0.035
  4722. }
  4723. },
  4724. },
  4725. [
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(8 + 1 / 6, "feet"),
  4729. default: true
  4730. },
  4731. {
  4732. name: "Big Backside",
  4733. height: math.unit(37, "feet")
  4734. },
  4735. {
  4736. name: "Subway Shredder",
  4737. height: math.unit(72, "feet")
  4738. },
  4739. {
  4740. name: "City Carver",
  4741. height: math.unit(1675, "feet")
  4742. },
  4743. {
  4744. name: "Tectonic Tweaker",
  4745. height: math.unit(2300, "miles")
  4746. },
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4751. {
  4752. front: {
  4753. height: math.unit(6, "feet"),
  4754. weight: math.unit(180, "lbs"),
  4755. name: "Front",
  4756. image: {
  4757. source: "./media/characters/guisetto/front.svg",
  4758. extra: 856 / 817,
  4759. bottom: 0.06
  4760. }
  4761. },
  4762. airborne: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(180, "lbs"),
  4765. name: "Airborne",
  4766. image: {
  4767. source: "./media/characters/guisetto/airborne.svg",
  4768. extra: 584 / 525
  4769. }
  4770. },
  4771. },
  4772. [
  4773. {
  4774. name: "Normal",
  4775. height: math.unit(10 + 11 / 12, "feet"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Large",
  4780. height: math.unit(35, "feet")
  4781. },
  4782. {
  4783. name: "Macro",
  4784. height: math.unit(475, "feet")
  4785. },
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(180, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/luxor/front.svg",
  4797. extra: 2940 / 2152
  4798. }
  4799. },
  4800. back: {
  4801. height: math.unit(6, "feet"),
  4802. weight: math.unit(180, "lbs"),
  4803. name: "Back",
  4804. image: {
  4805. source: "./media/characters/luxor/back.svg",
  4806. extra: 1083 / 960
  4807. }
  4808. },
  4809. },
  4810. [
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(5 + 5 / 6, "feet"),
  4814. default: true
  4815. },
  4816. {
  4817. name: "Lamp",
  4818. height: math.unit(50, "feet")
  4819. },
  4820. {
  4821. name: "Lämp",
  4822. height: math.unit(300, "feet")
  4823. },
  4824. {
  4825. name: "The sun is a lamp",
  4826. height: math.unit(250000, "miles")
  4827. },
  4828. ]
  4829. ))
  4830. characterMakers.push(() => makeCharacter(
  4831. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4832. {
  4833. front: {
  4834. height: math.unit(6, "feet"),
  4835. weight: math.unit(50, "lbs"),
  4836. name: "Front",
  4837. image: {
  4838. source: "./media/characters/huoyan/front.svg"
  4839. }
  4840. },
  4841. side: {
  4842. height: math.unit(6, "feet"),
  4843. weight: math.unit(180, "lbs"),
  4844. name: "Side",
  4845. image: {
  4846. source: "./media/characters/huoyan/side.svg"
  4847. }
  4848. },
  4849. },
  4850. [
  4851. {
  4852. name: "Chef",
  4853. height: math.unit(9, "feet")
  4854. },
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(65, "feet"),
  4858. default: true
  4859. },
  4860. {
  4861. name: "Macro",
  4862. height: math.unit(780, "feet")
  4863. },
  4864. {
  4865. name: "Flaming Mountain",
  4866. height: math.unit(4.8, "miles")
  4867. },
  4868. {
  4869. name: "Celestial",
  4870. height: math.unit(765000, "miles")
  4871. },
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4876. {
  4877. front: {
  4878. height: math.unit(5 + 3 / 4, "feet"),
  4879. weight: math.unit(120, "lbs"),
  4880. name: "Front",
  4881. image: {
  4882. source: "./media/characters/tails/front.svg"
  4883. }
  4884. }
  4885. },
  4886. [
  4887. {
  4888. name: "Normal",
  4889. height: math.unit(5 + 3 / 4, "feet"),
  4890. default: true
  4891. }
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4896. {
  4897. front: {
  4898. height: math.unit(4, "feet"),
  4899. weight: math.unit(50, "lbs"),
  4900. name: "Front",
  4901. image: {
  4902. source: "./media/characters/rainy/front.svg"
  4903. }
  4904. }
  4905. },
  4906. [
  4907. {
  4908. name: "Macro",
  4909. height: math.unit(800, "feet"),
  4910. default: true
  4911. }
  4912. ]
  4913. ))
  4914. characterMakers.push(() => makeCharacter(
  4915. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4916. {
  4917. front: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(150, "lbs"),
  4920. name: "Front",
  4921. image: {
  4922. source: "./media/characters/rainier/front.svg"
  4923. }
  4924. }
  4925. },
  4926. [
  4927. {
  4928. name: "Micro",
  4929. height: math.unit(2, "mm"),
  4930. default: true
  4931. }
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4936. {
  4937. front: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(180, "lbs"),
  4940. name: "Front",
  4941. image: {
  4942. source: "./media/characters/andy/front.svg"
  4943. }
  4944. }
  4945. },
  4946. [
  4947. {
  4948. name: "Normal",
  4949. height: math.unit(8, "feet"),
  4950. default: true
  4951. },
  4952. {
  4953. name: "Macro",
  4954. height: math.unit(1000, "feet")
  4955. },
  4956. {
  4957. name: "Megamacro",
  4958. height: math.unit(5, "miles")
  4959. },
  4960. {
  4961. name: "Gigamacro",
  4962. height: math.unit(5000, "miles")
  4963. },
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4968. {
  4969. front: {
  4970. height: math.unit(6, "feet"),
  4971. weight: math.unit(210, "lbs"),
  4972. name: "Front",
  4973. image: {
  4974. source: "./media/characters/cimmaron/front-sfw.svg",
  4975. extra: 701 / 676,
  4976. bottom: 0.046
  4977. }
  4978. },
  4979. back: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(210, "lbs"),
  4982. name: "Back",
  4983. image: {
  4984. source: "./media/characters/cimmaron/back-sfw.svg",
  4985. extra: 701 / 676,
  4986. bottom: 0.046
  4987. }
  4988. },
  4989. frontNsfw: {
  4990. height: math.unit(6, "feet"),
  4991. weight: math.unit(210, "lbs"),
  4992. name: "Front (NSFW)",
  4993. image: {
  4994. source: "./media/characters/cimmaron/front-nsfw.svg",
  4995. extra: 701 / 676,
  4996. bottom: 0.046
  4997. }
  4998. },
  4999. backNsfw: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(210, "lbs"),
  5002. name: "Back (NSFW)",
  5003. image: {
  5004. source: "./media/characters/cimmaron/back-nsfw.svg",
  5005. extra: 701 / 676,
  5006. bottom: 0.046
  5007. }
  5008. },
  5009. dick: {
  5010. height: math.unit(1.714, "feet"),
  5011. name: "Dick",
  5012. image: {
  5013. source: "./media/characters/cimmaron/dick.svg"
  5014. }
  5015. },
  5016. },
  5017. [
  5018. {
  5019. name: "Normal",
  5020. height: math.unit(6, "feet"),
  5021. default: true
  5022. },
  5023. {
  5024. name: "Macro Mayor",
  5025. height: math.unit(350, "meters")
  5026. },
  5027. ]
  5028. ))
  5029. characterMakers.push(() => makeCharacter(
  5030. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5031. {
  5032. front: {
  5033. height: math.unit(6, "feet"),
  5034. weight: math.unit(200, "lbs"),
  5035. name: "Front",
  5036. image: {
  5037. source: "./media/characters/akari/front.svg",
  5038. extra: 962 / 901,
  5039. bottom: 0.04
  5040. }
  5041. }
  5042. },
  5043. [
  5044. {
  5045. name: "Micro",
  5046. height: math.unit(5, "inches"),
  5047. default: true
  5048. },
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(7, "feet")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5057. {
  5058. front: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(140, "lbs"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/cynosura/front.svg",
  5064. extra: 896 / 847
  5065. }
  5066. },
  5067. back: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(140, "lbs"),
  5070. name: "Back",
  5071. image: {
  5072. source: "./media/characters/cynosura/back.svg",
  5073. extra: 1365 / 1250
  5074. }
  5075. },
  5076. },
  5077. [
  5078. {
  5079. name: "Micro",
  5080. height: math.unit(4, "inches")
  5081. },
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(5.75, "feet"),
  5085. default: true
  5086. },
  5087. {
  5088. name: "Tall",
  5089. height: math.unit(10, "feet")
  5090. },
  5091. {
  5092. name: "Big",
  5093. height: math.unit(20, "feet")
  5094. },
  5095. {
  5096. name: "Macro",
  5097. height: math.unit(50, "feet")
  5098. },
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(170, "lbs"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/gin/front.svg",
  5110. extra: 1.053,
  5111. bottom: 0.025
  5112. }
  5113. },
  5114. foot: {
  5115. height: math.unit(6 / 4.25, "feet"),
  5116. name: "Foot",
  5117. image: {
  5118. source: "./media/characters/gin/foot.svg"
  5119. }
  5120. },
  5121. sole: {
  5122. height: math.unit(6 / 4.40, "feet"),
  5123. name: "Sole",
  5124. image: {
  5125. source: "./media/characters/gin/sole.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(13 + 2 / 12, "feet")
  5133. },
  5134. {
  5135. name: "Macro",
  5136. height: math.unit(1500, "feet")
  5137. },
  5138. {
  5139. name: "Megamacro",
  5140. height: math.unit(200, "miles"),
  5141. default: true
  5142. },
  5143. {
  5144. name: "Gigamacro",
  5145. height: math.unit(500, "megameters")
  5146. },
  5147. {
  5148. name: "Teramacro",
  5149. height: math.unit(15, "lightyears")
  5150. }
  5151. ]
  5152. ))
  5153. characterMakers.push(() => makeCharacter(
  5154. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5155. {
  5156. front: {
  5157. height: math.unit(6 + 1 / 6, "feet"),
  5158. weight: math.unit(178, "lbs"),
  5159. name: "Front",
  5160. image: {
  5161. source: "./media/characters/guy/front.svg"
  5162. }
  5163. }
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(6 + 1 / 6, "feet"),
  5169. default: true
  5170. },
  5171. {
  5172. name: "Large",
  5173. height: math.unit(25 + 7 / 12, "feet")
  5174. },
  5175. {
  5176. name: "Macro",
  5177. height: math.unit(60 + 9 / 12, "feet")
  5178. },
  5179. {
  5180. name: "Macro+",
  5181. height: math.unit(246, "feet")
  5182. },
  5183. {
  5184. name: "Macro++",
  5185. height: math.unit(878, "feet")
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5191. {
  5192. front: {
  5193. height: math.unit(9, "feet"),
  5194. weight: math.unit(800, "lbs"),
  5195. name: "Front",
  5196. image: {
  5197. source: "./media/characters/tiberius/front.svg",
  5198. extra: 2295 / 2071
  5199. }
  5200. },
  5201. back: {
  5202. height: math.unit(9, "feet"),
  5203. weight: math.unit(800, "lbs"),
  5204. name: "Back",
  5205. image: {
  5206. source: "./media/characters/tiberius/back.svg",
  5207. extra: 2373 / 2160
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(9, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5221. {
  5222. front: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(600, "lbs"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/surgo/front.svg",
  5228. extra: 3591 / 2227
  5229. }
  5230. },
  5231. back: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(600, "lbs"),
  5234. name: "Back",
  5235. image: {
  5236. source: "./media/characters/surgo/back.svg",
  5237. extra: 3557 / 2228
  5238. }
  5239. },
  5240. laying: {
  5241. height: math.unit(6 * 0.85, "feet"),
  5242. weight: math.unit(600, "lbs"),
  5243. name: "Laying",
  5244. image: {
  5245. source: "./media/characters/surgo/laying.svg"
  5246. }
  5247. },
  5248. },
  5249. [
  5250. {
  5251. name: "Normal",
  5252. height: math.unit(6, "feet"),
  5253. default: true
  5254. }
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5259. {
  5260. side: {
  5261. height: math.unit(6, "feet"),
  5262. weight: math.unit(150, "lbs"),
  5263. name: "Side",
  5264. image: {
  5265. source: "./media/characters/cibus/side.svg",
  5266. extra: 800 / 400
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(6, "feet"),
  5274. default: true
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(240, "lbs"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/nibbles/front.svg"
  5287. }
  5288. },
  5289. side: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(240, "lbs"),
  5292. name: "Side",
  5293. image: {
  5294. source: "./media/characters/nibbles/side.svg"
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(9, "feet"),
  5302. default: true
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5308. {
  5309. side: {
  5310. height: math.unit(5 + 1 / 6, "feet"),
  5311. weight: math.unit(130, "lbs"),
  5312. name: "Side",
  5313. image: {
  5314. source: "./media/characters/rikky/side.svg"
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(5 + 1 / 6, "feet")
  5322. },
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(152, "feet"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Megamacro",
  5330. height: math.unit(7, "miles")
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5336. {
  5337. side: {
  5338. height: math.unit(370, "cm"),
  5339. weight: math.unit(350, "lbs"),
  5340. name: "Side",
  5341. image: {
  5342. source: "./media/characters/malfressa/side.svg"
  5343. }
  5344. },
  5345. walking: {
  5346. height: math.unit(370, "cm"),
  5347. weight: math.unit(350, "lbs"),
  5348. name: "Walking",
  5349. image: {
  5350. source: "./media/characters/malfressa/walking.svg"
  5351. }
  5352. },
  5353. feral: {
  5354. height: math.unit(2500, "cm"),
  5355. weight: math.unit(100000, "lbs"),
  5356. name: "Feral",
  5357. image: {
  5358. source: "./media/characters/malfressa/feral.svg",
  5359. extra: 2108 / 837,
  5360. bottom: 0.02
  5361. }
  5362. },
  5363. },
  5364. [
  5365. {
  5366. name: "Normal",
  5367. height: math.unit(370, "cm")
  5368. },
  5369. {
  5370. name: "Macro",
  5371. height: math.unit(300, "meters"),
  5372. default: true
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5378. {
  5379. front: {
  5380. height: math.unit(6, "feet"),
  5381. weight: math.unit(60, "kg"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/jaro/front.svg"
  5385. }
  5386. },
  5387. back: {
  5388. height: math.unit(6, "feet"),
  5389. weight: math.unit(60, "kg"),
  5390. name: "Back",
  5391. image: {
  5392. source: "./media/characters/jaro/back.svg"
  5393. }
  5394. },
  5395. },
  5396. [
  5397. {
  5398. name: "Micro",
  5399. height: math.unit(7, "inches")
  5400. },
  5401. {
  5402. name: "Normal",
  5403. height: math.unit(5.5, "feet"),
  5404. default: true
  5405. },
  5406. {
  5407. name: "Minimacro",
  5408. height: math.unit(20, "feet")
  5409. },
  5410. {
  5411. name: "Macro",
  5412. height: math.unit(200, "meters")
  5413. }
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5418. {
  5419. front: {
  5420. height: math.unit(6, "feet"),
  5421. weight: math.unit(195, "lb"),
  5422. name: "Front",
  5423. image: {
  5424. source: "./media/characters/rogue/front.svg"
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Macro",
  5431. height: math.unit(90, "feet"),
  5432. default: true
  5433. },
  5434. ]
  5435. ))
  5436. characterMakers.push(() => makeCharacter(
  5437. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5438. {
  5439. front: {
  5440. height: math.unit(5 + 8 / 12, "feet"),
  5441. weight: math.unit(140, "lb"),
  5442. name: "Front",
  5443. image: {
  5444. source: "./media/characters/piper/front.svg",
  5445. extra: 3928 / 3681
  5446. }
  5447. },
  5448. },
  5449. [
  5450. {
  5451. name: "Micro",
  5452. height: math.unit(2, "inches")
  5453. },
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(5 + 8 / 12, "feet")
  5457. },
  5458. {
  5459. name: "Macro",
  5460. height: math.unit(250, "feet"),
  5461. default: true
  5462. },
  5463. {
  5464. name: "Megamacro",
  5465. height: math.unit(7, "miles")
  5466. },
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(220, "lb"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/gemini/front.svg"
  5478. }
  5479. },
  5480. back: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(220, "lb"),
  5483. name: "Back",
  5484. image: {
  5485. source: "./media/characters/gemini/back.svg"
  5486. }
  5487. },
  5488. kneeling: {
  5489. height: math.unit(6 / 1.5, "feet"),
  5490. weight: math.unit(220, "lb"),
  5491. name: "Kneeling",
  5492. image: {
  5493. source: "./media/characters/gemini/kneeling.svg",
  5494. bottom: 0.02
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Macro",
  5501. height: math.unit(300, "meters"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Megamacro",
  5506. height: math.unit(6900, "meters")
  5507. },
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5512. {
  5513. anthro: {
  5514. height: math.unit(2.35, "meters"),
  5515. weight: math.unit(73, "kg"),
  5516. name: "Anthro",
  5517. image: {
  5518. source: "./media/characters/alicia/anthro.svg",
  5519. extra: 2571 / 2385,
  5520. bottom: 75 / 2648
  5521. }
  5522. },
  5523. paw: {
  5524. height: math.unit(1.32, "feet"),
  5525. name: "Paw",
  5526. image: {
  5527. source: "./media/characters/alicia/paw.svg"
  5528. }
  5529. },
  5530. feral: {
  5531. height: math.unit(1.69, "meters"),
  5532. weight: math.unit(73, "kg"),
  5533. name: "Feral",
  5534. image: {
  5535. source: "./media/characters/alicia/feral.svg",
  5536. extra: 2123 / 1715,
  5537. bottom: 222 / 2349
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(2.35, "meters")
  5545. },
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(60, "meters"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(10000, "kilometers")
  5554. },
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5559. {
  5560. front: {
  5561. height: math.unit(7, "feet"),
  5562. weight: math.unit(250, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/archy/front.svg"
  5566. }
  5567. }
  5568. },
  5569. [
  5570. {
  5571. name: "Micro",
  5572. height: math.unit(1, "inch")
  5573. },
  5574. {
  5575. name: "Shorty",
  5576. height: math.unit(5, "feet")
  5577. },
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(7, "feet")
  5581. },
  5582. {
  5583. name: "Macro",
  5584. height: math.unit(600, "meters"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Megamacro",
  5589. height: math.unit(1, "mile")
  5590. },
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(1.65, "meters"),
  5598. weight: math.unit(74, "kg"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/berri/front.svg",
  5602. extra: 857 / 837,
  5603. bottom: 18 / 877
  5604. }
  5605. },
  5606. bum: {
  5607. height: math.unit(1.46, "feet"),
  5608. name: "Bum",
  5609. image: {
  5610. source: "./media/characters/berri/bum.svg"
  5611. }
  5612. },
  5613. mouth: {
  5614. height: math.unit(0.44, "feet"),
  5615. name: "Mouth",
  5616. image: {
  5617. source: "./media/characters/berri/mouth.svg"
  5618. }
  5619. },
  5620. paw: {
  5621. height: math.unit(0.826, "feet"),
  5622. name: "Paw",
  5623. image: {
  5624. source: "./media/characters/berri/paw.svg"
  5625. }
  5626. },
  5627. },
  5628. [
  5629. {
  5630. name: "Normal",
  5631. height: math.unit(1.65, "meters")
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(60, "m"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Megamacro",
  5640. height: math.unit(9.213, "km")
  5641. },
  5642. {
  5643. name: "Planet Eater",
  5644. height: math.unit(489, "megameters")
  5645. },
  5646. {
  5647. name: "Teramacro",
  5648. height: math.unit(2471635000000, "meters")
  5649. },
  5650. {
  5651. name: "Examacro",
  5652. height: math.unit(8.0624e+26, "meters")
  5653. }
  5654. ]
  5655. ))
  5656. characterMakers.push(() => makeCharacter(
  5657. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5658. {
  5659. front: {
  5660. height: math.unit(1.72, "meters"),
  5661. weight: math.unit(68, "kg"),
  5662. name: "Front",
  5663. image: {
  5664. source: "./media/characters/lexi/front.svg"
  5665. }
  5666. }
  5667. },
  5668. [
  5669. {
  5670. name: "Very Smol",
  5671. height: math.unit(10, "mm")
  5672. },
  5673. {
  5674. name: "Micro",
  5675. height: math.unit(6.8, "cm"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(1.72, "m")
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(1.69, "meters"),
  5689. weight: math.unit(68, "kg"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/martin/front.svg",
  5693. extra: 596 / 581
  5694. }
  5695. }
  5696. },
  5697. [
  5698. {
  5699. name: "Micro",
  5700. height: math.unit(6.85, "cm"),
  5701. default: true
  5702. },
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(1.69, "m")
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5711. {
  5712. front: {
  5713. height: math.unit(1.69, "meters"),
  5714. weight: math.unit(68, "kg"),
  5715. name: "Front",
  5716. image: {
  5717. source: "./media/characters/juno/front.svg"
  5718. }
  5719. }
  5720. },
  5721. [
  5722. {
  5723. name: "Micro",
  5724. height: math.unit(7, "cm")
  5725. },
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(1.89, "m")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(353, "meters"),
  5733. default: true
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5739. {
  5740. front: {
  5741. height: math.unit(1.93, "meters"),
  5742. weight: math.unit(83, "kg"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/samantha/front.svg"
  5746. }
  5747. },
  5748. frontClothed: {
  5749. height: math.unit(1.93, "meters"),
  5750. weight: math.unit(83, "kg"),
  5751. name: "Front (Clothed)",
  5752. image: {
  5753. source: "./media/characters/samantha/front-clothed.svg"
  5754. }
  5755. },
  5756. back: {
  5757. height: math.unit(1.93, "meters"),
  5758. weight: math.unit(83, "kg"),
  5759. name: "Back",
  5760. image: {
  5761. source: "./media/characters/samantha/back.svg"
  5762. }
  5763. },
  5764. },
  5765. [
  5766. {
  5767. name: "Normal",
  5768. height: math.unit(1.93, "m")
  5769. },
  5770. {
  5771. name: "Macro",
  5772. height: math.unit(74, "meters"),
  5773. default: true
  5774. },
  5775. {
  5776. name: "Macro+",
  5777. height: math.unit(223, "meters"),
  5778. },
  5779. {
  5780. name: "Megamacro",
  5781. height: math.unit(8381, "meters"),
  5782. },
  5783. {
  5784. name: "Megamacro+",
  5785. height: math.unit(12000, "kilometers")
  5786. },
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5791. {
  5792. front: {
  5793. height: math.unit(1.92, "meters"),
  5794. weight: math.unit(80, "kg"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/dr-clay/front.svg"
  5798. }
  5799. },
  5800. frontClothed: {
  5801. height: math.unit(1.92, "meters"),
  5802. weight: math.unit(80, "kg"),
  5803. name: "Front (Clothed)",
  5804. image: {
  5805. source: "./media/characters/dr-clay/front-clothed.svg"
  5806. }
  5807. }
  5808. },
  5809. [
  5810. {
  5811. name: "Normal",
  5812. height: math.unit(1.92, "m")
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(214, "meters"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Macro+",
  5821. height: math.unit(12.237, "meters"),
  5822. },
  5823. {
  5824. name: "Megamacro",
  5825. height: math.unit(557, "megameters"),
  5826. },
  5827. {
  5828. name: "Unimaginable",
  5829. height: math.unit(120e9, "lightyears")
  5830. },
  5831. ]
  5832. ))
  5833. characterMakers.push(() => makeCharacter(
  5834. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5835. {
  5836. front: {
  5837. height: math.unit(2, "meters"),
  5838. weight: math.unit(80, "kg"),
  5839. name: "Front",
  5840. image: {
  5841. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5842. }
  5843. }
  5844. },
  5845. [
  5846. {
  5847. name: "Teramacro",
  5848. height: math.unit(500000, "lightyears"),
  5849. default: true
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(2, "meters"),
  5858. weight: math.unit(150, "kg"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/vemus/front.svg",
  5862. extra: 2384 / 2084,
  5863. bottom: 0.0123
  5864. }
  5865. }
  5866. },
  5867. [
  5868. {
  5869. name: "Normal",
  5870. height: math.unit(3.75, "meters"),
  5871. default: true
  5872. },
  5873. {
  5874. name: "Big",
  5875. height: math.unit(8, "meters")
  5876. },
  5877. {
  5878. name: "Macro",
  5879. height: math.unit(100, "meters")
  5880. },
  5881. {
  5882. name: "Macro+",
  5883. height: math.unit(1500, "meters")
  5884. },
  5885. {
  5886. name: "Stellar",
  5887. height: math.unit(14e8, "meters")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(2, "meters"),
  5896. weight: math.unit(70, "kg"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/beherit/front.svg",
  5900. extra: 1408 / 1242
  5901. }
  5902. }
  5903. },
  5904. [
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(6, "feet")
  5908. },
  5909. {
  5910. name: "Lorg",
  5911. height: math.unit(25, "feet"),
  5912. default: true
  5913. },
  5914. {
  5915. name: "Lorger",
  5916. height: math.unit(75, "feet")
  5917. },
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(200, "meters")
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5926. {
  5927. front: {
  5928. height: math.unit(2, "meters"),
  5929. weight: math.unit(150, "kg"),
  5930. name: "Front",
  5931. image: {
  5932. source: "./media/characters/everett/front.svg",
  5933. extra: 2038 / 1737,
  5934. bottom: 0.03
  5935. }
  5936. },
  5937. paw: {
  5938. height: math.unit(2 / 3.6, "meters"),
  5939. name: "Paw",
  5940. image: {
  5941. source: "./media/characters/everett/paw.svg"
  5942. }
  5943. },
  5944. },
  5945. [
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(15, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Lorg",
  5953. height: math.unit(70, "feet"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Lorger",
  5958. height: math.unit(250, "feet")
  5959. },
  5960. {
  5961. name: "Macro",
  5962. height: math.unit(500, "meters")
  5963. },
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5968. {
  5969. front: {
  5970. height: math.unit(2, "meters"),
  5971. weight: math.unit(86, "kg"),
  5972. name: "Front",
  5973. image: {
  5974. source: "./media/characters/rose-lion/front.svg"
  5975. }
  5976. },
  5977. bent: {
  5978. height: math.unit(2 / 1.4288, "meters"),
  5979. weight: math.unit(86, "kg"),
  5980. name: "Bent",
  5981. image: {
  5982. source: "./media/characters/rose-lion/bent.svg"
  5983. }
  5984. }
  5985. },
  5986. [
  5987. {
  5988. name: "Mini-Micro",
  5989. height: math.unit(1, "cm")
  5990. },
  5991. {
  5992. name: "Micro",
  5993. height: math.unit(3.5, "inches"),
  5994. default: true
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(6 + 1 / 6, "feet")
  5999. },
  6000. {
  6001. name: "Mini-Macro",
  6002. height: math.unit(9 + 10 / 12, "feet")
  6003. },
  6004. ]
  6005. ))
  6006. characterMakers.push(() => makeCharacter(
  6007. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6008. {
  6009. front: {
  6010. height: math.unit(2, "meters"),
  6011. weight: math.unit(350, "lbs"),
  6012. name: "Front",
  6013. image: {
  6014. source: "./media/characters/regal/front.svg"
  6015. }
  6016. },
  6017. back: {
  6018. height: math.unit(2, "meters"),
  6019. weight: math.unit(350, "lbs"),
  6020. name: "Back",
  6021. image: {
  6022. source: "./media/characters/regal/back.svg"
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(350, "feet"),
  6030. default: true
  6031. }
  6032. ]
  6033. ))
  6034. characterMakers.push(() => makeCharacter(
  6035. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6036. {
  6037. front: {
  6038. height: math.unit(4 + 11 / 12, "feet"),
  6039. weight: math.unit(100, "lbs"),
  6040. name: "Front",
  6041. image: {
  6042. source: "./media/characters/opal/front.svg"
  6043. }
  6044. },
  6045. frontAlt: {
  6046. height: math.unit(4 + 11 / 12, "feet"),
  6047. weight: math.unit(100, "lbs"),
  6048. name: "Front (Alt)",
  6049. image: {
  6050. source: "./media/characters/opal/front-alt.svg"
  6051. }
  6052. },
  6053. },
  6054. [
  6055. {
  6056. name: "Small",
  6057. height: math.unit(4 + 11 / 12, "feet")
  6058. },
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(20, "feet"),
  6062. default: true
  6063. },
  6064. {
  6065. name: "Macro",
  6066. height: math.unit(120, "feet")
  6067. },
  6068. {
  6069. name: "Megamacro",
  6070. height: math.unit(80, "miles")
  6071. },
  6072. {
  6073. name: "True Size",
  6074. height: math.unit(100000, "lightyears")
  6075. },
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6080. {
  6081. front: {
  6082. height: math.unit(6, "feet"),
  6083. weight: math.unit(200, "lbs"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/vector-wuff/front.svg"
  6087. }
  6088. }
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(2.8, "meters")
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(450, "meters"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Megamacro",
  6102. height: math.unit(15, "kilometers")
  6103. }
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(256, "lbs"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/dannik/front.svg"
  6115. }
  6116. }
  6117. },
  6118. [
  6119. {
  6120. name: "Macro",
  6121. height: math.unit(69.57, "meters"),
  6122. default: true
  6123. },
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(6, "feet"),
  6131. weight: math.unit(120, "lbs"),
  6132. name: "Front",
  6133. image: {
  6134. source: "./media/characters/azura-saharah/front.svg"
  6135. }
  6136. },
  6137. back: {
  6138. height: math.unit(6, "feet"),
  6139. weight: math.unit(120, "lbs"),
  6140. name: "Back",
  6141. image: {
  6142. source: "./media/characters/azura-saharah/back.svg"
  6143. }
  6144. },
  6145. },
  6146. [
  6147. {
  6148. name: "Macro",
  6149. height: math.unit(100, "feet"),
  6150. default: true
  6151. },
  6152. ]
  6153. ))
  6154. characterMakers.push(() => makeCharacter(
  6155. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6156. {
  6157. side: {
  6158. height: math.unit(5 + 4 / 12, "feet"),
  6159. weight: math.unit(163, "lbs"),
  6160. name: "Side",
  6161. image: {
  6162. source: "./media/characters/kennedy/side.svg"
  6163. }
  6164. }
  6165. },
  6166. [
  6167. {
  6168. name: "Standard Doggo",
  6169. height: math.unit(5 + 4 / 12, "feet")
  6170. },
  6171. {
  6172. name: "Big Doggo",
  6173. height: math.unit(25 + 3 / 12, "feet"),
  6174. default: true
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(6, "feet"),
  6183. weight: math.unit(90, "lbs"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/odi-lunar/front.svg"
  6187. }
  6188. }
  6189. },
  6190. [
  6191. {
  6192. name: "Micro",
  6193. height: math.unit(3, "inches"),
  6194. default: true
  6195. },
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(5.5, "feet")
  6199. }
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6204. {
  6205. back: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(220, "lbs"),
  6208. name: "Back",
  6209. image: {
  6210. source: "./media/characters/mandake/back.svg"
  6211. }
  6212. }
  6213. },
  6214. [
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(7, "feet"),
  6218. default: true
  6219. },
  6220. {
  6221. name: "Macro",
  6222. height: math.unit(78, "feet")
  6223. },
  6224. {
  6225. name: "Macro+",
  6226. height: math.unit(300, "meters")
  6227. },
  6228. {
  6229. name: "Macro++",
  6230. height: math.unit(2400, "feet")
  6231. },
  6232. {
  6233. name: "Megamacro",
  6234. height: math.unit(5167, "meters")
  6235. },
  6236. {
  6237. name: "Gigamacro",
  6238. height: math.unit(41769, "miles")
  6239. },
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(120, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/yozey/front.svg"
  6251. }
  6252. },
  6253. frontAlt: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(120, "lbs"),
  6256. name: "Front (Alt)",
  6257. image: {
  6258. source: "./media/characters/yozey/front-alt.svg"
  6259. }
  6260. },
  6261. side: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(120, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/yozey/side.svg"
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Micro",
  6273. height: math.unit(3, "inches"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(6, "feet")
  6279. }
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(103, "lbs"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/valeska-voss/front.svg"
  6291. }
  6292. }
  6293. },
  6294. [
  6295. {
  6296. name: "Mini-Sized Sub",
  6297. height: math.unit(3.1, "inches")
  6298. },
  6299. {
  6300. name: "Mid-Sized Sub",
  6301. height: math.unit(6.2, "inches")
  6302. },
  6303. {
  6304. name: "Full-Sized Sub",
  6305. height: math.unit(9.3, "inches")
  6306. },
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(5 + 2 / 12, "foot"),
  6310. default: true
  6311. },
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6316. {
  6317. front: {
  6318. height: math.unit(6, "feet"),
  6319. weight: math.unit(160, "lbs"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/gene-zeta/front.svg",
  6323. bottom: 0.03,
  6324. extra: 1
  6325. }
  6326. }
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(6.25, "foot"),
  6332. default: true
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6338. {
  6339. front: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(350, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/razinox/front.svg",
  6345. extra: 1686 / 1548,
  6346. bottom: 28.2 / 1868
  6347. }
  6348. },
  6349. back: {
  6350. height: math.unit(6, "feet"),
  6351. weight: math.unit(350, "lbs"),
  6352. name: "Back",
  6353. image: {
  6354. source: "./media/characters/razinox/back.svg",
  6355. extra: 1660 / 1590,
  6356. bottom: 15 / 1665
  6357. }
  6358. },
  6359. },
  6360. [
  6361. {
  6362. name: "Normal",
  6363. height: math.unit(10 + 8 / 12, "foot")
  6364. },
  6365. {
  6366. name: "Minimacro",
  6367. height: math.unit(15, "foot")
  6368. },
  6369. {
  6370. name: "Macro",
  6371. height: math.unit(60, "foot"),
  6372. default: true
  6373. },
  6374. {
  6375. name: "Megamacro",
  6376. height: math.unit(5, "miles")
  6377. },
  6378. {
  6379. name: "Gigamacro",
  6380. height: math.unit(6000, "miles")
  6381. },
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(150, "lbs"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/cobalt/front.svg"
  6393. }
  6394. }
  6395. },
  6396. [
  6397. {
  6398. name: "Normal",
  6399. height: math.unit(8 + 1 / 12, "foot")
  6400. },
  6401. {
  6402. name: "Macro",
  6403. height: math.unit(111, "foot"),
  6404. default: true
  6405. },
  6406. {
  6407. name: "Supracosmic",
  6408. height: math.unit(1e42, "feet")
  6409. },
  6410. ]
  6411. ))
  6412. characterMakers.push(() => makeCharacter(
  6413. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6414. {
  6415. front: {
  6416. height: math.unit(6, "feet"),
  6417. weight: math.unit(140, "lbs"),
  6418. name: "Front",
  6419. image: {
  6420. source: "./media/characters/amanda/front.svg"
  6421. }
  6422. }
  6423. },
  6424. [
  6425. {
  6426. name: "Micro",
  6427. height: math.unit(5, "inches"),
  6428. default: true
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6434. {
  6435. front: {
  6436. height: math.unit(5.59, "feet"),
  6437. weight: math.unit(250, "lbs"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/teal/front.svg"
  6441. }
  6442. },
  6443. frontAlt: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(250, "lbs"),
  6446. name: "Front (Alt)",
  6447. image: {
  6448. source: "./media/characters/teal/front-alt.svg",
  6449. bottom: 0.04,
  6450. extra: 1
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Normal",
  6457. height: math.unit(12, "feet"),
  6458. default: true
  6459. },
  6460. {
  6461. name: "Macro",
  6462. height: math.unit(300, "feet")
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6468. {
  6469. frontCat: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(180, "lbs"),
  6472. name: "Front (Cat)",
  6473. image: {
  6474. source: "./media/characters/ravin-amulet/front-cat.svg"
  6475. }
  6476. },
  6477. frontCatAlt: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(180, "lbs"),
  6480. name: "Front (Alt, Cat)",
  6481. image: {
  6482. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6483. }
  6484. },
  6485. frontWerewolf: {
  6486. height: math.unit(6 * 1.2, "feet"),
  6487. weight: math.unit(225, "lbs"),
  6488. name: "Front (Werewolf)",
  6489. image: {
  6490. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6491. }
  6492. },
  6493. backWerewolf: {
  6494. height: math.unit(6 * 1.2, "feet"),
  6495. weight: math.unit(225, "lbs"),
  6496. name: "Back (Werewolf)",
  6497. image: {
  6498. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Nano",
  6505. height: math.unit(1, "micrometer")
  6506. },
  6507. {
  6508. name: "Micro",
  6509. height: math.unit(1, "inch")
  6510. },
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(6, "feet"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Macro",
  6518. height: math.unit(60, "feet")
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(6, "feet"),
  6527. weight: math.unit(165, "lbs"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/fluoresce/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Micro",
  6537. height: math.unit(6, "cm")
  6538. },
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(5 + 7 / 12, "feet"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Macro",
  6546. height: math.unit(56, "feet")
  6547. },
  6548. {
  6549. name: "Megamacro",
  6550. height: math.unit(1.9, "miles")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(9 + 6 / 12, "feet"),
  6559. weight: math.unit(523, "lbs"),
  6560. name: "Side",
  6561. image: {
  6562. source: "./media/characters/aurora/side.svg"
  6563. }
  6564. }
  6565. },
  6566. [
  6567. {
  6568. name: "Normal",
  6569. height: math.unit(9 + 6 / 12, "feet")
  6570. },
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(96, "feet"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Macro+",
  6578. height: math.unit(243, "feet")
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(194, "cm"),
  6587. weight: math.unit(90, "kg"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/ranek/front.svg"
  6591. }
  6592. },
  6593. side: {
  6594. height: math.unit(194, "cm"),
  6595. weight: math.unit(90, "kg"),
  6596. name: "Side",
  6597. image: {
  6598. source: "./media/characters/ranek/side.svg"
  6599. }
  6600. },
  6601. back: {
  6602. height: math.unit(194, "cm"),
  6603. weight: math.unit(90, "kg"),
  6604. name: "Back",
  6605. image: {
  6606. source: "./media/characters/ranek/back.svg"
  6607. }
  6608. },
  6609. feral: {
  6610. height: math.unit(30, "cm"),
  6611. weight: math.unit(1.6, "lbs"),
  6612. name: "Feral",
  6613. image: {
  6614. source: "./media/characters/ranek/feral.svg"
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(194, "cm"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Macro",
  6626. height: math.unit(100, "meters")
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6632. {
  6633. front: {
  6634. height: math.unit(5 + 6 / 12, "feet"),
  6635. weight: math.unit(153, "lbs"),
  6636. name: "Front",
  6637. image: {
  6638. source: "./media/characters/andrew-cooper/front.svg"
  6639. }
  6640. },
  6641. },
  6642. [
  6643. {
  6644. name: "Nano",
  6645. height: math.unit(1, "mm")
  6646. },
  6647. {
  6648. name: "Micro",
  6649. height: math.unit(2, "inches")
  6650. },
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(5 + 6 / 12, "feet"),
  6654. default: true
  6655. }
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6660. {
  6661. front: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(180, "lbs"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/akane-sato/front.svg",
  6667. extra: 1219 / 1140
  6668. }
  6669. },
  6670. back: {
  6671. height: math.unit(6, "feet"),
  6672. weight: math.unit(180, "lbs"),
  6673. name: "Back",
  6674. image: {
  6675. source: "./media/characters/akane-sato/back.svg",
  6676. extra: 1219 / 1170
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(2.5, "meters")
  6684. },
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(250, "meters"),
  6688. default: true
  6689. },
  6690. {
  6691. name: "Megamacro",
  6692. height: math.unit(25, "km")
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6698. {
  6699. front: {
  6700. height: math.unit(6, "feet"),
  6701. weight: math.unit(65, "kg"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/rook/front.svg",
  6705. extra: 960 / 950
  6706. }
  6707. }
  6708. },
  6709. [
  6710. {
  6711. name: "Normal",
  6712. height: math.unit(8.8, "feet")
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(88, "feet"),
  6717. default: true
  6718. },
  6719. {
  6720. name: "Megamacro",
  6721. height: math.unit(8, "miles")
  6722. },
  6723. ]
  6724. ))
  6725. characterMakers.push(() => makeCharacter(
  6726. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6727. {
  6728. front: {
  6729. height: math.unit(12 + 2 / 12, "feet"),
  6730. weight: math.unit(808, "lbs"),
  6731. name: "Front",
  6732. image: {
  6733. source: "./media/characters/prodigy/front.svg"
  6734. }
  6735. }
  6736. },
  6737. [
  6738. {
  6739. name: "Normal",
  6740. height: math.unit(12 + 2 / 12, "feet"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(143, "feet")
  6746. },
  6747. {
  6748. name: "Macro+",
  6749. height: math.unit(400, "feet")
  6750. },
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6755. {
  6756. front: {
  6757. height: math.unit(6, "feet"),
  6758. weight: math.unit(225, "lbs"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/daniel/front.svg"
  6762. }
  6763. },
  6764. leaning: {
  6765. height: math.unit(6, "feet"),
  6766. weight: math.unit(225, "lbs"),
  6767. name: "Leaning",
  6768. image: {
  6769. source: "./media/characters/daniel/leaning.svg"
  6770. }
  6771. },
  6772. },
  6773. [
  6774. {
  6775. name: "Macro",
  6776. height: math.unit(1000, "feet"),
  6777. default: true
  6778. },
  6779. ]
  6780. ))
  6781. characterMakers.push(() => makeCharacter(
  6782. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6783. {
  6784. front: {
  6785. height: math.unit(6, "feet"),
  6786. weight: math.unit(88, "lbs"),
  6787. name: "Front",
  6788. image: {
  6789. source: "./media/characters/chiros/front.svg",
  6790. extra: 306 / 226
  6791. }
  6792. },
  6793. side: {
  6794. height: math.unit(6, "feet"),
  6795. weight: math.unit(88, "lbs"),
  6796. name: "Side",
  6797. image: {
  6798. source: "./media/characters/chiros/side.svg",
  6799. extra: 306 / 226
  6800. }
  6801. },
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(6, "cm"),
  6807. default: true
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6813. {
  6814. front: {
  6815. height: math.unit(6, "feet"),
  6816. weight: math.unit(100, "lbs"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/selka/front.svg",
  6820. extra: 947 / 887
  6821. }
  6822. }
  6823. },
  6824. [
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(5, "cm"),
  6828. default: true
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(8 + 3 / 12, "feet"),
  6837. weight: math.unit(424, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/verin/front.svg",
  6841. extra: 1845 / 1550
  6842. }
  6843. },
  6844. frontArmored: {
  6845. height: math.unit(8 + 3 / 12, "feet"),
  6846. weight: math.unit(424, "lbs"),
  6847. name: "Front (Armored)",
  6848. image: {
  6849. source: "./media/characters/verin/front-armor.svg",
  6850. extra: 1845 / 1550,
  6851. bottom: 0.01
  6852. }
  6853. },
  6854. back: {
  6855. height: math.unit(8 + 3 / 12, "feet"),
  6856. weight: math.unit(424, "lbs"),
  6857. name: "Back",
  6858. image: {
  6859. source: "./media/characters/verin/back.svg",
  6860. bottom: 0.1,
  6861. extra: 1
  6862. }
  6863. },
  6864. foot: {
  6865. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6866. name: "Foot",
  6867. image: {
  6868. source: "./media/characters/verin/foot.svg"
  6869. }
  6870. },
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(8 + 3 / 12, "feet")
  6876. },
  6877. {
  6878. name: "Minimacro",
  6879. height: math.unit(21, "feet"),
  6880. default: true
  6881. },
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(626, "feet")
  6885. },
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6890. {
  6891. front: {
  6892. height: math.unit(2.718, "meters"),
  6893. weight: math.unit(150, "lbs"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/sovrim-terraquian/front.svg"
  6897. }
  6898. },
  6899. back: {
  6900. height: math.unit(2.718, "meters"),
  6901. weight: math.unit(150, "lbs"),
  6902. name: "Back",
  6903. image: {
  6904. source: "./media/characters/sovrim-terraquian/back.svg"
  6905. }
  6906. }
  6907. },
  6908. [
  6909. {
  6910. name: "Micro",
  6911. height: math.unit(2, "inches")
  6912. },
  6913. {
  6914. name: "Small",
  6915. height: math.unit(1, "meter")
  6916. },
  6917. {
  6918. name: "Normal",
  6919. height: math.unit(Math.E, "meters"),
  6920. default: true
  6921. },
  6922. {
  6923. name: "Macro",
  6924. height: math.unit(20, "meters")
  6925. },
  6926. {
  6927. name: "Macro+",
  6928. height: math.unit(400, "meters")
  6929. },
  6930. ]
  6931. ))
  6932. characterMakers.push(() => makeCharacter(
  6933. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6934. {
  6935. front: {
  6936. height: math.unit(7, "feet"),
  6937. weight: math.unit(489, "lbs"),
  6938. name: "Front",
  6939. image: {
  6940. source: "./media/characters/reece-silvermane/front.svg",
  6941. bottom: 0.02,
  6942. extra: 1
  6943. }
  6944. },
  6945. },
  6946. [
  6947. {
  6948. name: "Macro",
  6949. height: math.unit(1.5, "miles"),
  6950. default: true
  6951. },
  6952. ]
  6953. ))
  6954. characterMakers.push(() => makeCharacter(
  6955. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6956. {
  6957. front: {
  6958. height: math.unit(6, "feet"),
  6959. weight: math.unit(78, "kg"),
  6960. name: "Front",
  6961. image: {
  6962. source: "./media/characters/kane/front.svg",
  6963. extra: 978 / 899
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(2.1, "m"),
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(1, "km"),
  6975. default: true
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(200, "kg"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/tegon/front.svg",
  6988. bottom: 0.01,
  6989. extra: 1
  6990. }
  6991. },
  6992. },
  6993. [
  6994. {
  6995. name: "Micro",
  6996. height: math.unit(1, "inch")
  6997. },
  6998. {
  6999. name: "Normal",
  7000. height: math.unit(6 + 3 / 12, "feet"),
  7001. default: true
  7002. },
  7003. {
  7004. name: "Macro",
  7005. height: math.unit(300, "feet")
  7006. },
  7007. {
  7008. name: "Megamacro",
  7009. height: math.unit(69, "miles")
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7015. {
  7016. side: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(2304, "lbs"),
  7019. name: "Side",
  7020. image: {
  7021. source: "./media/characters/arcturax/side.svg",
  7022. extra: 790 / 376,
  7023. bottom: 0.01
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(2, "inch")
  7031. },
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(6, "feet")
  7035. },
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(39, "feet"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Megamacro",
  7043. height: math.unit(7, "miles")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(50, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/sentri/front.svg",
  7056. extra: 1750 / 1570,
  7057. bottom: 0.025
  7058. }
  7059. },
  7060. frontAlt: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(50, "lbs"),
  7063. name: "Front (Alt)",
  7064. image: {
  7065. source: "./media/characters/sentri/front-alt.svg",
  7066. extra: 1750 / 1570,
  7067. bottom: 0.025
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(15, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(2500, "feet")
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(5 + 8 / 12, "feet"),
  7088. weight: math.unit(130, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/corvin/front.svg",
  7092. extra: 1803 / 1629
  7093. }
  7094. },
  7095. frontShirt: {
  7096. height: math.unit(5 + 8 / 12, "feet"),
  7097. weight: math.unit(130, "lbs"),
  7098. name: "Front (Shirt)",
  7099. image: {
  7100. source: "./media/characters/corvin/front-shirt.svg",
  7101. extra: 1803 / 1629
  7102. }
  7103. },
  7104. frontPoncho: {
  7105. height: math.unit(5 + 8 / 12, "feet"),
  7106. weight: math.unit(130, "lbs"),
  7107. name: "Front (Poncho)",
  7108. image: {
  7109. source: "./media/characters/corvin/front-poncho.svg",
  7110. extra: 1803 / 1629
  7111. }
  7112. },
  7113. side: {
  7114. height: math.unit(5 + 8 / 12, "feet"),
  7115. weight: math.unit(130, "lbs"),
  7116. name: "Side",
  7117. image: {
  7118. source: "./media/characters/corvin/side.svg",
  7119. extra: 1012 / 945
  7120. }
  7121. },
  7122. back: {
  7123. height: math.unit(5 + 8 / 12, "feet"),
  7124. weight: math.unit(130, "lbs"),
  7125. name: "Back",
  7126. image: {
  7127. source: "./media/characters/corvin/back.svg",
  7128. extra: 1803 / 1629
  7129. }
  7130. },
  7131. },
  7132. [
  7133. {
  7134. name: "Micro",
  7135. height: math.unit(3, "inches")
  7136. },
  7137. {
  7138. name: "Normal",
  7139. height: math.unit(5 + 8 / 12, "feet")
  7140. },
  7141. {
  7142. name: "Macro",
  7143. height: math.unit(300, "feet"),
  7144. default: true
  7145. },
  7146. {
  7147. name: "Megamacro",
  7148. height: math.unit(500, "miles")
  7149. }
  7150. ]
  7151. ))
  7152. characterMakers.push(() => makeCharacter(
  7153. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7154. {
  7155. front: {
  7156. height: math.unit(6, "feet"),
  7157. weight: math.unit(135, "lbs"),
  7158. name: "Front",
  7159. image: {
  7160. source: "./media/characters/q/front.svg",
  7161. extra: 854 / 752,
  7162. bottom: 0.005
  7163. }
  7164. },
  7165. back: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(130, "lbs"),
  7168. name: "Back",
  7169. image: {
  7170. source: "./media/characters/q/back.svg",
  7171. extra: 854 / 752
  7172. }
  7173. },
  7174. },
  7175. [
  7176. {
  7177. name: "Macro",
  7178. height: math.unit(90, "feet"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Extra Macro",
  7183. height: math.unit(300, "feet"),
  7184. },
  7185. {
  7186. name: "BIG WALF",
  7187. height: math.unit(750, "feet"),
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(150, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/carley/front.svg",
  7200. extra: 3927 / 3540,
  7201. bottom: 0.03
  7202. }
  7203. }
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(6 + 3 / 12, "feet")
  7209. },
  7210. {
  7211. name: "Macro",
  7212. height: math.unit(185, "feet"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Megamacro",
  7217. height: math.unit(8, "miles"),
  7218. },
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7223. {
  7224. front: {
  7225. height: math.unit(3, "feet"),
  7226. weight: math.unit(28, "lbs"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/citrine/front.svg"
  7230. }
  7231. }
  7232. },
  7233. [
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(3, "feet"),
  7237. default: true
  7238. }
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7243. {
  7244. front: {
  7245. height: math.unit(14, "feet"),
  7246. weight: math.unit(1450, "kg"),
  7247. capacity: math.unit(15, "people"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/aura-starwind/front.svg",
  7251. extra: 1455 / 1335
  7252. }
  7253. },
  7254. side: {
  7255. height: math.unit(14, "feet"),
  7256. weight: math.unit(1450, "kg"),
  7257. capacity: math.unit(15, "people"),
  7258. name: "Side",
  7259. image: {
  7260. source: "./media/characters/aura-starwind/side.svg",
  7261. extra: 1654 / 1497
  7262. }
  7263. },
  7264. taur: {
  7265. height: math.unit(18, "feet"),
  7266. weight: math.unit(5500, "kg"),
  7267. capacity: math.unit(50, "people"),
  7268. name: "Taur",
  7269. image: {
  7270. source: "./media/characters/aura-starwind/taur.svg",
  7271. extra: 1760 / 1650
  7272. }
  7273. },
  7274. feral: {
  7275. height: math.unit(46, "feet"),
  7276. weight: math.unit(25000, "kg"),
  7277. capacity: math.unit(120, "people"),
  7278. name: "Feral",
  7279. image: {
  7280. source: "./media/characters/aura-starwind/feral.svg"
  7281. }
  7282. },
  7283. },
  7284. [
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(14, "feet"),
  7288. default: true
  7289. },
  7290. {
  7291. name: "Macro",
  7292. height: math.unit(50, "meters")
  7293. },
  7294. {
  7295. name: "Megamacro",
  7296. height: math.unit(5000, "meters")
  7297. },
  7298. {
  7299. name: "Gigamacro",
  7300. height: math.unit(100000, "kilometers")
  7301. },
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7306. {
  7307. front: {
  7308. height: math.unit(2 + 7 / 12, "feet"),
  7309. weight: math.unit(32, "lbs"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/rivet/front.svg",
  7313. extra: 1716 / 1658,
  7314. bottom: 0.03
  7315. }
  7316. },
  7317. foot: {
  7318. height: math.unit(0.551, "feet"),
  7319. name: "Rivet's Foot",
  7320. image: {
  7321. source: "./media/characters/rivet/foot.svg"
  7322. },
  7323. rename: true
  7324. }
  7325. },
  7326. [
  7327. {
  7328. name: "Micro",
  7329. height: math.unit(1.5, "inches"),
  7330. },
  7331. {
  7332. name: "Normal",
  7333. height: math.unit(2 + 7 / 12, "feet"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(85, "feet")
  7339. },
  7340. {
  7341. name: "Megamacro",
  7342. height: math.unit(2.2, "km")
  7343. }
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(5 + 9 / 12, "feet"),
  7351. weight: math.unit(150, "lbs"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/coffee/front.svg",
  7355. extra: 3666 / 3032,
  7356. bottom: 0.04
  7357. }
  7358. },
  7359. foot: {
  7360. height: math.unit(1.29, "feet"),
  7361. name: "Foot",
  7362. image: {
  7363. source: "./media/characters/coffee/foot.svg"
  7364. }
  7365. },
  7366. },
  7367. [
  7368. {
  7369. name: "Micro",
  7370. height: math.unit(2, "inches"),
  7371. },
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(5 + 9 / 12, "feet"),
  7375. default: true
  7376. },
  7377. {
  7378. name: "Macro",
  7379. height: math.unit(800, "feet")
  7380. },
  7381. {
  7382. name: "Megamacro",
  7383. height: math.unit(25, "miles")
  7384. }
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7389. {
  7390. front: {
  7391. height: math.unit(6, "feet"),
  7392. weight: math.unit(200, "lbs"),
  7393. name: "Front",
  7394. image: {
  7395. source: "./media/characters/chari-gal/front.svg",
  7396. extra: 1568 / 1385,
  7397. bottom: 0.047
  7398. }
  7399. },
  7400. gigantamax: {
  7401. height: math.unit(6 * 16, "feet"),
  7402. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7403. name: "Gigantamax",
  7404. image: {
  7405. source: "./media/characters/chari-gal/gigantamax.svg",
  7406. extra: 1124 / 888,
  7407. bottom: 0.03
  7408. }
  7409. },
  7410. },
  7411. [
  7412. {
  7413. name: "Normal",
  7414. height: math.unit(5 + 7 / 12, "feet")
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(200, "feet"),
  7419. default: true
  7420. }
  7421. ]
  7422. ))
  7423. characterMakers.push(() => makeCharacter(
  7424. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7425. {
  7426. front: {
  7427. height: math.unit(6, "feet"),
  7428. weight: math.unit(150, "lbs"),
  7429. name: "Front",
  7430. image: {
  7431. source: "./media/characters/nova/front.svg",
  7432. extra: 5000 / 4722,
  7433. bottom: 0.02
  7434. }
  7435. }
  7436. },
  7437. [
  7438. {
  7439. name: "Micro-",
  7440. height: math.unit(0.8, "inches")
  7441. },
  7442. {
  7443. name: "Micro",
  7444. height: math.unit(2, "inches"),
  7445. default: true
  7446. },
  7447. ]
  7448. ))
  7449. characterMakers.push(() => makeCharacter(
  7450. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7451. {
  7452. front: {
  7453. height: math.unit(3 + 1 / 12, "feet"),
  7454. weight: math.unit(21.7, "lbs"),
  7455. name: "Front",
  7456. image: {
  7457. source: "./media/characters/argent/front.svg",
  7458. extra: 1471 / 1331,
  7459. bottom: 100.8 / 1575.5
  7460. }
  7461. }
  7462. },
  7463. [
  7464. {
  7465. name: "Micro",
  7466. height: math.unit(2, "inches")
  7467. },
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(3 + 1 / 12, "feet"),
  7471. default: true
  7472. },
  7473. {
  7474. name: "Macro",
  7475. height: math.unit(120, "feet")
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7481. {
  7482. lamp: {
  7483. height: math.unit(7 * 1559 / 989, "feet"),
  7484. name: "Magic Lamp",
  7485. image: {
  7486. source: "./media/characters/mira-al-cul/lamp.svg",
  7487. extra: 1617 / 1559
  7488. }
  7489. },
  7490. front: {
  7491. height: math.unit(7, "feet"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/mira-al-cul/front.svg",
  7495. extra: 1044 / 990
  7496. }
  7497. },
  7498. },
  7499. [
  7500. {
  7501. name: "Heavily Restricted",
  7502. height: math.unit(7 * 1559 / 989, "feet")
  7503. },
  7504. {
  7505. name: "Freshly Freed",
  7506. height: math.unit(50 * 1559 / 989, "feet")
  7507. },
  7508. {
  7509. name: "World Encompassing",
  7510. height: math.unit(10000 * 1559 / 989, "miles")
  7511. },
  7512. {
  7513. name: "Galactic",
  7514. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7515. },
  7516. {
  7517. name: "Palmed Universe",
  7518. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Multiversal Matriarch",
  7523. height: math.unit(8.87e10, "yottameters")
  7524. },
  7525. {
  7526. name: "Void Mother",
  7527. height: math.unit(3.14e110, "yottaparsecs")
  7528. },
  7529. ]
  7530. ))
  7531. characterMakers.push(() => makeCharacter(
  7532. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7533. {
  7534. front: {
  7535. height: math.unit(17 + 1 / 12, "feet"),
  7536. weight: math.unit(476.2 * 5, "lbs"),
  7537. name: "Front",
  7538. image: {
  7539. source: "./media/characters/kuro-shi-uchū/front.svg",
  7540. extra: 2329 / 1835,
  7541. bottom: 0.02
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Micro",
  7548. height: math.unit(2, "inches")
  7549. },
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(12, "meters")
  7553. },
  7554. {
  7555. name: "Planetary",
  7556. height: math.unit(0.00929, "AU"),
  7557. default: true
  7558. },
  7559. {
  7560. name: "Universal",
  7561. height: math.unit(20, "gigaparsecs")
  7562. },
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7567. {
  7568. front: {
  7569. height: math.unit(5 + 2 / 12, "feet"),
  7570. weight: math.unit(120, "lbs"),
  7571. name: "Front",
  7572. image: {
  7573. source: "./media/characters/katherine/front.svg",
  7574. extra: 2075 / 1969
  7575. }
  7576. },
  7577. dress: {
  7578. height: math.unit(5 + 2 / 12, "feet"),
  7579. weight: math.unit(120, "lbs"),
  7580. name: "Dress",
  7581. image: {
  7582. source: "./media/characters/katherine/dress.svg",
  7583. extra: 2258 / 2064
  7584. }
  7585. },
  7586. },
  7587. [
  7588. {
  7589. name: "Micro",
  7590. height: math.unit(1, "inches"),
  7591. default: true
  7592. },
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(5 + 2 / 12, "feet")
  7596. },
  7597. {
  7598. name: "Macro",
  7599. height: math.unit(100, "meters")
  7600. },
  7601. {
  7602. name: "Megamacro",
  7603. height: math.unit(80, "miles")
  7604. },
  7605. ]
  7606. ))
  7607. characterMakers.push(() => makeCharacter(
  7608. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7609. {
  7610. front: {
  7611. height: math.unit(7 + 8 / 12, "feet"),
  7612. weight: math.unit(250, "lbs"),
  7613. name: "Front",
  7614. image: {
  7615. source: "./media/characters/yevis/front.svg",
  7616. extra: 1938 / 1755
  7617. }
  7618. }
  7619. },
  7620. [
  7621. {
  7622. name: "Mortal",
  7623. height: math.unit(7 + 8 / 12, "feet")
  7624. },
  7625. {
  7626. name: "Battle",
  7627. height: math.unit(25 + 11 / 12, "feet")
  7628. },
  7629. {
  7630. name: "Wrath",
  7631. height: math.unit(1654 + 11 / 12, "feet")
  7632. },
  7633. {
  7634. name: "Planet Destroyer",
  7635. height: math.unit(12000, "miles")
  7636. },
  7637. {
  7638. name: "Galaxy Conqueror",
  7639. height: math.unit(1.45, "zettameters"),
  7640. default: true
  7641. },
  7642. {
  7643. name: "Universal War",
  7644. height: math.unit(184, "gigaparsecs")
  7645. },
  7646. {
  7647. name: "Eternity War",
  7648. height: math.unit(1.98e55, "yottaparsecs")
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7654. {
  7655. front: {
  7656. height: math.unit(5 + 8 / 12, "feet"),
  7657. weight: math.unit(63, "kg"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/xavier/front.svg",
  7661. extra: 944 / 883
  7662. }
  7663. },
  7664. frontStretch: {
  7665. height: math.unit(5 + 8 / 12, "feet"),
  7666. weight: math.unit(63, "kg"),
  7667. name: "Stretching",
  7668. image: {
  7669. source: "./media/characters/xavier/front-stretch.svg",
  7670. extra: 962 / 820
  7671. }
  7672. },
  7673. },
  7674. [
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(5 + 8 / 12, "feet")
  7678. },
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(100, "meters"),
  7682. default: true
  7683. },
  7684. {
  7685. name: "McLargeHuge",
  7686. height: math.unit(10, "miles")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(5 + 5 / 12, "feet"),
  7695. weight: math.unit(150, "lb"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/joshii/front.svg"
  7699. }
  7700. },
  7701. foot: {
  7702. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7703. name: "Foot",
  7704. image: {
  7705. source: "./media/characters/joshii/foot.svg"
  7706. }
  7707. },
  7708. },
  7709. [
  7710. {
  7711. name: "Micro",
  7712. height: math.unit(2, "inches")
  7713. },
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(5 + 5 / 12, "feet"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(785, "feet")
  7722. },
  7723. {
  7724. name: "Megamacro",
  7725. height: math.unit(24.5, "miles")
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(150, "lb"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/goddess-elizabeth/front.svg",
  7738. extra: 1800 / 1525,
  7739. bottom: 0.005
  7740. }
  7741. },
  7742. foot: {
  7743. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7744. name: "Foot",
  7745. image: {
  7746. source: "./media/characters/goddess-elizabeth/foot.svg"
  7747. }
  7748. },
  7749. mouth: {
  7750. height: math.unit(6, "feet"),
  7751. name: "Mouth",
  7752. image: {
  7753. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7754. }
  7755. },
  7756. },
  7757. [
  7758. {
  7759. name: "Micro",
  7760. height: math.unit(12, "feet")
  7761. },
  7762. {
  7763. name: "Normal",
  7764. height: math.unit(80, "miles"),
  7765. default: true
  7766. },
  7767. {
  7768. name: "Macro",
  7769. height: math.unit(15000, "parsecs")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7775. {
  7776. front: {
  7777. height: math.unit(5 + 9 / 12, "feet"),
  7778. weight: math.unit(144, "lb"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/kara/front.svg"
  7782. }
  7783. },
  7784. feet: {
  7785. height: math.unit(6 / 6.765, "feet"),
  7786. name: "Kara's Feet",
  7787. rename: true,
  7788. image: {
  7789. source: "./media/characters/kara/feet.svg"
  7790. }
  7791. },
  7792. },
  7793. [
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(5 + 9 / 12, "feet")
  7797. },
  7798. {
  7799. name: "Macro",
  7800. height: math.unit(174, "feet"),
  7801. default: true
  7802. },
  7803. ]
  7804. ))
  7805. characterMakers.push(() => makeCharacter(
  7806. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7807. {
  7808. front: {
  7809. height: math.unit(18, "feet"),
  7810. weight: math.unit(4050, "lb"),
  7811. name: "Front",
  7812. image: {
  7813. source: "./media/characters/tyrone/front.svg",
  7814. extra: 2520 / 2402,
  7815. bottom: 0.025
  7816. }
  7817. },
  7818. },
  7819. [
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(18, "feet"),
  7823. default: true
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(300, "feet")
  7828. },
  7829. ]
  7830. ))
  7831. characterMakers.push(() => makeCharacter(
  7832. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7833. {
  7834. front: {
  7835. height: math.unit(7 + 8 / 12, "feet"),
  7836. weight: math.unit(120, "lb"),
  7837. name: "Front",
  7838. image: {
  7839. source: "./media/characters/danny/front.svg",
  7840. extra: 1490 / 1350
  7841. }
  7842. },
  7843. back: {
  7844. height: math.unit(7 + 8 / 12, "feet"),
  7845. weight: math.unit(120, "lb"),
  7846. name: "Back",
  7847. image: {
  7848. source: "./media/characters/danny/back.svg",
  7849. extra: 1490 / 1350
  7850. }
  7851. },
  7852. },
  7853. [
  7854. {
  7855. name: "Normal",
  7856. height: math.unit(7 + 8 / 12, "feet"),
  7857. default: true
  7858. },
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7863. {
  7864. front: {
  7865. height: math.unit(3.5, "inches"),
  7866. weight: math.unit(19, "grams"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/mallow/front.svg",
  7870. extra: 471 / 431
  7871. }
  7872. },
  7873. back: {
  7874. height: math.unit(3.5, "inches"),
  7875. weight: math.unit(19, "grams"),
  7876. name: "Back",
  7877. image: {
  7878. source: "./media/characters/mallow/back.svg",
  7879. extra: 471 / 431
  7880. }
  7881. },
  7882. },
  7883. [
  7884. {
  7885. name: "Normal",
  7886. height: math.unit(3.5, "inches"),
  7887. default: true
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(9, "feet"),
  7896. weight: math.unit(230, "kg"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/starry-aqua/front.svg"
  7900. }
  7901. },
  7902. back: {
  7903. height: math.unit(9, "feet"),
  7904. weight: math.unit(230, "kg"),
  7905. name: "Back",
  7906. image: {
  7907. source: "./media/characters/starry-aqua/back.svg"
  7908. }
  7909. },
  7910. hand: {
  7911. height: math.unit(9 * 0.1168, "feet"),
  7912. name: "Hand",
  7913. image: {
  7914. source: "./media/characters/starry-aqua/hand.svg"
  7915. }
  7916. },
  7917. foot: {
  7918. height: math.unit(9 * 0.18, "feet"),
  7919. name: "Foot",
  7920. image: {
  7921. source: "./media/characters/starry-aqua/foot.svg"
  7922. }
  7923. }
  7924. },
  7925. [
  7926. {
  7927. name: "Micro",
  7928. height: math.unit(3, "inches")
  7929. },
  7930. {
  7931. name: "Normal",
  7932. height: math.unit(9, "feet")
  7933. },
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(300, "feet"),
  7937. default: true
  7938. },
  7939. {
  7940. name: "Megamacro",
  7941. height: math.unit(3200, "feet")
  7942. }
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(6, "feet"),
  7950. weight: math.unit(230, "lb"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/luka/front.svg",
  7954. extra: 1,
  7955. bottom: 0.025
  7956. }
  7957. },
  7958. },
  7959. [
  7960. {
  7961. name: "Normal",
  7962. height: math.unit(12 + 8 / 12, "feet"),
  7963. default: true
  7964. },
  7965. {
  7966. name: "Minimacro",
  7967. height: math.unit(20, "feet")
  7968. },
  7969. {
  7970. name: "Macro",
  7971. height: math.unit(250, "feet")
  7972. },
  7973. {
  7974. name: "Megamacro",
  7975. height: math.unit(5, "miles")
  7976. },
  7977. {
  7978. name: "Gigamacro",
  7979. height: math.unit(8000, "miles")
  7980. },
  7981. ]
  7982. ))
  7983. characterMakers.push(() => makeCharacter(
  7984. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7985. {
  7986. front: {
  7987. height: math.unit(6, "feet"),
  7988. weight: math.unit(150, "lb"),
  7989. name: "Front",
  7990. image: {
  7991. source: "./media/characters/natalie-nightring/front.svg",
  7992. extra: 1,
  7993. bottom: 0.06
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Uh Oh",
  8000. height: math.unit(0.1, "mm")
  8001. },
  8002. {
  8003. name: "Small",
  8004. height: math.unit(3, "inches")
  8005. },
  8006. {
  8007. name: "Human Scale",
  8008. height: math.unit(6, "feet")
  8009. },
  8010. {
  8011. name: "Librarian",
  8012. height: math.unit(50, "feet"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Immense",
  8017. height: math.unit(200, "miles")
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(180, "lbs"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/danni-rosie/front.svg",
  8030. extra: 1260 / 1128,
  8031. bottom: 0.022
  8032. }
  8033. },
  8034. },
  8035. [
  8036. {
  8037. name: "Micro",
  8038. height: math.unit(2, "inches"),
  8039. default: true
  8040. },
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8045. {
  8046. front: {
  8047. height: math.unit(5 + 9 / 12, "feet"),
  8048. weight: math.unit(220, "lb"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/samantha-kruse/front.svg",
  8052. extra: (985 / 935),
  8053. bottom: 0.03
  8054. }
  8055. },
  8056. frontUndressed: {
  8057. height: math.unit(5 + 9 / 12, "feet"),
  8058. weight: math.unit(220, "lb"),
  8059. name: "Front (Undressed)",
  8060. image: {
  8061. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8062. extra: (973 / 923),
  8063. bottom: 0.025
  8064. }
  8065. },
  8066. fat: {
  8067. height: math.unit(5 + 9 / 12, "feet"),
  8068. weight: math.unit(900, "lb"),
  8069. name: "Front (Fat)",
  8070. image: {
  8071. source: "./media/characters/samantha-kruse/fat.svg",
  8072. extra: 2688 / 2561
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(5 + 9 / 12, "feet"),
  8080. default: true
  8081. }
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8086. {
  8087. back: {
  8088. height: math.unit(5 + 4 / 12, "feet"),
  8089. weight: math.unit(4963, "lb"),
  8090. name: "Back",
  8091. image: {
  8092. source: "./media/characters/amelia-rosie/back.svg",
  8093. extra: 1113 / 963,
  8094. bottom: 0.01
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Level 0",
  8101. height: math.unit(5 + 4 / 12, "feet")
  8102. },
  8103. {
  8104. name: "Level 1",
  8105. height: math.unit(164597, "feet"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Level 2",
  8110. height: math.unit(956243, "miles")
  8111. },
  8112. {
  8113. name: "Level 3",
  8114. height: math.unit(29421709423, "miles")
  8115. },
  8116. {
  8117. name: "Level 4",
  8118. height: math.unit(154, "lightyears")
  8119. },
  8120. {
  8121. name: "Level 5",
  8122. height: math.unit(4738272, "lightyears")
  8123. },
  8124. {
  8125. name: "Level 6",
  8126. height: math.unit(145787152896, "lightyears")
  8127. },
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(5 + 11 / 12, "feet"),
  8135. weight: math.unit(65, "kg"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/rook-kitara/front.svg",
  8139. extra: 1347 / 1274,
  8140. bottom: 0.005
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Totally Unfair",
  8147. height: math.unit(1.8, "mm")
  8148. },
  8149. {
  8150. name: "Lap Rookie",
  8151. height: math.unit(1.4, "feet")
  8152. },
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(5 + 11 / 12, "feet"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "How Did This Happen",
  8160. height: math.unit(80, "miles")
  8161. }
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(7, "feet"),
  8169. weight: math.unit(300, "lb"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/pisces/front.svg",
  8173. extra: 2255 / 2115,
  8174. bottom: 0.03
  8175. }
  8176. },
  8177. back: {
  8178. height: math.unit(7, "feet"),
  8179. weight: math.unit(300, "lb"),
  8180. name: "Back",
  8181. image: {
  8182. source: "./media/characters/pisces/back.svg",
  8183. extra: 2146 / 2055,
  8184. bottom: 0.04
  8185. }
  8186. },
  8187. },
  8188. [
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(7, "feet"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Swimming Pool",
  8196. height: math.unit(12.2, "meters")
  8197. },
  8198. {
  8199. name: "Olympic Swimming Pool",
  8200. height: math.unit(56.3, "meters")
  8201. },
  8202. {
  8203. name: "Lake Superior",
  8204. height: math.unit(93900, "meters")
  8205. },
  8206. {
  8207. name: "Mediterranean Sea",
  8208. height: math.unit(644457, "meters")
  8209. },
  8210. {
  8211. name: "World's Oceans",
  8212. height: math.unit(4567491, "meters")
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(2.3, "meters"),
  8221. weight: math.unit(120, "kg"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/zelas/front.svg"
  8225. }
  8226. },
  8227. side: {
  8228. height: math.unit(2.3, "meters"),
  8229. weight: math.unit(120, "kg"),
  8230. name: "Side",
  8231. image: {
  8232. source: "./media/characters/zelas/side.svg"
  8233. }
  8234. },
  8235. back: {
  8236. height: math.unit(2.3, "meters"),
  8237. weight: math.unit(120, "kg"),
  8238. name: "Back",
  8239. image: {
  8240. source: "./media/characters/zelas/back.svg"
  8241. }
  8242. },
  8243. foot: {
  8244. height: math.unit(1.116, "feet"),
  8245. name: "Foot",
  8246. image: {
  8247. source: "./media/characters/zelas/foot.svg"
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(2.3, "meters")
  8255. },
  8256. {
  8257. name: "Macro",
  8258. height: math.unit(30, "meters"),
  8259. default: true
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(1, "inch"),
  8268. weight: math.unit(0.21, "grams"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/talbot/front.svg",
  8272. extra: 594 / 544
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Micro",
  8279. height: math.unit(1, "inch"),
  8280. default: true
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8286. {
  8287. front: {
  8288. height: math.unit(3 + 3 / 12, "feet"),
  8289. weight: math.unit(51.8, "lb"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/fliss/front.svg",
  8293. extra: 840 / 640
  8294. }
  8295. },
  8296. },
  8297. [
  8298. {
  8299. name: "Teeny Tiny",
  8300. height: math.unit(1, "mm")
  8301. },
  8302. {
  8303. name: "Small",
  8304. height: math.unit(1, "inch"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Standard Sylveon",
  8309. height: math.unit(3 + 3 / 12, "feet")
  8310. },
  8311. {
  8312. name: "Large Nuisance",
  8313. height: math.unit(33, "feet")
  8314. },
  8315. {
  8316. name: "City Filler",
  8317. height: math.unit(3000, "feet")
  8318. },
  8319. {
  8320. name: "New Horizon",
  8321. height: math.unit(6000, "miles")
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(5, "cm"),
  8330. weight: math.unit(1.94, "g"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/fleta/front.svg",
  8334. extra: 835 / 803
  8335. }
  8336. },
  8337. back: {
  8338. height: math.unit(5, "cm"),
  8339. weight: math.unit(1.94, "g"),
  8340. name: "Back",
  8341. image: {
  8342. source: "./media/characters/fleta/back.svg",
  8343. extra: 835 / 803
  8344. }
  8345. },
  8346. },
  8347. [
  8348. {
  8349. name: "Micro",
  8350. height: math.unit(5, "cm"),
  8351. default: true
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(6, "feet"),
  8360. weight: math.unit(225, "lb"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/dominic/front.svg",
  8364. extra: 1770 / 1620,
  8365. bottom: 0.025
  8366. }
  8367. },
  8368. back: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(225, "lb"),
  8371. name: "Back",
  8372. image: {
  8373. source: "./media/characters/dominic/back.svg",
  8374. extra: 1745 / 1620,
  8375. bottom: 0.065
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Nano",
  8382. height: math.unit(0.1, "mm")
  8383. },
  8384. {
  8385. name: "Micro-",
  8386. height: math.unit(1, "mm")
  8387. },
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(4, "inches")
  8391. },
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(6 + 4 / 12, "feet"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(115, "feet")
  8400. },
  8401. {
  8402. name: "Macro+",
  8403. height: math.unit(955, "feet")
  8404. },
  8405. {
  8406. name: "Megamacro",
  8407. height: math.unit(8990, "feet")
  8408. },
  8409. {
  8410. name: "Gigmacro",
  8411. height: math.unit(9310, "miles")
  8412. },
  8413. {
  8414. name: "Teramacro",
  8415. height: math.unit(1567005010, "miles")
  8416. },
  8417. {
  8418. name: "Examacro",
  8419. height: math.unit(1425, "parsecs")
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(400, "feet"),
  8428. weight: math.unit(44444444, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/major-colonel/front.svg"
  8432. }
  8433. },
  8434. back: {
  8435. height: math.unit(400, "feet"),
  8436. weight: math.unit(44444444, "lb"),
  8437. name: "Back",
  8438. image: {
  8439. source: "./media/characters/major-colonel/back.svg"
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(400, "feet"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8453. {
  8454. catFront: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(120, "lb"),
  8457. name: "Front (Cat Side)",
  8458. image: {
  8459. source: "./media/characters/axel-lycan/cat-front.svg",
  8460. extra: 430 / 402,
  8461. bottom: 43 / 472.35
  8462. }
  8463. },
  8464. catBack: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(120, "lb"),
  8467. name: "Back (Cat Side)",
  8468. image: {
  8469. source: "./media/characters/axel-lycan/cat-back.svg",
  8470. extra: 447 / 419,
  8471. bottom: 23.3 / 469
  8472. }
  8473. },
  8474. wolfFront: {
  8475. height: math.unit(6, "feet"),
  8476. weight: math.unit(120, "lb"),
  8477. name: "Front (Wolf Side)",
  8478. image: {
  8479. source: "./media/characters/axel-lycan/wolf-front.svg",
  8480. extra: 485 / 456,
  8481. bottom: 19 / 504
  8482. }
  8483. },
  8484. wolfBack: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(120, "lb"),
  8487. name: "Back (Wolf Side)",
  8488. image: {
  8489. source: "./media/characters/axel-lycan/wolf-back.svg",
  8490. extra: 475 / 438,
  8491. bottom: 39.2 / 514
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(1, "km"),
  8499. default: true
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(5 + 9 / 12, "feet"),
  8508. weight: math.unit(175, "lb"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/vanrel-hyena/front.svg",
  8512. extra: 1086 / 1010,
  8513. bottom: 0.04
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(5 + 9 / 12, "feet"),
  8521. default: true
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(6, "feet"),
  8530. weight: math.unit(103, "lb"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/abbott-absol/front.svg",
  8534. extra: 2010 / 1842
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Megamicro",
  8541. height: math.unit(0.1, "mm")
  8542. },
  8543. {
  8544. name: "Micro",
  8545. height: math.unit(1, "inch")
  8546. },
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(6, "feet"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(264, "lb"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/hector/front.svg",
  8563. extra: 2280 / 2130,
  8564. bottom: 0.07
  8565. }
  8566. },
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(12.25, "foot"),
  8572. default: true
  8573. },
  8574. {
  8575. name: "Macro",
  8576. height: math.unit(160, "feet")
  8577. },
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8582. {
  8583. front: {
  8584. height: math.unit(6, "feet"),
  8585. weight: math.unit(150, "lb"),
  8586. name: "Front",
  8587. image: {
  8588. source: "./media/characters/sal/front.svg",
  8589. extra: 1846 / 1699,
  8590. bottom: 0.04
  8591. }
  8592. },
  8593. },
  8594. [
  8595. {
  8596. name: "Megamacro",
  8597. height: math.unit(10, "miles"),
  8598. default: true
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8604. {
  8605. front: {
  8606. height: math.unit(3, "meters"),
  8607. weight: math.unit(450, "kg"),
  8608. name: "front",
  8609. image: {
  8610. source: "./media/characters/ranger/front.svg",
  8611. extra: 2401 / 2243,
  8612. bottom: 0.05
  8613. }
  8614. },
  8615. },
  8616. [
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(3, "meters"),
  8620. default: true
  8621. },
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(14, "feet"),
  8629. weight: math.unit(800, "kg"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/theresa/front.svg",
  8633. extra: 3575 / 3346,
  8634. bottom: 0.03
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(14, "feet"),
  8642. default: true
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(3, "kg"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/ine/front.svg",
  8655. extra: 678 / 539,
  8656. bottom: 0.023
  8657. }
  8658. },
  8659. },
  8660. [
  8661. {
  8662. name: "Normal",
  8663. height: math.unit(2.265, "feet"),
  8664. default: true
  8665. },
  8666. ]
  8667. ))
  8668. characterMakers.push(() => makeCharacter(
  8669. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8670. {
  8671. front: {
  8672. height: math.unit(5, "feet"),
  8673. weight: math.unit(30, "kg"),
  8674. name: "Front",
  8675. image: {
  8676. source: "./media/characters/vial/front.svg",
  8677. extra: 1365 / 1277,
  8678. bottom: 0.04
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(5, "feet"),
  8686. default: true
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8692. {
  8693. side: {
  8694. height: math.unit(3.4, "meters"),
  8695. weight: math.unit(1000, "lb"),
  8696. name: "Side",
  8697. image: {
  8698. source: "./media/characters/rovoska/side.svg",
  8699. extra: 4403 / 1515
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(3.4, "meters"),
  8707. default: true
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(8, "feet"),
  8716. weight: math.unit(315, "lb"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/gunner-rotthbauer/front.svg"
  8720. }
  8721. },
  8722. back: {
  8723. height: math.unit(8, "feet"),
  8724. weight: math.unit(315, "lb"),
  8725. name: "Back",
  8726. image: {
  8727. source: "./media/characters/gunner-rotthbauer/back.svg"
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Micro",
  8734. height: math.unit(3.5, "inches")
  8735. },
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(8, "feet"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Macro",
  8743. height: math.unit(250, "feet")
  8744. },
  8745. {
  8746. name: "Megamacro",
  8747. height: math.unit(1, "AU")
  8748. },
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(5 + 5 / 12, "feet"),
  8756. weight: math.unit(140, "lb"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/allatia/front.svg",
  8760. extra: 1227 / 1180,
  8761. bottom: 0.027
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(5 + 5 / 12, "feet")
  8769. },
  8770. {
  8771. name: "Macro",
  8772. height: math.unit(250, "feet"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Megamacro",
  8777. height: math.unit(8, "miles")
  8778. }
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(120, "lb"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/tene/front.svg",
  8790. extra: 1728 / 1578,
  8791. bottom: 0.022
  8792. }
  8793. },
  8794. stomping: {
  8795. height: math.unit(2.025, "meters"),
  8796. weight: math.unit(120, "lb"),
  8797. name: "Stomping",
  8798. image: {
  8799. source: "./media/characters/tene/stomping.svg",
  8800. extra: 938 / 873,
  8801. bottom: 0.01
  8802. }
  8803. },
  8804. sitting: {
  8805. height: math.unit(1, "meter"),
  8806. weight: math.unit(120, "lb"),
  8807. name: "Sitting",
  8808. image: {
  8809. source: "./media/characters/tene/sitting.svg",
  8810. extra: 437 / 415,
  8811. bottom: 0.1
  8812. }
  8813. },
  8814. feral: {
  8815. height: math.unit(3.9, "feet"),
  8816. weight: math.unit(250, "lb"),
  8817. name: "Feral",
  8818. image: {
  8819. source: "./media/characters/tene/feral.svg",
  8820. extra: 717 / 458,
  8821. bottom: 0.179
  8822. }
  8823. },
  8824. },
  8825. [
  8826. {
  8827. name: "Normal",
  8828. height: math.unit(6, "feet")
  8829. },
  8830. {
  8831. name: "Macro",
  8832. height: math.unit(300, "feet"),
  8833. default: true
  8834. },
  8835. {
  8836. name: "Megamacro",
  8837. height: math.unit(5, "miles")
  8838. },
  8839. ]
  8840. ))
  8841. characterMakers.push(() => makeCharacter(
  8842. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8843. {
  8844. side: {
  8845. height: math.unit(6, "feet"),
  8846. name: "Side",
  8847. image: {
  8848. source: "./media/characters/evander/side.svg",
  8849. extra: 877 / 477
  8850. }
  8851. },
  8852. },
  8853. [
  8854. {
  8855. name: "Normal",
  8856. height: math.unit(0.83, "meters"),
  8857. default: true
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(12, "feet"),
  8866. weight: math.unit(1000, "lb"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8870. extra: 1762 / 1611
  8871. }
  8872. },
  8873. back: {
  8874. height: math.unit(12, "feet"),
  8875. weight: math.unit(1000, "lb"),
  8876. name: "Back",
  8877. image: {
  8878. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8879. extra: 1762 / 1611
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Normal",
  8886. height: math.unit(12, "feet"),
  8887. default: true
  8888. },
  8889. {
  8890. name: "Kaiju",
  8891. height: math.unit(150, "feet")
  8892. },
  8893. ]
  8894. ))
  8895. characterMakers.push(() => makeCharacter(
  8896. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8897. {
  8898. front: {
  8899. height: math.unit(6, "feet"),
  8900. weight: math.unit(150, "lb"),
  8901. name: "Front",
  8902. image: {
  8903. source: "./media/characters/zero-alurus/front.svg"
  8904. }
  8905. },
  8906. back: {
  8907. height: math.unit(6, "feet"),
  8908. weight: math.unit(150, "lb"),
  8909. name: "Back",
  8910. image: {
  8911. source: "./media/characters/zero-alurus/back.svg"
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(5 + 10 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(60, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Macro+",
  8927. height: math.unit(450, "feet")
  8928. },
  8929. ]
  8930. ))
  8931. characterMakers.push(() => makeCharacter(
  8932. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8933. {
  8934. front: {
  8935. height: math.unit(6, "feet"),
  8936. weight: math.unit(200, "lb"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/mega-shi/front.svg",
  8940. extra: 1279 / 1250,
  8941. bottom: 0.02
  8942. }
  8943. },
  8944. back: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(200, "lb"),
  8947. name: "Back",
  8948. image: {
  8949. source: "./media/characters/mega-shi/back.svg",
  8950. extra: 1279 / 1250,
  8951. bottom: 0.02
  8952. }
  8953. },
  8954. },
  8955. [
  8956. {
  8957. name: "Micro",
  8958. height: math.unit(16 + 6 / 12, "feet")
  8959. },
  8960. {
  8961. name: "Third Dimension",
  8962. height: math.unit(40, "meters")
  8963. },
  8964. {
  8965. name: "Normal",
  8966. height: math.unit(660, "feet"),
  8967. default: true
  8968. },
  8969. {
  8970. name: "Megamacro",
  8971. height: math.unit(10, "miles")
  8972. },
  8973. {
  8974. name: "Planetary Launch",
  8975. height: math.unit(500, "miles")
  8976. },
  8977. {
  8978. name: "Interstellar",
  8979. height: math.unit(1e9, "miles")
  8980. },
  8981. {
  8982. name: "Leaving the Universe",
  8983. height: math.unit(1, "gigaparsec")
  8984. },
  8985. {
  8986. name: "Travelling Universes",
  8987. height: math.unit(30e15, "parsecs")
  8988. },
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8993. {
  8994. front: {
  8995. height: math.unit(6, "feet"),
  8996. weight: math.unit(150, "lb"),
  8997. name: "Front",
  8998. image: {
  8999. source: "./media/characters/odyssey/front.svg",
  9000. extra: 1782 / 1582,
  9001. bottom: 0.01
  9002. }
  9003. },
  9004. side: {
  9005. height: math.unit(5.7, "feet"),
  9006. weight: math.unit(140, "lb"),
  9007. name: "Side",
  9008. image: {
  9009. source: "./media/characters/odyssey/side.svg",
  9010. extra: 6462 / 5700
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(5 + 4 / 12, "feet")
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(1, "km")
  9022. },
  9023. {
  9024. name: "Megamacro",
  9025. height: math.unit(3000, "km")
  9026. },
  9027. {
  9028. name: "Gigamacro",
  9029. height: math.unit(1, "AU"),
  9030. default: true
  9031. },
  9032. {
  9033. name: "Omniversal",
  9034. height: math.unit(100e14, "lightyears")
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9040. {
  9041. front: {
  9042. height: math.unit(6, "feet"),
  9043. weight: math.unit(300, "lb"),
  9044. name: "Front",
  9045. image: {
  9046. source: "./media/characters/mekuto/front.svg",
  9047. extra: 921 / 832,
  9048. bottom: 0.03
  9049. }
  9050. },
  9051. hand: {
  9052. height: math.unit(6 / 10.24, "feet"),
  9053. name: "Hand",
  9054. image: {
  9055. source: "./media/characters/mekuto/hand.svg"
  9056. }
  9057. },
  9058. foot: {
  9059. height: math.unit(6 / 5.05, "feet"),
  9060. name: "Foot",
  9061. image: {
  9062. source: "./media/characters/mekuto/foot.svg"
  9063. }
  9064. },
  9065. },
  9066. [
  9067. {
  9068. name: "Minimicro",
  9069. height: math.unit(0.2, "inches")
  9070. },
  9071. {
  9072. name: "Micro",
  9073. height: math.unit(1.5, "inches")
  9074. },
  9075. {
  9076. name: "Normal",
  9077. height: math.unit(5 + 11 / 12, "feet"),
  9078. default: true
  9079. },
  9080. {
  9081. name: "Minimacro",
  9082. height: math.unit(17 + 9 / 12, "feet")
  9083. },
  9084. {
  9085. name: "Macro",
  9086. height: math.unit(177.5, "feet")
  9087. },
  9088. {
  9089. name: "Megamacro",
  9090. height: math.unit(152, "miles")
  9091. },
  9092. ]
  9093. ))
  9094. characterMakers.push(() => makeCharacter(
  9095. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9096. {
  9097. front: {
  9098. height: math.unit(6.5, "inches"),
  9099. weight: math.unit(13, "oz"),
  9100. name: "Front",
  9101. image: {
  9102. source: "./media/characters/dafydd-tomos/front.svg",
  9103. extra: 2990 / 2603,
  9104. bottom: 0.03
  9105. }
  9106. },
  9107. },
  9108. [
  9109. {
  9110. name: "Micro",
  9111. height: math.unit(6.5, "inches"),
  9112. default: true
  9113. },
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9118. {
  9119. front: {
  9120. height: math.unit(6, "feet"),
  9121. weight: math.unit(150, "lb"),
  9122. name: "Front",
  9123. image: {
  9124. source: "./media/characters/splinter/front.svg",
  9125. extra: 2990 / 2882,
  9126. bottom: 0.04
  9127. }
  9128. },
  9129. back: {
  9130. height: math.unit(6, "feet"),
  9131. weight: math.unit(150, "lb"),
  9132. name: "Back",
  9133. image: {
  9134. source: "./media/characters/splinter/back.svg",
  9135. extra: 2990 / 2882,
  9136. bottom: 0.04
  9137. }
  9138. },
  9139. },
  9140. [
  9141. {
  9142. name: "Normal",
  9143. height: math.unit(6, "feet")
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(230, "meters"),
  9148. default: true
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(4 + 10 / 12, "feet"),
  9157. weight: math.unit(480, "lb"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/snow-gabumon/front.svg",
  9161. extra: 1140 / 963,
  9162. bottom: 0.058
  9163. }
  9164. },
  9165. back: {
  9166. height: math.unit(4 + 10 / 12, "feet"),
  9167. weight: math.unit(480, "lb"),
  9168. name: "Back",
  9169. image: {
  9170. source: "./media/characters/snow-gabumon/back.svg",
  9171. extra: 1115 / 962,
  9172. bottom: 0.041
  9173. }
  9174. },
  9175. frontUndresed: {
  9176. height: math.unit(4 + 10 / 12, "feet"),
  9177. weight: math.unit(480, "lb"),
  9178. name: "Front (Undressed)",
  9179. image: {
  9180. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9181. extra: 1061 / 960,
  9182. bottom: 0.045
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Micro",
  9189. height: math.unit(1, "inch")
  9190. },
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(4 + 10 / 12, "feet"),
  9194. default: true
  9195. },
  9196. {
  9197. name: "Macro",
  9198. height: math.unit(200, "feet")
  9199. },
  9200. {
  9201. name: "Megamacro",
  9202. height: math.unit(120, "miles")
  9203. },
  9204. {
  9205. name: "Gigamacro",
  9206. height: math.unit(9800, "miles")
  9207. },
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(1.7, "meters"),
  9215. weight: math.unit(140, "lb"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/moody/front.svg",
  9219. extra: 3226 / 3007,
  9220. bottom: 0.087
  9221. }
  9222. },
  9223. },
  9224. [
  9225. {
  9226. name: "Micro",
  9227. height: math.unit(1, "mm")
  9228. },
  9229. {
  9230. name: "Normal",
  9231. height: math.unit(1.7, "meters"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Macro",
  9236. height: math.unit(80, "meters")
  9237. },
  9238. {
  9239. name: "Macro+",
  9240. height: math.unit(500, "meters")
  9241. },
  9242. ]
  9243. ))
  9244. characterMakers.push(() => makeCharacter(
  9245. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9246. {
  9247. front: {
  9248. height: math.unit(6, "feet"),
  9249. weight: math.unit(150, "lb"),
  9250. name: "Front",
  9251. image: {
  9252. source: "./media/characters/zyas/front.svg",
  9253. extra: 1180 / 1120,
  9254. bottom: 0.045
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(10, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Macro",
  9266. height: math.unit(500, "feet")
  9267. },
  9268. {
  9269. name: "Megamacro",
  9270. height: math.unit(5, "miles")
  9271. },
  9272. {
  9273. name: "Teramacro",
  9274. height: math.unit(150000, "miles")
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(6, "feet"),
  9283. weight: math.unit(150, "lb"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/cuon/front.svg",
  9287. extra: 1390 / 1320,
  9288. bottom: 0.008
  9289. }
  9290. },
  9291. },
  9292. [
  9293. {
  9294. name: "Micro",
  9295. height: math.unit(3, "inches")
  9296. },
  9297. {
  9298. name: "Normal",
  9299. height: math.unit(18 + 9 / 12, "feet"),
  9300. default: true
  9301. },
  9302. {
  9303. name: "Macro",
  9304. height: math.unit(360, "feet")
  9305. },
  9306. {
  9307. name: "Megamacro",
  9308. height: math.unit(360, "miles")
  9309. },
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(2.4, "meters"),
  9317. weight: math.unit(70, "kg"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/nyanuxk/front.svg",
  9321. extra: 1172 / 1084,
  9322. bottom: 0.065
  9323. }
  9324. },
  9325. side: {
  9326. height: math.unit(2.4, "meters"),
  9327. weight: math.unit(70, "kg"),
  9328. name: "Side",
  9329. image: {
  9330. source: "./media/characters/nyanuxk/side.svg",
  9331. extra: 1190 / 1132,
  9332. bottom: 0.007
  9333. }
  9334. },
  9335. back: {
  9336. height: math.unit(2.4, "meters"),
  9337. weight: math.unit(70, "kg"),
  9338. name: "Back",
  9339. image: {
  9340. source: "./media/characters/nyanuxk/back.svg",
  9341. extra: 1200 / 1141,
  9342. bottom: 0.015
  9343. }
  9344. },
  9345. foot: {
  9346. height: math.unit(0.52, "meters"),
  9347. name: "Foot",
  9348. image: {
  9349. source: "./media/characters/nyanuxk/foot.svg"
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Micro",
  9356. height: math.unit(2, "cm")
  9357. },
  9358. {
  9359. name: "Normal",
  9360. height: math.unit(2.4, "meters"),
  9361. default: true
  9362. },
  9363. {
  9364. name: "Smaller Macro",
  9365. height: math.unit(120, "meters")
  9366. },
  9367. {
  9368. name: "Bigger Macro",
  9369. height: math.unit(1.2, "km")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(15, "kilometers")
  9374. },
  9375. {
  9376. name: "Gigamacro",
  9377. height: math.unit(2000, "km")
  9378. },
  9379. {
  9380. name: "Teramacro",
  9381. height: math.unit(500000, "km")
  9382. },
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9387. {
  9388. side: {
  9389. height: math.unit(6, "feet"),
  9390. name: "Side",
  9391. image: {
  9392. source: "./media/characters/ailbhe/side.svg",
  9393. extra: 757 / 464,
  9394. bottom: 0.041
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(1.07, "meters"),
  9402. default: true
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(120, "kg"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/zevulfius/front.svg",
  9415. extra: 965 / 903
  9416. }
  9417. },
  9418. side: {
  9419. height: math.unit(6, "feet"),
  9420. weight: math.unit(120, "kg"),
  9421. name: "Side",
  9422. image: {
  9423. source: "./media/characters/zevulfius/side.svg",
  9424. extra: 939 / 900
  9425. }
  9426. },
  9427. back: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(120, "kg"),
  9430. name: "Back",
  9431. image: {
  9432. source: "./media/characters/zevulfius/back.svg",
  9433. extra: 918 / 854,
  9434. bottom: 0.005
  9435. }
  9436. },
  9437. foot: {
  9438. height: math.unit(6 / 3.72, "feet"),
  9439. name: "Foot",
  9440. image: {
  9441. source: "./media/characters/zevulfius/foot.svg"
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Macro",
  9448. height: math.unit(750, "meters")
  9449. },
  9450. {
  9451. name: "Megamacro",
  9452. height: math.unit(20, "km"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Gigamacro",
  9457. height: math.unit(2000, "km")
  9458. },
  9459. {
  9460. name: "Teramacro",
  9461. height: math.unit(250000, "km")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(100, "feet"),
  9470. weight: math.unit(350, "kg"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/rikes/front.svg",
  9474. extra: 1565 / 1483,
  9475. bottom: 0.017
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Macro",
  9482. height: math.unit(100, "feet"),
  9483. default: true
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9489. {
  9490. anthro: {
  9491. height: math.unit(8, "feet"),
  9492. weight: math.unit(120, "kg"),
  9493. name: "Anthro",
  9494. image: {
  9495. source: "./media/characters/adam-silver-mane/anthro.svg",
  9496. extra: 5743 / 5339,
  9497. bottom: 0.07
  9498. }
  9499. },
  9500. taur: {
  9501. height: math.unit(16, "feet"),
  9502. weight: math.unit(1500, "kg"),
  9503. name: "Taur",
  9504. image: {
  9505. source: "./media/characters/adam-silver-mane/taur.svg",
  9506. extra: 1713 / 1571,
  9507. bottom: 0.01
  9508. }
  9509. },
  9510. },
  9511. [
  9512. {
  9513. name: "Normal",
  9514. height: math.unit(8, "feet")
  9515. },
  9516. {
  9517. name: "Minimacro",
  9518. height: math.unit(80, "feet")
  9519. },
  9520. {
  9521. name: "Macro",
  9522. height: math.unit(800, "feet"),
  9523. default: true
  9524. },
  9525. {
  9526. name: "Megamacro",
  9527. height: math.unit(8000, "feet")
  9528. },
  9529. {
  9530. name: "Gigamacro",
  9531. height: math.unit(800, "miles")
  9532. },
  9533. {
  9534. name: "Teramacro",
  9535. height: math.unit(80000, "miles")
  9536. },
  9537. {
  9538. name: "Celestial",
  9539. height: math.unit(8e6, "miles")
  9540. },
  9541. {
  9542. name: "Star Dragon",
  9543. height: math.unit(800000, "parsecs")
  9544. },
  9545. {
  9546. name: "Godly",
  9547. height: math.unit(800, "teraparsecs")
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(6, "feet"),
  9556. weight: math.unit(150, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/ky'owin/front.svg",
  9560. extra: 3888 / 3068,
  9561. bottom: 0.015
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Normal",
  9568. height: math.unit(6 + 8 / 12, "feet")
  9569. },
  9570. {
  9571. name: "Large",
  9572. height: math.unit(68, "feet")
  9573. },
  9574. {
  9575. name: "Macro",
  9576. height: math.unit(132, "feet")
  9577. },
  9578. {
  9579. name: "Macro+",
  9580. height: math.unit(340, "feet")
  9581. },
  9582. {
  9583. name: "Macro++",
  9584. height: math.unit(680, "feet"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Megamacro",
  9589. height: math.unit(1, "mile")
  9590. },
  9591. {
  9592. name: "Megamacro+",
  9593. height: math.unit(10, "miles")
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9599. {
  9600. front: {
  9601. height: math.unit(4, "feet"),
  9602. weight: math.unit(50, "lb"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/mal/front.svg",
  9606. extra: 785 / 724,
  9607. bottom: 0.07
  9608. }
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Micro",
  9614. height: math.unit(4, "inches")
  9615. },
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(4, "feet"),
  9619. default: true
  9620. },
  9621. {
  9622. name: "Macro",
  9623. height: math.unit(200, "feet")
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(6, "feet"),
  9632. weight: math.unit(150, "lb"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/jordan-deware/front.svg",
  9636. extra: 1191 / 1012
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Nano",
  9643. height: math.unit(0.01, "mm")
  9644. },
  9645. {
  9646. name: "Minimicro",
  9647. height: math.unit(1, "mm")
  9648. },
  9649. {
  9650. name: "Micro",
  9651. height: math.unit(0.5, "inches")
  9652. },
  9653. {
  9654. name: "Normal",
  9655. height: math.unit(4, "feet"),
  9656. default: true
  9657. },
  9658. {
  9659. name: "Minimacro",
  9660. height: math.unit(40, "meters")
  9661. },
  9662. {
  9663. name: "Small Macro",
  9664. height: math.unit(400, "meters")
  9665. },
  9666. {
  9667. name: "Macro",
  9668. height: math.unit(4, "miles")
  9669. },
  9670. {
  9671. name: "Megamacro",
  9672. height: math.unit(40, "miles")
  9673. },
  9674. {
  9675. name: "Megamacro+",
  9676. height: math.unit(400, "miles")
  9677. },
  9678. {
  9679. name: "Gigamacro",
  9680. height: math.unit(400000, "miles")
  9681. },
  9682. ]
  9683. ))
  9684. characterMakers.push(() => makeCharacter(
  9685. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9686. {
  9687. side: {
  9688. height: math.unit(6, "feet"),
  9689. weight: math.unit(150, "lb"),
  9690. name: "Side",
  9691. image: {
  9692. source: "./media/characters/kimiko/side.svg",
  9693. extra: 600 / 358
  9694. }
  9695. },
  9696. },
  9697. [
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(15, "feet"),
  9701. default: true
  9702. },
  9703. {
  9704. name: "Macro",
  9705. height: math.unit(220, "feet")
  9706. },
  9707. {
  9708. name: "Macro+",
  9709. height: math.unit(1450, "feet")
  9710. },
  9711. {
  9712. name: "Megamacro",
  9713. height: math.unit(11500, "feet")
  9714. },
  9715. {
  9716. name: "Gigamacro",
  9717. height: math.unit(9500, "miles")
  9718. },
  9719. {
  9720. name: "Teramacro",
  9721. height: math.unit(2208005005, "miles")
  9722. },
  9723. {
  9724. name: "Examacro",
  9725. height: math.unit(2750, "parsecs")
  9726. },
  9727. {
  9728. name: "Zettamacro",
  9729. height: math.unit(101500, "parsecs")
  9730. },
  9731. ]
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(6, "feet"),
  9738. weight: math.unit(70, "kg"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/andrew-sleepy/front.svg"
  9742. }
  9743. },
  9744. side: {
  9745. height: math.unit(6, "feet"),
  9746. weight: math.unit(70, "kg"),
  9747. name: "Side",
  9748. image: {
  9749. source: "./media/characters/andrew-sleepy/side.svg"
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(1, "mm"),
  9757. default: true
  9758. },
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(6, "feet"),
  9766. weight: math.unit(150, "lb"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/judio/front.svg",
  9770. extra: 1258 / 1110
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Normal",
  9777. height: math.unit(5 + 6 / 12, "feet")
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(1000, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Megamacro",
  9786. height: math.unit(10, "miles")
  9787. },
  9788. ]
  9789. ))
  9790. characterMakers.push(() => makeCharacter(
  9791. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9792. {
  9793. front: {
  9794. height: math.unit(6, "feet"),
  9795. weight: math.unit(68, "kg"),
  9796. name: "Front",
  9797. image: {
  9798. source: "./media/characters/nomaxice/front.svg",
  9799. extra: 1498 / 1073,
  9800. bottom: 0.075
  9801. }
  9802. },
  9803. foot: {
  9804. height: math.unit(1.1, "feet"),
  9805. name: "Foot",
  9806. image: {
  9807. source: "./media/characters/nomaxice/foot.svg"
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Micro",
  9814. height: math.unit(8, "cm")
  9815. },
  9816. {
  9817. name: "Norm",
  9818. height: math.unit(1.82, "m")
  9819. },
  9820. {
  9821. name: "Norm+",
  9822. height: math.unit(8.8, "feet")
  9823. },
  9824. {
  9825. name: "Big",
  9826. height: math.unit(8, "meters"),
  9827. default: true
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(18, "meters")
  9832. },
  9833. {
  9834. name: "Macro+",
  9835. height: math.unit(88, "meters")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(12, "feet"),
  9844. weight: math.unit(1.5, "tons"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/dydros/front.svg",
  9848. extra: 863 / 800,
  9849. bottom: 0.015
  9850. }
  9851. },
  9852. back: {
  9853. height: math.unit(12, "feet"),
  9854. weight: math.unit(1.5, "tons"),
  9855. name: "Back",
  9856. image: {
  9857. source: "./media/characters/dydros/back.svg",
  9858. extra: 900 / 843,
  9859. bottom: 0.005
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(12, "feet"),
  9867. default: true
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(6, "feet"),
  9876. weight: math.unit(100, "kg"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/riggi/front.svg",
  9880. extra: 5787 / 5303
  9881. }
  9882. },
  9883. hyper: {
  9884. height: math.unit(6 * 5 / 3, "feet"),
  9885. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9886. name: "Hyper",
  9887. image: {
  9888. source: "./media/characters/riggi/hyper.svg",
  9889. extra: 3595 / 3485
  9890. }
  9891. },
  9892. },
  9893. [
  9894. {
  9895. name: "Small Macro",
  9896. height: math.unit(50, "feet")
  9897. },
  9898. {
  9899. name: "Default",
  9900. height: math.unit(200, "feet"),
  9901. default: true
  9902. },
  9903. {
  9904. name: "Loom",
  9905. height: math.unit(10000, "feet")
  9906. },
  9907. {
  9908. name: "Cruising Altitude",
  9909. height: math.unit(30000, "feet")
  9910. },
  9911. {
  9912. name: "Megamacro",
  9913. height: math.unit(100, "miles")
  9914. },
  9915. {
  9916. name: "Continent Sized",
  9917. height: math.unit(2800, "miles")
  9918. },
  9919. {
  9920. name: "Earth Sized",
  9921. height: math.unit(8000, "miles")
  9922. },
  9923. ]
  9924. ))
  9925. characterMakers.push(() => makeCharacter(
  9926. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9927. {
  9928. front: {
  9929. height: math.unit(6, "feet"),
  9930. weight: math.unit(250, "lb"),
  9931. name: "Front",
  9932. image: {
  9933. source: "./media/characters/alexi/front.svg",
  9934. extra: 3483 / 3291,
  9935. bottom: 0.04
  9936. }
  9937. },
  9938. back: {
  9939. height: math.unit(6, "feet"),
  9940. weight: math.unit(250, "lb"),
  9941. name: "Back",
  9942. image: {
  9943. source: "./media/characters/alexi/back.svg",
  9944. extra: 3533 / 3356,
  9945. bottom: 0.021
  9946. }
  9947. },
  9948. frontTransforming: {
  9949. height: math.unit(8.58, "feet"),
  9950. weight: math.unit(1300, "lb"),
  9951. name: "Transforming",
  9952. image: {
  9953. source: "./media/characters/alexi/front-transforming.svg",
  9954. extra: 437 / 409,
  9955. bottom: 19 / 458.66
  9956. }
  9957. },
  9958. frontTransformed: {
  9959. height: math.unit(12.5, "feet"),
  9960. weight: math.unit(4000, "lb"),
  9961. name: "Transformed",
  9962. image: {
  9963. source: "./media/characters/alexi/front-transformed.svg",
  9964. extra: 639 / 614,
  9965. bottom: 30.55 / 671
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Normal",
  9972. height: math.unit(3, "meters"),
  9973. default: true
  9974. },
  9975. {
  9976. name: "Minimacro",
  9977. height: math.unit(30, "meters")
  9978. },
  9979. {
  9980. name: "Macro",
  9981. height: math.unit(500, "meters")
  9982. },
  9983. {
  9984. name: "Megamacro",
  9985. height: math.unit(9000, "km")
  9986. },
  9987. {
  9988. name: "Teramacro",
  9989. height: math.unit(384000, "km")
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(150, "lb"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/kayroo/front.svg",
  10002. extra: 1153 / 1038,
  10003. bottom: 0.06
  10004. }
  10005. },
  10006. foot: {
  10007. height: math.unit(6, "feet"),
  10008. weight: math.unit(150, "lb"),
  10009. name: "Foot",
  10010. image: {
  10011. source: "./media/characters/kayroo/foot.svg"
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Normal",
  10018. height: math.unit(8, "feet"),
  10019. default: true
  10020. },
  10021. {
  10022. name: "Minimacro",
  10023. height: math.unit(250, "feet")
  10024. },
  10025. {
  10026. name: "Macro",
  10027. height: math.unit(2800, "feet")
  10028. },
  10029. {
  10030. name: "Megamacro",
  10031. height: math.unit(5200, "feet")
  10032. },
  10033. {
  10034. name: "Gigamacro",
  10035. height: math.unit(27000, "feet")
  10036. },
  10037. {
  10038. name: "Omega",
  10039. height: math.unit(45000, "feet")
  10040. },
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(18, "feet"),
  10048. weight: math.unit(5800, "lb"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/rhys/front.svg",
  10052. extra: 3386 / 3090,
  10053. bottom: 0.07
  10054. }
  10055. },
  10056. },
  10057. [
  10058. {
  10059. name: "Normal",
  10060. height: math.unit(18, "feet"),
  10061. default: true
  10062. },
  10063. {
  10064. name: "Working Size",
  10065. height: math.unit(200, "feet")
  10066. },
  10067. {
  10068. name: "Demolition Size",
  10069. height: math.unit(2000, "feet")
  10070. },
  10071. {
  10072. name: "Maximum Licensed Size",
  10073. height: math.unit(5, "miles")
  10074. },
  10075. {
  10076. name: "Maximum Observed Size",
  10077. height: math.unit(10, "yottameters")
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10083. {
  10084. front: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(250, "lb"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/toto/front.svg",
  10090. extra: 527 / 479,
  10091. bottom: 0.05
  10092. }
  10093. },
  10094. },
  10095. [
  10096. {
  10097. name: "Micro",
  10098. height: math.unit(3, "feet")
  10099. },
  10100. {
  10101. name: "Normal",
  10102. height: math.unit(10, "feet")
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(150, "feet"),
  10107. default: true
  10108. },
  10109. {
  10110. name: "Megamacro",
  10111. height: math.unit(1200, "feet")
  10112. },
  10113. ]
  10114. ))
  10115. characterMakers.push(() => makeCharacter(
  10116. { name: "King", species: ["lion"], tags: ["anthro"] },
  10117. {
  10118. back: {
  10119. height: math.unit(6, "feet"),
  10120. weight: math.unit(150, "lb"),
  10121. name: "Back",
  10122. image: {
  10123. source: "./media/characters/king/back.svg"
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Micro",
  10130. height: math.unit(2, "inches")
  10131. },
  10132. {
  10133. name: "Normal",
  10134. height: math.unit(8, "feet")
  10135. },
  10136. {
  10137. name: "Macro",
  10138. height: math.unit(200, "feet"),
  10139. default: true
  10140. },
  10141. {
  10142. name: "Megamacro",
  10143. height: math.unit(50, "miles")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10149. {
  10150. anthro: {
  10151. height: math.unit(6 + 5 / 12, "feet"),
  10152. weight: math.unit(280, "lb"),
  10153. name: "Anthro",
  10154. image: {
  10155. source: "./media/characters/cordite/anthro.svg",
  10156. extra: 1986 / 1905,
  10157. bottom: 0.025
  10158. }
  10159. },
  10160. feral: {
  10161. height: math.unit(2, "feet"),
  10162. weight: math.unit(90, "lb"),
  10163. name: "Feral",
  10164. image: {
  10165. source: "./media/characters/cordite/feral.svg",
  10166. extra: 1260 / 755,
  10167. bottom: 0.05
  10168. }
  10169. },
  10170. },
  10171. [
  10172. {
  10173. name: "Normal",
  10174. height: math.unit(6 + 5 / 12, "feet"),
  10175. default: true
  10176. },
  10177. ]
  10178. ))
  10179. characterMakers.push(() => makeCharacter(
  10180. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10181. {
  10182. front: {
  10183. height: math.unit(6, "feet"),
  10184. weight: math.unit(150, "lb"),
  10185. name: "Front",
  10186. image: {
  10187. source: "./media/characters/pianostrong/front.svg",
  10188. extra: 6577 / 6254,
  10189. bottom: 0.02
  10190. }
  10191. },
  10192. side: {
  10193. height: math.unit(6, "feet"),
  10194. weight: math.unit(150, "lb"),
  10195. name: "Side",
  10196. image: {
  10197. source: "./media/characters/pianostrong/side.svg",
  10198. extra: 6106 / 5730
  10199. }
  10200. },
  10201. back: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(150, "lb"),
  10204. name: "Back",
  10205. image: {
  10206. source: "./media/characters/pianostrong/back.svg",
  10207. extra: 6085 / 5733,
  10208. bottom: 0.01
  10209. }
  10210. },
  10211. },
  10212. [
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(100, "feet")
  10216. },
  10217. {
  10218. name: "Macro+",
  10219. height: math.unit(300, "feet"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Macro++",
  10224. height: math.unit(1000, "feet")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(150, "lb"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/kona/front.svg",
  10237. extra: 2960 / 2629,
  10238. bottom: 0.005
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(11 + 8 / 12, "feet")
  10246. },
  10247. {
  10248. name: "Macro",
  10249. height: math.unit(850, "feet"),
  10250. default: true
  10251. },
  10252. {
  10253. name: "Macro+",
  10254. height: math.unit(1.5, "km"),
  10255. default: true
  10256. },
  10257. {
  10258. name: "Megamacro",
  10259. height: math.unit(80, "miles")
  10260. },
  10261. {
  10262. name: "Gigamacro",
  10263. height: math.unit(3500, "miles")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10269. {
  10270. side: {
  10271. height: math.unit(1.9, "meters"),
  10272. weight: math.unit(326, "kg"),
  10273. name: "Side",
  10274. image: {
  10275. source: "./media/characters/levi/side.svg",
  10276. extra: 1704 / 1334,
  10277. bottom: 0.02
  10278. }
  10279. },
  10280. },
  10281. [
  10282. {
  10283. name: "Normal",
  10284. height: math.unit(1.9, "meters"),
  10285. default: true
  10286. },
  10287. {
  10288. name: "Macro",
  10289. height: math.unit(20, "meters")
  10290. },
  10291. {
  10292. name: "Macro+",
  10293. height: math.unit(200, "meters")
  10294. },
  10295. {
  10296. name: "Megamacro",
  10297. height: math.unit(2, "km")
  10298. },
  10299. {
  10300. name: "Megamacro+",
  10301. height: math.unit(20, "km")
  10302. },
  10303. {
  10304. name: "Gigamacro",
  10305. height: math.unit(2500, "km")
  10306. },
  10307. {
  10308. name: "Gigamacro+",
  10309. height: math.unit(120000, "km")
  10310. },
  10311. {
  10312. name: "Teramacro",
  10313. height: math.unit(7.77e6, "km")
  10314. },
  10315. ]
  10316. ))
  10317. characterMakers.push(() => makeCharacter(
  10318. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10319. {
  10320. front: {
  10321. height: math.unit(6 + 4 / 12, "feet"),
  10322. weight: math.unit(188, "lb"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/bmc/front.svg",
  10326. extra: 1067 / 1022,
  10327. bottom: 0.047
  10328. }
  10329. },
  10330. },
  10331. [
  10332. {
  10333. name: "Human-sized",
  10334. height: math.unit(6 + 4 / 12, "feet")
  10335. },
  10336. {
  10337. name: "Small",
  10338. height: math.unit(250, "feet")
  10339. },
  10340. {
  10341. name: "Normal",
  10342. height: math.unit(1250, "feet"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Good Day",
  10347. height: math.unit(88, "miles")
  10348. },
  10349. {
  10350. name: "Largest Measured Size",
  10351. height: math.unit(11.2e6, "lightyears")
  10352. },
  10353. ]
  10354. ))
  10355. characterMakers.push(() => makeCharacter(
  10356. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10357. {
  10358. front: {
  10359. height: math.unit(20, "feet"),
  10360. weight: math.unit(2016, "kg"),
  10361. name: "Front",
  10362. image: {
  10363. source: "./media/characters/sven-the-kaiju/front.svg",
  10364. extra: 1479 / 1449,
  10365. bottom: 0.05
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Fairy",
  10372. height: math.unit(6, "inches")
  10373. },
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(20, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Rampage",
  10381. height: math.unit(200, "feet")
  10382. },
  10383. {
  10384. name: "Archfey Forest Guardian",
  10385. height: math.unit(1, "mile")
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10391. {
  10392. front: {
  10393. height: math.unit(4, "meters"),
  10394. weight: math.unit(2, "tons"),
  10395. name: "Front",
  10396. image: {
  10397. source: "./media/characters/marik/front.svg",
  10398. extra: 1057 / 1003,
  10399. bottom: 0.08
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(4, "meters"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(20, "meters")
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(50, "km")
  10416. },
  10417. {
  10418. name: "Gigamacro",
  10419. height: math.unit(100, "km")
  10420. },
  10421. {
  10422. name: "Alpha Macro",
  10423. height: math.unit(7.88e7, "yottameters")
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(6, "feet"),
  10432. weight: math.unit(110, "lb"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/mel/front.svg",
  10436. extra: 736 / 617,
  10437. bottom: 0.017
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Pico",
  10444. height: math.unit(3, "pm")
  10445. },
  10446. {
  10447. name: "Nano",
  10448. height: math.unit(3, "nm")
  10449. },
  10450. {
  10451. name: "Micro",
  10452. height: math.unit(0.3, "mm"),
  10453. default: true
  10454. },
  10455. {
  10456. name: "Micro+",
  10457. height: math.unit(3, "mm")
  10458. },
  10459. {
  10460. name: "Normal",
  10461. height: math.unit(5 + 10.5 / 12, "feet")
  10462. },
  10463. ]
  10464. ))
  10465. characterMakers.push(() => makeCharacter(
  10466. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10467. {
  10468. kaiju: {
  10469. height: math.unit(1.75, "meters"),
  10470. weight: math.unit(55, "kg"),
  10471. name: "Kaiju",
  10472. image: {
  10473. source: "./media/characters/lykonous/kaiju.svg",
  10474. extra: 1055 / 946,
  10475. bottom: 0.135
  10476. }
  10477. },
  10478. },
  10479. [
  10480. {
  10481. name: "Normal",
  10482. height: math.unit(2.5, "meters"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Kaiju Dragon",
  10487. height: math.unit(60, "meters")
  10488. },
  10489. {
  10490. name: "Mega Kaiju",
  10491. height: math.unit(120, "km")
  10492. },
  10493. {
  10494. name: "Giga Kaiju",
  10495. height: math.unit(200, "megameters")
  10496. },
  10497. {
  10498. name: "Terra Kaiju",
  10499. height: math.unit(400, "gigameters")
  10500. },
  10501. {
  10502. name: "Kaiju Dragon God",
  10503. height: math.unit(13000, "exaparsecs")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(6, "feet"),
  10512. weight: math.unit(150, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/blü/front.svg",
  10516. extra: 1883 / 1564,
  10517. bottom: 0.031
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(13, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Big Boi",
  10529. height: math.unit(150, "meters")
  10530. },
  10531. {
  10532. name: "Mini Stomper",
  10533. height: math.unit(300, "meters")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(1000, "meters")
  10538. },
  10539. {
  10540. name: "Megamacro",
  10541. height: math.unit(11000, "meters")
  10542. },
  10543. {
  10544. name: "Gigamacro",
  10545. height: math.unit(11000, "km")
  10546. },
  10547. {
  10548. name: "Teramacro",
  10549. height: math.unit(420000, "km")
  10550. },
  10551. {
  10552. name: "Examacro",
  10553. height: math.unit(120, "parsecs")
  10554. },
  10555. {
  10556. name: "God Tho",
  10557. height: math.unit(98000000000, "parsecs")
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10563. {
  10564. taurFront: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(200, "lb"),
  10567. name: "Taur (Front)",
  10568. image: {
  10569. source: "./media/characters/scales/taur-front.svg",
  10570. extra: 1,
  10571. bottom: 0.05
  10572. }
  10573. },
  10574. taurBack: {
  10575. height: math.unit(6, "feet"),
  10576. weight: math.unit(200, "lb"),
  10577. name: "Taur (Back)",
  10578. image: {
  10579. source: "./media/characters/scales/taur-back.svg",
  10580. extra: 1,
  10581. bottom: 0.08
  10582. }
  10583. },
  10584. anthro: {
  10585. height: math.unit(6 * 7 / 12, "feet"),
  10586. weight: math.unit(100, "lb"),
  10587. name: "Anthro",
  10588. image: {
  10589. source: "./media/characters/scales/anthro.svg",
  10590. extra: 1,
  10591. bottom: 0.06
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(12, "feet"),
  10599. default: true
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(150, "lb"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/koragos/front.svg",
  10612. extra: 841 / 794,
  10613. bottom: 0.035
  10614. }
  10615. },
  10616. back: {
  10617. height: math.unit(6, "feet"),
  10618. weight: math.unit(150, "lb"),
  10619. name: "Back",
  10620. image: {
  10621. source: "./media/characters/koragos/back.svg",
  10622. extra: 841 / 810,
  10623. bottom: 0.022
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(6 + 11 / 12, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Macro",
  10635. height: math.unit(490, "feet")
  10636. },
  10637. {
  10638. name: "Megamacro",
  10639. height: math.unit(10, "miles")
  10640. },
  10641. {
  10642. name: "Gigamacro",
  10643. height: math.unit(50, "miles")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(6, "feet"),
  10652. weight: math.unit(250, "lb"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/xylrem/front.svg",
  10656. extra: 3323 / 3050,
  10657. bottom: 0.065
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Micro",
  10664. height: math.unit(4, "feet")
  10665. },
  10666. {
  10667. name: "Normal",
  10668. height: math.unit(16, "feet"),
  10669. default: true
  10670. },
  10671. {
  10672. name: "Macro",
  10673. height: math.unit(2720, "feet")
  10674. },
  10675. {
  10676. name: "Megamacro",
  10677. height: math.unit(25000, "miles")
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(8, "feet"),
  10686. weight: math.unit(250, "kg"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/ikideru/front.svg",
  10690. extra: 930 / 870,
  10691. bottom: 0.087
  10692. }
  10693. },
  10694. back: {
  10695. height: math.unit(8, "feet"),
  10696. weight: math.unit(250, "kg"),
  10697. name: "Back",
  10698. image: {
  10699. source: "./media/characters/ikideru/back.svg",
  10700. extra: 919 / 852,
  10701. bottom: 0.055
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Rare",
  10708. height: math.unit(8, "feet"),
  10709. default: true
  10710. },
  10711. {
  10712. name: "Playful Loom",
  10713. height: math.unit(80, "feet")
  10714. },
  10715. {
  10716. name: "City Leaner",
  10717. height: math.unit(230, "feet")
  10718. },
  10719. {
  10720. name: "Megamacro",
  10721. height: math.unit(2500, "feet")
  10722. },
  10723. {
  10724. name: "Gigamacro",
  10725. height: math.unit(26400, "feet")
  10726. },
  10727. {
  10728. name: "Tectonic Shifter",
  10729. height: math.unit(1.7, "megameters")
  10730. },
  10731. {
  10732. name: "Planet Carer",
  10733. height: math.unit(21, "megameters")
  10734. },
  10735. {
  10736. name: "God",
  10737. height: math.unit(11157.22, "parsecs")
  10738. },
  10739. ]
  10740. ))
  10741. characterMakers.push(() => makeCharacter(
  10742. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10743. {
  10744. front: {
  10745. height: math.unit(6, "feet"),
  10746. weight: math.unit(120, "lb"),
  10747. name: "Front",
  10748. image: {
  10749. source: "./media/characters/neo/front.svg"
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Micro",
  10756. height: math.unit(2, "inches"),
  10757. default: true
  10758. },
  10759. {
  10760. name: "Human Size",
  10761. height: math.unit(5 + 8 / 12, "feet")
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(13 + 10 / 12, "feet"),
  10770. weight: math.unit(5320, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/chauncey-chantz/front.svg",
  10774. extra: 1587 / 1435,
  10775. bottom: 0.02
  10776. }
  10777. },
  10778. },
  10779. [
  10780. {
  10781. name: "Normal",
  10782. height: math.unit(13 + 10 / 12, "feet"),
  10783. default: true
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(45, "feet")
  10788. },
  10789. {
  10790. name: "Megamacro",
  10791. height: math.unit(250, "miles")
  10792. },
  10793. {
  10794. name: "Planetary",
  10795. height: math.unit(10000, "miles")
  10796. },
  10797. {
  10798. name: "Galactic",
  10799. height: math.unit(40000, "parsecs")
  10800. },
  10801. {
  10802. name: "Universal",
  10803. height: math.unit(1, "yottameter")
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10809. {
  10810. front: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(150, "lb"),
  10813. name: "Front",
  10814. image: {
  10815. source: "./media/characters/epifox/front.svg",
  10816. extra: 1,
  10817. bottom: 0.075
  10818. }
  10819. },
  10820. },
  10821. [
  10822. {
  10823. name: "Micro",
  10824. height: math.unit(6, "inches")
  10825. },
  10826. {
  10827. name: "Normal",
  10828. height: math.unit(12, "feet"),
  10829. default: true
  10830. },
  10831. {
  10832. name: "Macro",
  10833. height: math.unit(3810, "feet")
  10834. },
  10835. {
  10836. name: "Megamacro",
  10837. height: math.unit(500, "miles")
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(1.8796, "m"),
  10846. weight: math.unit(230, "lb"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/colin-t/front.svg",
  10850. extra: 1272 / 1193,
  10851. bottom: 0.07
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Micro",
  10858. height: math.unit(0.571, "meters")
  10859. },
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(1.8796, "meters"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Tall",
  10867. height: math.unit(4, "meters")
  10868. },
  10869. {
  10870. name: "Macro",
  10871. height: math.unit(67.241, "meters")
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(371.856, "meters")
  10876. },
  10877. {
  10878. name: "Planetary",
  10879. height: math.unit(12631.5689, "km")
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(1.85, "meters"),
  10888. weight: math.unit(80, "kg"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/matvei/front.svg",
  10892. extra: 614 / 594,
  10893. bottom: 0.01
  10894. }
  10895. },
  10896. },
  10897. [
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(1.85, "meters"),
  10901. default: true
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(5 + 9 / 12, "feet"),
  10910. weight: math.unit(70, "lb"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/quincy/front.svg",
  10914. extra: 3041 / 2751
  10915. }
  10916. },
  10917. back: {
  10918. height: math.unit(5 + 9 / 12, "feet"),
  10919. weight: math.unit(70, "lb"),
  10920. name: "Back",
  10921. image: {
  10922. source: "./media/characters/quincy/back.svg",
  10923. extra: 3041 / 2751
  10924. }
  10925. },
  10926. flying: {
  10927. height: math.unit(5 + 4 / 12, "feet"),
  10928. weight: math.unit(70, "lb"),
  10929. name: "Flying",
  10930. image: {
  10931. source: "./media/characters/quincy/flying.svg",
  10932. extra: 1044 / 930
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Micro",
  10939. height: math.unit(3, "cm")
  10940. },
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(5 + 9 / 12, "feet")
  10944. },
  10945. {
  10946. name: "Macro",
  10947. height: math.unit(200, "meters"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Megamacro",
  10952. height: math.unit(1000, "meters")
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10958. {
  10959. front: {
  10960. height: math.unit(4 + 7 / 12, "feet"),
  10961. weight: math.unit(150, "lb"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/vanrel/front.svg",
  10965. extra: 1,
  10966. bottom: 0.02
  10967. }
  10968. },
  10969. elemental: {
  10970. height: math.unit(3, "feet"),
  10971. weight: math.unit(150, "lb"),
  10972. name: "Elemental",
  10973. image: {
  10974. source: "./media/characters/vanrel/elemental.svg",
  10975. extra: 192.3 / 162.8,
  10976. bottom: 1.79 / 194.17
  10977. }
  10978. },
  10979. side: {
  10980. height: math.unit(4 + 7 / 12, "feet"),
  10981. weight: math.unit(150, "lb"),
  10982. name: "Side",
  10983. image: {
  10984. source: "./media/characters/vanrel/side.svg",
  10985. extra: 1,
  10986. bottom: 0.025
  10987. }
  10988. },
  10989. tome: {
  10990. height: math.unit(1.35, "feet"),
  10991. weight: math.unit(10, "lb"),
  10992. name: "Vanrel's Tome",
  10993. rename: true,
  10994. image: {
  10995. source: "./media/characters/vanrel/tome.svg"
  10996. }
  10997. },
  10998. beans: {
  10999. height: math.unit(0.89, "feet"),
  11000. name: "Beans",
  11001. image: {
  11002. source: "./media/characters/vanrel/beans.svg"
  11003. }
  11004. },
  11005. },
  11006. [
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(4 + 7 / 12, "feet"),
  11010. default: true
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(7 + 5 / 12, "feet"),
  11019. weight: math.unit(150, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/kuiper-vanrel/front.svg",
  11023. extra: 1118 / 1068,
  11024. bottom: 0.09
  11025. }
  11026. },
  11027. foot: {
  11028. height: math.unit(0.55, "meters"),
  11029. name: "Foot",
  11030. image: {
  11031. source: "./media/characters/kuiper-vanrel/foot.svg",
  11032. }
  11033. },
  11034. battle: {
  11035. height: math.unit(6.824, "feet"),
  11036. weight: math.unit(150, "lb"),
  11037. name: "Battle",
  11038. image: {
  11039. source: "./media/characters/kuiper-vanrel/battle.svg",
  11040. extra: 1466 / 1327,
  11041. bottom: 29 / 1492.5
  11042. }
  11043. },
  11044. },
  11045. [
  11046. {
  11047. name: "Normal",
  11048. height: math.unit(7 + 5 / 12, "feet"),
  11049. default: true
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11055. {
  11056. front: {
  11057. height: math.unit(8 + 5 / 12, "feet"),
  11058. weight: math.unit(150, "lb"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/keset-vanrel/front.svg",
  11062. extra: 1150 / 1084,
  11063. bottom: 0.05
  11064. }
  11065. },
  11066. hand: {
  11067. height: math.unit(0.6, "meters"),
  11068. name: "Hand",
  11069. image: {
  11070. source: "./media/characters/keset-vanrel/hand.svg"
  11071. }
  11072. },
  11073. foot: {
  11074. height: math.unit(0.94978, "meters"),
  11075. name: "Foot",
  11076. image: {
  11077. source: "./media/characters/keset-vanrel/foot.svg"
  11078. }
  11079. },
  11080. battle: {
  11081. height: math.unit(7.408, "feet"),
  11082. weight: math.unit(150, "lb"),
  11083. name: "Battle",
  11084. image: {
  11085. source: "./media/characters/keset-vanrel/battle.svg",
  11086. extra: 1890 / 1386,
  11087. bottom: 73.28 / 1970
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Normal",
  11094. height: math.unit(8 + 5 / 12, "feet"),
  11095. default: true
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(150, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/neos/front.svg",
  11108. extra: 1696 / 992,
  11109. bottom: 0.14
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(54, "cm"),
  11117. default: true
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(100, "m")
  11122. },
  11123. {
  11124. name: "Megamacro",
  11125. height: math.unit(10, "km")
  11126. },
  11127. {
  11128. name: "Megamacro+",
  11129. height: math.unit(100, "km")
  11130. },
  11131. {
  11132. name: "Gigamacro",
  11133. height: math.unit(100, "Mm")
  11134. },
  11135. {
  11136. name: "Teramacro",
  11137. height: math.unit(100, "Gm")
  11138. },
  11139. {
  11140. name: "Examacro",
  11141. height: math.unit(100, "Em")
  11142. },
  11143. {
  11144. name: "Godly",
  11145. height: math.unit(10000, "Ym")
  11146. },
  11147. {
  11148. name: "Beyond Godly",
  11149. height: math.unit(25, "multiverses")
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11155. {
  11156. feminine: {
  11157. height: math.unit(5, "feet"),
  11158. weight: math.unit(100, "lb"),
  11159. name: "Feminine",
  11160. image: {
  11161. source: "./media/characters/sammy-mouse/feminine.svg",
  11162. extra: 2526 / 2425,
  11163. bottom: 0.123
  11164. }
  11165. },
  11166. masculine: {
  11167. height: math.unit(5, "feet"),
  11168. weight: math.unit(100, "lb"),
  11169. name: "Masculine",
  11170. image: {
  11171. source: "./media/characters/sammy-mouse/masculine.svg",
  11172. extra: 2526 / 2425,
  11173. bottom: 0.123
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Micro",
  11180. height: math.unit(5, "inches")
  11181. },
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(5, "feet"),
  11185. default: true
  11186. },
  11187. {
  11188. name: "Macro",
  11189. height: math.unit(60, "feet")
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(4, "feet"),
  11198. weight: math.unit(50, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/kole/front.svg",
  11202. extra: 1423 / 1303,
  11203. bottom: 0.025
  11204. }
  11205. },
  11206. back: {
  11207. height: math.unit(4, "feet"),
  11208. weight: math.unit(50, "lb"),
  11209. name: "Back",
  11210. image: {
  11211. source: "./media/characters/kole/back.svg",
  11212. extra: 1426 / 1280,
  11213. bottom: 0.02
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Normal",
  11220. height: math.unit(4, "feet"),
  11221. default: true
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11227. {
  11228. front: {
  11229. height: math.unit(2 + 6 / 12, "feet"),
  11230. weight: math.unit(20, "lb"),
  11231. name: "Front",
  11232. image: {
  11233. source: "./media/characters/rufran/front.svg",
  11234. extra: 2041 / 1839,
  11235. bottom: 0.055
  11236. }
  11237. },
  11238. back: {
  11239. height: math.unit(2 + 6 / 12, "feet"),
  11240. weight: math.unit(20, "lb"),
  11241. name: "Back",
  11242. image: {
  11243. source: "./media/characters/rufran/back.svg",
  11244. extra: 2054 / 1839,
  11245. bottom: 0.01
  11246. }
  11247. },
  11248. hand: {
  11249. height: math.unit(0.2166, "meters"),
  11250. name: "Hand",
  11251. image: {
  11252. source: "./media/characters/rufran/hand.svg"
  11253. }
  11254. },
  11255. foot: {
  11256. height: math.unit(0.185, "meters"),
  11257. name: "Foot",
  11258. image: {
  11259. source: "./media/characters/rufran/foot.svg"
  11260. }
  11261. },
  11262. },
  11263. [
  11264. {
  11265. name: "Micro",
  11266. height: math.unit(1, "inch")
  11267. },
  11268. {
  11269. name: "Normal",
  11270. height: math.unit(2 + 6 / 12, "feet"),
  11271. default: true
  11272. },
  11273. {
  11274. name: "Big",
  11275. height: math.unit(60, "feet")
  11276. },
  11277. {
  11278. name: "Macro",
  11279. height: math.unit(325, "feet")
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(0.3, "meters"),
  11288. weight: math.unit(3.5, "kg"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/chip/front.svg",
  11292. extra: 748 / 674
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Micro",
  11299. height: math.unit(1, "inch"),
  11300. default: true
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11306. {
  11307. side: {
  11308. height: math.unit(2.3, "meters"),
  11309. weight: math.unit(3500, "lb"),
  11310. name: "Side",
  11311. image: {
  11312. source: "./media/characters/torvid/side.svg",
  11313. extra: 1972 / 722,
  11314. bottom: 0.035
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(2.3, "meters"),
  11322. default: true
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11328. {
  11329. front: {
  11330. height: math.unit(2, "meters"),
  11331. weight: math.unit(150.5, "kg"),
  11332. name: "Front",
  11333. image: {
  11334. source: "./media/characters/susan/front.svg",
  11335. extra: 693 / 635,
  11336. bottom: 0.05
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Megamacro",
  11343. height: math.unit(505, "miles"),
  11344. default: true
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11350. {
  11351. front: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(150, "lb"),
  11354. name: "Front",
  11355. image: {
  11356. source: "./media/characters/raindrops/front.svg",
  11357. extra: 2655 / 2461,
  11358. bottom: 0.02
  11359. }
  11360. },
  11361. back: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Back",
  11365. image: {
  11366. source: "./media/characters/raindrops/back.svg",
  11367. extra: 2574 / 2400,
  11368. bottom: 0.03
  11369. }
  11370. },
  11371. },
  11372. [
  11373. {
  11374. name: "Micro",
  11375. height: math.unit(6, "inches")
  11376. },
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(6 + 2 / 12, "feet")
  11380. },
  11381. {
  11382. name: "Macro",
  11383. height: math.unit(131, "feet"),
  11384. default: true
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(15, "miles")
  11389. },
  11390. {
  11391. name: "Gigamacro",
  11392. height: math.unit(4000, "miles")
  11393. },
  11394. {
  11395. name: "Teramacro",
  11396. height: math.unit(315000, "miles")
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11402. {
  11403. front: {
  11404. height: math.unit(2.794, "meters"),
  11405. weight: math.unit(325, "kg"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/tezwa/front.svg",
  11409. extra: 2083 / 1906,
  11410. bottom: 0.031
  11411. }
  11412. },
  11413. foot: {
  11414. height: math.unit(0.687, "meters"),
  11415. name: "Foot",
  11416. image: {
  11417. source: "./media/characters/tezwa/foot.svg"
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Normal",
  11424. height: math.unit(9 + 2 / 12, "feet"),
  11425. default: true
  11426. },
  11427. ]
  11428. ))
  11429. characterMakers.push(() => makeCharacter(
  11430. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11431. {
  11432. front: {
  11433. height: math.unit(58, "feet"),
  11434. weight: math.unit(89000, "lb"),
  11435. name: "Front",
  11436. image: {
  11437. source: "./media/characters/typhus/front.svg",
  11438. extra: 816 / 800,
  11439. bottom: 0.065
  11440. }
  11441. },
  11442. },
  11443. [
  11444. {
  11445. name: "Macro",
  11446. height: math.unit(58, "feet"),
  11447. default: true
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11453. {
  11454. front: {
  11455. height: math.unit(12, "feet"),
  11456. weight: math.unit(6, "tonnes"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/lyra-von-wulf/front.svg",
  11460. extra: 1,
  11461. bottom: 0.10
  11462. }
  11463. },
  11464. frontMecha: {
  11465. height: math.unit(12, "feet"),
  11466. weight: math.unit(12, "tonnes"),
  11467. name: "Front (Mecha)",
  11468. image: {
  11469. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11470. extra: 1,
  11471. bottom: 0.042
  11472. }
  11473. },
  11474. maw: {
  11475. height: math.unit(2.2, "feet"),
  11476. name: "Maw",
  11477. image: {
  11478. source: "./media/characters/lyra-von-wulf/maw.svg"
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(12, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Classic",
  11490. height: math.unit(50, "feet")
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(500, "feet")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(1, "mile")
  11499. },
  11500. {
  11501. name: "Gigamacro",
  11502. height: math.unit(400, "miles")
  11503. },
  11504. {
  11505. name: "Teramacro",
  11506. height: math.unit(22000, "miles")
  11507. },
  11508. {
  11509. name: "Solarmacro",
  11510. height: math.unit(8600000, "miles")
  11511. },
  11512. {
  11513. name: "Galactic",
  11514. height: math.unit(1057000, "lightyears")
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(6 + 10 / 12, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/dixon/front.svg",
  11527. extra: 3361 / 3209,
  11528. bottom: 0.01
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(6 + 10 / 12, "feet"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Big",
  11540. height: math.unit(12, "meters")
  11541. },
  11542. {
  11543. name: "Macro",
  11544. height: math.unit(500, "meters")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(2, "km")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(185, "cm"),
  11557. weight: math.unit(68, "kg"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/kauko/front.svg",
  11561. extra: 1455 / 1421,
  11562. bottom: 0.03
  11563. }
  11564. },
  11565. back: {
  11566. height: math.unit(185, "cm"),
  11567. weight: math.unit(68, "kg"),
  11568. name: "Back",
  11569. image: {
  11570. source: "./media/characters/kauko/back.svg",
  11571. extra: 1455 / 1421,
  11572. bottom: 0.004
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(185, "cm"),
  11580. default: true
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(6, "feet"),
  11589. weight: math.unit(150, "kg"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/varg/front.svg",
  11593. extra: 1108 / 1018,
  11594. bottom: 0.0375
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(5, "meters")
  11602. },
  11603. {
  11604. name: "Macro",
  11605. height: math.unit(200, "meters")
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(20, "kilometers")
  11610. },
  11611. {
  11612. name: "True Size",
  11613. height: math.unit(211, "km"),
  11614. default: true
  11615. },
  11616. {
  11617. name: "Gigamacro",
  11618. height: math.unit(1000, "km")
  11619. },
  11620. {
  11621. name: "Gigamacro+",
  11622. height: math.unit(8000, "km")
  11623. },
  11624. {
  11625. name: "Teramacro",
  11626. height: math.unit(1000000, "km")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(7 + 7 / 12, "feet"),
  11635. weight: math.unit(267, "lb"),
  11636. name: "Front",
  11637. image: {
  11638. source: "./media/characters/dayza/front.svg",
  11639. extra: 1262 / 1200,
  11640. bottom: 0.035
  11641. }
  11642. },
  11643. side: {
  11644. height: math.unit(7 + 7 / 12, "feet"),
  11645. weight: math.unit(267, "lb"),
  11646. name: "Side",
  11647. image: {
  11648. source: "./media/characters/dayza/side.svg",
  11649. extra: 1295 / 1245,
  11650. bottom: 0.05
  11651. }
  11652. },
  11653. back: {
  11654. height: math.unit(7 + 7 / 12, "feet"),
  11655. weight: math.unit(267, "lb"),
  11656. name: "Back",
  11657. image: {
  11658. source: "./media/characters/dayza/back.svg",
  11659. extra: 1241 / 1170
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Normal",
  11666. height: math.unit(7 + 7 / 12, "feet"),
  11667. default: true
  11668. },
  11669. {
  11670. name: "Macro",
  11671. height: math.unit(155, "feet")
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(6 + 5 / 12, "feet"),
  11680. weight: math.unit(160, "lb"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/xanthos/front.svg",
  11684. extra: 1,
  11685. bottom: 0.04
  11686. }
  11687. },
  11688. back: {
  11689. height: math.unit(6 + 5 / 12, "feet"),
  11690. weight: math.unit(160, "lb"),
  11691. name: "Back",
  11692. image: {
  11693. source: "./media/characters/xanthos/back.svg",
  11694. extra: 1,
  11695. bottom: 0.03
  11696. }
  11697. },
  11698. hand: {
  11699. height: math.unit(0.928, "feet"),
  11700. name: "Hand",
  11701. image: {
  11702. source: "./media/characters/xanthos/hand.svg"
  11703. }
  11704. },
  11705. foot: {
  11706. height: math.unit(1.286, "feet"),
  11707. name: "Foot",
  11708. image: {
  11709. source: "./media/characters/xanthos/foot.svg"
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Normal",
  11716. height: math.unit(6 + 5 / 12, "feet"),
  11717. default: true
  11718. },
  11719. {
  11720. name: "Normal+",
  11721. height: math.unit(6, "meters")
  11722. },
  11723. {
  11724. name: "Macro",
  11725. height: math.unit(40, "feet")
  11726. },
  11727. {
  11728. name: "Macro+",
  11729. height: math.unit(200, "meters")
  11730. },
  11731. {
  11732. name: "Megamacro",
  11733. height: math.unit(20, "km")
  11734. },
  11735. {
  11736. name: "Megamacro+",
  11737. height: math.unit(100, "km")
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(6 + 3 / 12, "feet"),
  11746. weight: math.unit(215, "lb"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/grynn/front.svg",
  11750. extra: 4627 / 4209,
  11751. bottom: 0.047
  11752. }
  11753. },
  11754. },
  11755. [
  11756. {
  11757. name: "Micro",
  11758. height: math.unit(6, "inches")
  11759. },
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(6 + 3 / 12, "feet"),
  11763. default: true
  11764. },
  11765. {
  11766. name: "Big",
  11767. height: math.unit(104, "feet")
  11768. },
  11769. {
  11770. name: "Macro",
  11771. height: math.unit(944, "feet")
  11772. },
  11773. {
  11774. name: "Macro+",
  11775. height: math.unit(9480, "feet")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(78752, "feet")
  11780. },
  11781. {
  11782. name: "Megamacro+",
  11783. height: math.unit(630128, "feet")
  11784. },
  11785. {
  11786. name: "Megamacro++",
  11787. height: math.unit(3150695, "feet")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11793. {
  11794. front: {
  11795. height: math.unit(7 + 5 / 12, "feet"),
  11796. weight: math.unit(450, "lb"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/mocha-aura/front.svg",
  11800. extra: 1907 / 1817,
  11801. bottom: 0.04
  11802. }
  11803. },
  11804. back: {
  11805. height: math.unit(7 + 5 / 12, "feet"),
  11806. weight: math.unit(450, "lb"),
  11807. name: "Back",
  11808. image: {
  11809. source: "./media/characters/mocha-aura/back.svg",
  11810. extra: 1900 / 1825,
  11811. bottom: 0.045
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Nano",
  11818. height: math.unit(1, "nm")
  11819. },
  11820. {
  11821. name: "Megamicro",
  11822. height: math.unit(1, "mm")
  11823. },
  11824. {
  11825. name: "Micro",
  11826. height: math.unit(3, "inches")
  11827. },
  11828. {
  11829. name: "Normal",
  11830. height: math.unit(7 + 5 / 12, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Macro",
  11835. height: math.unit(30, "feet")
  11836. },
  11837. {
  11838. name: "Megamacro",
  11839. height: math.unit(3500, "feet")
  11840. },
  11841. {
  11842. name: "Teramacro",
  11843. height: math.unit(500000, "miles")
  11844. },
  11845. {
  11846. name: "Petamacro",
  11847. height: math.unit(50000000000000000, "parsecs")
  11848. },
  11849. ]
  11850. ))
  11851. characterMakers.push(() => makeCharacter(
  11852. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11853. {
  11854. front: {
  11855. height: math.unit(6, "feet"),
  11856. weight: math.unit(150, "lb"),
  11857. name: "Front",
  11858. image: {
  11859. source: "./media/characters/ilisha-devya/front.svg",
  11860. extra: 1,
  11861. bottom: 0.175
  11862. }
  11863. },
  11864. back: {
  11865. height: math.unit(6, "feet"),
  11866. weight: math.unit(150, "lb"),
  11867. name: "Back",
  11868. image: {
  11869. source: "./media/characters/ilisha-devya/back.svg",
  11870. extra: 1,
  11871. bottom: 0.015
  11872. }
  11873. },
  11874. },
  11875. [
  11876. {
  11877. name: "Macro",
  11878. height: math.unit(500, "feet"),
  11879. default: true
  11880. },
  11881. {
  11882. name: "Megamacro",
  11883. height: math.unit(10, "miles")
  11884. },
  11885. {
  11886. name: "Gigamacro",
  11887. height: math.unit(100000, "miles")
  11888. },
  11889. {
  11890. name: "Examacro",
  11891. height: math.unit(1e9, "lightyears")
  11892. },
  11893. {
  11894. name: "Omniversal",
  11895. height: math.unit(1e33, "lightyears")
  11896. },
  11897. {
  11898. name: "Beyond Infinite",
  11899. height: math.unit(1e100, "lightyears")
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11905. {
  11906. Side: {
  11907. height: math.unit(6, "feet"),
  11908. weight: math.unit(150, "lb"),
  11909. name: "Side",
  11910. image: {
  11911. source: "./media/characters/mira/side.svg",
  11912. extra: 900 / 799,
  11913. bottom: 0.02
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Human Size",
  11920. height: math.unit(6, "feet")
  11921. },
  11922. {
  11923. name: "Macro",
  11924. height: math.unit(100, "feet"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(10, "miles")
  11930. },
  11931. {
  11932. name: "Gigamacro",
  11933. height: math.unit(25000, "miles")
  11934. },
  11935. {
  11936. name: "Teramacro",
  11937. height: math.unit(300, "AU")
  11938. },
  11939. {
  11940. name: "Full Size",
  11941. height: math.unit(4.5e10, "lightyears")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11947. {
  11948. front: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/holly/front.svg",
  11954. extra: 639 / 606
  11955. }
  11956. },
  11957. back: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Back",
  11961. image: {
  11962. source: "./media/characters/holly/back.svg",
  11963. extra: 623 / 598
  11964. }
  11965. },
  11966. frontWorking: {
  11967. height: math.unit(6, "feet"),
  11968. weight: math.unit(150, "lb"),
  11969. name: "Front (Working)",
  11970. image: {
  11971. source: "./media/characters/holly/front-working.svg",
  11972. extra: 607 / 577,
  11973. bottom: 0.048
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Normal",
  11980. height: math.unit(12 + 3 / 12, "feet"),
  11981. default: true
  11982. },
  11983. ]
  11984. ))
  11985. characterMakers.push(() => makeCharacter(
  11986. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11987. {
  11988. front: {
  11989. height: math.unit(6, "feet"),
  11990. weight: math.unit(150, "lb"),
  11991. name: "Front",
  11992. image: {
  11993. source: "./media/characters/porter/front.svg",
  11994. extra: 1,
  11995. bottom: 0.01
  11996. }
  11997. },
  11998. frontRobes: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(150, "lb"),
  12001. name: "Front (Robes)",
  12002. image: {
  12003. source: "./media/characters/porter/front-robes.svg",
  12004. extra: 1.01,
  12005. bottom: 0.01
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(11 + 9 / 12, "feet"),
  12013. default: true
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12019. {
  12020. legendary: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(150, "lb"),
  12023. name: "Legendary",
  12024. image: {
  12025. source: "./media/characters/lucy/legendary.svg",
  12026. extra: 1355 / 1100,
  12027. bottom: 0.045
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Legendary",
  12034. height: math.unit(86882 * 2, "miles"),
  12035. default: true
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(150, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/drusilla/front.svg",
  12048. extra: 678 / 635,
  12049. bottom: 0.03
  12050. }
  12051. },
  12052. back: {
  12053. height: math.unit(6, "feet"),
  12054. weight: math.unit(150, "lb"),
  12055. name: "Back",
  12056. image: {
  12057. source: "./media/characters/drusilla/back.svg",
  12058. extra: 678 / 635,
  12059. bottom: 0.005
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(100, "feet")
  12067. },
  12068. {
  12069. name: "Canon Height",
  12070. height: math.unit(2000, "feet"),
  12071. default: true
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12077. {
  12078. front: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(180, "lb"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/renard-thatch/front.svg",
  12084. extra: 2411 / 2275,
  12085. bottom: 0.01
  12086. }
  12087. },
  12088. frontPosing: {
  12089. height: math.unit(6, "feet"),
  12090. weight: math.unit(180, "lb"),
  12091. name: "Front (Posing)",
  12092. image: {
  12093. source: "./media/characters/renard-thatch/front-posing.svg",
  12094. extra: 2381 / 2261,
  12095. bottom: 0.01
  12096. }
  12097. },
  12098. back: {
  12099. height: math.unit(6, "feet"),
  12100. weight: math.unit(180, "lb"),
  12101. name: "Back",
  12102. image: {
  12103. source: "./media/characters/renard-thatch/back.svg",
  12104. extra: 2428 / 2288
  12105. }
  12106. },
  12107. },
  12108. [
  12109. {
  12110. name: "Micro",
  12111. height: math.unit(3, "inches")
  12112. },
  12113. {
  12114. name: "Default",
  12115. height: math.unit(6, "feet"),
  12116. default: true
  12117. },
  12118. {
  12119. name: "Macro",
  12120. height: math.unit(75, "feet")
  12121. },
  12122. ]
  12123. ))
  12124. characterMakers.push(() => makeCharacter(
  12125. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12126. {
  12127. front: {
  12128. height: math.unit(1450, "feet"),
  12129. weight: math.unit(1.21e6, "tons"),
  12130. name: "Front",
  12131. image: {
  12132. source: "./media/characters/sekvra/front.svg",
  12133. extra: 1,
  12134. bottom: 0.03
  12135. }
  12136. },
  12137. frontClothed: {
  12138. height: math.unit(1450, "feet"),
  12139. weight: math.unit(1.21e6, "tons"),
  12140. name: "Front (Clothed)",
  12141. image: {
  12142. source: "./media/characters/sekvra/front-clothed.svg",
  12143. extra: 1,
  12144. bottom: 0.03
  12145. }
  12146. },
  12147. side: {
  12148. height: math.unit(1450, "feet"),
  12149. weight: math.unit(1.21e6, "tons"),
  12150. name: "Side",
  12151. image: {
  12152. source: "./media/characters/sekvra/side.svg",
  12153. extra: 1,
  12154. bottom: 0.025
  12155. }
  12156. },
  12157. back: {
  12158. height: math.unit(1450, "feet"),
  12159. weight: math.unit(1.21e6, "tons"),
  12160. name: "Back",
  12161. image: {
  12162. source: "./media/characters/sekvra/back.svg",
  12163. extra: 1,
  12164. bottom: 0.005
  12165. }
  12166. },
  12167. },
  12168. [
  12169. {
  12170. name: "Macro",
  12171. height: math.unit(1450, "feet"),
  12172. default: true
  12173. },
  12174. {
  12175. name: "Megamacro",
  12176. height: math.unit(15000, "feet")
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12182. {
  12183. front: {
  12184. height: math.unit(6, "feet"),
  12185. weight: math.unit(150, "lb"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/carmine/front.svg",
  12189. extra: 1,
  12190. bottom: 0.035
  12191. }
  12192. },
  12193. frontArmor: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(150, "lb"),
  12196. name: "Front (Armor)",
  12197. image: {
  12198. source: "./media/characters/carmine/front-armor.svg",
  12199. extra: 1,
  12200. bottom: 0.035
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Large",
  12207. height: math.unit(1, "mile")
  12208. },
  12209. {
  12210. name: "Huge",
  12211. height: math.unit(40, "miles"),
  12212. default: true
  12213. },
  12214. {
  12215. name: "Colossal",
  12216. height: math.unit(2500, "miles")
  12217. },
  12218. ]
  12219. ))
  12220. characterMakers.push(() => makeCharacter(
  12221. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12222. {
  12223. front: {
  12224. height: math.unit(6, "feet"),
  12225. weight: math.unit(150, "lb"),
  12226. name: "Front",
  12227. image: {
  12228. source: "./media/characters/elyssia/front.svg",
  12229. extra: 2201 / 2035,
  12230. bottom: 0.05
  12231. }
  12232. },
  12233. frontClothed: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(150, "lb"),
  12236. name: "Front (Clothed)",
  12237. image: {
  12238. source: "./media/characters/elyssia/front-clothed.svg",
  12239. extra: 2201 / 2035,
  12240. bottom: 0.05
  12241. }
  12242. },
  12243. back: {
  12244. height: math.unit(6, "feet"),
  12245. weight: math.unit(150, "lb"),
  12246. name: "Back",
  12247. image: {
  12248. source: "./media/characters/elyssia/back.svg",
  12249. extra: 2201 / 2035,
  12250. bottom: 0.013
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Smaller",
  12257. height: math.unit(150, "feet")
  12258. },
  12259. {
  12260. name: "Standard",
  12261. height: math.unit(1400, "feet"),
  12262. default: true
  12263. },
  12264. {
  12265. name: "Distracted",
  12266. height: math.unit(15000, "feet")
  12267. },
  12268. ]
  12269. ))
  12270. characterMakers.push(() => makeCharacter(
  12271. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12272. {
  12273. front: {
  12274. height: math.unit(7 + 4 / 12, "feet"),
  12275. weight: math.unit(500, "lb"),
  12276. name: "Front",
  12277. image: {
  12278. source: "./media/characters/geno-maxwell/front.svg",
  12279. extra: 2207 / 2040,
  12280. bottom: 0.015
  12281. }
  12282. },
  12283. },
  12284. [
  12285. {
  12286. name: "Micro",
  12287. height: math.unit(3, "inches")
  12288. },
  12289. {
  12290. name: "Normal",
  12291. height: math.unit(7 + 4 / 12, "feet"),
  12292. default: true
  12293. },
  12294. {
  12295. name: "Macro",
  12296. height: math.unit(220, "feet")
  12297. },
  12298. {
  12299. name: "Megamacro",
  12300. height: math.unit(11, "miles")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12306. {
  12307. front: {
  12308. height: math.unit(7 + 4 / 12, "feet"),
  12309. weight: math.unit(500, "lb"),
  12310. name: "Front",
  12311. image: {
  12312. source: "./media/characters/regena-maxwell/front.svg",
  12313. extra: 3115 / 2770,
  12314. bottom: 0.02
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Normal",
  12321. height: math.unit(7 + 4 / 12, "feet"),
  12322. default: true
  12323. },
  12324. {
  12325. name: "Macro",
  12326. height: math.unit(220, "feet")
  12327. },
  12328. {
  12329. name: "Megamacro",
  12330. height: math.unit(11, "miles")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(6, "feet"),
  12339. weight: math.unit(150, "lb"),
  12340. name: "Front",
  12341. image: {
  12342. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12343. extra: 860 / 690,
  12344. bottom: 0.03
  12345. }
  12346. },
  12347. },
  12348. [
  12349. {
  12350. name: "Normal",
  12351. height: math.unit(1.7, "meters"),
  12352. default: true
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(6, "feet"),
  12361. weight: math.unit(150, "lb"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/quilly/front.svg",
  12365. extra: 890 / 776
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Gigamacro",
  12372. height: math.unit(404090, "miles"),
  12373. default: true
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(7 + 8 / 12, "feet"),
  12382. weight: math.unit(350, "lb"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/tempest/front.svg",
  12386. extra: 1175 / 1086,
  12387. bottom: 0.02
  12388. }
  12389. },
  12390. },
  12391. [
  12392. {
  12393. name: "Normal",
  12394. height: math.unit(7 + 8 / 12, "feet"),
  12395. default: true
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12401. {
  12402. side: {
  12403. height: math.unit(4 + 5 / 12, "feet"),
  12404. weight: math.unit(80, "lb"),
  12405. name: "Side",
  12406. image: {
  12407. source: "./media/characters/rodger/side.svg",
  12408. extra: 1235 / 1118
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Micro",
  12415. height: math.unit(1, "inch")
  12416. },
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(4 + 5 / 12, "feet"),
  12420. default: true
  12421. },
  12422. {
  12423. name: "Macro",
  12424. height: math.unit(120, "feet")
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12430. {
  12431. front: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(150, "lb"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/danyel/front.svg",
  12437. extra: 1185 / 1123,
  12438. bottom: 0.05
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Shrunken",
  12445. height: math.unit(0.5, "mm")
  12446. },
  12447. {
  12448. name: "Micro",
  12449. height: math.unit(1, "mm"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Upsized",
  12454. height: math.unit(5 + 5 / 12, "feet")
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12460. {
  12461. front: {
  12462. height: math.unit(5 + 6 / 12, "feet"),
  12463. weight: math.unit(200, "lb"),
  12464. name: "Front",
  12465. image: {
  12466. source: "./media/characters/vivian-bijoux/front.svg",
  12467. extra: 1,
  12468. bottom: 0.072
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(5 + 6 / 12, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Bad Dream",
  12480. height: math.unit(500, "feet")
  12481. },
  12482. {
  12483. name: "Nightmare",
  12484. height: math.unit(500, "miles")
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(6 + 1 / 12, "feet"),
  12493. weight: math.unit(260, "lb"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/zeta/front.svg",
  12497. extra: 1968 / 1889,
  12498. bottom: 0.06
  12499. }
  12500. },
  12501. back: {
  12502. height: math.unit(6 + 1 / 12, "feet"),
  12503. weight: math.unit(260, "lb"),
  12504. name: "Back",
  12505. image: {
  12506. source: "./media/characters/zeta/back.svg",
  12507. extra: 1944 / 1858,
  12508. bottom: 0.03
  12509. }
  12510. },
  12511. hand: {
  12512. height: math.unit(1.112, "feet"),
  12513. name: "Hand",
  12514. image: {
  12515. source: "./media/characters/zeta/hand.svg"
  12516. }
  12517. },
  12518. foot: {
  12519. height: math.unit(1.48, "feet"),
  12520. name: "Foot",
  12521. image: {
  12522. source: "./media/characters/zeta/foot.svg"
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Micro",
  12529. height: math.unit(6, "inches")
  12530. },
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(6 + 1 / 12, "feet"),
  12534. default: true
  12535. },
  12536. {
  12537. name: "Macro",
  12538. height: math.unit(20, "feet")
  12539. },
  12540. ]
  12541. ))
  12542. characterMakers.push(() => makeCharacter(
  12543. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12544. {
  12545. front: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(150, "lb"),
  12548. name: "Front",
  12549. image: {
  12550. source: "./media/characters/jamie-larsen/front.svg",
  12551. extra: 962 / 933,
  12552. bottom: 0.02
  12553. }
  12554. },
  12555. back: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Back",
  12559. image: {
  12560. source: "./media/characters/jamie-larsen/back.svg",
  12561. extra: 997 / 946
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Macro",
  12568. height: math.unit(28 + 7 / 12, "feet"),
  12569. default: true
  12570. },
  12571. {
  12572. name: "Macro+",
  12573. height: math.unit(180, "feet")
  12574. },
  12575. {
  12576. name: "Megamacro",
  12577. height: math.unit(10, "miles")
  12578. },
  12579. {
  12580. name: "Gigamacro",
  12581. height: math.unit(200000, "miles")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(120, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/vance/front.svg",
  12594. extra: 1980 / 1890,
  12595. bottom: 0.09
  12596. }
  12597. },
  12598. back: {
  12599. height: math.unit(6, "feet"),
  12600. weight: math.unit(120, "lb"),
  12601. name: "Back",
  12602. image: {
  12603. source: "./media/characters/vance/back.svg",
  12604. extra: 2081 / 1994,
  12605. bottom: 0.014
  12606. }
  12607. },
  12608. hand: {
  12609. height: math.unit(0.88, "feet"),
  12610. name: "Hand",
  12611. image: {
  12612. source: "./media/characters/vance/hand.svg"
  12613. }
  12614. },
  12615. foot: {
  12616. height: math.unit(0.64, "feet"),
  12617. name: "Foot",
  12618. image: {
  12619. source: "./media/characters/vance/foot.svg"
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Small",
  12626. height: math.unit(90, "feet"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Macro",
  12631. height: math.unit(100, "meters")
  12632. },
  12633. {
  12634. name: "Megamacro",
  12635. height: math.unit(15, "miles")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(6, "feet"),
  12644. weight: math.unit(180, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/xochitl/front.svg",
  12648. extra: 2297 / 2261,
  12649. bottom: 0.065
  12650. }
  12651. },
  12652. back: {
  12653. height: math.unit(6, "feet"),
  12654. weight: math.unit(180, "lb"),
  12655. name: "Back",
  12656. image: {
  12657. source: "./media/characters/xochitl/back.svg",
  12658. extra: 2386 / 2354,
  12659. bottom: 0.01
  12660. }
  12661. },
  12662. foot: {
  12663. height: math.unit(6 / 5 * 1.15, "feet"),
  12664. weight: math.unit(150, "lb"),
  12665. name: "Foot",
  12666. image: {
  12667. source: "./media/characters/xochitl/foot.svg"
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Macro",
  12674. height: math.unit(80, "feet")
  12675. },
  12676. {
  12677. name: "Macro+",
  12678. height: math.unit(400, "feet"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Gigamacro",
  12683. height: math.unit(80000, "miles")
  12684. },
  12685. {
  12686. name: "Gigamacro+",
  12687. height: math.unit(400000, "miles")
  12688. },
  12689. {
  12690. name: "Teramacro",
  12691. height: math.unit(300, "AU")
  12692. },
  12693. ]
  12694. ))
  12695. characterMakers.push(() => makeCharacter(
  12696. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12697. {
  12698. front: {
  12699. height: math.unit(6, "feet"),
  12700. weight: math.unit(150, "lb"),
  12701. name: "Front",
  12702. image: {
  12703. source: "./media/characters/vincent/front.svg",
  12704. extra: 1130 / 1080,
  12705. bottom: 0.055
  12706. }
  12707. },
  12708. beak: {
  12709. height: math.unit(6 * 0.1, "feet"),
  12710. name: "Beak",
  12711. image: {
  12712. source: "./media/characters/vincent/beak.svg"
  12713. }
  12714. },
  12715. hand: {
  12716. height: math.unit(6 * 0.85, "feet"),
  12717. weight: math.unit(150, "lb"),
  12718. name: "Hand",
  12719. image: {
  12720. source: "./media/characters/vincent/hand.svg"
  12721. }
  12722. },
  12723. foot: {
  12724. height: math.unit(6 * 0.19, "feet"),
  12725. weight: math.unit(150, "lb"),
  12726. name: "Foot",
  12727. image: {
  12728. source: "./media/characters/vincent/foot.svg"
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Base",
  12735. height: math.unit(6 + 5 / 12, "feet"),
  12736. default: true
  12737. },
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(300, "feet")
  12741. },
  12742. {
  12743. name: "Megamacro",
  12744. height: math.unit(2, "miles")
  12745. },
  12746. {
  12747. name: "Gigamacro",
  12748. height: math.unit(1000, "miles")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12754. {
  12755. front: {
  12756. height: math.unit(6 + 2 / 12, "feet"),
  12757. weight: math.unit(265, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/jay/front.svg",
  12761. extra: 1510 / 1430,
  12762. bottom: 0.042
  12763. }
  12764. },
  12765. back: {
  12766. height: math.unit(6 + 2 / 12, "feet"),
  12767. weight: math.unit(265, "lb"),
  12768. name: "Back",
  12769. image: {
  12770. source: "./media/characters/jay/back.svg",
  12771. extra: 1510 / 1430,
  12772. bottom: 0.025
  12773. }
  12774. },
  12775. clothed: {
  12776. height: math.unit(6 + 2 / 12, "feet"),
  12777. weight: math.unit(265, "lb"),
  12778. name: "Front (Clothed)",
  12779. image: {
  12780. source: "./media/characters/jay/clothed.svg",
  12781. extra: 744 / 699,
  12782. bottom: 0.043
  12783. }
  12784. },
  12785. head: {
  12786. height: math.unit(1.772, "feet"),
  12787. name: "Head",
  12788. image: {
  12789. source: "./media/characters/jay/head.svg"
  12790. }
  12791. },
  12792. sizeRay: {
  12793. height: math.unit(1.331, "feet"),
  12794. name: "Size Ray",
  12795. image: {
  12796. source: "./media/characters/jay/size-ray.svg"
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Micro",
  12803. height: math.unit(1, "inch")
  12804. },
  12805. {
  12806. name: "Normal",
  12807. height: math.unit(6 + 2 / 12, "feet"),
  12808. default: true
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(1, "mile")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(100, "miles")
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(2, "meters"),
  12825. weight: math.unit(500, "kg"),
  12826. name: "Front",
  12827. image: {
  12828. source: "./media/characters/coatl/front.svg",
  12829. extra: 3948 / 3500,
  12830. bottom: 0.082
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(4, "meters")
  12838. },
  12839. {
  12840. name: "Macro",
  12841. height: math.unit(100, "meters"),
  12842. default: true
  12843. },
  12844. {
  12845. name: "Macro+",
  12846. height: math.unit(300, "meters")
  12847. },
  12848. {
  12849. name: "Megamacro",
  12850. height: math.unit(3, "gigameters")
  12851. },
  12852. {
  12853. name: "Megamacro+",
  12854. height: math.unit(300, "terameters")
  12855. },
  12856. {
  12857. name: "Megamacro++",
  12858. height: math.unit(3, "lightyears")
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12864. {
  12865. front: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(50, "kg"),
  12868. name: "front",
  12869. image: {
  12870. source: "./media/characters/shiroryu/front.svg",
  12871. extra: 1990 / 1935
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Mortal Mingling",
  12878. height: math.unit(3, "meters")
  12879. },
  12880. {
  12881. name: "Kaiju-ish",
  12882. height: math.unit(250, "meters")
  12883. },
  12884. {
  12885. name: "Somewhat Godly",
  12886. height: math.unit(400, "km"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Planetary",
  12891. height: math.unit(300, "megameters")
  12892. },
  12893. {
  12894. name: "Galaxy-dwarfing",
  12895. height: math.unit(450, "kiloparsecs")
  12896. },
  12897. {
  12898. name: "Universe Eater",
  12899. height: math.unit(150, "gigaparsecs")
  12900. },
  12901. {
  12902. name: "Almost Immeasurable",
  12903. height: math.unit(1.3e266, "yottaparsecs")
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(6, "feet"),
  12912. weight: math.unit(150, "lb"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/umeko/front.svg",
  12916. extra: 1,
  12917. bottom: 0.019
  12918. }
  12919. },
  12920. frontArmored: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(150, "lb"),
  12923. name: "Front (Armored)",
  12924. image: {
  12925. source: "./media/characters/umeko/front-armored.svg",
  12926. extra: 1,
  12927. bottom: 0.021
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Macro",
  12934. height: math.unit(220, "feet"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Guardian Dragon",
  12939. height: math.unit(50, "miles")
  12940. },
  12941. {
  12942. name: "Cosmic",
  12943. height: math.unit(800000, "miles")
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12949. {
  12950. front: {
  12951. height: math.unit(6, "feet"),
  12952. weight: math.unit(150, "lb"),
  12953. name: "Front",
  12954. image: {
  12955. source: "./media/characters/cassidy/front.svg",
  12956. extra: 1,
  12957. bottom: 0.043
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Canon Height",
  12964. height: math.unit(120, "feet"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Macro+",
  12969. height: math.unit(400, "feet")
  12970. },
  12971. {
  12972. name: "Macro++",
  12973. height: math.unit(4000, "feet")
  12974. },
  12975. {
  12976. name: "Megamacro",
  12977. height: math.unit(3, "miles")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(6, "feet"),
  12986. weight: math.unit(150, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/isaac/front.svg",
  12990. extra: 896 / 815,
  12991. bottom: 0.11
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Human Size",
  12998. height: math.unit(8, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Macro",
  13003. height: math.unit(400, "feet")
  13004. },
  13005. {
  13006. name: "Megamacro",
  13007. height: math.unit(50, "miles")
  13008. },
  13009. {
  13010. name: "Canon Height",
  13011. height: math.unit(200, "AU")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(72, "kg"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/sleekit/front.svg",
  13024. extra: 4693 / 4487,
  13025. bottom: 0.012
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Minimum Height",
  13032. height: math.unit(10, "meters")
  13033. },
  13034. {
  13035. name: "Smaller",
  13036. height: math.unit(25, "meters")
  13037. },
  13038. {
  13039. name: "Larger",
  13040. height: math.unit(38, "meters"),
  13041. default: true
  13042. },
  13043. {
  13044. name: "Maximum height",
  13045. height: math.unit(100, "meters")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(150, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/nillia/front.svg",
  13058. extra: 2195 / 2037,
  13059. bottom: 0.005
  13060. }
  13061. },
  13062. back: {
  13063. height: math.unit(6, "feet"),
  13064. weight: math.unit(150, "lb"),
  13065. name: "Back",
  13066. image: {
  13067. source: "./media/characters/nillia/back.svg",
  13068. extra: 2195 / 2037,
  13069. bottom: 0.005
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Canon Height",
  13076. height: math.unit(489, "feet"),
  13077. default: true
  13078. }
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/mesmyriza/front.svg",
  13090. extra: 2067 / 1784,
  13091. bottom: 0.035
  13092. }
  13093. },
  13094. foot: {
  13095. height: math.unit(6 / (250 / 35), "feet"),
  13096. name: "Foot",
  13097. image: {
  13098. source: "./media/characters/mesmyriza/foot.svg"
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(457, "meters"),
  13106. default: true
  13107. },
  13108. {
  13109. name: "Megamacro",
  13110. height: math.unit(8, "megameters")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13116. {
  13117. front: {
  13118. height: math.unit(6, "feet"),
  13119. weight: math.unit(250, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/saudade/front.svg",
  13123. extra: 1172 / 1139,
  13124. bottom: 0.035
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Micro",
  13131. height: math.unit(3, "inches")
  13132. },
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(6, "feet"),
  13136. default: true
  13137. },
  13138. {
  13139. name: "Macro",
  13140. height: math.unit(50, "feet")
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(2800, "feet")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(5 + 4 / 12, "feet"),
  13153. weight: math.unit(100, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/keireer/front.svg",
  13157. extra: 716 / 666,
  13158. bottom: 0.05
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(5 + 4 / 12, "feet"),
  13166. default: true
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(90, "kg"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/mirja/front.svg",
  13179. extra: 1789 / 1683,
  13180. bottom: 0.05
  13181. }
  13182. },
  13183. frontDressed: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(90, "lb"),
  13186. name: "Front (Dressed)",
  13187. image: {
  13188. source: "./media/characters/mirja/front-dressed.svg",
  13189. extra: 1789 / 1683,
  13190. bottom: 0.05
  13191. }
  13192. },
  13193. back: {
  13194. height: math.unit(6, "feet"),
  13195. weight: math.unit(90, "lb"),
  13196. name: "Back",
  13197. image: {
  13198. source: "./media/characters/mirja/back.svg",
  13199. extra: 953 / 917,
  13200. bottom: 0.017
  13201. }
  13202. },
  13203. },
  13204. [
  13205. {
  13206. name: "\"Incognito\"",
  13207. height: math.unit(3, "meters")
  13208. },
  13209. {
  13210. name: "Strolling Size",
  13211. height: math.unit(15, "km")
  13212. },
  13213. {
  13214. name: "Larger Strolling Size",
  13215. height: math.unit(400, "km")
  13216. },
  13217. {
  13218. name: "Preferred Size",
  13219. height: math.unit(5000, "km")
  13220. },
  13221. {
  13222. name: "True Size",
  13223. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13224. default: true
  13225. },
  13226. ]
  13227. ))
  13228. characterMakers.push(() => makeCharacter(
  13229. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13230. {
  13231. front: {
  13232. height: math.unit(15, "feet"),
  13233. weight: math.unit(880, "kg"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/nightraver/front.svg",
  13237. extra: 2444 / 2160,
  13238. bottom: 0.027
  13239. }
  13240. },
  13241. back: {
  13242. height: math.unit(15, "feet"),
  13243. weight: math.unit(880, "kg"),
  13244. name: "Back",
  13245. image: {
  13246. source: "./media/characters/nightraver/back.svg",
  13247. extra: 2309 / 2180,
  13248. bottom: 0.005
  13249. }
  13250. },
  13251. sole: {
  13252. height: math.unit(2.878, "feet"),
  13253. name: "Sole",
  13254. image: {
  13255. source: "./media/characters/nightraver/sole.svg"
  13256. }
  13257. },
  13258. foot: {
  13259. height: math.unit(2.285, "feet"),
  13260. name: "Foot",
  13261. image: {
  13262. source: "./media/characters/nightraver/foot.svg"
  13263. }
  13264. },
  13265. maw: {
  13266. height: math.unit(2.67, "feet"),
  13267. name: "Maw",
  13268. image: {
  13269. source: "./media/characters/nightraver/maw.svg"
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Micro",
  13276. height: math.unit(1, "cm")
  13277. },
  13278. {
  13279. name: "Normal",
  13280. height: math.unit(15, "feet"),
  13281. default: true
  13282. },
  13283. {
  13284. name: "Macro",
  13285. height: math.unit(300, "feet")
  13286. },
  13287. {
  13288. name: "Megamacro",
  13289. height: math.unit(300, "miles")
  13290. },
  13291. {
  13292. name: "Gigamacro",
  13293. height: math.unit(10000, "miles")
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13299. {
  13300. side: {
  13301. height: math.unit(2, "inches"),
  13302. weight: math.unit(5, "grams"),
  13303. name: "Side",
  13304. image: {
  13305. source: "./media/characters/arc/side.svg"
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Micro",
  13312. height: math.unit(2, "inches"),
  13313. default: true
  13314. },
  13315. ]
  13316. ))
  13317. characterMakers.push(() => makeCharacter(
  13318. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13319. {
  13320. front: {
  13321. height: math.unit(1.1938, "meters"),
  13322. weight: math.unit(54, "kg"),
  13323. name: "Front",
  13324. image: {
  13325. source: "./media/characters/nebula-shahar/front.svg",
  13326. extra: 1642 / 1436,
  13327. bottom: 0.06
  13328. }
  13329. },
  13330. },
  13331. [
  13332. {
  13333. name: "Megamicro",
  13334. height: math.unit(0.3, "mm")
  13335. },
  13336. {
  13337. name: "Micro",
  13338. height: math.unit(3, "cm")
  13339. },
  13340. {
  13341. name: "Normal",
  13342. height: math.unit(138, "cm"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(30, "m")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(5.24, "feet"),
  13356. weight: math.unit(150, "lb"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/shayla/front.svg",
  13360. extra: 1512 / 1414,
  13361. bottom: 0.01
  13362. }
  13363. },
  13364. back: {
  13365. height: math.unit(5.24, "feet"),
  13366. weight: math.unit(150, "lb"),
  13367. name: "Back",
  13368. image: {
  13369. source: "./media/characters/shayla/back.svg",
  13370. extra: 1512 / 1414
  13371. }
  13372. },
  13373. hand: {
  13374. height: math.unit(0.7781496062992126, "feet"),
  13375. name: "Hand",
  13376. image: {
  13377. source: "./media/characters/shayla/hand.svg"
  13378. }
  13379. },
  13380. foot: {
  13381. height: math.unit(1.4206036745406823, "feet"),
  13382. name: "Foot",
  13383. image: {
  13384. source: "./media/characters/shayla/foot.svg"
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Micro",
  13391. height: math.unit(0.32, "feet")
  13392. },
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(5.24, "feet"),
  13396. default: true
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(492.12, "feet")
  13401. },
  13402. {
  13403. name: "Megamacro",
  13404. height: math.unit(186.41, "miles")
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13410. {
  13411. front: {
  13412. height: math.unit(2.2, "m"),
  13413. weight: math.unit(120, "kg"),
  13414. name: "Front",
  13415. image: {
  13416. source: "./media/characters/pia-jr/front.svg",
  13417. extra: 1000 / 970,
  13418. bottom: 0.035
  13419. }
  13420. },
  13421. hand: {
  13422. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13423. name: "Hand",
  13424. image: {
  13425. source: "./media/characters/pia-jr/hand.svg"
  13426. }
  13427. },
  13428. paw: {
  13429. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13430. name: "Paw",
  13431. image: {
  13432. source: "./media/characters/pia-jr/paw.svg"
  13433. }
  13434. },
  13435. },
  13436. [
  13437. {
  13438. name: "Micro",
  13439. height: math.unit(1.2, "cm")
  13440. },
  13441. {
  13442. name: "Normal",
  13443. height: math.unit(2.2, "m"),
  13444. default: true
  13445. },
  13446. {
  13447. name: "Macro",
  13448. height: math.unit(180, "m")
  13449. },
  13450. {
  13451. name: "Megamacro",
  13452. height: math.unit(420, "km")
  13453. },
  13454. ]
  13455. ))
  13456. characterMakers.push(() => makeCharacter(
  13457. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13458. {
  13459. front: {
  13460. height: math.unit(2, "m"),
  13461. weight: math.unit(115, "kg"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/pia-sr/front.svg",
  13465. extra: 760 / 730,
  13466. bottom: 0.015
  13467. }
  13468. },
  13469. back: {
  13470. height: math.unit(2, "m"),
  13471. weight: math.unit(115, "kg"),
  13472. name: "Back",
  13473. image: {
  13474. source: "./media/characters/pia-sr/back.svg",
  13475. extra: 760 / 730,
  13476. bottom: 0.01
  13477. }
  13478. },
  13479. hand: {
  13480. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13481. name: "Hand",
  13482. image: {
  13483. source: "./media/characters/pia-sr/hand.svg"
  13484. }
  13485. },
  13486. foot: {
  13487. height: math.unit(1.83, "feet"),
  13488. name: "Foot",
  13489. image: {
  13490. source: "./media/characters/pia-sr/foot.svg"
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Micro",
  13497. height: math.unit(88, "mm")
  13498. },
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(2, "m"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(200, "m")
  13507. },
  13508. {
  13509. name: "Megamacro",
  13510. height: math.unit(420, "km")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(8 + 2 / 12, "feet"),
  13519. weight: math.unit(300, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/kibibyte/front.svg",
  13523. extra: 2221 / 2098,
  13524. bottom: 0.04
  13525. }
  13526. },
  13527. },
  13528. [
  13529. {
  13530. name: "Normal",
  13531. height: math.unit(8 + 2 / 12, "feet"),
  13532. default: true
  13533. },
  13534. {
  13535. name: "Socialable Macro",
  13536. height: math.unit(50, "feet")
  13537. },
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(300, "feet")
  13541. },
  13542. {
  13543. name: "Megamacro",
  13544. height: math.unit(500, "miles")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(150, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/felix/front.svg",
  13557. extra: 762 / 722,
  13558. bottom: 0.02
  13559. }
  13560. },
  13561. frontClothed: {
  13562. height: math.unit(6, "feet"),
  13563. weight: math.unit(150, "lb"),
  13564. name: "Front (Clothed)",
  13565. image: {
  13566. source: "./media/characters/felix/front-clothed.svg",
  13567. extra: 762 / 722,
  13568. bottom: 0.02
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(6 + 8 / 12, "feet"),
  13576. default: true
  13577. },
  13578. {
  13579. name: "Macro",
  13580. height: math.unit(2600, "feet")
  13581. },
  13582. {
  13583. name: "Megamacro",
  13584. height: math.unit(450, "miles")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(6 + 1 / 12, "feet"),
  13593. weight: math.unit(250, "lb"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/tobo/front.svg",
  13597. extra: 608 / 586,
  13598. bottom: 0.023
  13599. }
  13600. },
  13601. back: {
  13602. height: math.unit(6 + 1 / 12, "feet"),
  13603. weight: math.unit(250, "lb"),
  13604. name: "Back",
  13605. image: {
  13606. source: "./media/characters/tobo/back.svg",
  13607. extra: 608 / 586
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Nano",
  13614. height: math.unit(2, "nm")
  13615. },
  13616. {
  13617. name: "Megamicro",
  13618. height: math.unit(0.1, "mm")
  13619. },
  13620. {
  13621. name: "Micro",
  13622. height: math.unit(1, "inch"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Human-sized",
  13627. height: math.unit(6 + 1 / 12, "feet")
  13628. },
  13629. {
  13630. name: "Macro",
  13631. height: math.unit(250, "feet")
  13632. },
  13633. {
  13634. name: "Megamacro",
  13635. height: math.unit(75, "miles")
  13636. },
  13637. {
  13638. name: "Texas-sized",
  13639. height: math.unit(750, "miles")
  13640. },
  13641. {
  13642. name: "Teramacro",
  13643. height: math.unit(50000, "miles")
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(6, "feet"),
  13652. weight: math.unit(269, "lb"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/danny-kapowsky/front.svg",
  13656. extra: 766 / 736,
  13657. bottom: 0.044
  13658. }
  13659. },
  13660. back: {
  13661. height: math.unit(6, "feet"),
  13662. weight: math.unit(269, "lb"),
  13663. name: "Back",
  13664. image: {
  13665. source: "./media/characters/danny-kapowsky/back.svg",
  13666. extra: 797 / 760,
  13667. bottom: 0.025
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Macro",
  13674. height: math.unit(150, "feet"),
  13675. default: true
  13676. },
  13677. {
  13678. name: "Macro+",
  13679. height: math.unit(200, "feet")
  13680. },
  13681. {
  13682. name: "Macro++",
  13683. height: math.unit(300, "feet")
  13684. },
  13685. {
  13686. name: "Macro+++",
  13687. height: math.unit(400, "feet")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13693. {
  13694. side: {
  13695. height: math.unit(6, "feet"),
  13696. weight: math.unit(170, "lb"),
  13697. name: "Side",
  13698. image: {
  13699. source: "./media/characters/finn/side.svg",
  13700. extra: 1953 / 1807,
  13701. bottom: 0.057
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Megamacro",
  13708. height: math.unit(14445, "feet"),
  13709. default: true
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13715. {
  13716. front: {
  13717. height: math.unit(5 + 6 / 12, "feet"),
  13718. weight: math.unit(125, "lb"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/roy/front.svg",
  13722. extra: 1,
  13723. bottom: 0.11
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Micro",
  13730. height: math.unit(3, "inches"),
  13731. default: true
  13732. },
  13733. {
  13734. name: "Normal",
  13735. height: math.unit(5 + 6 / 12, "feet")
  13736. },
  13737. {
  13738. name: "Lesser Macro",
  13739. height: math.unit(60, "feet")
  13740. },
  13741. {
  13742. name: "Greater Macro",
  13743. height: math.unit(120, "feet")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(100, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/aevsivs/front.svg",
  13756. extra: 1,
  13757. bottom: 0.03
  13758. }
  13759. },
  13760. back: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(100, "lb"),
  13763. name: "Back",
  13764. image: {
  13765. source: "./media/characters/aevsivs/back.svg"
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Micro",
  13772. height: math.unit(2, "inches"),
  13773. default: true
  13774. },
  13775. {
  13776. name: "Normal",
  13777. height: math.unit(5, "feet")
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(5 + 7 / 12, "feet"),
  13786. weight: math.unit(159, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/hildegard/front.svg",
  13790. extra: 312 / 286,
  13791. bottom: 0.005
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Normal",
  13798. height: math.unit(5 + 7 / 12, "feet"),
  13799. default: true
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13805. {
  13806. bernard: {
  13807. height: math.unit(2 + 7 / 12, "feet"),
  13808. weight: math.unit(66, "lb"),
  13809. name: "Bernard",
  13810. rename: true,
  13811. image: {
  13812. source: "./media/characters/bernard-wilder/bernard.svg",
  13813. extra: 192 / 128,
  13814. bottom: 0.05
  13815. }
  13816. },
  13817. wilder: {
  13818. height: math.unit(5 + 8 / 12, "feet"),
  13819. weight: math.unit(143, "lb"),
  13820. name: "Wilder",
  13821. rename: true,
  13822. image: {
  13823. source: "./media/characters/bernard-wilder/wilder.svg",
  13824. extra: 361 / 312,
  13825. bottom: 0.02
  13826. }
  13827. },
  13828. },
  13829. [
  13830. {
  13831. name: "Normal",
  13832. height: math.unit(2 + 7 / 12, "feet"),
  13833. default: true
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13839. {
  13840. anthro: {
  13841. height: math.unit(6 + 1 / 12, "feet"),
  13842. weight: math.unit(155, "lb"),
  13843. name: "Anthro",
  13844. image: {
  13845. source: "./media/characters/hearth/anthro.svg",
  13846. extra: 260 / 250,
  13847. bottom: 0.02
  13848. }
  13849. },
  13850. feral: {
  13851. height: math.unit(3.78, "feet"),
  13852. weight: math.unit(35, "kg"),
  13853. name: "Feral",
  13854. image: {
  13855. source: "./media/characters/hearth/feral.svg",
  13856. extra: 153 / 135,
  13857. bottom: 0.03
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Normal",
  13864. height: math.unit(6 + 1 / 12, "feet"),
  13865. default: true
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(182, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/ingrid/front.svg",
  13878. extra: 294 / 268,
  13879. bottom: 0.027
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Normal",
  13886. height: math.unit(6, "feet"),
  13887. default: true
  13888. },
  13889. ]
  13890. ))
  13891. characterMakers.push(() => makeCharacter(
  13892. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13893. {
  13894. eevee: {
  13895. height: math.unit(2 + 10 / 12, "feet"),
  13896. weight: math.unit(86, "lb"),
  13897. name: "Malgam",
  13898. image: {
  13899. source: "./media/characters/malgam/eevee.svg",
  13900. extra: 218 / 180,
  13901. bottom: 0.2
  13902. }
  13903. },
  13904. sylveon: {
  13905. height: math.unit(4, "feet"),
  13906. weight: math.unit(101, "lb"),
  13907. name: "Future Malgam",
  13908. rename: true,
  13909. image: {
  13910. source: "./media/characters/malgam/sylveon.svg",
  13911. extra: 371 / 325,
  13912. bottom: 0.015
  13913. }
  13914. },
  13915. gigantamax: {
  13916. height: math.unit(50, "feet"),
  13917. name: "Gigantamax Malgam",
  13918. rename: true,
  13919. image: {
  13920. source: "./media/characters/malgam/gigantamax.svg"
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Normal",
  13927. height: math.unit(2 + 10 / 12, "feet"),
  13928. default: true
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13934. {
  13935. front: {
  13936. height: math.unit(5 + 11 / 12, "feet"),
  13937. weight: math.unit(188, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/fleur/front.svg",
  13941. extra: 309 / 283,
  13942. bottom: 0.007
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(5 + 11 / 12, "feet"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(5 + 4 / 12, "feet"),
  13959. weight: math.unit(122, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/jude/front.svg",
  13963. extra: 288 / 273,
  13964. bottom: 0.03
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(5 + 4 / 12, "feet"),
  13972. default: true
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(5 + 11 / 12, "feet"),
  13981. weight: math.unit(190, "lb"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/seara/front.svg",
  13985. extra: 1,
  13986. bottom: 0.05
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Normal",
  13993. height: math.unit(5 + 11 / 12, "feet"),
  13994. default: true
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(16 + 5 / 12, "feet"),
  14003. weight: math.unit(524, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/caspian/front.svg",
  14007. extra: 1,
  14008. bottom: 0.04
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Normal",
  14015. height: math.unit(16 + 5 / 12, "feet"),
  14016. default: true
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14022. {
  14023. front: {
  14024. height: math.unit(5 + 7 / 12, "feet"),
  14025. weight: math.unit(170, "lb"),
  14026. name: "Front",
  14027. image: {
  14028. source: "./media/characters/mika/front.svg",
  14029. extra: 1,
  14030. bottom: 0.016
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Normal",
  14037. height: math.unit(5 + 7 / 12, "feet"),
  14038. default: true
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14044. {
  14045. front: {
  14046. height: math.unit(6 + 2 / 12, "feet"),
  14047. weight: math.unit(268, "lb"),
  14048. name: "Front",
  14049. image: {
  14050. source: "./media/characters/sol/front.svg",
  14051. extra: 247 / 231,
  14052. bottom: 0.05
  14053. }
  14054. },
  14055. },
  14056. [
  14057. {
  14058. name: "Normal",
  14059. height: math.unit(6 + 2 / 12, "feet"),
  14060. default: true
  14061. },
  14062. ]
  14063. ))
  14064. characterMakers.push(() => makeCharacter(
  14065. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14066. {
  14067. buizel: {
  14068. height: math.unit(2 + 5 / 12, "feet"),
  14069. weight: math.unit(87, "lb"),
  14070. name: "Buizel",
  14071. image: {
  14072. source: "./media/characters/umiko/buizel.svg",
  14073. extra: 172 / 157,
  14074. bottom: 0.01
  14075. }
  14076. },
  14077. floatzel: {
  14078. height: math.unit(5 + 9 / 12, "feet"),
  14079. weight: math.unit(250, "lb"),
  14080. name: "Floatzel",
  14081. image: {
  14082. source: "./media/characters/umiko/floatzel.svg",
  14083. extra: 262 / 248
  14084. }
  14085. },
  14086. },
  14087. [
  14088. {
  14089. name: "Normal",
  14090. height: math.unit(2 + 5 / 12, "feet"),
  14091. default: true
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(6 + 2 / 12, "feet"),
  14100. weight: math.unit(146, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/iliac/front.svg",
  14104. extra: 389 / 365,
  14105. bottom: 0.035
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(6 + 2 / 12, "feet"),
  14113. default: true
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14119. {
  14120. front: {
  14121. height: math.unit(6, "feet"),
  14122. weight: math.unit(170, "lb"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/topaz/front.svg",
  14126. extra: 317 / 303,
  14127. bottom: 0.055
  14128. }
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Normal",
  14134. height: math.unit(6, "feet"),
  14135. default: true
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(5 + 11 / 12, "feet"),
  14144. weight: math.unit(144, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/gabriel/front.svg",
  14148. extra: 285 / 262,
  14149. bottom: 0.004
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(5 + 11 / 12, "feet"),
  14157. default: true
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14163. {
  14164. side: {
  14165. height: math.unit(6 + 5 / 12, "feet"),
  14166. weight: math.unit(300, "lb"),
  14167. name: "Side",
  14168. image: {
  14169. source: "./media/characters/tempest-suicune/side.svg",
  14170. extra: 195 / 154,
  14171. bottom: 0.04
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(6 + 5 / 12, "feet"),
  14179. default: true
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(7 + 2 / 12, "feet"),
  14188. weight: math.unit(322, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/vulcan/front.svg",
  14192. extra: 154 / 147,
  14193. bottom: 0.04
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(7 + 2 / 12, "feet"),
  14201. default: true
  14202. },
  14203. ]
  14204. ))
  14205. characterMakers.push(() => makeCharacter(
  14206. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14207. {
  14208. front: {
  14209. height: math.unit(5 + 10 / 12, "feet"),
  14210. weight: math.unit(264, "lb"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/gault/front.svg",
  14214. extra: 161 / 140,
  14215. bottom: 0.028
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Normal",
  14222. height: math.unit(5 + 10 / 12, "feet"),
  14223. default: true
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14229. {
  14230. front: {
  14231. height: math.unit(6, "feet"),
  14232. weight: math.unit(150, "lb"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/shard/front.svg",
  14236. extra: 273 / 238,
  14237. bottom: 0.02
  14238. }
  14239. },
  14240. },
  14241. [
  14242. {
  14243. name: "Normal",
  14244. height: math.unit(3 + 6 / 12, "feet"),
  14245. default: true
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(5 + 11 / 12, "feet"),
  14254. weight: math.unit(146, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/ashe/front.svg",
  14258. extra: 400 / 373,
  14259. bottom: 0.01
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(5 + 11 / 12, "feet"),
  14267. default: true
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(5 + 5 / 12, "feet"),
  14276. weight: math.unit(135, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/beatrix/front.svg",
  14280. extra: 392 / 379,
  14281. bottom: 0.01
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Normal",
  14288. height: math.unit(6, "feet"),
  14289. default: true
  14290. },
  14291. ]
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(6, "feet"),
  14298. weight: math.unit(150, "lb"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/ignatius/front.svg",
  14302. extra: 245 / 222,
  14303. bottom: 0.01
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(5 + 5 / 12, "feet"),
  14311. default: true
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14317. {
  14318. front: {
  14319. height: math.unit(6 + 2 / 12, "feet"),
  14320. weight: math.unit(138, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/mei-li/front.svg",
  14324. extra: 237 / 229,
  14325. bottom: 0.03
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Normal",
  14332. height: math.unit(6 + 2 / 12, "feet"),
  14333. default: true
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14339. {
  14340. front: {
  14341. height: math.unit(2 + 4 / 12, "feet"),
  14342. weight: math.unit(62, "lb"),
  14343. name: "Front",
  14344. image: {
  14345. source: "./media/characters/puru/front.svg",
  14346. extra: 206 / 149,
  14347. bottom: 0.06
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Normal",
  14354. height: math.unit(2 + 4 / 12, "feet"),
  14355. default: true
  14356. },
  14357. ]
  14358. ))
  14359. characterMakers.push(() => makeCharacter(
  14360. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14361. {
  14362. taur: {
  14363. height: math.unit(11, "feet"),
  14364. weight: math.unit(500, "lb"),
  14365. name: "Taur",
  14366. image: {
  14367. source: "./media/characters/kee/taur.svg",
  14368. extra: 1,
  14369. bottom: 0.04
  14370. }
  14371. },
  14372. },
  14373. [
  14374. {
  14375. name: "Normal",
  14376. height: math.unit(11, "feet"),
  14377. default: true
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14383. {
  14384. anthro: {
  14385. height: math.unit(7, "feet"),
  14386. weight: math.unit(190, "lb"),
  14387. name: "Anthro",
  14388. image: {
  14389. source: "./media/characters/cobalt-dracha/anthro.svg",
  14390. extra: 231 / 225,
  14391. bottom: 0.04
  14392. }
  14393. },
  14394. feral: {
  14395. height: math.unit(9 + 7 / 12, "feet"),
  14396. weight: math.unit(294, "lb"),
  14397. name: "Feral",
  14398. image: {
  14399. source: "./media/characters/cobalt-dracha/feral.svg",
  14400. extra: 692 / 633,
  14401. bottom: 0.05
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(7, "feet"),
  14409. default: true
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14415. {
  14416. fallen: {
  14417. height: math.unit(11 + 8 / 12, "feet"),
  14418. weight: math.unit(485, "lb"),
  14419. name: "Java (Fallen)",
  14420. rename: true,
  14421. image: {
  14422. source: "./media/characters/java/fallen.svg",
  14423. extra: 226 / 208,
  14424. bottom: 0.005
  14425. }
  14426. },
  14427. godkin: {
  14428. height: math.unit(10 + 6 / 12, "feet"),
  14429. weight: math.unit(328, "lb"),
  14430. name: "Java (Godkin)",
  14431. rename: true,
  14432. image: {
  14433. source: "./media/characters/java/godkin.svg",
  14434. extra: 270 / 262,
  14435. bottom: 0.02
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(11 + 8 / 12, "feet"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14449. {
  14450. front: {
  14451. height: math.unit(7 + 8 / 12, "feet"),
  14452. weight: math.unit(320, "lb"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/skoll/front.svg",
  14456. extra: 232 / 220,
  14457. bottom: 0.02
  14458. }
  14459. },
  14460. },
  14461. [
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(7 + 8 / 12, "feet"),
  14465. default: true
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(5 + 9 / 12, "feet"),
  14474. weight: math.unit(170, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/purna/front.svg",
  14478. extra: 239 / 229,
  14479. bottom: 0.01
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(5 + 9 / 12, "feet"),
  14487. default: true
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14493. {
  14494. front: {
  14495. height: math.unit(5 + 9 / 12, "feet"),
  14496. weight: math.unit(142, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/kuva/front.svg",
  14500. extra: 281 / 271,
  14501. bottom: 0.006
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Normal",
  14508. height: math.unit(5 + 9 / 12, "feet"),
  14509. default: true
  14510. },
  14511. ]
  14512. ))
  14513. characterMakers.push(() => makeCharacter(
  14514. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14515. {
  14516. anthro: {
  14517. height: math.unit(9 + 2 / 12, "feet"),
  14518. weight: math.unit(270, "lb"),
  14519. name: "Anthro",
  14520. image: {
  14521. source: "./media/characters/embra/anthro.svg",
  14522. extra: 200 / 187,
  14523. bottom: 0.02
  14524. }
  14525. },
  14526. feral: {
  14527. height: math.unit(18 + 8 / 12, "feet"),
  14528. weight: math.unit(576, "lb"),
  14529. name: "Feral",
  14530. image: {
  14531. source: "./media/characters/embra/feral.svg",
  14532. extra: 152 / 137,
  14533. bottom: 0.037
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(9 + 2 / 12, "feet"),
  14541. default: true
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14547. {
  14548. anthro: {
  14549. height: math.unit(10 + 9 / 12, "feet"),
  14550. weight: math.unit(224, "lb"),
  14551. name: "Anthro",
  14552. image: {
  14553. source: "./media/characters/grottos/anthro.svg",
  14554. extra: 350 / 332,
  14555. bottom: 0.045
  14556. }
  14557. },
  14558. feral: {
  14559. height: math.unit(20 + 7 / 12, "feet"),
  14560. weight: math.unit(629, "lb"),
  14561. name: "Feral",
  14562. image: {
  14563. source: "./media/characters/grottos/feral.svg",
  14564. extra: 207 / 190,
  14565. bottom: 0.05
  14566. }
  14567. },
  14568. },
  14569. [
  14570. {
  14571. name: "Normal",
  14572. height: math.unit(10 + 9 / 12, "feet"),
  14573. default: true
  14574. },
  14575. ]
  14576. ))
  14577. characterMakers.push(() => makeCharacter(
  14578. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14579. {
  14580. anthro: {
  14581. height: math.unit(9 + 6 / 12, "feet"),
  14582. weight: math.unit(298, "lb"),
  14583. name: "Anthro",
  14584. image: {
  14585. source: "./media/characters/frifna/anthro.svg",
  14586. extra: 282 / 269,
  14587. bottom: 0.015
  14588. }
  14589. },
  14590. feral: {
  14591. height: math.unit(16 + 2 / 12, "feet"),
  14592. weight: math.unit(624, "lb"),
  14593. name: "Feral",
  14594. image: {
  14595. source: "./media/characters/frifna/feral.svg"
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Normal",
  14602. height: math.unit(9 + 6 / 12, "feet"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(6 + 2 / 12, "feet"),
  14612. weight: math.unit(168, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/elise/front.svg",
  14616. extra: 276 / 271
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(6 + 2 / 12, "feet"),
  14624. default: true
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(5 + 10 / 12, "feet"),
  14633. weight: math.unit(210, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/glade/front.svg",
  14637. extra: 258 / 247,
  14638. bottom: 0.008
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Normal",
  14645. height: math.unit(5 + 10 / 12, "feet"),
  14646. default: true
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14652. {
  14653. front: {
  14654. height: math.unit(5 + 10 / 12, "feet"),
  14655. weight: math.unit(129, "lb"),
  14656. name: "Front",
  14657. image: {
  14658. source: "./media/characters/rina/front.svg",
  14659. extra: 266 / 255,
  14660. bottom: 0.005
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Normal",
  14667. height: math.unit(5 + 10 / 12, "feet"),
  14668. default: true
  14669. },
  14670. ]
  14671. ))
  14672. characterMakers.push(() => makeCharacter(
  14673. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14674. {
  14675. front: {
  14676. height: math.unit(6 + 1 / 12, "feet"),
  14677. weight: math.unit(192, "lb"),
  14678. name: "Front",
  14679. image: {
  14680. source: "./media/characters/veronica/front.svg",
  14681. extra: 319 / 309,
  14682. bottom: 0.005
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Normal",
  14689. height: math.unit(6 + 1 / 12, "feet"),
  14690. default: true
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(9 + 3 / 12, "feet"),
  14699. weight: math.unit(1100, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/braxton/front.svg",
  14703. extra: 1057 / 984,
  14704. bottom: 0.05
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(9 + 3 / 12, "feet")
  14712. },
  14713. {
  14714. name: "Giant",
  14715. height: math.unit(300, "feet"),
  14716. default: true
  14717. },
  14718. {
  14719. name: "Macro",
  14720. height: math.unit(700, "feet")
  14721. },
  14722. {
  14723. name: "Megamacro",
  14724. height: math.unit(6000, "feet")
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(6 + 7 / 12, "feet"),
  14733. weight: math.unit(150, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/blue-feyonics/front.svg",
  14737. extra: 1403 / 1306,
  14738. bottom: 0.047
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(6 + 7 / 12, "feet"),
  14746. default: true
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(1.8, "meters"),
  14755. weight: math.unit(60, "kg"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/maxwell/front.svg",
  14759. extra: 2060 / 1873
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Micro",
  14766. height: math.unit(1, "mm")
  14767. },
  14768. {
  14769. name: "Normal",
  14770. height: math.unit(1.8, "meter"),
  14771. default: true
  14772. },
  14773. {
  14774. name: "Macro",
  14775. height: math.unit(30, "meters")
  14776. },
  14777. {
  14778. name: "Megamacro",
  14779. height: math.unit(10, "km")
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(6, "feet"),
  14788. weight: math.unit(150, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/jack/front.svg",
  14792. extra: 1754 / 1640,
  14793. bottom: 0.01
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(80000, "feet"),
  14801. default: true
  14802. },
  14803. {
  14804. name: "Max size",
  14805. height: math.unit(10, "lightyears")
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14811. {
  14812. upright: {
  14813. height: math.unit(7, "feet"),
  14814. weight: math.unit(170, "lb"),
  14815. name: "Upright",
  14816. image: {
  14817. source: "./media/characters/cafat/upright.svg",
  14818. bottom: 0.01
  14819. }
  14820. },
  14821. uprightFull: {
  14822. height: math.unit(7, "feet"),
  14823. weight: math.unit(170, "lb"),
  14824. name: "Upright (Full)",
  14825. image: {
  14826. source: "./media/characters/cafat/upright-full.svg",
  14827. bottom: 0.01
  14828. }
  14829. },
  14830. side: {
  14831. height: math.unit(5, "feet"),
  14832. weight: math.unit(150, "lb"),
  14833. name: "Side",
  14834. image: {
  14835. source: "./media/characters/cafat/side.svg"
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Small",
  14842. height: math.unit(7, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Large",
  14847. height: math.unit(15.5, "feet")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(150, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/verin-raharra/front.svg",
  14860. extra: 5019 / 4835,
  14861. bottom: 0.023
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(7 + 5 / 12, "feet"),
  14869. default: true
  14870. },
  14871. {
  14872. name: "Upsized",
  14873. height: math.unit(20, "feet")
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14879. {
  14880. front: {
  14881. height: math.unit(7, "feet"),
  14882. weight: math.unit(230, "lb"),
  14883. name: "Front",
  14884. image: {
  14885. source: "./media/characters/nakata/front.svg",
  14886. extra: 1.005,
  14887. bottom: 0.01
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(7, "feet"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Big",
  14899. height: math.unit(14, "feet")
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(400, "feet")
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(4.91, "feet"),
  14912. weight: math.unit(100, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/lily/front.svg",
  14916. extra: 1585 / 1415,
  14917. bottom: 0.02
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Normal",
  14924. height: math.unit(4.91, "feet"),
  14925. default: true
  14926. },
  14927. ]
  14928. ))
  14929. characterMakers.push(() => makeCharacter(
  14930. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14931. {
  14932. laying: {
  14933. height: math.unit(4 + 4 / 12, "feet"),
  14934. weight: math.unit(600, "lb"),
  14935. name: "Laying",
  14936. image: {
  14937. source: "./media/characters/sheila/laying.svg",
  14938. extra: 1333 / 1265,
  14939. bottom: 0.16
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(4 + 4 / 12, "feet"),
  14947. default: true
  14948. },
  14949. ]
  14950. ))
  14951. characterMakers.push(() => makeCharacter(
  14952. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14953. {
  14954. front: {
  14955. height: math.unit(6, "feet"),
  14956. weight: math.unit(190, "lb"),
  14957. name: "Front",
  14958. image: {
  14959. source: "./media/characters/sax/front.svg",
  14960. extra: 1187 / 973,
  14961. bottom: 0.042
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Micro",
  14968. height: math.unit(4, "inches"),
  14969. default: true
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(150, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/pandora/front.svg",
  14982. extra: 2720 / 2556,
  14983. bottom: 0.015
  14984. }
  14985. },
  14986. back: {
  14987. height: math.unit(6, "feet"),
  14988. weight: math.unit(150, "lb"),
  14989. name: "Back",
  14990. image: {
  14991. source: "./media/characters/pandora/back.svg",
  14992. extra: 2720 / 2556,
  14993. bottom: 0.01
  14994. }
  14995. },
  14996. beans: {
  14997. height: math.unit(6 / 8, "feet"),
  14998. name: "Beans",
  14999. image: {
  15000. source: "./media/characters/pandora/beans.svg"
  15001. }
  15002. },
  15003. skirt: {
  15004. height: math.unit(6, "feet"),
  15005. weight: math.unit(150, "lb"),
  15006. name: "Skirt",
  15007. image: {
  15008. source: "./media/characters/pandora/skirt.svg",
  15009. extra: 1622 / 1525,
  15010. bottom: 0.015
  15011. }
  15012. },
  15013. hoodie: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(150, "lb"),
  15016. name: "Hoodie",
  15017. image: {
  15018. source: "./media/characters/pandora/hoodie.svg",
  15019. extra: 1622 / 1525,
  15020. bottom: 0.015
  15021. }
  15022. },
  15023. casual: {
  15024. height: math.unit(6, "feet"),
  15025. weight: math.unit(150, "lb"),
  15026. name: "Casual",
  15027. image: {
  15028. source: "./media/characters/pandora/casual.svg",
  15029. extra: 1622 / 1525,
  15030. bottom: 0.015
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(6, "feet")
  15038. },
  15039. {
  15040. name: "Big Steppy",
  15041. height: math.unit(1, "km"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15048. {
  15049. side: {
  15050. height: math.unit(10, "feet"),
  15051. weight: math.unit(800, "kg"),
  15052. name: "Side",
  15053. image: {
  15054. source: "./media/characters/venio-darcony/side.svg",
  15055. extra: 1373 / 1003,
  15056. bottom: 0.037
  15057. }
  15058. },
  15059. front: {
  15060. height: math.unit(19, "feet"),
  15061. weight: math.unit(800, "kg"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/venio-darcony/front.svg"
  15065. }
  15066. },
  15067. back: {
  15068. height: math.unit(19, "feet"),
  15069. weight: math.unit(800, "kg"),
  15070. name: "Back",
  15071. image: {
  15072. source: "./media/characters/venio-darcony/back.svg"
  15073. }
  15074. },
  15075. sideNsfw: {
  15076. height: math.unit(10, "feet"),
  15077. weight: math.unit(800, "kg"),
  15078. name: "Side (NSFW)",
  15079. image: {
  15080. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15081. extra: 1373 / 1003,
  15082. bottom: 0.037
  15083. }
  15084. },
  15085. frontNsfw: {
  15086. height: math.unit(19, "feet"),
  15087. weight: math.unit(800, "kg"),
  15088. name: "Front (NSFW)",
  15089. image: {
  15090. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15091. }
  15092. },
  15093. backNsfw: {
  15094. height: math.unit(19, "feet"),
  15095. weight: math.unit(800, "kg"),
  15096. name: "Back (NSFW)",
  15097. image: {
  15098. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15099. }
  15100. },
  15101. sideArmored: {
  15102. height: math.unit(10, "feet"),
  15103. weight: math.unit(800, "kg"),
  15104. name: "Side (Armored)",
  15105. image: {
  15106. source: "./media/characters/venio-darcony/side-armored.svg",
  15107. extra: 1373 / 1003,
  15108. bottom: 0.037
  15109. }
  15110. },
  15111. frontArmored: {
  15112. height: math.unit(19, "feet"),
  15113. weight: math.unit(900, "kg"),
  15114. name: "Front (Armored)",
  15115. image: {
  15116. source: "./media/characters/venio-darcony/front-armored.svg"
  15117. }
  15118. },
  15119. backArmored: {
  15120. height: math.unit(19, "feet"),
  15121. weight: math.unit(900, "kg"),
  15122. name: "Back (Armored)",
  15123. image: {
  15124. source: "./media/characters/venio-darcony/back-armored.svg"
  15125. }
  15126. },
  15127. sword: {
  15128. height: math.unit(10, "feet"),
  15129. weight: math.unit(50, "lb"),
  15130. name: "Sword",
  15131. image: {
  15132. source: "./media/characters/venio-darcony/sword.svg"
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(10, "feet")
  15140. },
  15141. {
  15142. name: "Macro",
  15143. height: math.unit(130, "feet"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Macro+",
  15148. height: math.unit(240, "feet")
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(150, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/veski/front.svg",
  15161. extra: 1299 / 1225,
  15162. bottom: 0.04
  15163. }
  15164. },
  15165. back: {
  15166. height: math.unit(6, "feet"),
  15167. weight: math.unit(150, "lb"),
  15168. name: "Back",
  15169. image: {
  15170. source: "./media/characters/veski/back.svg",
  15171. extra: 1299 / 1225,
  15172. bottom: 0.008
  15173. }
  15174. },
  15175. maw: {
  15176. height: math.unit(1.5 * 1.21, "feet"),
  15177. name: "Maw",
  15178. image: {
  15179. source: "./media/characters/veski/maw.svg"
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Macro",
  15186. height: math.unit(2, "km"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(5 + 7 / 12, "feet"),
  15196. name: "Front",
  15197. image: {
  15198. source: "./media/characters/isabelle/front.svg",
  15199. extra: 2130 / 1976,
  15200. bottom: 0.05
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Supermicro",
  15207. height: math.unit(10, "micrometers")
  15208. },
  15209. {
  15210. name: "Micro",
  15211. height: math.unit(1, "inch")
  15212. },
  15213. {
  15214. name: "Tiny",
  15215. height: math.unit(5, "inches")
  15216. },
  15217. {
  15218. name: "Standard",
  15219. height: math.unit(5 + 7 / 12, "inches")
  15220. },
  15221. {
  15222. name: "Macro",
  15223. height: math.unit(80, "meters"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Megamacro",
  15228. height: math.unit(250, "meters")
  15229. },
  15230. {
  15231. name: "Gigamacro",
  15232. height: math.unit(5, "km")
  15233. },
  15234. {
  15235. name: "Cosmic",
  15236. height: math.unit(2.5e6, "miles")
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/hanzo/front.svg",
  15249. extra: 374 / 344,
  15250. bottom: 0.02
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(8, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15264. {
  15265. front: {
  15266. height: math.unit(7, "feet"),
  15267. weight: math.unit(130, "lb"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/anna/front.svg",
  15271. extra: 169 / 145,
  15272. bottom: 0.06
  15273. }
  15274. },
  15275. full: {
  15276. height: math.unit(4.96, "feet"),
  15277. weight: math.unit(220, "lb"),
  15278. name: "Full",
  15279. image: {
  15280. source: "./media/characters/anna/full.svg",
  15281. extra: 138 / 114,
  15282. bottom: 0.15
  15283. }
  15284. },
  15285. tongue: {
  15286. height: math.unit(2.53, "feet"),
  15287. name: "Tongue",
  15288. image: {
  15289. source: "./media/characters/anna/tongue.svg"
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(7, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(7, "feet"),
  15306. weight: math.unit(150, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/ian-corvid/front.svg",
  15310. extra: 150 / 142,
  15311. bottom: 0.02
  15312. }
  15313. },
  15314. back: {
  15315. height: math.unit(7, "feet"),
  15316. weight: math.unit(150, "lb"),
  15317. name: "Back",
  15318. image: {
  15319. source: "./media/characters/ian-corvid/back.svg",
  15320. extra: 150 / 143,
  15321. bottom: 0.01
  15322. }
  15323. },
  15324. stomping: {
  15325. height: math.unit(7, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Stomping",
  15328. image: {
  15329. source: "./media/characters/ian-corvid/stomping.svg",
  15330. extra: 76 / 72
  15331. }
  15332. },
  15333. sitting: {
  15334. height: math.unit(7 / 1.8, "feet"),
  15335. weight: math.unit(150, "lb"),
  15336. name: "Sitting",
  15337. image: {
  15338. source: "./media/characters/ian-corvid/sitting.svg",
  15339. extra: 1400 / 1269,
  15340. bottom: 0.15
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Tiny Microw",
  15347. height: math.unit(1, "inch")
  15348. },
  15349. {
  15350. name: "Microw",
  15351. height: math.unit(6, "inches")
  15352. },
  15353. {
  15354. name: "Crow",
  15355. height: math.unit(7 + 1 / 12, "feet"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Macrow",
  15360. height: math.unit(176, "feet")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(5 + 7 / 12, "feet"),
  15369. weight: math.unit(147, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/natalie-kellon/front.svg",
  15373. extra: 1214 / 1141,
  15374. bottom: 0.02
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Micro",
  15381. height: math.unit(1 / 16, "inch")
  15382. },
  15383. {
  15384. name: "Tiny",
  15385. height: math.unit(4, "inches")
  15386. },
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(5 + 7 / 12, "feet"),
  15390. default: true
  15391. },
  15392. {
  15393. name: "Amazon",
  15394. height: math.unit(12, "feet")
  15395. },
  15396. {
  15397. name: "Giantess",
  15398. height: math.unit(160, "meters")
  15399. },
  15400. {
  15401. name: "Titaness",
  15402. height: math.unit(800, "meters")
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15408. {
  15409. front: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(150, "lb"),
  15412. name: "Front",
  15413. image: {
  15414. source: "./media/characters/alluria/front.svg",
  15415. extra: 806 / 738,
  15416. bottom: 0.01
  15417. }
  15418. },
  15419. side: {
  15420. height: math.unit(6, "feet"),
  15421. weight: math.unit(150, "lb"),
  15422. name: "Side",
  15423. image: {
  15424. source: "./media/characters/alluria/side.svg",
  15425. extra: 800 / 750,
  15426. }
  15427. },
  15428. back: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Back",
  15432. image: {
  15433. source: "./media/characters/alluria/back.svg",
  15434. extra: 806 / 738,
  15435. }
  15436. },
  15437. frontMaid: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Front (Maid)",
  15441. image: {
  15442. source: "./media/characters/alluria/front-maid.svg",
  15443. extra: 806 / 738,
  15444. bottom: 0.01
  15445. }
  15446. },
  15447. sideMaid: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Side (Maid)",
  15451. image: {
  15452. source: "./media/characters/alluria/side-maid.svg",
  15453. extra: 800 / 750,
  15454. bottom: 0.005
  15455. }
  15456. },
  15457. backMaid: {
  15458. height: math.unit(6, "feet"),
  15459. weight: math.unit(150, "lb"),
  15460. name: "Back (Maid)",
  15461. image: {
  15462. source: "./media/characters/alluria/back-maid.svg",
  15463. extra: 806 / 738,
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Micro",
  15470. height: math.unit(6, "inches"),
  15471. default: true
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(6, "feet"),
  15480. weight: math.unit(150, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/kyle/front.svg",
  15484. extra: 1069 / 962,
  15485. bottom: 77.228 / 1727.45
  15486. }
  15487. },
  15488. },
  15489. [
  15490. {
  15491. name: "Macro",
  15492. height: math.unit(150, "feet"),
  15493. default: true
  15494. },
  15495. ]
  15496. ))
  15497. characterMakers.push(() => makeCharacter(
  15498. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15499. {
  15500. front: {
  15501. height: math.unit(6, "feet"),
  15502. weight: math.unit(300, "lb"),
  15503. name: "Front",
  15504. image: {
  15505. source: "./media/characters/duncan/front.svg",
  15506. extra: 1650 / 1482,
  15507. bottom: 0.05
  15508. }
  15509. },
  15510. },
  15511. [
  15512. {
  15513. name: "Macro",
  15514. height: math.unit(100, "feet"),
  15515. default: true
  15516. },
  15517. ]
  15518. ))
  15519. characterMakers.push(() => makeCharacter(
  15520. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15521. {
  15522. front: {
  15523. height: math.unit(5 + 4 / 12, "feet"),
  15524. weight: math.unit(220, "lb"),
  15525. name: "Front",
  15526. image: {
  15527. source: "./media/characters/memory/front.svg",
  15528. extra: 3641 / 3545,
  15529. bottom: 0.03
  15530. }
  15531. },
  15532. back: {
  15533. height: math.unit(5 + 4 / 12, "feet"),
  15534. weight: math.unit(220, "lb"),
  15535. name: "Back",
  15536. image: {
  15537. source: "./media/characters/memory/back.svg",
  15538. extra: 3641 / 3545,
  15539. bottom: 0.025
  15540. }
  15541. },
  15542. frontSkirt: {
  15543. height: math.unit(5 + 4 / 12, "feet"),
  15544. weight: math.unit(220, "lb"),
  15545. name: "Front (Skirt)",
  15546. image: {
  15547. source: "./media/characters/memory/front-skirt.svg",
  15548. extra: 3641 / 3545,
  15549. bottom: 0.03
  15550. }
  15551. },
  15552. frontDress: {
  15553. height: math.unit(5 + 4 / 12, "feet"),
  15554. weight: math.unit(220, "lb"),
  15555. name: "Front (Dress)",
  15556. image: {
  15557. source: "./media/characters/memory/front-dress.svg",
  15558. extra: 3641 / 3545,
  15559. bottom: 0.03
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Micro",
  15566. height: math.unit(6, "inches"),
  15567. default: true
  15568. },
  15569. {
  15570. name: "Normal",
  15571. height: math.unit(5 + 4 / 12, "feet")
  15572. },
  15573. ]
  15574. ))
  15575. characterMakers.push(() => makeCharacter(
  15576. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15577. {
  15578. front: {
  15579. height: math.unit(4 + 11 / 12, "feet"),
  15580. weight: math.unit(100, "lb"),
  15581. name: "Front",
  15582. image: {
  15583. source: "./media/characters/luno/front.svg",
  15584. extra: 1535 / 1487,
  15585. bottom: 0.03
  15586. }
  15587. },
  15588. },
  15589. [
  15590. {
  15591. name: "Micro",
  15592. height: math.unit(3, "inches")
  15593. },
  15594. {
  15595. name: "Normal",
  15596. height: math.unit(4 + 11 / 12, "feet"),
  15597. default: true
  15598. },
  15599. {
  15600. name: "Macro",
  15601. height: math.unit(300, "feet")
  15602. },
  15603. {
  15604. name: "Megamacro",
  15605. height: math.unit(700, "miles")
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15611. {
  15612. front: {
  15613. height: math.unit(6 + 2 / 12, "feet"),
  15614. weight: math.unit(170, "lb"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/jamesy/front.svg",
  15618. extra: 440 / 382,
  15619. bottom: 0.005
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Micro",
  15626. height: math.unit(3, "inches")
  15627. },
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(6 + 2 / 12, "feet"),
  15631. default: true
  15632. },
  15633. {
  15634. name: "Macro",
  15635. height: math.unit(300, "feet")
  15636. },
  15637. {
  15638. name: "Megamacro",
  15639. height: math.unit(700, "miles")
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15645. {
  15646. front: {
  15647. height: math.unit(6, "feet"),
  15648. weight: math.unit(160, "lb"),
  15649. name: "Front",
  15650. image: {
  15651. source: "./media/characters/mark/front.svg",
  15652. extra: 3300 / 3100,
  15653. bottom: 136.42 / 3440.47
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Macro",
  15660. height: math.unit(120, "meters")
  15661. },
  15662. {
  15663. name: "Bigger Macro",
  15664. height: math.unit(350, "meters")
  15665. },
  15666. {
  15667. name: "Megamacro",
  15668. height: math.unit(8, "km"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Continental",
  15673. height: math.unit(4550, "km")
  15674. },
  15675. {
  15676. name: "Planetary",
  15677. height: math.unit(65000, "km")
  15678. },
  15679. ]
  15680. ))
  15681. characterMakers.push(() => makeCharacter(
  15682. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15683. {
  15684. front: {
  15685. height: math.unit(6, "feet"),
  15686. weight: math.unit(400, "lb"),
  15687. name: "Front",
  15688. image: {
  15689. source: "./media/characters/mac/front.svg",
  15690. extra: 1048 / 987.7,
  15691. bottom: 60 / 1107.6,
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Macro",
  15698. height: math.unit(500, "feet"),
  15699. default: true
  15700. },
  15701. ]
  15702. ))
  15703. characterMakers.push(() => makeCharacter(
  15704. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15705. {
  15706. front: {
  15707. height: math.unit(5 + 2 / 12, "feet"),
  15708. weight: math.unit(190, "lb"),
  15709. name: "Front",
  15710. image: {
  15711. source: "./media/characters/bari/front.svg",
  15712. extra: 3156 / 2880,
  15713. bottom: 0.03
  15714. }
  15715. },
  15716. back: {
  15717. height: math.unit(5 + 2 / 12, "feet"),
  15718. weight: math.unit(190, "lb"),
  15719. name: "Back",
  15720. image: {
  15721. source: "./media/characters/bari/back.svg",
  15722. extra: 3260 / 2834,
  15723. bottom: 0.025
  15724. }
  15725. },
  15726. frontPlush: {
  15727. height: math.unit(5 + 2 / 12, "feet"),
  15728. weight: math.unit(190, "lb"),
  15729. name: "Front (Plush)",
  15730. image: {
  15731. source: "./media/characters/bari/front-plush.svg",
  15732. extra: 1112 / 1061,
  15733. bottom: 0.002
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Micro",
  15740. height: math.unit(3, "inches")
  15741. },
  15742. {
  15743. name: "Normal",
  15744. height: math.unit(5 + 2 / 12, "feet"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Macro",
  15749. height: math.unit(20, "feet")
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(6 + 1 / 12, "feet"),
  15758. weight: math.unit(275, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/hunter-misha-raven/front.svg"
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Mortal",
  15768. height: math.unit(6 + 1 / 12, "feet")
  15769. },
  15770. {
  15771. name: "Divine",
  15772. height: math.unit(1.12134e34, "parsecs"),
  15773. default: true
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15779. {
  15780. front: {
  15781. height: math.unit(6 + 3 / 12, "feet"),
  15782. weight: math.unit(220, "lb"),
  15783. name: "Front",
  15784. image: {
  15785. source: "./media/characters/max-calore/front.svg",
  15786. extra: 1700 / 1648,
  15787. bottom: 0.01
  15788. }
  15789. },
  15790. back: {
  15791. height: math.unit(6 + 3 / 12, "feet"),
  15792. weight: math.unit(220, "lb"),
  15793. name: "Back",
  15794. image: {
  15795. source: "./media/characters/max-calore/back.svg",
  15796. extra: 1700 / 1648,
  15797. bottom: 0.01
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(6 + 3 / 12, "feet"),
  15805. default: true
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15811. {
  15812. side: {
  15813. height: math.unit(2 + 8 / 12, "feet"),
  15814. weight: math.unit(99, "lb"),
  15815. name: "Side",
  15816. image: {
  15817. source: "./media/characters/aspen/side.svg",
  15818. extra: 152 / 138,
  15819. bottom: 0.032
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(2 + 8 / 12, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15833. {
  15834. side: {
  15835. height: math.unit(3 + 2 / 12, "feet"),
  15836. weight: math.unit(224, "lb"),
  15837. name: "Side",
  15838. image: {
  15839. source: "./media/characters/sheila-feral-wolf/side.svg",
  15840. extra: 179 / 166,
  15841. bottom: 0.03
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(3 + 2 / 12, "feet"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15855. {
  15856. side: {
  15857. height: math.unit(1 + 9 / 12, "feet"),
  15858. weight: math.unit(38, "lb"),
  15859. name: "Side",
  15860. image: {
  15861. source: "./media/characters/michelle/side.svg",
  15862. extra: 147 / 136.7,
  15863. bottom: 0.03
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(1 + 9 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(1 + 1 / 12, "feet"),
  15880. weight: math.unit(18, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/nino/front.svg"
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(1 + 1 / 12, "feet"),
  15891. default: true
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(1, "feet"),
  15900. weight: math.unit(16, "lb"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/viola/front.svg"
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(1, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(6 + 5 / 12, "feet"),
  15920. weight: math.unit(580, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/atlas/front.svg",
  15924. extra: 298.5 / 290,
  15925. bottom: 0.015
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Normal",
  15932. height: math.unit(6 + 5 / 12, "feet"),
  15933. default: true
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15939. {
  15940. side: {
  15941. height: math.unit(1 + 10 / 12, "feet"),
  15942. weight: math.unit(25, "lb"),
  15943. name: "Side",
  15944. image: {
  15945. source: "./media/characters/davy/side.svg",
  15946. extra: 200 / 170,
  15947. bottom: 0.01
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Normal",
  15954. height: math.unit(1 + 10 / 12, "feet"),
  15955. default: true
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15961. {
  15962. side: {
  15963. height: math.unit(4 + 8 / 12, "feet"),
  15964. weight: math.unit(166, "lb"),
  15965. name: "Side",
  15966. image: {
  15967. source: "./media/characters/fiona/side.svg",
  15968. extra: 232 / 220,
  15969. bottom: 0.03
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(4 + 8 / 12, "feet"),
  15977. default: true
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15983. {
  15984. front: {
  15985. height: math.unit(2, "feet"),
  15986. weight: math.unit(62, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/lyla/front.svg",
  15990. bottom: 0.1
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(2, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16004. {
  16005. side: {
  16006. height: math.unit(1.8, "feet"),
  16007. weight: math.unit(44, "lb"),
  16008. name: "Side",
  16009. image: {
  16010. source: "./media/characters/perseus/side.svg",
  16011. bottom: 0.21
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(1.8, "feet"),
  16019. default: true
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16025. {
  16026. side: {
  16027. height: math.unit(4 + 2 / 12, "feet"),
  16028. weight: math.unit(20, "lb"),
  16029. name: "Side",
  16030. image: {
  16031. source: "./media/characters/remus/side.svg"
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(4 + 2 / 12, "feet"),
  16039. default: true
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(4 + 11 / 12, "feet"),
  16048. weight: math.unit(114, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/raf/front.svg",
  16052. bottom: 0.01
  16053. }
  16054. },
  16055. side: {
  16056. height: math.unit(4 + 11 / 12, "feet"),
  16057. weight: math.unit(114, "lb"),
  16058. name: "Side",
  16059. image: {
  16060. source: "./media/characters/raf/side.svg",
  16061. bottom: 0.005
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Micro",
  16068. height: math.unit(2, "inches")
  16069. },
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(4 + 11 / 12, "feet"),
  16073. default: true
  16074. },
  16075. {
  16076. name: "Macro",
  16077. height: math.unit(70, "feet")
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(1.5, "meters"),
  16086. weight: math.unit(68, "kg"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/liam-einarr/front.svg",
  16090. extra: 2822 / 2666
  16091. }
  16092. },
  16093. back: {
  16094. height: math.unit(1.5, "meters"),
  16095. weight: math.unit(68, "kg"),
  16096. name: "Back",
  16097. image: {
  16098. source: "./media/characters/liam-einarr/back.svg",
  16099. extra: 2822 / 2666,
  16100. bottom: 0.015
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Normal",
  16107. height: math.unit(1.5, "meters"),
  16108. default: true
  16109. },
  16110. {
  16111. name: "Macro",
  16112. height: math.unit(150, "meters")
  16113. },
  16114. {
  16115. name: "Megamacro",
  16116. height: math.unit(35, "km")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(6, "feet"),
  16125. weight: math.unit(75, "kg"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/linda/front.svg",
  16129. extra: 930 / 874,
  16130. bottom: 0.004
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(6, "feet"),
  16138. default: true
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(6 + 8 / 12, "feet"),
  16147. weight: math.unit(220, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/caylex/front.svg",
  16151. extra: 821 / 772,
  16152. bottom: 0.07
  16153. }
  16154. },
  16155. back: {
  16156. height: math.unit(6 + 8 / 12, "feet"),
  16157. weight: math.unit(220, "lb"),
  16158. name: "Back",
  16159. image: {
  16160. source: "./media/characters/caylex/back.svg",
  16161. extra: 821 / 772,
  16162. bottom: 0.022
  16163. }
  16164. },
  16165. hand: {
  16166. height: math.unit(1.25, "feet"),
  16167. name: "Hand",
  16168. image: {
  16169. source: "./media/characters/caylex/hand.svg"
  16170. }
  16171. },
  16172. foot: {
  16173. height: math.unit(1.6, "feet"),
  16174. name: "Foot",
  16175. image: {
  16176. source: "./media/characters/caylex/foot.svg"
  16177. }
  16178. },
  16179. armored: {
  16180. height: math.unit(6 + 8 / 12, "feet"),
  16181. weight: math.unit(250, "lb"),
  16182. name: "Armored",
  16183. image: {
  16184. source: "./media/characters/caylex/armored.svg",
  16185. extra: 1420 / 1310,
  16186. bottom: 0.045
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(6 + 8 / 12, "feet"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Normal+",
  16198. height: math.unit(12, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(7 + 6 / 12, "feet"),
  16207. weight: math.unit(288, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/alana/front.svg",
  16211. extra: 679 / 653,
  16212. bottom: 22.5 / 701
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(7 + 6 / 12, "feet")
  16220. },
  16221. {
  16222. name: "Large",
  16223. height: math.unit(50, "feet")
  16224. },
  16225. {
  16226. name: "Macro",
  16227. height: math.unit(100, "feet"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Macro+",
  16232. height: math.unit(200, "feet")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(6 + 1 / 12, "feet"),
  16241. weight: math.unit(210, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/hasani/front.svg",
  16245. extra: 244 / 232,
  16246. bottom: 0.01
  16247. }
  16248. },
  16249. back: {
  16250. height: math.unit(6 + 1 / 12, "feet"),
  16251. weight: math.unit(210, "lb"),
  16252. name: "Back",
  16253. image: {
  16254. source: "./media/characters/hasani/back.svg",
  16255. extra: 244 / 232,
  16256. bottom: 0.01
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(6 + 1 / 12, "feet")
  16264. },
  16265. {
  16266. name: "Macro",
  16267. height: math.unit(175, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(1.82, "meters"),
  16277. weight: math.unit(140, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/nita/front.svg",
  16281. extra: 2473 / 2363,
  16282. bottom: 0.01
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(1.82, "m")
  16290. },
  16291. {
  16292. name: "Macro",
  16293. height: math.unit(300, "m")
  16294. },
  16295. {
  16296. name: "Mistake Canon",
  16297. height: math.unit(0.5, "miles"),
  16298. default: true
  16299. },
  16300. {
  16301. name: "Big Mistake",
  16302. height: math.unit(13, "miles")
  16303. },
  16304. {
  16305. name: "Playing God",
  16306. height: math.unit(2450, "miles")
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16312. {
  16313. front: {
  16314. height: math.unit(4, "feet"),
  16315. weight: math.unit(120, "lb"),
  16316. name: "Front",
  16317. image: {
  16318. source: "./media/characters/shiriko/front.svg",
  16319. extra: 195 / 188
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(4, "feet"),
  16327. default: true
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(6, "feet"),
  16336. name: "front",
  16337. image: {
  16338. source: "./media/characters/deja/front.svg",
  16339. extra: 926 / 840,
  16340. bottom: 0.07
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Planck Length",
  16347. height: math.unit(1.6e-35, "meters")
  16348. },
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(30.48, "meters"),
  16352. default: true
  16353. },
  16354. {
  16355. name: "Universal",
  16356. height: math.unit(8.8e26, "meters")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16362. {
  16363. side: {
  16364. height: math.unit(8, "feet"),
  16365. weight: math.unit(6300, "lb"),
  16366. name: "Side",
  16367. image: {
  16368. source: "./media/characters/anima/side.svg",
  16369. bottom: 0.035
  16370. }
  16371. },
  16372. },
  16373. [
  16374. {
  16375. name: "Normal",
  16376. height: math.unit(8, "feet"),
  16377. default: true
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(8, "feet"),
  16386. weight: math.unit(350, "lb"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/bianca/front.svg",
  16390. extra: 234 / 225,
  16391. bottom: 0.03
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Normal",
  16398. height: math.unit(8, "feet"),
  16399. default: true
  16400. },
  16401. ]
  16402. ))
  16403. characterMakers.push(() => makeCharacter(
  16404. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16405. {
  16406. front: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(150, "lb"),
  16409. name: "Front",
  16410. image: {
  16411. source: "./media/characters/adinia/front.svg",
  16412. extra: 1845 / 1672,
  16413. bottom: 0.02
  16414. }
  16415. },
  16416. back: {
  16417. height: math.unit(6, "feet"),
  16418. weight: math.unit(150, "lb"),
  16419. name: "Back",
  16420. image: {
  16421. source: "./media/characters/adinia/back.svg",
  16422. extra: 1845 / 1672,
  16423. bottom: 0.002
  16424. }
  16425. },
  16426. },
  16427. [
  16428. {
  16429. name: "Normal",
  16430. height: math.unit(11 + 5 / 12, "feet"),
  16431. default: true
  16432. },
  16433. ]
  16434. ))
  16435. characterMakers.push(() => makeCharacter(
  16436. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16437. {
  16438. front: {
  16439. height: math.unit(3, "meters"),
  16440. weight: math.unit(200, "kg"),
  16441. name: "Front",
  16442. image: {
  16443. source: "./media/characters/lykasa/front.svg",
  16444. extra: 1076 / 976,
  16445. bottom: 0.06
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(3, "meters")
  16453. },
  16454. {
  16455. name: "Kaiju",
  16456. height: math.unit(120, "meters"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Mega Kaiju",
  16461. height: math.unit(240, "km")
  16462. },
  16463. {
  16464. name: "Giga Kaiju",
  16465. height: math.unit(400, "megameters")
  16466. },
  16467. {
  16468. name: "Tera Kaiju",
  16469. height: math.unit(800, "gigameters")
  16470. },
  16471. {
  16472. name: "Kaiju Dragon Goddess",
  16473. height: math.unit(26, "zettaparsecs")
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16479. {
  16480. side: {
  16481. height: math.unit(283 / 124 * 6, "feet"),
  16482. weight: math.unit(35000, "lb"),
  16483. name: "Side",
  16484. image: {
  16485. source: "./media/characters/malfaren/side.svg",
  16486. extra: 2500 / 1010,
  16487. bottom: 0.01
  16488. }
  16489. },
  16490. front: {
  16491. height: math.unit(22.36, "feet"),
  16492. weight: math.unit(35000, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/malfaren/front.svg",
  16496. extra: 1631 / 1476,
  16497. bottom: 0.01
  16498. }
  16499. },
  16500. maw: {
  16501. height: math.unit(6.9, "feet"),
  16502. name: "Maw",
  16503. image: {
  16504. source: "./media/characters/malfaren/maw.svg"
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Big",
  16511. height: math.unit(283 / 162 * 6, "feet"),
  16512. },
  16513. {
  16514. name: "Bigger",
  16515. height: math.unit(283 / 124 * 6, "feet")
  16516. },
  16517. {
  16518. name: "Massive",
  16519. height: math.unit(283 / 92 * 6, "feet"),
  16520. default: true
  16521. },
  16522. {
  16523. name: "👀💦",
  16524. height: math.unit(283 / 73 * 6, "feet"),
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(1.7, "m"),
  16533. weight: math.unit(70, "kg"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/kernel/front.svg",
  16537. extra: 222 / 210,
  16538. bottom: 0.007
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Nano",
  16545. height: math.unit(17, "micrometers")
  16546. },
  16547. {
  16548. name: "Micro",
  16549. height: math.unit(1.7, "mm")
  16550. },
  16551. {
  16552. name: "Small",
  16553. height: math.unit(1.7, "cm")
  16554. },
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(1.7, "m"),
  16558. default: true
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16564. {
  16565. front: {
  16566. height: math.unit(1.75, "meters"),
  16567. weight: math.unit(65, "kg"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/jayne-folest/front.svg",
  16571. extra: 2115 / 2007,
  16572. bottom: 0.02
  16573. }
  16574. },
  16575. back: {
  16576. height: math.unit(1.75, "meters"),
  16577. weight: math.unit(65, "kg"),
  16578. name: "Back",
  16579. image: {
  16580. source: "./media/characters/jayne-folest/back.svg",
  16581. extra: 2115 / 2007,
  16582. bottom: 0.005
  16583. }
  16584. },
  16585. frontClothed: {
  16586. height: math.unit(1.75, "meters"),
  16587. weight: math.unit(65, "kg"),
  16588. name: "Front (Clothed)",
  16589. image: {
  16590. source: "./media/characters/jayne-folest/front-clothed.svg",
  16591. extra: 2115 / 2007,
  16592. bottom: 0.035
  16593. }
  16594. },
  16595. hand: {
  16596. height: math.unit(1 / 1.260, "feet"),
  16597. name: "Hand",
  16598. image: {
  16599. source: "./media/characters/jayne-folest/hand.svg"
  16600. }
  16601. },
  16602. foot: {
  16603. height: math.unit(1 / 0.918, "feet"),
  16604. name: "Foot",
  16605. image: {
  16606. source: "./media/characters/jayne-folest/foot.svg"
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Micro",
  16613. height: math.unit(4, "cm")
  16614. },
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(1.75, "meters")
  16618. },
  16619. {
  16620. name: "Macro",
  16621. height: math.unit(47.5, "meters"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(180, "cm"),
  16631. weight: math.unit(70, "kg"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/algier/front.svg",
  16635. extra: 596 / 572,
  16636. bottom: 0.04
  16637. }
  16638. },
  16639. back: {
  16640. height: math.unit(180, "cm"),
  16641. weight: math.unit(70, "kg"),
  16642. name: "Back",
  16643. image: {
  16644. source: "./media/characters/algier/back.svg",
  16645. extra: 596 / 572,
  16646. bottom: 0.025
  16647. }
  16648. },
  16649. frontdressed: {
  16650. height: math.unit(180, "cm"),
  16651. weight: math.unit(150, "kg"),
  16652. name: "Front-dressed",
  16653. image: {
  16654. source: "./media/characters/algier/front-dressed.svg",
  16655. extra: 596 / 572,
  16656. bottom: 0.038
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Micro",
  16663. height: math.unit(5, "cm")
  16664. },
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(180, "cm"),
  16668. default: true
  16669. },
  16670. {
  16671. name: "Macro",
  16672. height: math.unit(64, "m")
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16678. {
  16679. upright: {
  16680. height: math.unit(7, "feet"),
  16681. weight: math.unit(300, "lb"),
  16682. name: "Upright",
  16683. image: {
  16684. source: "./media/characters/pretzel/upright.svg",
  16685. extra: 534 / 522,
  16686. bottom: 0.065
  16687. }
  16688. },
  16689. sprawling: {
  16690. height: math.unit(3.75, "feet"),
  16691. weight: math.unit(300, "lb"),
  16692. name: "Sprawling",
  16693. image: {
  16694. source: "./media/characters/pretzel/sprawling.svg",
  16695. extra: 314 / 281,
  16696. bottom: 0.1
  16697. }
  16698. },
  16699. tongue: {
  16700. height: math.unit(2, "feet"),
  16701. name: "Tongue",
  16702. image: {
  16703. source: "./media/characters/pretzel/tongue.svg"
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(7, "feet"),
  16711. default: true
  16712. },
  16713. {
  16714. name: "Oversized",
  16715. height: math.unit(15, "feet")
  16716. },
  16717. {
  16718. name: "Huge",
  16719. height: math.unit(30, "feet")
  16720. },
  16721. {
  16722. name: "Macro",
  16723. height: math.unit(250, "feet")
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16729. {
  16730. sideFront: {
  16731. height: math.unit(5 + 2 / 12, "feet"),
  16732. weight: math.unit(120, "lb"),
  16733. name: "Front Side",
  16734. image: {
  16735. source: "./media/characters/roxi/side-front.svg",
  16736. extra: 2924 / 2717,
  16737. bottom: 0.08
  16738. }
  16739. },
  16740. sideBack: {
  16741. height: math.unit(5 + 2 / 12, "feet"),
  16742. weight: math.unit(120, "lb"),
  16743. name: "Back Side",
  16744. image: {
  16745. source: "./media/characters/roxi/side-back.svg",
  16746. extra: 2904 / 2693,
  16747. bottom: 0.06
  16748. }
  16749. },
  16750. front: {
  16751. height: math.unit(5 + 2 / 12, "feet"),
  16752. weight: math.unit(120, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/roxi/front.svg",
  16756. extra: 2028 / 1907,
  16757. bottom: 0.01
  16758. }
  16759. },
  16760. frontAlt: {
  16761. height: math.unit(5 + 2 / 12, "feet"),
  16762. weight: math.unit(120, "lb"),
  16763. name: "Front (Alt)",
  16764. image: {
  16765. source: "./media/characters/roxi/front-alt.svg",
  16766. extra: 1828 / 1798,
  16767. bottom: 0.01
  16768. }
  16769. },
  16770. sitting: {
  16771. height: math.unit(2.8, "feet"),
  16772. weight: math.unit(120, "lb"),
  16773. name: "Sitting",
  16774. image: {
  16775. source: "./media/characters/roxi/sitting.svg",
  16776. extra: 2660 / 2462,
  16777. bottom: 0.1
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(5 + 2 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16791. {
  16792. side: {
  16793. height: math.unit(55, "feet"),
  16794. weight: math.unit(153, "tons"),
  16795. name: "Side",
  16796. image: {
  16797. source: "./media/characters/shadow/side.svg",
  16798. extra: 701 / 628,
  16799. bottom: 0.02
  16800. }
  16801. },
  16802. flying: {
  16803. height: math.unit(145, "feet"),
  16804. weight: math.unit(153, "tons"),
  16805. name: "Flying",
  16806. image: {
  16807. source: "./media/characters/shadow/flying.svg"
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(55, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6, "feet"),
  16824. weight: math.unit(200, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/marcie/front.svg",
  16828. extra: 960 / 876,
  16829. bottom: 58 / 1017.87
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Macro",
  16836. height: math.unit(1, "mile"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(7, "feet"),
  16846. weight: math.unit(200, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/kachina/front.svg",
  16850. extra: 1290.68 / 1119,
  16851. bottom: 36.5 / 1327.18
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(7, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16865. {
  16866. looking: {
  16867. height: math.unit(2, "meters"),
  16868. weight: math.unit(300, "kg"),
  16869. name: "Looking",
  16870. image: {
  16871. source: "./media/characters/kash/looking.svg",
  16872. extra: 474 / 344,
  16873. bottom: 0.03
  16874. }
  16875. },
  16876. side: {
  16877. height: math.unit(2, "meters"),
  16878. weight: math.unit(300, "kg"),
  16879. name: "Side",
  16880. image: {
  16881. source: "./media/characters/kash/side.svg",
  16882. extra: 302 / 251,
  16883. bottom: 0.03
  16884. }
  16885. },
  16886. front: {
  16887. height: math.unit(2, "meters"),
  16888. weight: math.unit(300, "kg"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/kash/front.svg",
  16892. extra: 495 / 360,
  16893. bottom: 0.015
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(2, "meters"),
  16901. default: true
  16902. },
  16903. {
  16904. name: "Big",
  16905. height: math.unit(3, "meters")
  16906. },
  16907. {
  16908. name: "Large",
  16909. height: math.unit(5, "meters")
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16915. {
  16916. feeding: {
  16917. height: math.unit(6.7, "feet"),
  16918. weight: math.unit(350, "lb"),
  16919. name: "Feeding",
  16920. image: {
  16921. source: "./media/characters/lalim/feeding.svg",
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(6.7, "feet"),
  16929. default: true
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16935. {
  16936. front: {
  16937. height: math.unit(9.5, "feet"),
  16938. weight: math.unit(600, "lb"),
  16939. name: "Front",
  16940. image: {
  16941. source: "./media/characters/de'vout/front.svg",
  16942. extra: 1443 / 1328,
  16943. bottom: 0.025
  16944. }
  16945. },
  16946. back: {
  16947. height: math.unit(9.5, "feet"),
  16948. weight: math.unit(600, "lb"),
  16949. name: "Back",
  16950. image: {
  16951. source: "./media/characters/de'vout/back.svg",
  16952. extra: 1443 / 1328
  16953. }
  16954. },
  16955. frontDressed: {
  16956. height: math.unit(9.5, "feet"),
  16957. weight: math.unit(600, "lb"),
  16958. name: "Front (Dressed",
  16959. image: {
  16960. source: "./media/characters/de'vout/front-dressed.svg",
  16961. extra: 1443 / 1328,
  16962. bottom: 0.025
  16963. }
  16964. },
  16965. backDressed: {
  16966. height: math.unit(9.5, "feet"),
  16967. weight: math.unit(600, "lb"),
  16968. name: "Back (Dressed",
  16969. image: {
  16970. source: "./media/characters/de'vout/back-dressed.svg",
  16971. extra: 1443 / 1328
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(9.5, "feet"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(8, "feet"),
  16988. weight: math.unit(225, "lb"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/talana/front.svg",
  16992. extra: 1410 / 1300,
  16993. bottom: 0.015
  16994. }
  16995. },
  16996. frontDressed: {
  16997. height: math.unit(8, "feet"),
  16998. weight: math.unit(225, "lb"),
  16999. name: "Front (Dressed",
  17000. image: {
  17001. source: "./media/characters/talana/front-dressed.svg",
  17002. extra: 1410 / 1300,
  17003. bottom: 0.015
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(8, "feet"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17017. {
  17018. side: {
  17019. height: math.unit(7.2, "feet"),
  17020. weight: math.unit(150, "lb"),
  17021. name: "Side",
  17022. image: {
  17023. source: "./media/characters/xeauvok/side.svg",
  17024. extra: 1975 / 1523,
  17025. bottom: 0.07
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(7.2, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17039. {
  17040. side: {
  17041. height: math.unit(10, "feet"),
  17042. weight: math.unit(900, "kg"),
  17043. name: "Side",
  17044. image: {
  17045. source: "./media/characters/zara/side.svg",
  17046. extra: 504 / 498
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(10, "feet"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17060. {
  17061. side: {
  17062. height: math.unit(6, "feet"),
  17063. weight: math.unit(150, "lb"),
  17064. name: "Side",
  17065. image: {
  17066. source: "./media/characters/richard-dragon/side.svg",
  17067. extra: 845 / 340,
  17068. bottom: 0.017
  17069. }
  17070. },
  17071. maw: {
  17072. height: math.unit(2.97, "feet"),
  17073. name: "Maw",
  17074. image: {
  17075. source: "./media/characters/richard-dragon/maw.svg"
  17076. }
  17077. },
  17078. },
  17079. [
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(4, "feet"),
  17087. weight: math.unit(100, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/richard-smeargle/front.svg",
  17091. extra: 2952 / 2820,
  17092. bottom: 0.028
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(4, "feet"),
  17100. default: true
  17101. },
  17102. {
  17103. name: "Dynamax",
  17104. height: math.unit(20, "meters")
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(110, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/klay/front.svg",
  17117. extra: 962 / 883,
  17118. bottom: 0.04
  17119. }
  17120. },
  17121. back: {
  17122. height: math.unit(6, "feet"),
  17123. weight: math.unit(110, "lb"),
  17124. name: "Back",
  17125. image: {
  17126. source: "./media/characters/klay/back.svg",
  17127. extra: 962 / 883
  17128. }
  17129. },
  17130. beans: {
  17131. height: math.unit(1.15, "feet"),
  17132. name: "Beans",
  17133. image: {
  17134. source: "./media/characters/klay/beans.svg"
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Micro",
  17141. height: math.unit(6, "inches")
  17142. },
  17143. {
  17144. name: "Mini",
  17145. height: math.unit(3, "feet")
  17146. },
  17147. {
  17148. name: "Normal",
  17149. height: math.unit(6, "feet"),
  17150. default: true
  17151. },
  17152. {
  17153. name: "Big",
  17154. height: math.unit(25, "feet")
  17155. },
  17156. {
  17157. name: "Macro",
  17158. height: math.unit(100, "feet")
  17159. },
  17160. {
  17161. name: "Megamacro",
  17162. height: math.unit(400, "feet")
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17168. {
  17169. front: {
  17170. height: math.unit(6, "feet"),
  17171. weight: math.unit(160, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/marcus/front.svg",
  17175. extra: 734 / 676,
  17176. bottom: 0.03
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Little",
  17183. height: math.unit(6, "feet")
  17184. },
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(110, "feet"),
  17188. default: true
  17189. },
  17190. {
  17191. name: "Macro",
  17192. height: math.unit(250, "feet")
  17193. },
  17194. {
  17195. name: "Megamacro",
  17196. height: math.unit(1000, "feet")
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(7, "feet"),
  17205. weight: math.unit(275, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/claude-delroute/front.svg",
  17209. extra: 230 / 214,
  17210. bottom: 0.007
  17211. }
  17212. },
  17213. side: {
  17214. height: math.unit(7, "feet"),
  17215. weight: math.unit(275, "lb"),
  17216. name: "Side",
  17217. image: {
  17218. source: "./media/characters/claude-delroute/side.svg",
  17219. extra: 222 / 214,
  17220. bottom: 0.01
  17221. }
  17222. },
  17223. back: {
  17224. height: math.unit(7, "feet"),
  17225. weight: math.unit(275, "lb"),
  17226. name: "Back",
  17227. image: {
  17228. source: "./media/characters/claude-delroute/back.svg",
  17229. extra: 230 / 214,
  17230. bottom: 0.015
  17231. }
  17232. },
  17233. maw: {
  17234. height: math.unit(0.6407, "meters"),
  17235. name: "Maw",
  17236. image: {
  17237. source: "./media/characters/claude-delroute/maw.svg"
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(7, "feet"),
  17245. default: true
  17246. },
  17247. {
  17248. name: "Lorge",
  17249. height: math.unit(20, "feet")
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(8 + 4 / 12, "feet"),
  17258. weight: math.unit(600, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/dragonien/front.svg",
  17262. extra: 100 / 94,
  17263. bottom: 3.3 / 103.3445
  17264. }
  17265. },
  17266. back: {
  17267. height: math.unit(8 + 4 / 12, "feet"),
  17268. weight: math.unit(600, "lb"),
  17269. name: "Back",
  17270. image: {
  17271. source: "./media/characters/dragonien/back.svg",
  17272. extra: 776 / 746,
  17273. bottom: 6.4 / 782.0616
  17274. }
  17275. },
  17276. foot: {
  17277. height: math.unit(1.54, "feet"),
  17278. name: "Foot",
  17279. image: {
  17280. source: "./media/characters/dragonien/foot.svg",
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(8 + 4 / 12, "feet"),
  17288. default: true
  17289. },
  17290. {
  17291. name: "Macro",
  17292. height: math.unit(200, "feet")
  17293. },
  17294. {
  17295. name: "Megamacro",
  17296. height: math.unit(1, "mile")
  17297. },
  17298. {
  17299. name: "Gigamacro",
  17300. height: math.unit(1000, "miles")
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17306. {
  17307. front: {
  17308. height: math.unit(5 + 2 / 12, "feet"),
  17309. weight: math.unit(110, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/desta/front.svg",
  17313. extra: 767/726,
  17314. bottom: 11.7/779
  17315. }
  17316. },
  17317. back: {
  17318. height: math.unit(5 + 2 / 12, "feet"),
  17319. weight: math.unit(110, "lb"),
  17320. name: "Back",
  17321. image: {
  17322. source: "./media/characters/desta/back.svg",
  17323. extra: 777/728,
  17324. bottom: 6/784
  17325. }
  17326. },
  17327. frontAlt: {
  17328. height: math.unit(5 + 2 / 12, "feet"),
  17329. weight: math.unit(110, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/desta/front-alt.svg",
  17333. extra: 1482 / 1417
  17334. }
  17335. },
  17336. side: {
  17337. height: math.unit(5 + 2 / 12, "feet"),
  17338. weight: math.unit(110, "lb"),
  17339. name: "Side",
  17340. image: {
  17341. source: "./media/characters/desta/side.svg",
  17342. extra: 2579 / 2491,
  17343. bottom: 0.053
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Micro",
  17350. height: math.unit(6, "inches")
  17351. },
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(5 + 2 / 12, "feet"),
  17355. default: true
  17356. },
  17357. {
  17358. name: "Macro",
  17359. height: math.unit(62, "feet")
  17360. },
  17361. {
  17362. name: "Megamacro",
  17363. height: math.unit(1800, "feet")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(10, "feet"),
  17372. weight: math.unit(700, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/storm-alystar/front.svg",
  17376. extra: 2112 / 1898,
  17377. bottom: 0.034
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Micro",
  17384. height: math.unit(3.5, "inches")
  17385. },
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(10, "feet"),
  17389. default: true
  17390. },
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(400, "feet")
  17394. },
  17395. {
  17396. name: "Deific",
  17397. height: math.unit(60, "miles")
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(2.35, "meters"),
  17406. weight: math.unit(119, "kg"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/ilia/front.svg",
  17410. extra: 1285 / 1255,
  17411. bottom: 0.06
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(2.35, "meters")
  17419. },
  17420. {
  17421. name: "Macro",
  17422. height: math.unit(140, "meters"),
  17423. default: true
  17424. },
  17425. {
  17426. name: "Megamacro",
  17427. height: math.unit(100, "miles")
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17433. {
  17434. front: {
  17435. height: math.unit(6 + 5 / 12, "feet"),
  17436. weight: math.unit(190, "lb"),
  17437. name: "Front",
  17438. image: {
  17439. source: "./media/characters/kingdead/front.svg",
  17440. extra: 1228 / 1177
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Micro",
  17447. height: math.unit(7, "inches")
  17448. },
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(6 + 5 / 12, "feet")
  17452. },
  17453. {
  17454. name: "Macro",
  17455. height: math.unit(150, "feet"),
  17456. default: true
  17457. },
  17458. {
  17459. name: "Megamacro",
  17460. height: math.unit(200, "miles")
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17466. {
  17467. front: {
  17468. height: math.unit(8, "feet"),
  17469. weight: math.unit(600, "lb"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/kyrehx/front.svg",
  17473. extra: 1195 / 1095,
  17474. bottom: 0.034
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Micro",
  17481. height: math.unit(2, "inches")
  17482. },
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(8, "feet"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Macro",
  17490. height: math.unit(255, "feet")
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17499. weight: math.unit(184, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/xang/front.svg",
  17503. extra: 845 / 755
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17511. default: true
  17512. },
  17513. {
  17514. name: "Macro",
  17515. height: math.unit(0.935 * 146, "feet")
  17516. },
  17517. {
  17518. name: "Megamacro",
  17519. height: math.unit(0.935 * 3, "miles")
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17525. {
  17526. frontDressed: {
  17527. height: math.unit(5 + 7 / 12, "feet"),
  17528. weight: math.unit(140, "lb"),
  17529. name: "Front (Dressed)",
  17530. image: {
  17531. source: "./media/characters/doc-weardno/front-dressed.svg",
  17532. extra: 263 / 234
  17533. }
  17534. },
  17535. backDressed: {
  17536. height: math.unit(5 + 7 / 12, "feet"),
  17537. weight: math.unit(140, "lb"),
  17538. name: "Back (Dressed)",
  17539. image: {
  17540. source: "./media/characters/doc-weardno/back-dressed.svg",
  17541. extra: 266 / 238
  17542. }
  17543. },
  17544. front: {
  17545. height: math.unit(5 + 7 / 12, "feet"),
  17546. weight: math.unit(140, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/doc-weardno/front.svg",
  17550. extra: 254 / 233
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Micro",
  17557. height: math.unit(3, "inches")
  17558. },
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(5 + 7 / 12, "feet"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "Macro",
  17566. height: math.unit(25, "feet")
  17567. },
  17568. {
  17569. name: "Megamacro",
  17570. height: math.unit(2, "miles")
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(6 + 2 / 12, "feet"),
  17579. weight: math.unit(153, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/seth-whilst/front.svg",
  17583. bottom: 0.07
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Micro",
  17590. height: math.unit(5, "inches")
  17591. },
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(6 + 2 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(3, "inches"),
  17604. weight: math.unit(8, "grams"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/pocket-jabari/front.svg",
  17608. extra: 1024 / 974,
  17609. bottom: 0.039
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Minimicro",
  17616. height: math.unit(8, "mm")
  17617. },
  17618. {
  17619. name: "Micro",
  17620. height: math.unit(3, "inches"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(3, "feet")
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17631. {
  17632. front: {
  17633. height: math.unit(15, "feet"),
  17634. weight: math.unit(3280, "lb"),
  17635. name: "Front",
  17636. image: {
  17637. source: "./media/characters/sapphy/front.svg",
  17638. extra: 671 / 577,
  17639. bottom: 0.085
  17640. }
  17641. },
  17642. back: {
  17643. height: math.unit(15, "feet"),
  17644. weight: math.unit(3280, "lb"),
  17645. name: "Back",
  17646. image: {
  17647. source: "./media/characters/sapphy/back.svg",
  17648. extra: 631 / 607,
  17649. bottom: 0.045
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(15, "feet")
  17657. },
  17658. {
  17659. name: "Casual Macro",
  17660. height: math.unit(120, "feet")
  17661. },
  17662. {
  17663. name: "Macro",
  17664. height: math.unit(2150, "feet"),
  17665. default: true
  17666. },
  17667. {
  17668. name: "Megamacro",
  17669. height: math.unit(8, "miles")
  17670. },
  17671. {
  17672. name: "Galaxy Mom",
  17673. height: math.unit(6, "megalightyears")
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(6, "feet"),
  17682. weight: math.unit(170, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/kiro/front.svg",
  17686. extra: 1064 / 1012,
  17687. bottom: 0.052
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Micro",
  17694. height: math.unit(6, "inches")
  17695. },
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(6, "feet"),
  17699. default: true
  17700. },
  17701. {
  17702. name: "Macro",
  17703. height: math.unit(72, "feet")
  17704. },
  17705. ]
  17706. ))
  17707. characterMakers.push(() => makeCharacter(
  17708. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17709. {
  17710. front: {
  17711. height: math.unit(5 + 9 / 12, "feet"),
  17712. weight: math.unit(175, "lb"),
  17713. name: "Front",
  17714. image: {
  17715. source: "./media/characters/irishfox/front.svg",
  17716. extra: 1912 / 1680,
  17717. bottom: 0.02
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Nano",
  17724. height: math.unit(1, "mm")
  17725. },
  17726. {
  17727. name: "Micro",
  17728. height: math.unit(2, "inches")
  17729. },
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(5 + 9 / 12, "feet"),
  17733. default: true
  17734. },
  17735. {
  17736. name: "Macro",
  17737. height: math.unit(45, "feet")
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17743. {
  17744. front: {
  17745. height: math.unit(6 + 1 / 12, "feet"),
  17746. weight: math.unit(150, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/aronai-sieyes/front.svg",
  17750. extra: 1556 / 1480,
  17751. bottom: 0.015
  17752. }
  17753. },
  17754. side: {
  17755. height: math.unit(6 + 1 / 12, "feet"),
  17756. weight: math.unit(150, "lb"),
  17757. name: "Side",
  17758. image: {
  17759. source: "./media/characters/aronai-sieyes/side.svg",
  17760. extra: 1433 / 1390,
  17761. bottom: 0.0393
  17762. }
  17763. },
  17764. back: {
  17765. height: math.unit(6 + 1 / 12, "feet"),
  17766. weight: math.unit(150, "lb"),
  17767. name: "Back",
  17768. image: {
  17769. source: "./media/characters/aronai-sieyes/back.svg",
  17770. extra: 1544 / 1494,
  17771. bottom: 0.02
  17772. }
  17773. },
  17774. frontClothed: {
  17775. height: math.unit(6 + 1 / 12, "feet"),
  17776. weight: math.unit(150, "lb"),
  17777. name: "Front (Clothed)",
  17778. image: {
  17779. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17780. extra: 1582 / 1527
  17781. }
  17782. },
  17783. feral: {
  17784. height: math.unit(18, "feet"),
  17785. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17786. name: "Feral",
  17787. image: {
  17788. source: "./media/characters/aronai-sieyes/feral.svg",
  17789. extra: 1530 / 1240,
  17790. bottom: 0.035
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Micro",
  17797. height: math.unit(2, "inches")
  17798. },
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(6 + 1 / 12, "feet"),
  17802. default: true
  17803. }
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(12, "feet"),
  17811. weight: math.unit(410, "kg"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/xuna/front.svg",
  17815. extra: 2184 / 1980
  17816. }
  17817. },
  17818. side: {
  17819. height: math.unit(12, "feet"),
  17820. weight: math.unit(410, "kg"),
  17821. name: "Side",
  17822. image: {
  17823. source: "./media/characters/xuna/side.svg",
  17824. extra: 2184 / 1980
  17825. }
  17826. },
  17827. back: {
  17828. height: math.unit(12, "feet"),
  17829. weight: math.unit(410, "kg"),
  17830. name: "Back",
  17831. image: {
  17832. source: "./media/characters/xuna/back.svg",
  17833. extra: 2184 / 1980
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Nano glow",
  17840. height: math.unit(10, "nm")
  17841. },
  17842. {
  17843. name: "Micro floof",
  17844. height: math.unit(0.3, "m")
  17845. },
  17846. {
  17847. name: "Huggable softy boi",
  17848. height: math.unit(3.6576, "m"),
  17849. default: true
  17850. },
  17851. {
  17852. name: "Admirable floof",
  17853. height: math.unit(80, "meters")
  17854. },
  17855. {
  17856. name: "Gentle macro",
  17857. height: math.unit(300, "meters")
  17858. },
  17859. {
  17860. name: "Very careful floof",
  17861. height: math.unit(3200, "meters")
  17862. },
  17863. {
  17864. name: "The mega floof",
  17865. height: math.unit(36000, "meters")
  17866. },
  17867. {
  17868. name: "Giga-fur-Wicker",
  17869. height: math.unit(4800000, "meters")
  17870. },
  17871. {
  17872. name: "Licky world",
  17873. height: math.unit(20000000, "meters")
  17874. },
  17875. {
  17876. name: "Floofy cyan sun",
  17877. height: math.unit(1500000000, "meters")
  17878. },
  17879. {
  17880. name: "Milky Wicker",
  17881. height: math.unit(1000000000000000000000, "meters")
  17882. },
  17883. {
  17884. name: "The observing Wicker",
  17885. height: math.unit(999999999999999999999999999, "meters")
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(5 + 9 / 12, "feet"),
  17894. weight: math.unit(150, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/arokha-sieyes/front.svg",
  17898. extra: 1425 / 1284,
  17899. bottom: 0.05
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(5 + 9 / 12, "feet")
  17907. },
  17908. {
  17909. name: "Macro",
  17910. height: math.unit(30, "meters"),
  17911. default: true
  17912. },
  17913. ]
  17914. ))
  17915. characterMakers.push(() => makeCharacter(
  17916. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17917. {
  17918. front: {
  17919. height: math.unit(6, "feet"),
  17920. weight: math.unit(180, "lb"),
  17921. name: "Front",
  17922. image: {
  17923. source: "./media/characters/arokh-sieyes/front.svg",
  17924. extra: 1830 / 1769,
  17925. bottom: 0.01
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(6, "feet")
  17933. },
  17934. {
  17935. name: "Macro",
  17936. height: math.unit(30, "meters"),
  17937. default: true
  17938. },
  17939. ]
  17940. ))
  17941. characterMakers.push(() => makeCharacter(
  17942. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17943. {
  17944. side: {
  17945. height: math.unit(13 + 1 / 12, "feet"),
  17946. weight: math.unit(8.5, "tonnes"),
  17947. name: "Side",
  17948. image: {
  17949. source: "./media/characters/goldeneye/side.svg",
  17950. extra: 1182 / 778,
  17951. bottom: 0.067
  17952. }
  17953. },
  17954. paw: {
  17955. height: math.unit(3.4, "feet"),
  17956. name: "Paw",
  17957. image: {
  17958. source: "./media/characters/goldeneye/paw.svg"
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(13 + 1 / 12, "feet"),
  17966. default: true
  17967. },
  17968. ]
  17969. ))
  17970. characterMakers.push(() => makeCharacter(
  17971. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17972. {
  17973. front: {
  17974. height: math.unit(6 + 1 / 12, "feet"),
  17975. weight: math.unit(210, "lb"),
  17976. name: "Front",
  17977. image: {
  17978. source: "./media/characters/leonardo-lycheborne/front.svg",
  17979. extra: 390 / 365,
  17980. bottom: 0.032
  17981. }
  17982. },
  17983. side: {
  17984. height: math.unit(6 + 1 / 12, "feet"),
  17985. weight: math.unit(210, "lb"),
  17986. name: "Side",
  17987. image: {
  17988. source: "./media/characters/leonardo-lycheborne/side.svg",
  17989. extra: 390 / 365,
  17990. bottom: 0.005
  17991. }
  17992. },
  17993. back: {
  17994. height: math.unit(6 + 1 / 12, "feet"),
  17995. weight: math.unit(210, "lb"),
  17996. name: "Back",
  17997. image: {
  17998. source: "./media/characters/leonardo-lycheborne/back.svg",
  17999. extra: 392 / 366,
  18000. bottom: 0.01
  18001. }
  18002. },
  18003. hand: {
  18004. height: math.unit(1.08, "feet"),
  18005. name: "Hand",
  18006. image: {
  18007. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18008. }
  18009. },
  18010. foot: {
  18011. height: math.unit(1.32, "feet"),
  18012. name: "Foot",
  18013. image: {
  18014. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18015. }
  18016. },
  18017. were: {
  18018. height: math.unit(20, "feet"),
  18019. weight: math.unit(7800, "lb"),
  18020. name: "Were",
  18021. image: {
  18022. source: "./media/characters/leonardo-lycheborne/were.svg",
  18023. extra: 308 / 294,
  18024. bottom: 0.048
  18025. }
  18026. },
  18027. feral: {
  18028. height: math.unit(7.5, "feet"),
  18029. weight: math.unit(600, "lb"),
  18030. name: "Feral",
  18031. image: {
  18032. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18033. extra: 210 / 186,
  18034. bottom: 0.108
  18035. }
  18036. },
  18037. taur: {
  18038. height: math.unit(11, "feet"),
  18039. weight: math.unit(3300, "lb"),
  18040. name: "Taur",
  18041. image: {
  18042. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18043. extra: 320 / 303,
  18044. bottom: 0.025
  18045. }
  18046. },
  18047. barghest: {
  18048. height: math.unit(11, "feet"),
  18049. weight: math.unit(1300, "lb"),
  18050. name: "Barghest",
  18051. image: {
  18052. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18053. extra: 323 / 302,
  18054. bottom: 0.027
  18055. }
  18056. },
  18057. dick: {
  18058. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18059. name: "Dick",
  18060. image: {
  18061. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18062. }
  18063. },
  18064. dickWere: {
  18065. height: math.unit((20) / 3.8, "feet"),
  18066. name: "Dick (Were)",
  18067. image: {
  18068. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(6 + 1 / 12, "feet"),
  18076. default: true
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(10, "feet"),
  18085. weight: math.unit(350, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/jet/front.svg",
  18089. extra: 2050 / 1980,
  18090. bottom: 0.013
  18091. }
  18092. },
  18093. back: {
  18094. height: math.unit(10, "feet"),
  18095. weight: math.unit(350, "lb"),
  18096. name: "Back",
  18097. image: {
  18098. source: "./media/characters/jet/back.svg",
  18099. extra: 2050 / 1980,
  18100. bottom: 0.013
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Micro",
  18107. height: math.unit(6, "inches")
  18108. },
  18109. {
  18110. name: "Normal",
  18111. height: math.unit(10, "feet"),
  18112. default: true
  18113. },
  18114. {
  18115. name: "Macro",
  18116. height: math.unit(100, "feet")
  18117. },
  18118. ]
  18119. ))
  18120. characterMakers.push(() => makeCharacter(
  18121. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18122. {
  18123. front: {
  18124. height: math.unit(15, "feet"),
  18125. weight: math.unit(2800, "lb"),
  18126. name: "Front",
  18127. image: {
  18128. source: "./media/characters/tanarath/front.svg",
  18129. extra: 2392 / 2220,
  18130. bottom: 0.03
  18131. }
  18132. },
  18133. back: {
  18134. height: math.unit(15, "feet"),
  18135. weight: math.unit(2800, "lb"),
  18136. name: "Back",
  18137. image: {
  18138. source: "./media/characters/tanarath/back.svg",
  18139. extra: 2392 / 2220,
  18140. bottom: 0.03
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(15, "feet"),
  18148. default: true
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18154. {
  18155. front: {
  18156. height: math.unit(7 + 1 / 12, "feet"),
  18157. weight: math.unit(175, "lb"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/patty-cattybatty/front.svg",
  18161. extra: 908 / 874,
  18162. bottom: 0.025
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Micro",
  18169. height: math.unit(1, "inch")
  18170. },
  18171. {
  18172. name: "Normal",
  18173. height: math.unit(7 + 1 / 12, "feet")
  18174. },
  18175. {
  18176. name: "Mini Macro",
  18177. height: math.unit(155, "feet")
  18178. },
  18179. {
  18180. name: "Macro",
  18181. height: math.unit(1077, "feet")
  18182. },
  18183. {
  18184. name: "Mega Macro",
  18185. height: math.unit(47650, "feet"),
  18186. default: true
  18187. },
  18188. {
  18189. name: "Giga Macro",
  18190. height: math.unit(440, "miles")
  18191. },
  18192. {
  18193. name: "Tera Macro",
  18194. height: math.unit(8700, "miles")
  18195. },
  18196. {
  18197. name: "Planetary Macro",
  18198. height: math.unit(32700, "miles")
  18199. },
  18200. {
  18201. name: "Solar Macro",
  18202. height: math.unit(550000, "miles")
  18203. },
  18204. {
  18205. name: "Celestial Macro",
  18206. height: math.unit(2.5, "AU")
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18212. {
  18213. front: {
  18214. height: math.unit(4 + 5 / 12, "feet"),
  18215. weight: math.unit(90, "lb"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/cappu/front.svg",
  18219. extra: 1247 / 1152,
  18220. bottom: 0.012
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(4 + 5 / 12, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18234. {
  18235. frontDressed: {
  18236. height: math.unit(70, "cm"),
  18237. weight: math.unit(6, "kg"),
  18238. name: "Front (Dressed)",
  18239. image: {
  18240. source: "./media/characters/sebi/front-dressed.svg",
  18241. extra: 713.5 / 686.5,
  18242. bottom: 0.003
  18243. }
  18244. },
  18245. front: {
  18246. height: math.unit(70, "cm"),
  18247. weight: math.unit(5, "kg"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/sebi/front.svg",
  18251. extra: 713.5 / 686.5,
  18252. bottom: 0.003
  18253. }
  18254. }
  18255. },
  18256. [
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(70, "cm"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Macro",
  18264. height: math.unit(8, "meters")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(6, "feet"),
  18273. weight: math.unit(150, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/typhek/front.svg",
  18277. extra: 1948 / 1929,
  18278. bottom: 0.025
  18279. }
  18280. },
  18281. side: {
  18282. height: math.unit(6, "feet"),
  18283. weight: math.unit(150, "lb"),
  18284. name: "Side",
  18285. image: {
  18286. source: "./media/characters/typhek/side.svg",
  18287. extra: 2034 / 2010,
  18288. bottom: 0.003
  18289. }
  18290. },
  18291. back: {
  18292. height: math.unit(6, "feet"),
  18293. weight: math.unit(150, "lb"),
  18294. name: "Back",
  18295. image: {
  18296. source: "./media/characters/typhek/back.svg",
  18297. extra: 2005 / 1978,
  18298. bottom: 0.004
  18299. }
  18300. },
  18301. palm: {
  18302. height: math.unit(1.2, "feet"),
  18303. name: "Palm",
  18304. image: {
  18305. source: "./media/characters/typhek/palm.svg"
  18306. }
  18307. },
  18308. fist: {
  18309. height: math.unit(1.1, "feet"),
  18310. name: "Fist",
  18311. image: {
  18312. source: "./media/characters/typhek/fist.svg"
  18313. }
  18314. },
  18315. foot: {
  18316. height: math.unit(1.57, "feet"),
  18317. name: "Foot",
  18318. image: {
  18319. source: "./media/characters/typhek/foot.svg"
  18320. }
  18321. },
  18322. sole: {
  18323. height: math.unit(2.05, "feet"),
  18324. name: "Sole",
  18325. image: {
  18326. source: "./media/characters/typhek/sole.svg"
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Macro",
  18333. height: math.unit(40, "stories"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Megamacro",
  18338. height: math.unit(1, "mile")
  18339. },
  18340. {
  18341. name: "Gigamacro",
  18342. height: math.unit(4000, "solarradii")
  18343. },
  18344. {
  18345. name: "Universal",
  18346. height: math.unit(1.1, "universes")
  18347. }
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18352. {
  18353. side: {
  18354. height: math.unit(5 + 7 / 12, "feet"),
  18355. weight: math.unit(150, "lb"),
  18356. name: "Side",
  18357. image: {
  18358. source: "./media/characters/kassy/side.svg",
  18359. extra: 1280 / 1225,
  18360. bottom: 0.002
  18361. }
  18362. },
  18363. front: {
  18364. height: math.unit(5 + 7 / 12, "feet"),
  18365. weight: math.unit(150, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/kassy/front.svg",
  18369. extra: 1280 / 1225,
  18370. bottom: 0.025
  18371. }
  18372. },
  18373. back: {
  18374. height: math.unit(5 + 7 / 12, "feet"),
  18375. weight: math.unit(150, "lb"),
  18376. name: "Back",
  18377. image: {
  18378. source: "./media/characters/kassy/back.svg",
  18379. extra: 1280 / 1225,
  18380. bottom: 0.002
  18381. }
  18382. },
  18383. foot: {
  18384. height: math.unit(1.266, "feet"),
  18385. name: "Foot",
  18386. image: {
  18387. source: "./media/characters/kassy/foot.svg"
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(5 + 7 / 12, "feet")
  18395. },
  18396. {
  18397. name: "Macro",
  18398. height: math.unit(137, "feet"),
  18399. default: true
  18400. },
  18401. {
  18402. name: "Megamacro",
  18403. height: math.unit(1, "mile")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(6 + 1 / 12, "feet"),
  18412. weight: math.unit(200, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/neil/front.svg",
  18416. extra: 1326 / 1250,
  18417. bottom: 0.023
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(6 + 1 / 12, "feet"),
  18425. default: true
  18426. },
  18427. {
  18428. name: "Macro",
  18429. height: math.unit(200, "feet")
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18435. {
  18436. front: {
  18437. height: math.unit(5 + 9 / 12, "feet"),
  18438. weight: math.unit(190, "lb"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/atticus/front.svg",
  18442. extra: 2934 / 2785,
  18443. bottom: 0.025
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(5 + 9 / 12, "feet"),
  18451. default: true
  18452. },
  18453. {
  18454. name: "Macro",
  18455. height: math.unit(180, "feet")
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18461. {
  18462. side: {
  18463. height: math.unit(9, "feet"),
  18464. weight: math.unit(650, "lb"),
  18465. name: "Side",
  18466. image: {
  18467. source: "./media/characters/milo/side.svg",
  18468. extra: 2644 / 2310,
  18469. bottom: 0.032
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(9, "feet"),
  18477. default: true
  18478. },
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(300, "feet")
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18487. {
  18488. side: {
  18489. height: math.unit(8, "meters"),
  18490. weight: math.unit(90000, "kg"),
  18491. name: "Side",
  18492. image: {
  18493. source: "./media/characters/ijzer/side.svg",
  18494. extra: 2756 / 1600,
  18495. bottom: 0.01
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Small",
  18502. height: math.unit(3, "meters")
  18503. },
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(8, "meters"),
  18507. default: true
  18508. },
  18509. {
  18510. name: "Normal+",
  18511. height: math.unit(10, "meters")
  18512. },
  18513. {
  18514. name: "Bigger",
  18515. height: math.unit(24, "meters")
  18516. },
  18517. {
  18518. name: "Huge",
  18519. height: math.unit(80, "meters")
  18520. },
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18525. {
  18526. front: {
  18527. height: math.unit(6 + 2 / 12, "feet"),
  18528. weight: math.unit(153, "lb"),
  18529. name: "Front",
  18530. image: {
  18531. source: "./media/characters/luca-cervicum/front.svg",
  18532. extra: 370 / 327,
  18533. bottom: 0.015
  18534. }
  18535. },
  18536. back: {
  18537. height: math.unit(6 + 2 / 12, "feet"),
  18538. weight: math.unit(153, "lb"),
  18539. name: "Back",
  18540. image: {
  18541. source: "./media/characters/luca-cervicum/back.svg",
  18542. extra: 367 / 333,
  18543. bottom: 0.005
  18544. }
  18545. },
  18546. frontGear: {
  18547. height: math.unit(6 + 2 / 12, "feet"),
  18548. weight: math.unit(173, "lb"),
  18549. name: "Front (Gear)",
  18550. image: {
  18551. source: "./media/characters/luca-cervicum/front-gear.svg",
  18552. extra: 377 / 333,
  18553. bottom: 0.006
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(6 + 2 / 12, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(6 + 1 / 12, "feet"),
  18570. weight: math.unit(304, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/oliver/front.svg",
  18574. extra: 157 / 143,
  18575. bottom: 0.08
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(6 + 1 / 12, "feet"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(5 + 7 / 12, "feet"),
  18592. weight: math.unit(140, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/shane/front.svg",
  18596. extra: 304 / 289,
  18597. bottom: 0.005
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(5 + 7 / 12, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18611. {
  18612. front: {
  18613. height: math.unit(5 + 9 / 12, "feet"),
  18614. weight: math.unit(178, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/shin/front.svg",
  18618. extra: 159 / 151,
  18619. bottom: 0.015
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(5 + 9 / 12, "feet"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18633. {
  18634. front: {
  18635. height: math.unit(5 + 10 / 12, "feet"),
  18636. weight: math.unit(168, "lb"),
  18637. name: "Front",
  18638. image: {
  18639. source: "./media/characters/xerxes/front.svg",
  18640. extra: 282 / 260,
  18641. bottom: 0.045
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(5 + 10 / 12, "feet"),
  18649. default: true
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(6 + 7 / 12, "feet"),
  18658. weight: math.unit(208, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/chaska/front.svg",
  18662. extra: 332 / 319,
  18663. bottom: 0.015
  18664. }
  18665. },
  18666. },
  18667. [
  18668. {
  18669. name: "Normal",
  18670. height: math.unit(6 + 7 / 12, "feet"),
  18671. default: true
  18672. },
  18673. ]
  18674. ))
  18675. characterMakers.push(() => makeCharacter(
  18676. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18677. {
  18678. front: {
  18679. height: math.unit(5 + 8 / 12, "feet"),
  18680. weight: math.unit(208, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/enuk/front.svg",
  18684. extra: 437 / 406,
  18685. bottom: 0.02
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(5 + 8 / 12, "feet"),
  18693. default: true
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(5 + 10 / 12, "feet"),
  18702. weight: math.unit(252, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/bruun/front.svg",
  18706. extra: 197 / 187,
  18707. bottom: 0.012
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(5 + 10 / 12, "feet"),
  18715. default: true
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(6 + 10 / 12, "feet"),
  18724. weight: math.unit(255, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/alexeev/front.svg",
  18728. extra: 213 / 200,
  18729. bottom: 0.05
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Normal",
  18736. height: math.unit(6 + 10 / 12, "feet"),
  18737. default: true
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(2 + 8 / 12, "feet"),
  18746. weight: math.unit(22, "lb"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/evelyn/front.svg",
  18750. extra: 208 / 180
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(2 + 8 / 12, "feet"),
  18758. default: true
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(5 + 9 / 12, "feet"),
  18767. weight: math.unit(139, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/inca/front.svg",
  18771. extra: 294 / 291,
  18772. bottom: 0.03
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Normal",
  18779. height: math.unit(5 + 9 / 12, "feet"),
  18780. default: true
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18786. {
  18787. front: {
  18788. height: math.unit(5 + 1 / 12, "feet"),
  18789. weight: math.unit(84, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/magdalene/front.svg",
  18793. extra: 293 / 273
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(5 + 1 / 12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(6 + 3 / 12, "feet"),
  18810. weight: math.unit(185, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/mera/front.svg",
  18814. extra: 291 / 277,
  18815. bottom: 0.03
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(6 + 3 / 12, "feet"),
  18823. default: true
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(6 + 7 / 12, "feet"),
  18832. weight: math.unit(160, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/ceres/front.svg",
  18836. extra: 1023 / 950,
  18837. bottom: 0.027
  18838. }
  18839. },
  18840. back: {
  18841. height: math.unit(6 + 7 / 12, "feet"),
  18842. weight: math.unit(160, "lb"),
  18843. name: "Back",
  18844. image: {
  18845. source: "./media/characters/ceres/back.svg",
  18846. extra: 1023 / 950
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(6 + 7 / 12, "feet"),
  18854. default: true
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18860. {
  18861. front: {
  18862. height: math.unit(5 + 10 / 12, "feet"),
  18863. weight: math.unit(150, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/kris/front.svg",
  18867. extra: 885 / 803,
  18868. bottom: 0.03
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(5 + 10 / 12, "feet"),
  18876. default: true
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(7, "feet"),
  18885. weight: math.unit(120, "kg"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/taluthus/front.svg",
  18889. extra: 903 / 833,
  18890. bottom: 0.015
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(7, "feet"),
  18898. default: true
  18899. },
  18900. {
  18901. name: "Macro",
  18902. height: math.unit(300, "feet")
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(5 + 9 / 12, "feet"),
  18911. weight: math.unit(145, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/dawn/front.svg",
  18915. extra: 2094 / 2016,
  18916. bottom: 0.025
  18917. }
  18918. },
  18919. back: {
  18920. height: math.unit(5 + 9 / 12, "feet"),
  18921. weight: math.unit(160, "lb"),
  18922. name: "Back",
  18923. image: {
  18924. source: "./media/characters/dawn/back.svg",
  18925. extra: 2112 / 2080,
  18926. bottom: 0.005
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(6 + 7 / 12, "feet"),
  18934. default: true
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18940. {
  18941. anthro: {
  18942. height: math.unit(8 + 3 / 12, "feet"),
  18943. weight: math.unit(450, "lb"),
  18944. name: "Anthro",
  18945. image: {
  18946. source: "./media/characters/arador/anthro.svg",
  18947. extra: 1835 / 1718,
  18948. bottom: 0.025
  18949. }
  18950. },
  18951. feral: {
  18952. height: math.unit(4, "feet"),
  18953. weight: math.unit(200, "lb"),
  18954. name: "Feral",
  18955. image: {
  18956. source: "./media/characters/arador/feral.svg",
  18957. extra: 1683 / 1514,
  18958. bottom: 0.07
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(8 + 3 / 12, "feet")
  18966. },
  18967. {
  18968. name: "Macro",
  18969. height: math.unit(82.5, "feet"),
  18970. default: true
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(5 + 10 / 12, "feet"),
  18979. weight: math.unit(125, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/dharsi/front.svg",
  18983. extra: 716 / 630,
  18984. bottom: 0.035
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Nano",
  18991. height: math.unit(100, "nm")
  18992. },
  18993. {
  18994. name: "Micro",
  18995. height: math.unit(2, "inches")
  18996. },
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(5 + 10 / 12, "feet"),
  19000. default: true
  19001. },
  19002. {
  19003. name: "Macro",
  19004. height: math.unit(1000, "feet")
  19005. },
  19006. {
  19007. name: "Megamacro",
  19008. height: math.unit(10, "miles")
  19009. },
  19010. {
  19011. name: "Gigamacro",
  19012. height: math.unit(3000, "miles")
  19013. },
  19014. {
  19015. name: "Teramacro",
  19016. height: math.unit(500000, "miles")
  19017. },
  19018. {
  19019. name: "Teramacro+",
  19020. height: math.unit(30, "galaxies")
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(6, "feet"),
  19029. weight: math.unit(150, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/deathy/front.svg",
  19033. extra: 1552 / 1463,
  19034. bottom: 0.025
  19035. }
  19036. },
  19037. side: {
  19038. height: math.unit(6, "feet"),
  19039. weight: math.unit(150, "lb"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/deathy/side.svg",
  19043. extra: 1604 / 1455,
  19044. bottom: 0.025
  19045. }
  19046. },
  19047. back: {
  19048. height: math.unit(6, "feet"),
  19049. weight: math.unit(150, "lb"),
  19050. name: "Back",
  19051. image: {
  19052. source: "./media/characters/deathy/back.svg",
  19053. extra: 1580 / 1463,
  19054. bottom: 0.005
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Micro",
  19061. height: math.unit(5, "millimeters")
  19062. },
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(6 + 5 / 12, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19072. {
  19073. front: {
  19074. height: math.unit(16, "feet"),
  19075. weight: math.unit(4000, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/juniper/front.svg",
  19079. bottom: 0.04
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Normal",
  19086. height: math.unit(16, "feet"),
  19087. default: true
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(6, "feet"),
  19096. weight: math.unit(150, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/hipster/front.svg",
  19100. extra: 1312 / 1209,
  19101. bottom: 0.025
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(6, "feet"),
  19106. weight: math.unit(150, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/hipster/back.svg",
  19110. extra: 1281 / 1196,
  19111. bottom: 0.01
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Micro",
  19118. height: math.unit(1, "mm")
  19119. },
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(4, "inches"),
  19123. default: true
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(500, "feet")
  19128. },
  19129. {
  19130. name: "Megamacro",
  19131. height: math.unit(1000, "miles")
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(6, "feet"),
  19140. weight: math.unit(150, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/tendirmuldr/front.svg",
  19144. extra: 1878 / 1772,
  19145. bottom: 0.015
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Megamacro",
  19152. height: math.unit(1500, "miles"),
  19153. default: true
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19159. {
  19160. front: {
  19161. height: math.unit(14, "feet"),
  19162. weight: math.unit(12000, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/mort/front.svg",
  19166. extra: 365 / 318,
  19167. bottom: 0.01
  19168. }
  19169. },
  19170. side: {
  19171. height: math.unit(14, "feet"),
  19172. weight: math.unit(12000, "lb"),
  19173. name: "Side",
  19174. image: {
  19175. source: "./media/characters/mort/side.svg",
  19176. extra: 365 / 318,
  19177. bottom: 0.052
  19178. },
  19179. default: true
  19180. },
  19181. back: {
  19182. height: math.unit(14, "feet"),
  19183. weight: math.unit(12000, "lb"),
  19184. name: "Back",
  19185. image: {
  19186. source: "./media/characters/mort/back.svg",
  19187. extra: 371 / 332,
  19188. bottom: 0.18
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(14, "feet"),
  19196. default: true
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19202. {
  19203. front: {
  19204. height: math.unit(8, "feet"),
  19205. weight: math.unit(1, "ton"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/lycoa/front.svg",
  19209. extra: 1875 / 1789,
  19210. bottom: 0.022
  19211. }
  19212. },
  19213. back: {
  19214. height: math.unit(8, "feet"),
  19215. weight: math.unit(1, "ton"),
  19216. name: "Back",
  19217. image: {
  19218. source: "./media/characters/lycoa/back.svg",
  19219. extra: 1835 / 1781,
  19220. bottom: 0.03
  19221. }
  19222. },
  19223. head: {
  19224. height: math.unit(2.1, "feet"),
  19225. name: "Head",
  19226. image: {
  19227. source: "./media/characters/lycoa/head.svg"
  19228. }
  19229. },
  19230. tailmaw: {
  19231. height: math.unit(1.9, "feet"),
  19232. name: "Tailmaw",
  19233. image: {
  19234. source: "./media/characters/lycoa/tailmaw.svg"
  19235. }
  19236. },
  19237. tentacles: {
  19238. height: math.unit(2.1, "feet"),
  19239. name: "Tentacles",
  19240. image: {
  19241. source: "./media/characters/lycoa/tentacles.svg"
  19242. }
  19243. },
  19244. dick: {
  19245. height: math.unit(1.73, "feet"),
  19246. name: "Dick",
  19247. image: {
  19248. source: "./media/characters/lycoa/dick.svg"
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(8, "feet"),
  19256. default: true
  19257. },
  19258. {
  19259. name: "Macro",
  19260. height: math.unit(30, "feet")
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19266. {
  19267. front: {
  19268. height: math.unit(4 + 2 / 12, "feet"),
  19269. weight: math.unit(70, "lb"),
  19270. name: "Front",
  19271. image: {
  19272. source: "./media/characters/naldara/front.svg",
  19273. extra: 841 / 720,
  19274. bottom: 0.04
  19275. }
  19276. },
  19277. naga: {
  19278. height: math.unit(23, "feet"),
  19279. weight: math.unit(15000, "kg"),
  19280. name: "Naga",
  19281. image: {
  19282. source: "./media/characters/naldara/naga.svg",
  19283. extra: 3290/2959,
  19284. bottom: 124/3432
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(4 + 2 / 12, "feet"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(13 + 7 / 12, "feet"),
  19301. weight: math.unit(1500, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/briar/front.svg",
  19305. extra: 626 / 596,
  19306. bottom: 0.08
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(13 + 7 / 12, "feet"),
  19314. default: true
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19320. {
  19321. side: {
  19322. height: math.unit(10, "feet"),
  19323. weight: math.unit(500, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/vanguard/side.svg",
  19327. extra: 502 / 425,
  19328. bottom: 0.087
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(10, "feet"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19342. {
  19343. front: {
  19344. height: math.unit(7.5, "feet"),
  19345. weight: math.unit(2, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/artemis/front.svg",
  19349. extra: 1192 / 1075,
  19350. bottom: 0.07
  19351. }
  19352. },
  19353. frontNsfw: {
  19354. height: math.unit(7.5, "feet"),
  19355. weight: math.unit(2, "lb"),
  19356. name: "Front (NSFW)",
  19357. image: {
  19358. source: "./media/characters/artemis/front-nsfw.svg",
  19359. extra: 1192 / 1075,
  19360. bottom: 0.07
  19361. }
  19362. },
  19363. frontNsfwer: {
  19364. height: math.unit(7.5, "feet"),
  19365. weight: math.unit(2, "lb"),
  19366. name: "Front (NSFW-er)",
  19367. image: {
  19368. source: "./media/characters/artemis/front-nsfwer.svg",
  19369. extra: 1192 / 1075,
  19370. bottom: 0.07
  19371. }
  19372. },
  19373. side: {
  19374. height: math.unit(7.5, "feet"),
  19375. weight: math.unit(2, "lb"),
  19376. name: "Side",
  19377. image: {
  19378. source: "./media/characters/artemis/side.svg",
  19379. extra: 1192 / 1075,
  19380. bottom: 0.07
  19381. }
  19382. },
  19383. sideNsfw: {
  19384. height: math.unit(7.5, "feet"),
  19385. weight: math.unit(2, "lb"),
  19386. name: "Side (NSFW)",
  19387. image: {
  19388. source: "./media/characters/artemis/side-nsfw.svg",
  19389. extra: 1192 / 1075,
  19390. bottom: 0.07
  19391. }
  19392. },
  19393. sideNsfwer: {
  19394. height: math.unit(7.5, "feet"),
  19395. weight: math.unit(2, "lb"),
  19396. name: "Side (NSFW-er)",
  19397. image: {
  19398. source: "./media/characters/artemis/side-nsfwer.svg",
  19399. extra: 1192 / 1075,
  19400. bottom: 0.07
  19401. }
  19402. },
  19403. maw: {
  19404. height: math.unit(1.1, "feet"),
  19405. name: "Maw",
  19406. image: {
  19407. source: "./media/characters/artemis/maw.svg"
  19408. }
  19409. },
  19410. stomach: {
  19411. height: math.unit(0.95, "feet"),
  19412. name: "Stomach",
  19413. image: {
  19414. source: "./media/characters/artemis/stomach.svg"
  19415. }
  19416. },
  19417. dickCanine: {
  19418. height: math.unit(1, "feet"),
  19419. name: "Dick (Canine)",
  19420. image: {
  19421. source: "./media/characters/artemis/dick-canine.svg"
  19422. }
  19423. },
  19424. dickEquine: {
  19425. height: math.unit(0.85, "feet"),
  19426. name: "Dick (Equine)",
  19427. image: {
  19428. source: "./media/characters/artemis/dick-equine.svg"
  19429. }
  19430. },
  19431. dickExotic: {
  19432. height: math.unit(0.85, "feet"),
  19433. name: "Dick (Exotic)",
  19434. image: {
  19435. source: "./media/characters/artemis/dick-exotic.svg"
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(7.5, "feet"),
  19443. default: true
  19444. },
  19445. {
  19446. name: "Enlarged",
  19447. height: math.unit(12, "feet")
  19448. },
  19449. ]
  19450. ))
  19451. characterMakers.push(() => makeCharacter(
  19452. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19453. {
  19454. front: {
  19455. height: math.unit(5 + 3 / 12, "feet"),
  19456. weight: math.unit(160, "lb"),
  19457. name: "Front",
  19458. image: {
  19459. source: "./media/characters/kira/front.svg",
  19460. extra: 906 / 786,
  19461. bottom: 0.01
  19462. }
  19463. },
  19464. back: {
  19465. height: math.unit(5 + 3 / 12, "feet"),
  19466. weight: math.unit(160, "lb"),
  19467. name: "Back",
  19468. image: {
  19469. source: "./media/characters/kira/back.svg",
  19470. extra: 882 / 757,
  19471. bottom: 0.005
  19472. }
  19473. },
  19474. frontDressed: {
  19475. height: math.unit(5 + 3 / 12, "feet"),
  19476. weight: math.unit(160, "lb"),
  19477. name: "Front (Dressed)",
  19478. image: {
  19479. source: "./media/characters/kira/front-dressed.svg",
  19480. extra: 906 / 786,
  19481. bottom: 0.01
  19482. }
  19483. },
  19484. beans: {
  19485. height: math.unit(0.92, "feet"),
  19486. name: "Beans",
  19487. image: {
  19488. source: "./media/characters/kira/beans.svg"
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(5 + 3 / 12, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(5 + 4 / 12, "feet"),
  19505. weight: math.unit(145, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/scramble/front.svg",
  19509. extra: 763 / 727,
  19510. bottom: 0.05
  19511. }
  19512. },
  19513. back: {
  19514. height: math.unit(5 + 4 / 12, "feet"),
  19515. weight: math.unit(145, "lb"),
  19516. name: "Back",
  19517. image: {
  19518. source: "./media/characters/scramble/back.svg",
  19519. extra: 826 / 737,
  19520. bottom: 0.002
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(5 + 4 / 12, "feet"),
  19528. default: true
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19534. {
  19535. side: {
  19536. height: math.unit(6 + 2 / 12, "feet"),
  19537. weight: math.unit(190, "lb"),
  19538. name: "Side",
  19539. image: {
  19540. source: "./media/characters/biscuit/side.svg",
  19541. extra: 858 / 791,
  19542. bottom: 0.044
  19543. }
  19544. },
  19545. },
  19546. [
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(6 + 2 / 12, "feet"),
  19550. default: true
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19556. {
  19557. front: {
  19558. height: math.unit(5 + 2 / 12, "feet"),
  19559. weight: math.unit(120, "lb"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/poffin/front.svg",
  19563. extra: 786 / 680,
  19564. bottom: 0.005
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(5 + 2 / 12, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(6 + 3 / 12, "feet"),
  19581. weight: math.unit(519, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/dhari/front.svg",
  19585. extra: 1048 / 946,
  19586. bottom: 0.015
  19587. }
  19588. },
  19589. back: {
  19590. height: math.unit(6 + 3 / 12, "feet"),
  19591. weight: math.unit(519, "lb"),
  19592. name: "Back",
  19593. image: {
  19594. source: "./media/characters/dhari/back.svg",
  19595. extra: 1048 / 931,
  19596. bottom: 0.005
  19597. }
  19598. },
  19599. frontDressed: {
  19600. height: math.unit(6 + 3 / 12, "feet"),
  19601. weight: math.unit(519, "lb"),
  19602. name: "Front (Dressed)",
  19603. image: {
  19604. source: "./media/characters/dhari/front-dressed.svg",
  19605. extra: 1713 / 1546,
  19606. bottom: 0.02
  19607. }
  19608. },
  19609. backDressed: {
  19610. height: math.unit(6 + 3 / 12, "feet"),
  19611. weight: math.unit(519, "lb"),
  19612. name: "Back (Dressed)",
  19613. image: {
  19614. source: "./media/characters/dhari/back-dressed.svg",
  19615. extra: 1699 / 1537,
  19616. bottom: 0.01
  19617. }
  19618. },
  19619. maw: {
  19620. height: math.unit(0.95, "feet"),
  19621. name: "Maw",
  19622. image: {
  19623. source: "./media/characters/dhari/maw.svg"
  19624. }
  19625. },
  19626. wereFront: {
  19627. height: math.unit(12 + 8 / 12, "feet"),
  19628. weight: math.unit(4000, "lb"),
  19629. name: "Front (Were)",
  19630. image: {
  19631. source: "./media/characters/dhari/were-front.svg",
  19632. extra: 1065 / 969,
  19633. bottom: 0.015
  19634. }
  19635. },
  19636. wereBack: {
  19637. height: math.unit(12 + 8 / 12, "feet"),
  19638. weight: math.unit(4000, "lb"),
  19639. name: "Back (Were)",
  19640. image: {
  19641. source: "./media/characters/dhari/were-back.svg",
  19642. extra: 1065 / 969,
  19643. bottom: 0.012
  19644. }
  19645. },
  19646. wereMaw: {
  19647. height: math.unit(0.625, "meters"),
  19648. name: "Maw (Were)",
  19649. image: {
  19650. source: "./media/characters/dhari/were-maw.svg"
  19651. }
  19652. },
  19653. },
  19654. [
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(6 + 3 / 12, "feet"),
  19658. default: true
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19664. {
  19665. anthro: {
  19666. height: math.unit(5 + 7 / 12, "feet"),
  19667. weight: math.unit(175, "lb"),
  19668. name: "Anthro",
  19669. image: {
  19670. source: "./media/characters/rena-dyne/anthro.svg",
  19671. extra: 1849 / 1785,
  19672. bottom: 0.005
  19673. }
  19674. },
  19675. taur: {
  19676. height: math.unit(15 + 6 / 12, "feet"),
  19677. weight: math.unit(8000, "lb"),
  19678. name: "Taur",
  19679. image: {
  19680. source: "./media/characters/rena-dyne/taur.svg",
  19681. extra: 2315 / 2234,
  19682. bottom: 0.033
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(5 + 7 / 12, "feet"),
  19690. default: true
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(8, "feet"),
  19699. weight: math.unit(600, "lb"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/weremeep/front.svg",
  19703. extra: 967 / 862,
  19704. bottom: 0.01
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(8, "feet"),
  19712. default: true
  19713. },
  19714. {
  19715. name: "Lorg",
  19716. height: math.unit(12, "feet")
  19717. },
  19718. {
  19719. name: "Oh Lawd She Comin'",
  19720. height: math.unit(20, "feet")
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19726. {
  19727. front: {
  19728. height: math.unit(4, "feet"),
  19729. weight: math.unit(90, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/reza/front.svg",
  19733. extra: 1183 / 1111,
  19734. bottom: 0.017
  19735. }
  19736. },
  19737. back: {
  19738. height: math.unit(4, "feet"),
  19739. weight: math.unit(90, "lb"),
  19740. name: "Back",
  19741. image: {
  19742. source: "./media/characters/reza/back.svg",
  19743. extra: 1183 / 1111,
  19744. bottom: 0.01
  19745. }
  19746. },
  19747. drake: {
  19748. height: math.unit(30, "feet"),
  19749. weight: math.unit(246960, "lb"),
  19750. name: "Drake",
  19751. image: {
  19752. source: "./media/characters/reza/drake.svg",
  19753. extra: 2350 / 2024,
  19754. bottom: 60.7 / 2403
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Normal",
  19761. height: math.unit(4, "feet"),
  19762. default: true
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19768. {
  19769. side: {
  19770. height: math.unit(15, "feet"),
  19771. weight: math.unit(14, "tons"),
  19772. name: "Side",
  19773. image: {
  19774. source: "./media/characters/athea/side.svg",
  19775. extra: 960 / 540,
  19776. bottom: 0.003
  19777. }
  19778. },
  19779. sitting: {
  19780. height: math.unit(6 * 2.85, "feet"),
  19781. weight: math.unit(14, "tons"),
  19782. name: "Sitting",
  19783. image: {
  19784. source: "./media/characters/athea/sitting.svg",
  19785. extra: 621 / 581,
  19786. bottom: 0.075
  19787. }
  19788. },
  19789. maw: {
  19790. height: math.unit(7.59498031496063, "feet"),
  19791. name: "Maw",
  19792. image: {
  19793. source: "./media/characters/athea/maw.svg"
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Lap Cat",
  19800. height: math.unit(2.5, "feet")
  19801. },
  19802. {
  19803. name: "Minimacro",
  19804. height: math.unit(15, "feet"),
  19805. default: true
  19806. },
  19807. {
  19808. name: "Macro",
  19809. height: math.unit(120, "feet")
  19810. },
  19811. {
  19812. name: "Macro+",
  19813. height: math.unit(640, "feet")
  19814. },
  19815. {
  19816. name: "Colossus",
  19817. height: math.unit(2.2, "miles")
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19823. {
  19824. front: {
  19825. height: math.unit(8 + 8 / 12, "feet"),
  19826. weight: math.unit(130, "kg"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/seroko/front.svg",
  19830. extra: 1385 / 1280,
  19831. bottom: 0.025
  19832. }
  19833. },
  19834. back: {
  19835. height: math.unit(8 + 8 / 12, "feet"),
  19836. weight: math.unit(130, "kg"),
  19837. name: "Back",
  19838. image: {
  19839. source: "./media/characters/seroko/back.svg",
  19840. extra: 1369 / 1238,
  19841. bottom: 0.018
  19842. }
  19843. },
  19844. frontDressed: {
  19845. height: math.unit(8 + 8 / 12, "feet"),
  19846. weight: math.unit(130, "kg"),
  19847. name: "Front (Dressed)",
  19848. image: {
  19849. source: "./media/characters/seroko/front-dressed.svg",
  19850. extra: 1366 / 1275,
  19851. bottom: 0.03
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Normal",
  19858. height: math.unit(8 + 8 / 12, "feet"),
  19859. default: true
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(5.5, "feet"),
  19868. weight: math.unit(160, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/quatzi/front.svg",
  19872. extra: 2346 / 2242,
  19873. bottom: 0.015
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Normal",
  19880. height: math.unit(5.5, "feet"),
  19881. default: true
  19882. },
  19883. {
  19884. name: "Big",
  19885. height: math.unit(7.7, "feet")
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(5 + 11 / 12, "feet"),
  19894. weight: math.unit(180, "lb"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/sen/front.svg",
  19898. extra: 1321 / 1254,
  19899. bottom: 0.015
  19900. }
  19901. },
  19902. side: {
  19903. height: math.unit(5 + 11 / 12, "feet"),
  19904. weight: math.unit(180, "lb"),
  19905. name: "Side",
  19906. image: {
  19907. source: "./media/characters/sen/side.svg",
  19908. extra: 1321 / 1254,
  19909. bottom: 0.007
  19910. }
  19911. },
  19912. back: {
  19913. height: math.unit(5 + 11 / 12, "feet"),
  19914. weight: math.unit(180, "lb"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/sen/back.svg",
  19918. extra: 1321 / 1254
  19919. }
  19920. },
  19921. },
  19922. [
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(5 + 11 / 12, "feet"),
  19926. default: true
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19932. {
  19933. front: {
  19934. height: math.unit(166.6, "cm"),
  19935. weight: math.unit(66.6, "kg"),
  19936. name: "Front",
  19937. image: {
  19938. source: "./media/characters/fruity/front.svg",
  19939. extra: 1510 / 1386,
  19940. bottom: 0.04
  19941. }
  19942. },
  19943. back: {
  19944. height: math.unit(166.6, "cm"),
  19945. weight: math.unit(66.6, "lb"),
  19946. name: "Back",
  19947. image: {
  19948. source: "./media/characters/fruity/back.svg",
  19949. extra: 1563 / 1435,
  19950. bottom: 0.005
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(166.6, "cm"),
  19958. default: true
  19959. },
  19960. {
  19961. name: "Demonic",
  19962. height: math.unit(166.6, "feet")
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19968. {
  19969. side: {
  19970. height: math.unit(10, "feet"),
  19971. weight: math.unit(500, "lb"),
  19972. name: "Side",
  19973. image: {
  19974. source: "./media/characters/zost/side.svg",
  19975. extra: 966 / 880,
  19976. bottom: 0.075
  19977. }
  19978. },
  19979. mawFront: {
  19980. height: math.unit(1.08, "meters"),
  19981. name: "Maw (Front)",
  19982. image: {
  19983. source: "./media/characters/zost/maw-front.svg"
  19984. }
  19985. },
  19986. mawSide: {
  19987. height: math.unit(2.66, "feet"),
  19988. name: "Maw (Side)",
  19989. image: {
  19990. source: "./media/characters/zost/maw-side.svg"
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(10, "feet"),
  19998. default: true
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(5 + 4 / 12, "feet"),
  20007. weight: math.unit(120, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/luci/front.svg",
  20011. extra: 1985 / 1884,
  20012. bottom: 0.04
  20013. }
  20014. },
  20015. back: {
  20016. height: math.unit(5 + 4 / 12, "feet"),
  20017. weight: math.unit(120, "lb"),
  20018. name: "Back",
  20019. image: {
  20020. source: "./media/characters/luci/back.svg",
  20021. extra: 1892 / 1791,
  20022. bottom: 0.002
  20023. }
  20024. },
  20025. },
  20026. [
  20027. {
  20028. name: "Normal",
  20029. height: math.unit(5 + 4 / 12, "feet"),
  20030. default: true
  20031. },
  20032. ]
  20033. ))
  20034. characterMakers.push(() => makeCharacter(
  20035. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20036. {
  20037. front: {
  20038. height: math.unit(1500, "feet"),
  20039. weight: math.unit(3.8e6, "tons"),
  20040. name: "Front",
  20041. image: {
  20042. source: "./media/characters/2th/front.svg",
  20043. extra: 3489 / 3350,
  20044. bottom: 0.1
  20045. }
  20046. },
  20047. foot: {
  20048. height: math.unit(461, "feet"),
  20049. name: "Foot",
  20050. image: {
  20051. source: "./media/characters/2th/foot.svg"
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "\"Micro\"",
  20058. height: math.unit(15 + 7 / 12, "feet")
  20059. },
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(1500, "feet"),
  20063. default: true
  20064. },
  20065. {
  20066. name: "Macro",
  20067. height: math.unit(5000, "feet")
  20068. },
  20069. {
  20070. name: "Megamacro",
  20071. height: math.unit(15, "miles")
  20072. },
  20073. {
  20074. name: "Gigamacro",
  20075. height: math.unit(4000, "miles")
  20076. },
  20077. {
  20078. name: "Galactic",
  20079. height: math.unit(50, "AU")
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20085. {
  20086. front: {
  20087. height: math.unit(5 + 6 / 12, "feet"),
  20088. weight: math.unit(220, "lb"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/amethyst/front.svg",
  20092. extra: 2078 / 2040,
  20093. bottom: 0.045
  20094. }
  20095. },
  20096. back: {
  20097. height: math.unit(5 + 6 / 12, "feet"),
  20098. weight: math.unit(220, "lb"),
  20099. name: "Back",
  20100. image: {
  20101. source: "./media/characters/amethyst/back.svg",
  20102. extra: 2021 / 1989,
  20103. bottom: 0.02
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(5 + 6 / 12, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(4 + 11 / 12, "feet"),
  20120. weight: math.unit(120, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/yumi-akiyama/front.svg",
  20124. extra: 1327 / 1235,
  20125. bottom: 0.02
  20126. }
  20127. },
  20128. back: {
  20129. height: math.unit(4 + 11 / 12, "feet"),
  20130. weight: math.unit(120, "lb"),
  20131. name: "Back",
  20132. image: {
  20133. source: "./media/characters/yumi-akiyama/back.svg",
  20134. extra: 1287 / 1245,
  20135. bottom: 0.002
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Galactic",
  20142. height: math.unit(50, "galaxies"),
  20143. default: true
  20144. },
  20145. {
  20146. name: "Universal",
  20147. height: math.unit(100, "universes")
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(8, "feet"),
  20156. weight: math.unit(500, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/rifter-yrmori/front.svg",
  20160. extra: 1180 / 1125,
  20161. bottom: 0.02
  20162. }
  20163. },
  20164. back: {
  20165. height: math.unit(8, "feet"),
  20166. weight: math.unit(500, "lb"),
  20167. name: "Back",
  20168. image: {
  20169. source: "./media/characters/rifter-yrmori/back.svg",
  20170. extra: 1190 / 1145,
  20171. bottom: 0.001
  20172. }
  20173. },
  20174. wings: {
  20175. height: math.unit(7.75, "feet"),
  20176. weight: math.unit(500, "lb"),
  20177. name: "Wings",
  20178. image: {
  20179. source: "./media/characters/rifter-yrmori/wings.svg",
  20180. extra: 1357 / 1285
  20181. }
  20182. },
  20183. maw: {
  20184. height: math.unit(0.8, "feet"),
  20185. name: "Maw",
  20186. image: {
  20187. source: "./media/characters/rifter-yrmori/maw.svg"
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Normal",
  20194. height: math.unit(8, "feet"),
  20195. default: true
  20196. },
  20197. {
  20198. name: "Macro",
  20199. height: math.unit(42, "meters")
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20205. {
  20206. were: {
  20207. height: math.unit(25 + 6 / 12, "feet"),
  20208. weight: math.unit(10000, "lb"),
  20209. name: "Were",
  20210. image: {
  20211. source: "./media/characters/tahajin/were.svg",
  20212. extra: 801 / 770,
  20213. bottom: 0.042
  20214. }
  20215. },
  20216. aquatic: {
  20217. height: math.unit(6 + 4 / 12, "feet"),
  20218. weight: math.unit(160, "lb"),
  20219. name: "Aquatic",
  20220. image: {
  20221. source: "./media/characters/tahajin/aquatic.svg",
  20222. extra: 572 / 542,
  20223. bottom: 0.04
  20224. }
  20225. },
  20226. chow: {
  20227. height: math.unit(8 + 11 / 12, "feet"),
  20228. weight: math.unit(450, "lb"),
  20229. name: "Chow",
  20230. image: {
  20231. source: "./media/characters/tahajin/chow.svg",
  20232. extra: 660 / 640,
  20233. bottom: 0.015
  20234. }
  20235. },
  20236. demiNaga: {
  20237. height: math.unit(6 + 8 / 12, "feet"),
  20238. weight: math.unit(300, "lb"),
  20239. name: "Demi Naga",
  20240. image: {
  20241. source: "./media/characters/tahajin/demi-naga.svg",
  20242. extra: 643 / 615,
  20243. bottom: 0.1
  20244. }
  20245. },
  20246. data: {
  20247. height: math.unit(5, "inches"),
  20248. weight: math.unit(0.1, "lb"),
  20249. name: "Data",
  20250. image: {
  20251. source: "./media/characters/tahajin/data.svg"
  20252. }
  20253. },
  20254. fluu: {
  20255. height: math.unit(5 + 7 / 12, "feet"),
  20256. weight: math.unit(140, "lb"),
  20257. name: "Fluu",
  20258. image: {
  20259. source: "./media/characters/tahajin/fluu.svg",
  20260. extra: 628 / 592,
  20261. bottom: 0.02
  20262. }
  20263. },
  20264. starWarrior: {
  20265. height: math.unit(4 + 5 / 12, "feet"),
  20266. weight: math.unit(50, "lb"),
  20267. name: "Star Warrior",
  20268. image: {
  20269. source: "./media/characters/tahajin/star-warrior.svg"
  20270. }
  20271. },
  20272. },
  20273. [
  20274. {
  20275. name: "Normal",
  20276. height: math.unit(25 + 6 / 12, "feet"),
  20277. default: true
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20283. {
  20284. front: {
  20285. height: math.unit(8, "feet"),
  20286. weight: math.unit(350, "lb"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/gabira/front.svg",
  20290. extra: 608 / 580,
  20291. bottom: 0.03
  20292. }
  20293. },
  20294. back: {
  20295. height: math.unit(8, "feet"),
  20296. weight: math.unit(350, "lb"),
  20297. name: "Back",
  20298. image: {
  20299. source: "./media/characters/gabira/back.svg",
  20300. extra: 608 / 580,
  20301. bottom: 0.03
  20302. }
  20303. },
  20304. },
  20305. [
  20306. {
  20307. name: "Normal",
  20308. height: math.unit(8, "feet"),
  20309. default: true
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20315. {
  20316. front: {
  20317. height: math.unit(5 + 3 / 12, "feet"),
  20318. weight: math.unit(137, "lb"),
  20319. name: "Front",
  20320. image: {
  20321. source: "./media/characters/sasha-katraine/front.svg",
  20322. bottom: 0.045
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Micro",
  20329. height: math.unit(5, "inches")
  20330. },
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(5 + 3 / 12, "feet"),
  20334. default: true
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20340. {
  20341. side: {
  20342. height: math.unit(4, "inches"),
  20343. weight: math.unit(200, "grams"),
  20344. name: "Side",
  20345. image: {
  20346. source: "./media/characters/der/side.svg",
  20347. extra: 719 / 400,
  20348. bottom: 30.6 / 749.9187
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Micro",
  20355. height: math.unit(4, "inches"),
  20356. default: true
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20362. {
  20363. side: {
  20364. height: math.unit(30, "meters"),
  20365. weight: math.unit(700, "tonnes"),
  20366. name: "Side",
  20367. image: {
  20368. source: "./media/characters/fixerdragon/side.svg",
  20369. extra: (1293.0514 - 116.03) / 1106.86,
  20370. bottom: 116.03 / 1293.0514
  20371. }
  20372. },
  20373. },
  20374. [
  20375. {
  20376. name: "Planck",
  20377. height: math.unit(1.6e-35, "meters")
  20378. },
  20379. {
  20380. name: "Micro",
  20381. height: math.unit(0.4, "meters")
  20382. },
  20383. {
  20384. name: "Normal",
  20385. height: math.unit(30, "meters"),
  20386. default: true
  20387. },
  20388. {
  20389. name: "Megamacro",
  20390. height: math.unit(1.2, "megameters")
  20391. },
  20392. {
  20393. name: "Teramacro",
  20394. height: math.unit(130, "terameters")
  20395. },
  20396. {
  20397. name: "Yottamacro",
  20398. height: math.unit(6200, "yottameters")
  20399. },
  20400. ]
  20401. ));
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(8, "feet"),
  20407. weight: math.unit(250, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/kite/front.svg",
  20411. extra: 2796 / 2659,
  20412. bottom: 0.002
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(8, "feet"),
  20420. default: true
  20421. },
  20422. {
  20423. name: "Macro",
  20424. height: math.unit(360, "feet")
  20425. },
  20426. {
  20427. name: "Megamacro",
  20428. height: math.unit(1500, "feet")
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(5 + 10 / 12, "feet"),
  20437. weight: math.unit(150, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/poojawa-vynar/front.svg",
  20441. extra: (1506.1547 - 55) / 1356.6,
  20442. bottom: 55 / 1506.1547
  20443. }
  20444. },
  20445. frontTailless: {
  20446. height: math.unit(5 + 10 / 12, "feet"),
  20447. weight: math.unit(150, "lb"),
  20448. name: "Front (Tailless)",
  20449. image: {
  20450. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20451. extra: (1506.1547 - 55) / 1356.6,
  20452. bottom: 55 / 1506.1547
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Normal",
  20459. height: math.unit(5 + 10 / 12, "feet"),
  20460. default: true
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(293, "meters"),
  20469. weight: math.unit(70400, "tons"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/violette/front.svg",
  20473. extra: 1227 / 1180,
  20474. bottom: 0.005
  20475. }
  20476. },
  20477. back: {
  20478. height: math.unit(293, "meters"),
  20479. weight: math.unit(70400, "tons"),
  20480. name: "Back",
  20481. image: {
  20482. source: "./media/characters/violette/back.svg",
  20483. extra: 1227 / 1180,
  20484. bottom: 0.005
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Macro",
  20491. height: math.unit(293, "meters"),
  20492. default: true
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(1050, "feet"),
  20501. weight: math.unit(200000, "tons"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/alessandra/front.svg",
  20505. extra: 960 / 912,
  20506. bottom: 0.06
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Macro",
  20513. height: math.unit(1050, "feet")
  20514. },
  20515. {
  20516. name: "Macro+",
  20517. height: math.unit(900, "meters"),
  20518. default: true
  20519. },
  20520. ]
  20521. ))
  20522. characterMakers.push(() => makeCharacter(
  20523. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20524. {
  20525. front: {
  20526. height: math.unit(5, "feet"),
  20527. weight: math.unit(187, "lb"),
  20528. name: "Front",
  20529. image: {
  20530. source: "./media/characters/person/front.svg",
  20531. extra: 3087 / 2945,
  20532. bottom: 91 / 3181
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Micro",
  20539. height: math.unit(3, "inches")
  20540. },
  20541. {
  20542. name: "Normal",
  20543. height: math.unit(5, "feet"),
  20544. default: true
  20545. },
  20546. {
  20547. name: "Macro",
  20548. height: math.unit(90, "feet")
  20549. },
  20550. {
  20551. name: "Max Size",
  20552. height: math.unit(280, "feet")
  20553. },
  20554. ]
  20555. ))
  20556. characterMakers.push(() => makeCharacter(
  20557. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20558. {
  20559. front: {
  20560. height: math.unit(4.5, "meters"),
  20561. weight: math.unit(3200, "lb"),
  20562. name: "Front",
  20563. image: {
  20564. source: "./media/characters/ty/front.svg",
  20565. extra: 1038 / 960,
  20566. bottom: 31.156 / 1068
  20567. }
  20568. },
  20569. back: {
  20570. height: math.unit(4.5, "meters"),
  20571. weight: math.unit(3200, "lb"),
  20572. name: "Back",
  20573. image: {
  20574. source: "./media/characters/ty/back.svg",
  20575. extra: 1044 / 966,
  20576. bottom: 7.48 / 1049
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(4.5, "meters"),
  20584. default: true
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20590. {
  20591. front: {
  20592. height: math.unit(5 + 4 / 12, "feet"),
  20593. weight: math.unit(115, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/rocky/front.svg",
  20597. extra: 1012 / 975,
  20598. bottom: 54 / 1066
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(5 + 4 / 12, "feet"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20612. {
  20613. upright: {
  20614. height: math.unit(6, "meters"),
  20615. weight: math.unit(4000, "kg"),
  20616. name: "Upright",
  20617. image: {
  20618. source: "./media/characters/ruin/upright.svg",
  20619. extra: 668 / 661,
  20620. bottom: 42 / 799.8396
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(6, "meters"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(5, "feet"),
  20637. weight: math.unit(106, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/robin/front.svg",
  20641. extra: 862 / 799,
  20642. bottom: 42.4 / 914.8856
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(5, "feet"),
  20650. default: true
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20656. {
  20657. side: {
  20658. height: math.unit(3, "feet"),
  20659. weight: math.unit(225, "lb"),
  20660. name: "Side",
  20661. image: {
  20662. source: "./media/characters/saian/side.svg",
  20663. extra: 566 / 356,
  20664. bottom: 79.7 / 643
  20665. }
  20666. },
  20667. maw: {
  20668. height: math.unit(2.85, "feet"),
  20669. name: "Maw",
  20670. image: {
  20671. source: "./media/characters/saian/maw.svg"
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Normal",
  20678. height: math.unit(3, "feet"),
  20679. default: true
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20685. {
  20686. side: {
  20687. height: math.unit(8, "feet"),
  20688. weight: math.unit(300, "lb"),
  20689. name: "Side",
  20690. image: {
  20691. source: "./media/characters/equus-silvermane/side.svg",
  20692. extra: 2176 / 2050,
  20693. bottom: 65.7 / 2245
  20694. }
  20695. },
  20696. front: {
  20697. height: math.unit(8, "feet"),
  20698. weight: math.unit(300, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/equus-silvermane/front.svg",
  20702. extra: 4633 / 4400,
  20703. bottom: 71.3 / 4706.915
  20704. }
  20705. },
  20706. sideStepping: {
  20707. height: math.unit(8, "feet"),
  20708. weight: math.unit(300, "lb"),
  20709. name: "Side (Stepping)",
  20710. image: {
  20711. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20712. extra: 1968 / 1860,
  20713. bottom: 16.4 / 1989
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(8, "feet")
  20721. },
  20722. {
  20723. name: "Minimacro",
  20724. height: math.unit(75, "feet"),
  20725. default: true
  20726. },
  20727. {
  20728. name: "Macro",
  20729. height: math.unit(150, "feet")
  20730. },
  20731. {
  20732. name: "Macro+",
  20733. height: math.unit(1000, "feet")
  20734. },
  20735. {
  20736. name: "Megamacro",
  20737. height: math.unit(1, "mile")
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20743. {
  20744. side: {
  20745. height: math.unit(20, "feet"),
  20746. weight: math.unit(30000, "kg"),
  20747. name: "Side",
  20748. image: {
  20749. source: "./media/characters/windar/side.svg",
  20750. extra: 1491 / 1248,
  20751. bottom: 82.56 / 1568
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(20, "feet"),
  20759. default: true
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20765. {
  20766. side: {
  20767. height: math.unit(15.66, "feet"),
  20768. weight: math.unit(150, "lb"),
  20769. name: "Side",
  20770. image: {
  20771. source: "./media/characters/melody/side.svg",
  20772. extra: 1097 / 944,
  20773. bottom: 11.8 / 1109
  20774. }
  20775. },
  20776. sideOutfit: {
  20777. height: math.unit(15.66, "feet"),
  20778. weight: math.unit(150, "lb"),
  20779. name: "Side (Outfit)",
  20780. image: {
  20781. source: "./media/characters/melody/side-outfit.svg",
  20782. extra: 1097 / 944,
  20783. bottom: 11.8 / 1109
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(15.66, "feet"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(8, "feet"),
  20800. weight: math.unit(325, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/windera/front.svg",
  20804. extra: 3180 / 2845,
  20805. bottom: 178 / 3365
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(8, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20819. {
  20820. front: {
  20821. height: math.unit(28.75, "feet"),
  20822. weight: math.unit(2000, "kg"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/sonear/front.svg",
  20826. extra: 1041.1 / 964.9,
  20827. bottom: 53.7 / 1096.6
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(28.75, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20841. {
  20842. side: {
  20843. height: math.unit(25.5, "feet"),
  20844. weight: math.unit(23000, "kg"),
  20845. name: "Side",
  20846. image: {
  20847. source: "./media/characters/kanara/side.svg"
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(25.5, "feet"),
  20855. default: true
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20861. {
  20862. side: {
  20863. height: math.unit(10, "feet"),
  20864. weight: math.unit(1000, "kg"),
  20865. name: "Side",
  20866. image: {
  20867. source: "./media/characters/ereus/side.svg",
  20868. extra: 1157 / 959,
  20869. bottom: 153 / 1312.5
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(10, "feet"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20883. {
  20884. side: {
  20885. height: math.unit(4.5, "feet"),
  20886. weight: math.unit(500, "lb"),
  20887. name: "Side",
  20888. image: {
  20889. source: "./media/characters/e-ter/side.svg",
  20890. extra: 1550 / 1248,
  20891. bottom: 146 / 1694
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(4.5, "feet"),
  20899. default: true
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20905. {
  20906. side: {
  20907. height: math.unit(9.7, "feet"),
  20908. weight: math.unit(4000, "kg"),
  20909. name: "Side",
  20910. image: {
  20911. source: "./media/characters/yamie/side.svg"
  20912. }
  20913. },
  20914. },
  20915. [
  20916. {
  20917. name: "Normal",
  20918. height: math.unit(9.7, "feet"),
  20919. default: true
  20920. },
  20921. ]
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20925. {
  20926. front: {
  20927. height: math.unit(50, "feet"),
  20928. weight: math.unit(50000, "kg"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/anders/front.svg",
  20932. extra: 570 / 539,
  20933. bottom: 14.7 / 586.7
  20934. }
  20935. },
  20936. },
  20937. [
  20938. {
  20939. name: "Large",
  20940. height: math.unit(50, "feet")
  20941. },
  20942. {
  20943. name: "Macro",
  20944. height: math.unit(2000, "feet"),
  20945. default: true
  20946. },
  20947. {
  20948. name: "Megamacro",
  20949. height: math.unit(12, "miles")
  20950. },
  20951. ]
  20952. ))
  20953. characterMakers.push(() => makeCharacter(
  20954. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20955. {
  20956. front: {
  20957. height: math.unit(7 + 2 / 12, "feet"),
  20958. weight: math.unit(300, "lb"),
  20959. name: "Front",
  20960. image: {
  20961. source: "./media/characters/reban/front.svg",
  20962. extra: 516 / 487,
  20963. bottom: 42.82 / 558.356
  20964. }
  20965. },
  20966. dick: {
  20967. height: math.unit(7 / 5, "feet"),
  20968. name: "Dick",
  20969. image: {
  20970. source: "./media/characters/reban/dick.svg"
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Natural Height",
  20977. height: math.unit(7 + 2 / 12, "feet")
  20978. },
  20979. {
  20980. name: "Macro",
  20981. height: math.unit(500, "feet"),
  20982. default: true
  20983. },
  20984. {
  20985. name: "Canon Height",
  20986. height: math.unit(50, "AU")
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(6, "feet"),
  20995. weight: math.unit(150, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/terrance-keayes/front.svg",
  20999. extra: 1.005,
  21000. bottom: 151 / 1615
  21001. }
  21002. },
  21003. side: {
  21004. height: math.unit(6, "feet"),
  21005. weight: math.unit(150, "lb"),
  21006. name: "Side",
  21007. image: {
  21008. source: "./media/characters/terrance-keayes/side.svg",
  21009. extra: 1.005,
  21010. bottom: 129.4 / 1544
  21011. }
  21012. },
  21013. back: {
  21014. height: math.unit(6, "feet"),
  21015. weight: math.unit(150, "lb"),
  21016. name: "Back",
  21017. image: {
  21018. source: "./media/characters/terrance-keayes/back.svg",
  21019. extra: 1.005,
  21020. bottom: 58.4 / 1557.3
  21021. }
  21022. },
  21023. dick: {
  21024. height: math.unit(6 * 0.208, "feet"),
  21025. name: "Dick",
  21026. image: {
  21027. source: "./media/characters/terrance-keayes/dick.svg"
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Canon Height",
  21034. height: math.unit(35, "miles"),
  21035. default: true
  21036. },
  21037. ]
  21038. ))
  21039. characterMakers.push(() => makeCharacter(
  21040. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21041. {
  21042. front: {
  21043. height: math.unit(6, "feet"),
  21044. weight: math.unit(150, "lb"),
  21045. name: "Front",
  21046. image: {
  21047. source: "./media/characters/ofelia/front.svg",
  21048. extra: 546 / 541,
  21049. bottom: 39 / 583
  21050. }
  21051. },
  21052. back: {
  21053. height: math.unit(6, "feet"),
  21054. weight: math.unit(150, "lb"),
  21055. name: "Back",
  21056. image: {
  21057. source: "./media/characters/ofelia/back.svg",
  21058. extra: 564 / 559.5,
  21059. bottom: 8.69 / 573.02
  21060. }
  21061. },
  21062. maw: {
  21063. height: math.unit(1, "feet"),
  21064. name: "Maw",
  21065. image: {
  21066. source: "./media/characters/ofelia/maw.svg"
  21067. }
  21068. },
  21069. foot: {
  21070. height: math.unit(1.949, "feet"),
  21071. name: "Foot",
  21072. image: {
  21073. source: "./media/characters/ofelia/foot.svg"
  21074. }
  21075. },
  21076. },
  21077. [
  21078. {
  21079. name: "Canon Height",
  21080. height: math.unit(2000, "miles"),
  21081. default: true
  21082. },
  21083. ]
  21084. ))
  21085. characterMakers.push(() => makeCharacter(
  21086. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21087. {
  21088. front: {
  21089. height: math.unit(6, "feet"),
  21090. weight: math.unit(150, "lb"),
  21091. name: "Front",
  21092. image: {
  21093. source: "./media/characters/samuel/front.svg",
  21094. extra: 265 / 258,
  21095. bottom: 2 / 266.1566
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Macro",
  21102. height: math.unit(100, "feet"),
  21103. default: true
  21104. },
  21105. {
  21106. name: "Full Size",
  21107. height: math.unit(1000, "miles")
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(6, "feet"),
  21116. weight: math.unit(300, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/beishir-kiel/front.svg",
  21120. extra: 569 / 547,
  21121. bottom: 41.9 / 609
  21122. }
  21123. },
  21124. maw: {
  21125. height: math.unit(6 * 0.202, "feet"),
  21126. name: "Maw",
  21127. image: {
  21128. source: "./media/characters/beishir-kiel/maw.svg"
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Macro",
  21135. height: math.unit(300, "feet"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(5 + 8 / 12, "feet"),
  21145. weight: math.unit(120, "lb"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/logan-grey/front.svg",
  21149. extra: 2539 / 2393,
  21150. bottom: 97.6 / 2636.37
  21151. }
  21152. },
  21153. frontAlt: {
  21154. height: math.unit(5 + 8 / 12, "feet"),
  21155. weight: math.unit(120, "lb"),
  21156. name: "Front (Alt)",
  21157. image: {
  21158. source: "./media/characters/logan-grey/front-alt.svg",
  21159. extra: 958 / 893,
  21160. bottom: 15 / 970.768
  21161. }
  21162. },
  21163. back: {
  21164. height: math.unit(5 + 8 / 12, "feet"),
  21165. weight: math.unit(120, "lb"),
  21166. name: "Back",
  21167. image: {
  21168. source: "./media/characters/logan-grey/back.svg",
  21169. extra: 958 / 893,
  21170. bottom: 2.1881 / 970.9788
  21171. }
  21172. },
  21173. dick: {
  21174. height: math.unit(1.437, "feet"),
  21175. name: "Dick",
  21176. image: {
  21177. source: "./media/characters/logan-grey/dick.svg"
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(5 + 8 / 12, "feet")
  21185. },
  21186. {
  21187. name: "The 500 Foot Femboy",
  21188. height: math.unit(500, "feet"),
  21189. default: true
  21190. },
  21191. {
  21192. name: "Megmacro",
  21193. height: math.unit(20, "miles")
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21199. {
  21200. front: {
  21201. height: math.unit(8 + 2 / 12, "feet"),
  21202. weight: math.unit(275, "lb"),
  21203. name: "Front",
  21204. image: {
  21205. source: "./media/characters/draganta/front.svg",
  21206. extra: 1177 / 1135,
  21207. bottom: 33.46 / 1212.1
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(8 + 6 / 12, "feet"),
  21215. default: true
  21216. },
  21217. {
  21218. name: "Macro",
  21219. height: math.unit(150, "feet")
  21220. },
  21221. {
  21222. name: "Megamacro",
  21223. height: math.unit(1000, "miles")
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(1.72, "m"),
  21232. weight: math.unit(80, "lb"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/voski/front.svg",
  21236. extra: 2076.22 / 2022.4,
  21237. bottom: 102.7 / 2177.3866
  21238. }
  21239. },
  21240. frontNsfw: {
  21241. height: math.unit(1.72, "m"),
  21242. weight: math.unit(80, "lb"),
  21243. name: "Front (NSFW)",
  21244. image: {
  21245. source: "./media/characters/voski/front-nsfw.svg",
  21246. extra: 2076.22 / 2022.4,
  21247. bottom: 102.7 / 2177.3866
  21248. }
  21249. },
  21250. back: {
  21251. height: math.unit(1.72, "m"),
  21252. weight: math.unit(80, "lb"),
  21253. name: "Back",
  21254. image: {
  21255. source: "./media/characters/voski/back.svg",
  21256. extra: 2104 / 2051,
  21257. bottom: 10.45 / 2113.63
  21258. }
  21259. },
  21260. },
  21261. [
  21262. {
  21263. name: "Normal",
  21264. height: math.unit(1.72, "m")
  21265. },
  21266. {
  21267. name: "Macro",
  21268. height: math.unit(55, "m"),
  21269. default: true
  21270. },
  21271. {
  21272. name: "Macro+",
  21273. height: math.unit(300, "m")
  21274. },
  21275. {
  21276. name: "Macro++",
  21277. height: math.unit(700, "m")
  21278. },
  21279. {
  21280. name: "Macro+++",
  21281. height: math.unit(4500, "m")
  21282. },
  21283. {
  21284. name: "Macro++++",
  21285. height: math.unit(45, "km")
  21286. },
  21287. {
  21288. name: "Macro+++++",
  21289. height: math.unit(1220, "km")
  21290. },
  21291. ]
  21292. ))
  21293. characterMakers.push(() => makeCharacter(
  21294. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21295. {
  21296. front: {
  21297. height: math.unit(2.3, "m"),
  21298. weight: math.unit(304, "kg"),
  21299. name: "Front",
  21300. image: {
  21301. source: "./media/characters/icowom-lee/front.svg",
  21302. extra: 985 / 955,
  21303. bottom: 25.4 / 1012
  21304. }
  21305. },
  21306. fronttentacles: {
  21307. height: math.unit(2.3, "m"),
  21308. weight: math.unit(304, "kg"),
  21309. name: "Front-tentacles",
  21310. image: {
  21311. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21312. extra: 985 / 955,
  21313. bottom: 25.4 / 1012
  21314. }
  21315. },
  21316. back: {
  21317. height: math.unit(2.3, "m"),
  21318. weight: math.unit(304, "kg"),
  21319. name: "Back",
  21320. image: {
  21321. source: "./media/characters/icowom-lee/back.svg",
  21322. extra: 975 / 954,
  21323. bottom: 9.5 / 985
  21324. }
  21325. },
  21326. backtentacles: {
  21327. height: math.unit(2.3, "m"),
  21328. weight: math.unit(304, "kg"),
  21329. name: "Back-tentacles",
  21330. image: {
  21331. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21332. extra: 975 / 954,
  21333. bottom: 9.5 / 985
  21334. }
  21335. },
  21336. frontDressed: {
  21337. height: math.unit(2.3, "m"),
  21338. weight: math.unit(304, "kg"),
  21339. name: "Front (Dressed)",
  21340. image: {
  21341. source: "./media/characters/icowom-lee/front-dressed.svg",
  21342. extra: 3076 / 2933,
  21343. bottom: 51.4 / 3125.1889
  21344. }
  21345. },
  21346. rump: {
  21347. height: math.unit(0.776, "meters"),
  21348. name: "Rump",
  21349. image: {
  21350. source: "./media/characters/icowom-lee/rump.svg"
  21351. }
  21352. },
  21353. genitals: {
  21354. height: math.unit(0.78, "meters"),
  21355. name: "Genitals",
  21356. image: {
  21357. source: "./media/characters/icowom-lee/genitals.svg"
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Normal",
  21364. height: math.unit(2.3, "meters"),
  21365. default: true
  21366. },
  21367. {
  21368. name: "Macro",
  21369. height: math.unit(94, "meters"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(22, "meters"),
  21379. weight: math.unit(21000, "kg"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/shock-diamond/front.svg",
  21383. extra: 2204 / 2053,
  21384. bottom: 65 / 2239.47
  21385. }
  21386. },
  21387. frontNude: {
  21388. height: math.unit(22, "meters"),
  21389. weight: math.unit(21000, "kg"),
  21390. name: "Front (Nude)",
  21391. image: {
  21392. source: "./media/characters/shock-diamond/front-nude.svg",
  21393. extra: 2514 / 2285,
  21394. bottom: 13 / 2527.56
  21395. }
  21396. },
  21397. },
  21398. [
  21399. {
  21400. name: "Normal",
  21401. height: math.unit(3, "meters")
  21402. },
  21403. {
  21404. name: "Macro",
  21405. height: math.unit(22, "meters"),
  21406. default: true
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21412. {
  21413. front: {
  21414. height: math.unit(5 + 4 / 12, "feet"),
  21415. weight: math.unit(120, "lb"),
  21416. name: "Front",
  21417. image: {
  21418. source: "./media/characters/rory/front.svg",
  21419. extra: 589 / 556,
  21420. bottom: 45.7 / 635.76
  21421. }
  21422. },
  21423. frontNude: {
  21424. height: math.unit(5 + 4 / 12, "feet"),
  21425. weight: math.unit(120, "lb"),
  21426. name: "Front (Nude)",
  21427. image: {
  21428. source: "./media/characters/rory/front-nude.svg",
  21429. extra: 589 / 556,
  21430. bottom: 45.7 / 635.76
  21431. }
  21432. },
  21433. side: {
  21434. height: math.unit(5 + 4 / 12, "feet"),
  21435. weight: math.unit(120, "lb"),
  21436. name: "Side",
  21437. image: {
  21438. source: "./media/characters/rory/side.svg",
  21439. extra: 597 / 564,
  21440. bottom: 55 / 653
  21441. }
  21442. },
  21443. back: {
  21444. height: math.unit(5 + 4 / 12, "feet"),
  21445. weight: math.unit(120, "lb"),
  21446. name: "Back",
  21447. image: {
  21448. source: "./media/characters/rory/back.svg",
  21449. extra: 620 / 585,
  21450. bottom: 8.86 / 630.43
  21451. }
  21452. },
  21453. dick: {
  21454. height: math.unit(0.86, "feet"),
  21455. name: "Dick",
  21456. image: {
  21457. source: "./media/characters/rory/dick.svg"
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(5 + 4 / 12, "feet"),
  21465. default: true
  21466. },
  21467. {
  21468. name: "Macro",
  21469. height: math.unit(100, "feet")
  21470. },
  21471. {
  21472. name: "Macro+",
  21473. height: math.unit(140, "feet")
  21474. },
  21475. {
  21476. name: "Macro++",
  21477. height: math.unit(300, "feet")
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21483. {
  21484. front: {
  21485. height: math.unit(5 + 9 / 12, "feet"),
  21486. weight: math.unit(190, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/sprisk/front.svg",
  21490. extra: 1225 / 1180,
  21491. bottom: 42.7 / 1266.4
  21492. }
  21493. },
  21494. frontNsfw: {
  21495. height: math.unit(5 + 9 / 12, "feet"),
  21496. weight: math.unit(190, "lb"),
  21497. name: "Front (NSFW)",
  21498. image: {
  21499. source: "./media/characters/sprisk/front-nsfw.svg",
  21500. extra: 1225 / 1180,
  21501. bottom: 42.7 / 1266.4
  21502. }
  21503. },
  21504. back: {
  21505. height: math.unit(5 + 9 / 12, "feet"),
  21506. weight: math.unit(190, "lb"),
  21507. name: "Back",
  21508. image: {
  21509. source: "./media/characters/sprisk/back.svg",
  21510. extra: 1247 / 1200,
  21511. bottom: 5.6 / 1253.04
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Tiny",
  21518. height: math.unit(2, "inches")
  21519. },
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(5 + 9 / 12, "feet"),
  21523. default: true
  21524. },
  21525. {
  21526. name: "Mini Macro",
  21527. height: math.unit(18, "feet")
  21528. },
  21529. {
  21530. name: "Macro",
  21531. height: math.unit(100, "feet")
  21532. },
  21533. {
  21534. name: "MACRO",
  21535. height: math.unit(50, "miles")
  21536. },
  21537. {
  21538. name: "M A C R O",
  21539. height: math.unit(300, "miles")
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21545. {
  21546. side: {
  21547. height: math.unit(15.6, "meters"),
  21548. weight: math.unit(700000, "kg"),
  21549. name: "Side",
  21550. image: {
  21551. source: "./media/characters/bunsen/side.svg",
  21552. extra: 1644 / 358
  21553. }
  21554. },
  21555. foot: {
  21556. height: math.unit(1.611 * 1644 / 358, "meter"),
  21557. name: "Foot",
  21558. image: {
  21559. source: "./media/characters/bunsen/foot.svg"
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Small",
  21566. height: math.unit(10, "feet")
  21567. },
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(15.6, "meters"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21577. {
  21578. front: {
  21579. height: math.unit(4 + 11 / 12, "feet"),
  21580. weight: math.unit(140, "lb"),
  21581. name: "Front",
  21582. image: {
  21583. source: "./media/characters/sesh/front.svg",
  21584. extra: 3420 / 3231,
  21585. bottom: 72 / 3949.5
  21586. }
  21587. },
  21588. },
  21589. [
  21590. {
  21591. name: "Normal",
  21592. height: math.unit(4 + 11 / 12, "feet")
  21593. },
  21594. {
  21595. name: "Grown",
  21596. height: math.unit(15, "feet"),
  21597. default: true
  21598. },
  21599. {
  21600. name: "Macro",
  21601. height: math.unit(1500, "feet")
  21602. },
  21603. {
  21604. name: "Megamacro",
  21605. height: math.unit(30, "miles")
  21606. },
  21607. {
  21608. name: "Continental",
  21609. height: math.unit(3000, "miles")
  21610. },
  21611. {
  21612. name: "Gravity Mass",
  21613. height: math.unit(300000, "miles")
  21614. },
  21615. {
  21616. name: "Planet Buster",
  21617. height: math.unit(30000000, "miles")
  21618. },
  21619. {
  21620. name: "Big",
  21621. height: math.unit(3000000000, "miles")
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(9, "feet"),
  21630. weight: math.unit(350, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/pepper/front.svg",
  21634. extra: 1448 / 1312,
  21635. bottom: 9.4 / 1457.88
  21636. }
  21637. },
  21638. back: {
  21639. height: math.unit(9, "feet"),
  21640. weight: math.unit(350, "lb"),
  21641. name: "Back",
  21642. image: {
  21643. source: "./media/characters/pepper/back.svg",
  21644. extra: 1423 / 1300,
  21645. bottom: 4.6 / 1429
  21646. }
  21647. },
  21648. maw: {
  21649. height: math.unit(0.932, "feet"),
  21650. name: "Maw",
  21651. image: {
  21652. source: "./media/characters/pepper/maw.svg"
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(9, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(6, "feet"),
  21669. weight: math.unit(150, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/maelstrom/front.svg",
  21673. extra: 2100 / 1883,
  21674. bottom: 94 / 2196.7
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Less Kaiju",
  21681. height: math.unit(200, "feet")
  21682. },
  21683. {
  21684. name: "Kaiju",
  21685. height: math.unit(400, "feet"),
  21686. default: true
  21687. },
  21688. {
  21689. name: "Kaiju-er",
  21690. height: math.unit(600, "feet")
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(6 + 5 / 12, "feet"),
  21699. weight: math.unit(180, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/lexir/front.svg",
  21703. extra: 180 / 172,
  21704. bottom: 12 / 192
  21705. }
  21706. },
  21707. back: {
  21708. height: math.unit(6 + 5 / 12, "feet"),
  21709. weight: math.unit(180, "lb"),
  21710. name: "Back",
  21711. image: {
  21712. source: "./media/characters/lexir/back.svg",
  21713. extra: 183.84 / 175.5,
  21714. bottom: 3.1 / 187
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Very Smal",
  21721. height: math.unit(1, "nm")
  21722. },
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(6 + 5 / 12, "feet"),
  21726. default: true
  21727. },
  21728. {
  21729. name: "Macro",
  21730. height: math.unit(1, "mile")
  21731. },
  21732. {
  21733. name: "Megamacro",
  21734. height: math.unit(50, "miles")
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(1.5, "meters"),
  21743. weight: math.unit(100, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/maksio/front.svg",
  21747. extra: 1549 / 1531,
  21748. bottom: 123.7 / 1674.5429
  21749. }
  21750. },
  21751. back: {
  21752. height: math.unit(1.5, "meters"),
  21753. weight: math.unit(100, "lb"),
  21754. name: "Back",
  21755. image: {
  21756. source: "./media/characters/maksio/back.svg",
  21757. extra: 1541 / 1509,
  21758. bottom: 97 / 1639
  21759. }
  21760. },
  21761. hand: {
  21762. height: math.unit(0.621, "feet"),
  21763. name: "Hand",
  21764. image: {
  21765. source: "./media/characters/maksio/hand.svg"
  21766. }
  21767. },
  21768. foot: {
  21769. height: math.unit(1.611, "feet"),
  21770. name: "Foot",
  21771. image: {
  21772. source: "./media/characters/maksio/foot.svg"
  21773. }
  21774. },
  21775. },
  21776. [
  21777. {
  21778. name: "Shrunken",
  21779. height: math.unit(10, "cm")
  21780. },
  21781. {
  21782. name: "Normal",
  21783. height: math.unit(150, "cm"),
  21784. default: true
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21790. {
  21791. front: {
  21792. height: math.unit(100, "feet"),
  21793. name: "Front",
  21794. image: {
  21795. source: "./media/characters/erza-bear/front.svg",
  21796. extra: 2449 / 2390,
  21797. bottom: 46 / 2494
  21798. }
  21799. },
  21800. back: {
  21801. height: math.unit(100, "feet"),
  21802. name: "Back",
  21803. image: {
  21804. source: "./media/characters/erza-bear/back.svg",
  21805. extra: 2489 / 2430,
  21806. bottom: 85.4 / 2480
  21807. }
  21808. },
  21809. tail: {
  21810. height: math.unit(42, "feet"),
  21811. name: "Tail",
  21812. image: {
  21813. source: "./media/characters/erza-bear/tail.svg"
  21814. }
  21815. },
  21816. tongue: {
  21817. height: math.unit(8, "feet"),
  21818. name: "Tongue",
  21819. image: {
  21820. source: "./media/characters/erza-bear/tongue.svg"
  21821. }
  21822. },
  21823. dick: {
  21824. height: math.unit(10.5, "feet"),
  21825. name: "Dick",
  21826. image: {
  21827. source: "./media/characters/erza-bear/dick.svg"
  21828. }
  21829. },
  21830. dickVertical: {
  21831. height: math.unit(16.9, "feet"),
  21832. name: "Dick (Vertical)",
  21833. image: {
  21834. source: "./media/characters/erza-bear/dick-vertical.svg"
  21835. }
  21836. },
  21837. },
  21838. [
  21839. {
  21840. name: "Macro",
  21841. height: math.unit(100, "feet"),
  21842. default: true
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21848. {
  21849. front: {
  21850. height: math.unit(172, "cm"),
  21851. weight: math.unit(73, "kg"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/violet-flor/front.svg",
  21855. extra: 1530 / 1442,
  21856. bottom: 61.9 / 1588.8
  21857. }
  21858. },
  21859. back: {
  21860. height: math.unit(180, "cm"),
  21861. weight: math.unit(73, "kg"),
  21862. name: "Back",
  21863. image: {
  21864. source: "./media/characters/violet-flor/back.svg",
  21865. extra: 1692 / 1630,
  21866. bottom: 20 / 1712
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Normal",
  21873. height: math.unit(172, "cm"),
  21874. default: true
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21880. {
  21881. front: {
  21882. height: math.unit(6, "feet"),
  21883. weight: math.unit(220, "lb"),
  21884. name: "Front",
  21885. image: {
  21886. source: "./media/characters/lynn-rhea/front.svg",
  21887. extra: 310 / 273
  21888. }
  21889. },
  21890. back: {
  21891. height: math.unit(6, "feet"),
  21892. weight: math.unit(220, "lb"),
  21893. name: "Back",
  21894. image: {
  21895. source: "./media/characters/lynn-rhea/back.svg",
  21896. extra: 310 / 273
  21897. }
  21898. },
  21899. dicks: {
  21900. height: math.unit(0.9, "feet"),
  21901. name: "Dicks",
  21902. image: {
  21903. source: "./media/characters/lynn-rhea/dicks.svg"
  21904. }
  21905. },
  21906. slit: {
  21907. height: math.unit(0.4, "feet"),
  21908. name: "Slit",
  21909. image: {
  21910. source: "./media/characters/lynn-rhea/slit.svg"
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Micro",
  21917. height: math.unit(1, "inch")
  21918. },
  21919. {
  21920. name: "Macro",
  21921. height: math.unit(60, "feet"),
  21922. default: true
  21923. },
  21924. {
  21925. name: "Megamacro",
  21926. height: math.unit(2, "miles")
  21927. },
  21928. {
  21929. name: "Gigamacro",
  21930. height: math.unit(3, "earths")
  21931. },
  21932. {
  21933. name: "Galactic",
  21934. height: math.unit(0.8, "galaxies")
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21940. {
  21941. front: {
  21942. height: math.unit(1600, "feet"),
  21943. weight: math.unit(85758785169, "kg"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/valathos/front.svg",
  21947. extra: 1451 / 1339
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Macro",
  21954. height: math.unit(1600, "feet"),
  21955. default: true
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21961. {
  21962. front: {
  21963. height: math.unit(7 + 5 / 12, "feet"),
  21964. weight: math.unit(300, "lb"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/azula/front.svg",
  21968. extra: 3208 / 2880,
  21969. bottom: 80.2 / 3277
  21970. }
  21971. },
  21972. back: {
  21973. height: math.unit(7 + 5 / 12, "feet"),
  21974. weight: math.unit(300, "lb"),
  21975. name: "Back",
  21976. image: {
  21977. source: "./media/characters/azula/back.svg",
  21978. extra: 3169 / 2822,
  21979. bottom: 150.6 / 3321
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(7 + 5 / 12, "feet"),
  21987. default: true
  21988. },
  21989. {
  21990. name: "Big",
  21991. height: math.unit(20, "feet")
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21997. {
  21998. front: {
  21999. height: math.unit(5 + 1 / 12, "feet"),
  22000. weight: math.unit(110, "lb"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/rupert/front.svg",
  22004. extra: 1549 / 1495,
  22005. bottom: 54.2 / 1604.4
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(5 + 1 / 12, "feet"),
  22013. default: true
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22019. {
  22020. front: {
  22021. height: math.unit(8 + 4 / 12, "feet"),
  22022. weight: math.unit(350, "lb"),
  22023. name: "Front",
  22024. image: {
  22025. source: "./media/characters/sheera-castellar/front.svg",
  22026. extra: 1957 / 1894,
  22027. bottom: 26.97 / 1975.017
  22028. }
  22029. },
  22030. side: {
  22031. height: math.unit(8 + 4 / 12, "feet"),
  22032. weight: math.unit(350, "lb"),
  22033. name: "Side",
  22034. image: {
  22035. source: "./media/characters/sheera-castellar/side.svg",
  22036. extra: 1957 / 1894
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(8 + 4 / 12, "feet"),
  22041. weight: math.unit(350, "lb"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/sheera-castellar/back.svg",
  22045. extra: 1957 / 1894
  22046. }
  22047. },
  22048. angled: {
  22049. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22050. weight: math.unit(350, "lb"),
  22051. name: "Angled",
  22052. image: {
  22053. source: "./media/characters/sheera-castellar/angled.svg",
  22054. extra: 1807 / 1707,
  22055. bottom: 68 / 1875
  22056. }
  22057. },
  22058. genitals: {
  22059. height: math.unit(2.2, "feet"),
  22060. name: "Genitals",
  22061. image: {
  22062. source: "./media/characters/sheera-castellar/genitals.svg"
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(8 + 4 / 12, "feet")
  22070. },
  22071. {
  22072. name: "Macro",
  22073. height: math.unit(150, "feet"),
  22074. default: true
  22075. },
  22076. {
  22077. name: "Macro+",
  22078. height: math.unit(800, "feet")
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(6, "feet"),
  22087. weight: math.unit(150, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/jaipur/front.svg",
  22091. extra: 3860 / 3731,
  22092. bottom: 287 / 4140
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(6, "feet"),
  22097. weight: math.unit(150, "lb"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/jaipur/back.svg",
  22101. extra: 4060 / 3930,
  22102. bottom: 151 / 4200
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(1.85, "meters"),
  22110. default: true
  22111. },
  22112. {
  22113. name: "Macro",
  22114. height: math.unit(150, "meters")
  22115. },
  22116. {
  22117. name: "Macro+",
  22118. height: math.unit(0.5, "miles")
  22119. },
  22120. {
  22121. name: "Macro++",
  22122. height: math.unit(2.5, "miles")
  22123. },
  22124. {
  22125. name: "Macro+++",
  22126. height: math.unit(12, "miles")
  22127. },
  22128. {
  22129. name: "Macro++++",
  22130. height: math.unit(120, "miles")
  22131. },
  22132. {
  22133. name: "Macro+++++",
  22134. height: math.unit(1200, "miles")
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(6, "feet"),
  22143. weight: math.unit(150, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/sheila-wolf/front.svg",
  22147. extra: 1931 / 1808,
  22148. bottom: 29.5 / 1960
  22149. }
  22150. },
  22151. dick: {
  22152. height: math.unit(1.464, "feet"),
  22153. name: "Dick",
  22154. image: {
  22155. source: "./media/characters/sheila-wolf/dick.svg"
  22156. }
  22157. },
  22158. muzzle: {
  22159. height: math.unit(0.513, "feet"),
  22160. name: "Muzzle",
  22161. image: {
  22162. source: "./media/characters/sheila-wolf/muzzle.svg"
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Macro",
  22169. height: math.unit(70, "feet"),
  22170. default: true
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22176. {
  22177. front: {
  22178. height: math.unit(32, "meters"),
  22179. weight: math.unit(300000, "kg"),
  22180. name: "Front",
  22181. image: {
  22182. source: "./media/characters/almor/front.svg",
  22183. extra: 1408 / 1322,
  22184. bottom: 94.6 / 1506.5
  22185. }
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Macro",
  22191. height: math.unit(32, "meters"),
  22192. default: true
  22193. },
  22194. ]
  22195. ))
  22196. characterMakers.push(() => makeCharacter(
  22197. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22198. {
  22199. front: {
  22200. height: math.unit(7, "feet"),
  22201. weight: math.unit(200, "lb"),
  22202. name: "Front",
  22203. image: {
  22204. source: "./media/characters/silver/front.svg",
  22205. extra: 472.1 / 450.5,
  22206. bottom: 26.5 / 499.424
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Normal",
  22213. height: math.unit(7, "feet"),
  22214. default: true
  22215. },
  22216. {
  22217. name: "Macro",
  22218. height: math.unit(800, "feet")
  22219. },
  22220. {
  22221. name: "Megamacro",
  22222. height: math.unit(250, "miles")
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22228. {
  22229. front: {
  22230. height: math.unit(6, "feet"),
  22231. weight: math.unit(150, "lb"),
  22232. name: "Front",
  22233. image: {
  22234. source: "./media/characters/pliskin/front.svg",
  22235. extra: 1469 / 1359,
  22236. bottom: 70 / 1540
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Micro",
  22243. height: math.unit(3, "inches")
  22244. },
  22245. {
  22246. name: "Normal",
  22247. height: math.unit(5 + 11 / 12, "feet"),
  22248. default: true
  22249. },
  22250. {
  22251. name: "Macro",
  22252. height: math.unit(120, "feet")
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(6, "feet"),
  22261. weight: math.unit(150, "lb"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/sammy/front.svg",
  22265. extra: 1193 / 1089,
  22266. bottom: 30.5 / 1226
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Macro",
  22273. height: math.unit(1700, "feet"),
  22274. default: true
  22275. },
  22276. {
  22277. name: "Examacro",
  22278. height: math.unit(2.5e9, "lightyears")
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(21, "meters"),
  22287. weight: math.unit(12, "tonnes"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/kuru/front.svg",
  22291. extra: 4301 / 3785,
  22292. bottom: 371.3 / 4691
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Macro",
  22299. height: math.unit(21, "meters"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(23, "meters"),
  22309. weight: math.unit(12.2, "tonnes"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/rakka/front.svg",
  22313. extra: 4670 / 4169,
  22314. bottom: 301 / 4968.7
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Macro",
  22321. height: math.unit(23, "meters"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(6, "feet"),
  22331. weight: math.unit(150, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/rhys-feline/front.svg",
  22335. extra: 2488 / 2308,
  22336. bottom: 35.67 / 2519.19
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Really Small",
  22343. height: math.unit(1, "nm")
  22344. },
  22345. {
  22346. name: "Micro",
  22347. height: math.unit(4, "inches")
  22348. },
  22349. {
  22350. name: "Normal",
  22351. height: math.unit(4 + 10 / 12, "feet"),
  22352. default: true
  22353. },
  22354. {
  22355. name: "Macro",
  22356. height: math.unit(100, "feet")
  22357. },
  22358. {
  22359. name: "Megamacto",
  22360. height: math.unit(50, "miles")
  22361. },
  22362. ]
  22363. ))
  22364. characterMakers.push(() => makeCharacter(
  22365. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22366. {
  22367. side: {
  22368. height: math.unit(30, "feet"),
  22369. weight: math.unit(35000, "kg"),
  22370. name: "Side",
  22371. image: {
  22372. source: "./media/characters/alydar/side.svg",
  22373. extra: 234 / 222,
  22374. bottom: 6.5 / 241
  22375. }
  22376. },
  22377. front: {
  22378. height: math.unit(30, "feet"),
  22379. weight: math.unit(35000, "kg"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/alydar/front.svg",
  22383. extra: 223.37 / 210.2,
  22384. bottom: 22.3 / 246.76
  22385. }
  22386. },
  22387. top: {
  22388. height: math.unit(64.54, "feet"),
  22389. weight: math.unit(35000, "kg"),
  22390. name: "Top",
  22391. image: {
  22392. source: "./media/characters/alydar/top.svg"
  22393. }
  22394. },
  22395. anthro: {
  22396. height: math.unit(30, "feet"),
  22397. weight: math.unit(9000, "kg"),
  22398. name: "Anthro",
  22399. image: {
  22400. source: "./media/characters/alydar/anthro.svg",
  22401. extra: 432 / 421,
  22402. bottom: 7.18 / 440
  22403. }
  22404. },
  22405. maw: {
  22406. height: math.unit(11.693, "feet"),
  22407. name: "Maw",
  22408. image: {
  22409. source: "./media/characters/alydar/maw.svg"
  22410. }
  22411. },
  22412. head: {
  22413. height: math.unit(11.693, "feet"),
  22414. name: "Head",
  22415. image: {
  22416. source: "./media/characters/alydar/head.svg"
  22417. }
  22418. },
  22419. headAlt: {
  22420. height: math.unit(12.861, "feet"),
  22421. name: "Head (Alt)",
  22422. image: {
  22423. source: "./media/characters/alydar/head-alt.svg"
  22424. }
  22425. },
  22426. wing: {
  22427. height: math.unit(20.712, "feet"),
  22428. name: "Wing",
  22429. image: {
  22430. source: "./media/characters/alydar/wing.svg"
  22431. }
  22432. },
  22433. wingFeather: {
  22434. height: math.unit(9.662, "feet"),
  22435. name: "Wing Feather",
  22436. image: {
  22437. source: "./media/characters/alydar/wing-feather.svg"
  22438. }
  22439. },
  22440. countourFeather: {
  22441. height: math.unit(4.154, "feet"),
  22442. name: "Contour Feather",
  22443. image: {
  22444. source: "./media/characters/alydar/contour-feather.svg"
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Diplomatic",
  22451. height: math.unit(13, "feet"),
  22452. default: true
  22453. },
  22454. {
  22455. name: "Small",
  22456. height: math.unit(30, "feet")
  22457. },
  22458. {
  22459. name: "Normal",
  22460. height: math.unit(95, "feet"),
  22461. default: true
  22462. },
  22463. {
  22464. name: "Large",
  22465. height: math.unit(285, "feet")
  22466. },
  22467. {
  22468. name: "Incomprehensible",
  22469. height: math.unit(450, "megameters")
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22475. {
  22476. side: {
  22477. height: math.unit(11, "feet"),
  22478. weight: math.unit(1750, "kg"),
  22479. name: "Side",
  22480. image: {
  22481. source: "./media/characters/selicia/side.svg",
  22482. extra: 440 / 396,
  22483. bottom: 24.8 / 465.979
  22484. }
  22485. },
  22486. maw: {
  22487. height: math.unit(4.665, "feet"),
  22488. name: "Maw",
  22489. image: {
  22490. source: "./media/characters/selicia/maw.svg"
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(11, "feet"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22504. {
  22505. side: {
  22506. height: math.unit(2 + 6 / 12, "feet"),
  22507. weight: math.unit(30, "lb"),
  22508. name: "Side",
  22509. image: {
  22510. source: "./media/characters/layla/side.svg",
  22511. extra: 244 / 188,
  22512. bottom: 18.2 / 262.1
  22513. }
  22514. },
  22515. back: {
  22516. height: math.unit(2 + 6 / 12, "feet"),
  22517. weight: math.unit(30, "lb"),
  22518. name: "Back",
  22519. image: {
  22520. source: "./media/characters/layla/back.svg",
  22521. extra: 308 / 241.5,
  22522. bottom: 8.9 / 316.8
  22523. }
  22524. },
  22525. cumming: {
  22526. height: math.unit(2 + 6 / 12, "feet"),
  22527. weight: math.unit(30, "lb"),
  22528. name: "Cumming",
  22529. image: {
  22530. source: "./media/characters/layla/cumming.svg",
  22531. extra: 342 / 279,
  22532. bottom: 595 / 938
  22533. }
  22534. },
  22535. dickFlaccid: {
  22536. height: math.unit(2.595, "feet"),
  22537. name: "Flaccid Genitals",
  22538. image: {
  22539. source: "./media/characters/layla/dick-flaccid.svg"
  22540. }
  22541. },
  22542. dickErect: {
  22543. height: math.unit(2.359, "feet"),
  22544. name: "Erect Genitals",
  22545. image: {
  22546. source: "./media/characters/layla/dick-erect.svg"
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Micro",
  22553. height: math.unit(1, "inch")
  22554. },
  22555. {
  22556. name: "Small",
  22557. height: math.unit(1, "foot")
  22558. },
  22559. {
  22560. name: "Normal",
  22561. height: math.unit(2 + 6 / 12, "feet"),
  22562. default: true
  22563. },
  22564. {
  22565. name: "Macro",
  22566. height: math.unit(200, "feet")
  22567. },
  22568. {
  22569. name: "Megamacro",
  22570. height: math.unit(1000, "miles")
  22571. },
  22572. {
  22573. name: "Planetary",
  22574. height: math.unit(8000, "miles")
  22575. },
  22576. {
  22577. name: "True Layla",
  22578. height: math.unit(200000 * 7, "multiverses")
  22579. },
  22580. ]
  22581. ))
  22582. characterMakers.push(() => makeCharacter(
  22583. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22584. {
  22585. back: {
  22586. height: math.unit(10.5, "feet"),
  22587. weight: math.unit(800, "lb"),
  22588. name: "Back",
  22589. image: {
  22590. source: "./media/characters/knox/back.svg",
  22591. extra: 1486 / 1089,
  22592. bottom: 107 / 1601.4
  22593. }
  22594. },
  22595. side: {
  22596. height: math.unit(10.5, "feet"),
  22597. weight: math.unit(800, "lb"),
  22598. name: "Side",
  22599. image: {
  22600. source: "./media/characters/knox/side.svg",
  22601. extra: 244 / 218,
  22602. bottom: 14 / 260
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Compact",
  22609. height: math.unit(10.5, "feet"),
  22610. default: true
  22611. },
  22612. {
  22613. name: "Dynamax",
  22614. height: math.unit(210, "feet")
  22615. },
  22616. {
  22617. name: "Full Macro",
  22618. height: math.unit(850, "feet")
  22619. },
  22620. ]
  22621. ))
  22622. characterMakers.push(() => makeCharacter(
  22623. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22624. {
  22625. front: {
  22626. height: math.unit(6, "feet"),
  22627. weight: math.unit(152, "lb"),
  22628. name: "Front",
  22629. image: {
  22630. source: "./media/characters/shin-pikachu/front.svg",
  22631. extra: 1574 / 1480,
  22632. bottom: 53.3 / 1626
  22633. }
  22634. },
  22635. hand: {
  22636. height: math.unit(1.055, "feet"),
  22637. name: "Hand",
  22638. image: {
  22639. source: "./media/characters/shin-pikachu/hand.svg"
  22640. }
  22641. },
  22642. foot: {
  22643. height: math.unit(1.1, "feet"),
  22644. name: "Foot",
  22645. image: {
  22646. source: "./media/characters/shin-pikachu/foot.svg"
  22647. }
  22648. },
  22649. collar: {
  22650. height: math.unit(0.386, "feet"),
  22651. name: "Collar",
  22652. image: {
  22653. source: "./media/characters/shin-pikachu/collar.svg"
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Smallest",
  22660. height: math.unit(0.5, "inches")
  22661. },
  22662. {
  22663. name: "Micro",
  22664. height: math.unit(6, "inches")
  22665. },
  22666. {
  22667. name: "Normal",
  22668. height: math.unit(6, "feet"),
  22669. default: true
  22670. },
  22671. {
  22672. name: "Macro",
  22673. height: math.unit(150, "feet")
  22674. },
  22675. ]
  22676. ))
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22679. {
  22680. front: {
  22681. height: math.unit(28, "feet"),
  22682. weight: math.unit(10500, "lb"),
  22683. name: "Front",
  22684. image: {
  22685. source: "./media/characters/kayda/front.svg",
  22686. extra: 1536 / 1428,
  22687. bottom: 68.7 / 1603
  22688. }
  22689. },
  22690. back: {
  22691. height: math.unit(28, "feet"),
  22692. weight: math.unit(10500, "lb"),
  22693. name: "Back",
  22694. image: {
  22695. source: "./media/characters/kayda/back.svg",
  22696. extra: 1557 / 1464,
  22697. bottom: 39.5 / 1597.49
  22698. }
  22699. },
  22700. dick: {
  22701. height: math.unit(3.858, "feet"),
  22702. name: "Dick",
  22703. image: {
  22704. source: "./media/characters/kayda/dick.svg"
  22705. }
  22706. },
  22707. },
  22708. [
  22709. {
  22710. name: "Macro",
  22711. height: math.unit(28, "feet"),
  22712. default: true
  22713. },
  22714. ]
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22718. {
  22719. front: {
  22720. height: math.unit(10 + 11 / 12, "feet"),
  22721. weight: math.unit(1400, "lb"),
  22722. name: "Front",
  22723. image: {
  22724. source: "./media/characters/brian/front.svg",
  22725. extra: 737 / 692,
  22726. bottom: 55.4 / 785
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Normal",
  22733. height: math.unit(10 + 11 / 12, "feet"),
  22734. default: true
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(5 + 8 / 12, "feet"),
  22743. weight: math.unit(140, "lb"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/khemri/front.svg",
  22747. extra: 4780 / 4059,
  22748. bottom: 80.1 / 4859.25
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Micro",
  22755. height: math.unit(6, "inches")
  22756. },
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(5 + 8 / 12, "feet"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22766. {
  22767. front: {
  22768. height: math.unit(13, "feet"),
  22769. weight: math.unit(1700, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/felix-braveheart/front.svg",
  22773. extra: 1222 / 1157,
  22774. bottom: 53.2 / 1280
  22775. }
  22776. },
  22777. back: {
  22778. height: math.unit(13, "feet"),
  22779. weight: math.unit(1700, "lb"),
  22780. name: "Back",
  22781. image: {
  22782. source: "./media/characters/felix-braveheart/back.svg",
  22783. extra: 1277 / 1203,
  22784. bottom: 50.2 / 1327
  22785. }
  22786. },
  22787. feral: {
  22788. height: math.unit(6, "feet"),
  22789. weight: math.unit(400, "lb"),
  22790. name: "Feral",
  22791. image: {
  22792. source: "./media/characters/felix-braveheart/feral.svg",
  22793. extra: 682 / 625,
  22794. bottom: 6.9 / 688
  22795. }
  22796. },
  22797. },
  22798. [
  22799. {
  22800. name: "Normal",
  22801. height: math.unit(13, "feet"),
  22802. default: true
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22808. {
  22809. side: {
  22810. height: math.unit(5 + 11 / 12, "feet"),
  22811. weight: math.unit(1400, "lb"),
  22812. name: "Side",
  22813. image: {
  22814. source: "./media/characters/shadow-blade/side.svg",
  22815. extra: 1726 / 1267,
  22816. bottom: 58.4 / 1785
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(5 + 11 / 12, "feet"),
  22824. default: true
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(1 + 6 / 12, "feet"),
  22833. weight: math.unit(25, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/karla-halldor/front.svg",
  22837. extra: 1459 / 1383,
  22838. bottom: 12 / 1472
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(1 + 6 / 12, "feet"),
  22846. default: true
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(6 + 2 / 12, "feet"),
  22855. weight: math.unit(160, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/ariam/front.svg",
  22859. extra: 714 / 617,
  22860. bottom: 23.4 / 737,
  22861. }
  22862. },
  22863. squatting: {
  22864. height: math.unit(4.1, "feet"),
  22865. weight: math.unit(160, "lb"),
  22866. name: "Squatting",
  22867. image: {
  22868. source: "./media/characters/ariam/squatting.svg",
  22869. extra: 2617 / 2112,
  22870. bottom: 61.2 / 2681,
  22871. }
  22872. },
  22873. },
  22874. [
  22875. {
  22876. name: "Normal",
  22877. height: math.unit(6 + 2 / 12, "feet"),
  22878. default: true
  22879. },
  22880. {
  22881. name: "Normal+",
  22882. height: math.unit(4, "meters")
  22883. },
  22884. {
  22885. name: "Macro",
  22886. height: math.unit(50, "meters")
  22887. },
  22888. {
  22889. name: "Macro+",
  22890. height: math.unit(100, "meters")
  22891. },
  22892. {
  22893. name: "Megamacro",
  22894. height: math.unit(20, "km")
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22900. {
  22901. front: {
  22902. height: math.unit(1.67, "meters"),
  22903. weight: math.unit(140, "lb"),
  22904. name: "Front",
  22905. image: {
  22906. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22907. extra: 438 / 410,
  22908. bottom: 0.75 / 439
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Shrunken",
  22915. height: math.unit(7.6, "cm")
  22916. },
  22917. {
  22918. name: "Human Scale",
  22919. height: math.unit(1.67, "meters")
  22920. },
  22921. {
  22922. name: "Wolxi Scale",
  22923. height: math.unit(36.7, "meters"),
  22924. default: true
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(1.73, "meters"),
  22933. weight: math.unit(240, "lb"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/izue-two-mothers/front.svg",
  22937. extra: 469 / 437,
  22938. bottom: 1.24 / 470.6
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Shrunken",
  22945. height: math.unit(7.86, "cm")
  22946. },
  22947. {
  22948. name: "Human Scale",
  22949. height: math.unit(1.73, "meters")
  22950. },
  22951. {
  22952. name: "Wolxi Scale",
  22953. height: math.unit(38, "meters"),
  22954. default: true
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22960. {
  22961. front: {
  22962. height: math.unit(1.55, "meters"),
  22963. weight: math.unit(120, "lb"),
  22964. name: "Front",
  22965. image: {
  22966. source: "./media/characters/teeku-love-shack/front.svg",
  22967. extra: 387 / 362,
  22968. bottom: 1.51 / 388
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Shrunken",
  22975. height: math.unit(7, "cm")
  22976. },
  22977. {
  22978. name: "Human Scale",
  22979. height: math.unit(1.55, "meters")
  22980. },
  22981. {
  22982. name: "Wolxi Scale",
  22983. height: math.unit(34.1, "meters"),
  22984. default: true
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22990. {
  22991. front: {
  22992. height: math.unit(1.83, "meters"),
  22993. weight: math.unit(135, "lb"),
  22994. name: "Front",
  22995. image: {
  22996. source: "./media/characters/dejma-the-red/front.svg",
  22997. extra: 480 / 458,
  22998. bottom: 1.8 / 482
  22999. }
  23000. },
  23001. },
  23002. [
  23003. {
  23004. name: "Shrunken",
  23005. height: math.unit(8.3, "cm")
  23006. },
  23007. {
  23008. name: "Human Scale",
  23009. height: math.unit(1.83, "meters")
  23010. },
  23011. {
  23012. name: "Wolxi Scale",
  23013. height: math.unit(40, "meters"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23020. {
  23021. front: {
  23022. height: math.unit(1.78, "meters"),
  23023. weight: math.unit(65, "kg"),
  23024. name: "Front",
  23025. image: {
  23026. source: "./media/characters/aki/front.svg",
  23027. extra: 452 / 415
  23028. }
  23029. },
  23030. frontNsfw: {
  23031. height: math.unit(1.78, "meters"),
  23032. weight: math.unit(65, "kg"),
  23033. name: "Front (NSFW)",
  23034. image: {
  23035. source: "./media/characters/aki/front-nsfw.svg",
  23036. extra: 452 / 415
  23037. }
  23038. },
  23039. back: {
  23040. height: math.unit(1.78, "meters"),
  23041. weight: math.unit(65, "kg"),
  23042. name: "Back",
  23043. image: {
  23044. source: "./media/characters/aki/back.svg",
  23045. extra: 452 / 415
  23046. }
  23047. },
  23048. rump: {
  23049. height: math.unit(2.05, "feet"),
  23050. name: "Rump",
  23051. image: {
  23052. source: "./media/characters/aki/rump.svg"
  23053. }
  23054. },
  23055. dick: {
  23056. height: math.unit(0.95, "feet"),
  23057. name: "Dick",
  23058. image: {
  23059. source: "./media/characters/aki/dick.svg"
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Micro",
  23066. height: math.unit(15, "cm")
  23067. },
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(178, "cm"),
  23071. default: true
  23072. },
  23073. {
  23074. name: "Macro",
  23075. height: math.unit(214, "m")
  23076. },
  23077. {
  23078. name: "Macro+",
  23079. height: math.unit(534, "m")
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(5 + 5 / 12, "feet"),
  23088. weight: math.unit(120, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/ari/front.svg",
  23092. extra: 714.5 / 682,
  23093. bottom: 8 / 722.5
  23094. }
  23095. },
  23096. },
  23097. [
  23098. {
  23099. name: "Normal",
  23100. height: math.unit(5 + 5 / 12, "feet")
  23101. },
  23102. {
  23103. name: "Macro",
  23104. height: math.unit(100, "feet"),
  23105. default: true
  23106. },
  23107. {
  23108. name: "Megamacro",
  23109. height: math.unit(100, "miles")
  23110. },
  23111. {
  23112. name: "Gigamacro",
  23113. height: math.unit(80000, "miles")
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23119. {
  23120. side: {
  23121. height: math.unit(9, "feet"),
  23122. weight: math.unit(400, "kg"),
  23123. name: "Side",
  23124. image: {
  23125. source: "./media/characters/bolt/side.svg",
  23126. extra: 1126 / 896,
  23127. bottom: 60 / 1187.3,
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Micro",
  23134. height: math.unit(5, "inches")
  23135. },
  23136. {
  23137. name: "Normal",
  23138. height: math.unit(9, "feet"),
  23139. default: true
  23140. },
  23141. {
  23142. name: "Macro",
  23143. height: math.unit(700, "feet")
  23144. },
  23145. {
  23146. name: "Max Size",
  23147. height: math.unit(1.52e22, "yottameters")
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23153. {
  23154. front: {
  23155. height: math.unit(4.53, "meters"),
  23156. weight: math.unit(3, "tons"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/draekon-sylviar/front.svg",
  23160. extra: 1228 / 1068,
  23161. bottom: 41 / 1270
  23162. }
  23163. },
  23164. tail: {
  23165. height: math.unit(1.772, "meter"),
  23166. name: "Tail",
  23167. image: {
  23168. source: "./media/characters/draekon-sylviar/tail.svg"
  23169. }
  23170. },
  23171. head: {
  23172. height: math.unit(1.331, "meter"),
  23173. name: "Head",
  23174. image: {
  23175. source: "./media/characters/draekon-sylviar/head.svg"
  23176. }
  23177. },
  23178. hand: {
  23179. height: math.unit(0.564, "meter"),
  23180. name: "Hand",
  23181. image: {
  23182. source: "./media/characters/draekon-sylviar/hand.svg"
  23183. }
  23184. },
  23185. foot: {
  23186. height: math.unit(0.621, "meter"),
  23187. name: "Foot",
  23188. image: {
  23189. source: "./media/characters/draekon-sylviar/foot.svg",
  23190. bottom: 32 / 324
  23191. }
  23192. },
  23193. dick: {
  23194. height: math.unit(61, "cm"),
  23195. name: "Dick",
  23196. image: {
  23197. source: "./media/characters/draekon-sylviar/dick.svg"
  23198. }
  23199. },
  23200. dickseparated: {
  23201. height: math.unit(61, "cm"),
  23202. name: "Dick-separated",
  23203. image: {
  23204. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Small",
  23211. height: math.unit(4.53 / 2, "meters"),
  23212. default: true
  23213. },
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(4.53, "meters"),
  23217. default: true
  23218. },
  23219. {
  23220. name: "Large",
  23221. height: math.unit(4.53 * 2, "meters"),
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(6 + 2 / 12, "feet"),
  23230. weight: math.unit(180, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/brawler/front.svg",
  23234. extra: 3301 / 3027,
  23235. bottom: 138 / 3439
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(6 + 2 / 12, "feet"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(11, "feet"),
  23252. weight: math.unit(1000, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/alex/front.svg",
  23256. bottom: 44.5 / 620
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Micro",
  23263. height: math.unit(5, "inches")
  23264. },
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(11, "feet"),
  23268. default: true
  23269. },
  23270. {
  23271. name: "Macro",
  23272. height: math.unit(9.5e9, "feet")
  23273. },
  23274. {
  23275. name: "Max Size",
  23276. height: math.unit(1.4e283, "yottameters")
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23282. {
  23283. female: {
  23284. height: math.unit(29.9, "m"),
  23285. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23286. name: "Female",
  23287. image: {
  23288. source: "./media/characters/zenari/female.svg",
  23289. extra: 3281.6 / 3217,
  23290. bottom: 72.2 / 3353
  23291. }
  23292. },
  23293. male: {
  23294. height: math.unit(27.7, "m"),
  23295. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23296. name: "Male",
  23297. image: {
  23298. source: "./media/characters/zenari/male.svg",
  23299. extra: 3008 / 2991,
  23300. bottom: 54.6 / 3069
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Macro",
  23307. height: math.unit(29.7, "meters"),
  23308. default: true
  23309. },
  23310. ]
  23311. ))
  23312. characterMakers.push(() => makeCharacter(
  23313. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23314. {
  23315. female: {
  23316. height: math.unit(23.8, "m"),
  23317. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23318. name: "Female",
  23319. image: {
  23320. source: "./media/characters/mactarian/female.svg",
  23321. extra: 2662 / 2569,
  23322. bottom: 73 / 2736
  23323. }
  23324. },
  23325. male: {
  23326. height: math.unit(23.8, "m"),
  23327. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23328. name: "Male",
  23329. image: {
  23330. source: "./media/characters/mactarian/male.svg",
  23331. extra: 2673 / 2600,
  23332. bottom: 76 / 2750
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Macro",
  23339. height: math.unit(23.8, "meters"),
  23340. default: true
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23346. {
  23347. female: {
  23348. height: math.unit(19.3, "m"),
  23349. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23350. name: "Female",
  23351. image: {
  23352. source: "./media/characters/umok/female.svg",
  23353. extra: 2186 / 2078,
  23354. bottom: 87 / 2277
  23355. }
  23356. },
  23357. male: {
  23358. height: math.unit(19.5, "m"),
  23359. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23360. name: "Male",
  23361. image: {
  23362. source: "./media/characters/umok/male.svg",
  23363. extra: 2233 / 2140,
  23364. bottom: 24.4 / 2258
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Macro",
  23371. height: math.unit(19.3, "meters"),
  23372. default: true
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23378. {
  23379. female: {
  23380. height: math.unit(26.15, "m"),
  23381. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23382. name: "Female",
  23383. image: {
  23384. source: "./media/characters/joraxian/female.svg",
  23385. extra: 2912 / 2824,
  23386. bottom: 36 / 2956
  23387. }
  23388. },
  23389. male: {
  23390. height: math.unit(25.4, "m"),
  23391. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23392. name: "Male",
  23393. image: {
  23394. source: "./media/characters/joraxian/male.svg",
  23395. extra: 2877 / 2721,
  23396. bottom: 82 / 2967
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Macro",
  23403. height: math.unit(26.15, "meters"),
  23404. default: true
  23405. },
  23406. ]
  23407. ))
  23408. characterMakers.push(() => makeCharacter(
  23409. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23410. {
  23411. female: {
  23412. height: math.unit(21.6, "m"),
  23413. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23414. name: "Female",
  23415. image: {
  23416. source: "./media/characters/sthara/female.svg",
  23417. extra: 2516 / 2347,
  23418. bottom: 21.5 / 2537
  23419. }
  23420. },
  23421. male: {
  23422. height: math.unit(24, "m"),
  23423. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23424. name: "Male",
  23425. image: {
  23426. source: "./media/characters/sthara/male.svg",
  23427. extra: 2732 / 2607,
  23428. bottom: 23 / 2732
  23429. }
  23430. },
  23431. },
  23432. [
  23433. {
  23434. name: "Macro",
  23435. height: math.unit(21.6, "meters"),
  23436. default: true
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23442. {
  23443. front: {
  23444. height: math.unit(6 + 4 / 12, "feet"),
  23445. weight: math.unit(175, "lb"),
  23446. name: "Front",
  23447. image: {
  23448. source: "./media/characters/luka-bryzant/front.svg",
  23449. extra: 311 / 289,
  23450. bottom: 4 / 315
  23451. }
  23452. },
  23453. back: {
  23454. height: math.unit(6 + 4 / 12, "feet"),
  23455. weight: math.unit(175, "lb"),
  23456. name: "Back",
  23457. image: {
  23458. source: "./media/characters/luka-bryzant/back.svg",
  23459. extra: 311 / 289,
  23460. bottom: 3.8 / 313.7
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Micro",
  23467. height: math.unit(10, "inches")
  23468. },
  23469. {
  23470. name: "Normal",
  23471. height: math.unit(6 + 4 / 12, "feet"),
  23472. default: true
  23473. },
  23474. {
  23475. name: "Large",
  23476. height: math.unit(12, "feet")
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23482. {
  23483. front: {
  23484. height: math.unit(5 + 7 / 12, "feet"),
  23485. weight: math.unit(185, "lb"),
  23486. name: "Front",
  23487. image: {
  23488. source: "./media/characters/aman-aquila/front.svg",
  23489. extra: 1013 / 976,
  23490. bottom: 45.6 / 1057
  23491. }
  23492. },
  23493. side: {
  23494. height: math.unit(5 + 7 / 12, "feet"),
  23495. weight: math.unit(185, "lb"),
  23496. name: "Side",
  23497. image: {
  23498. source: "./media/characters/aman-aquila/side.svg",
  23499. extra: 1054 / 1011,
  23500. bottom: 15 / 1070
  23501. }
  23502. },
  23503. back: {
  23504. height: math.unit(5 + 7 / 12, "feet"),
  23505. weight: math.unit(185, "lb"),
  23506. name: "Back",
  23507. image: {
  23508. source: "./media/characters/aman-aquila/back.svg",
  23509. extra: 1026 / 970,
  23510. bottom: 12 / 1039
  23511. }
  23512. },
  23513. head: {
  23514. height: math.unit(1.211, "feet"),
  23515. name: "Head",
  23516. image: {
  23517. source: "./media/characters/aman-aquila/head.svg",
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Minimicro",
  23524. height: math.unit(0.057, "inches")
  23525. },
  23526. {
  23527. name: "Micro",
  23528. height: math.unit(7, "inches")
  23529. },
  23530. {
  23531. name: "Mini",
  23532. height: math.unit(3 + 7 / 12, "feet")
  23533. },
  23534. {
  23535. name: "Normal",
  23536. height: math.unit(5 + 7 / 12, "feet"),
  23537. default: true
  23538. },
  23539. {
  23540. name: "Macro",
  23541. height: math.unit(157 + 7 / 12, "feet")
  23542. },
  23543. {
  23544. name: "Megamacro",
  23545. height: math.unit(1557 + 7 / 12, "feet")
  23546. },
  23547. {
  23548. name: "Gigamacro",
  23549. height: math.unit(15557 + 7 / 12, "feet")
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(3 + 2 / 12, "inches"),
  23558. weight: math.unit(0.3, "ounces"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/hiphae/front.svg",
  23562. extra: 1931 / 1683,
  23563. bottom: 24 / 1955
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(3 + 1 / 2, "inches"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(5 + 10 / 12, "feet"),
  23580. weight: math.unit(165, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/nicky/front.svg",
  23584. extra: 3144 / 2886,
  23585. bottom: 45.6 / 3192
  23586. }
  23587. },
  23588. back: {
  23589. height: math.unit(5 + 10 / 12, "feet"),
  23590. weight: math.unit(165, "lb"),
  23591. name: "Back",
  23592. image: {
  23593. source: "./media/characters/nicky/back.svg",
  23594. extra: 3055 / 2804,
  23595. bottom: 28.4 / 3087
  23596. }
  23597. },
  23598. frontclothed: {
  23599. height: math.unit(5 + 10 / 12, "feet"),
  23600. weight: math.unit(165, "lb"),
  23601. name: "Front-clothed",
  23602. image: {
  23603. source: "./media/characters/nicky/front-clothed.svg",
  23604. extra: 3184.9 / 2926.9,
  23605. bottom: 86.5 / 3239.9
  23606. }
  23607. },
  23608. foot: {
  23609. height: math.unit(1.16, "feet"),
  23610. name: "Foot",
  23611. image: {
  23612. source: "./media/characters/nicky/foot.svg"
  23613. }
  23614. },
  23615. feet: {
  23616. height: math.unit(1.34, "feet"),
  23617. name: "Feet",
  23618. image: {
  23619. source: "./media/characters/nicky/feet.svg"
  23620. }
  23621. },
  23622. maw: {
  23623. height: math.unit(0.9, "feet"),
  23624. name: "Maw",
  23625. image: {
  23626. source: "./media/characters/nicky/maw.svg"
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(5 + 10 / 12, "feet"),
  23634. default: true
  23635. },
  23636. {
  23637. name: "Macro",
  23638. height: math.unit(60, "feet")
  23639. },
  23640. {
  23641. name: "Megamacro",
  23642. height: math.unit(1, "mile")
  23643. },
  23644. ]
  23645. ))
  23646. characterMakers.push(() => makeCharacter(
  23647. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23648. {
  23649. side: {
  23650. height: math.unit(10, "feet"),
  23651. weight: math.unit(600, "lb"),
  23652. name: "Side",
  23653. image: {
  23654. source: "./media/characters/blair/side.svg",
  23655. bottom: 16.6 / 475,
  23656. extra: 458 / 431
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Micro",
  23663. height: math.unit(8, "inches")
  23664. },
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(10, "feet"),
  23668. default: true
  23669. },
  23670. {
  23671. name: "Macro",
  23672. height: math.unit(180, "feet")
  23673. },
  23674. ]
  23675. ))
  23676. characterMakers.push(() => makeCharacter(
  23677. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23678. {
  23679. front: {
  23680. height: math.unit(5 + 4 / 12, "feet"),
  23681. weight: math.unit(125, "lb"),
  23682. name: "Front",
  23683. image: {
  23684. source: "./media/characters/fisher/front.svg",
  23685. extra: 444 / 390,
  23686. bottom: 2 / 444.8
  23687. }
  23688. },
  23689. },
  23690. [
  23691. {
  23692. name: "Micro",
  23693. height: math.unit(4, "inches")
  23694. },
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(5 + 4 / 12, "feet"),
  23698. default: true
  23699. },
  23700. {
  23701. name: "Macro",
  23702. height: math.unit(100, "feet")
  23703. },
  23704. ]
  23705. ))
  23706. characterMakers.push(() => makeCharacter(
  23707. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23708. {
  23709. front: {
  23710. height: math.unit(6.71, "feet"),
  23711. weight: math.unit(200, "lb"),
  23712. capacity: math.unit(1000000, "people"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/gliss/front.svg",
  23716. extra: 2347 / 2231,
  23717. bottom: 113 / 2462
  23718. }
  23719. },
  23720. hammerspaceSize: {
  23721. height: math.unit(6.71 * 717, "feet"),
  23722. weight: math.unit(200, "lb"),
  23723. capacity: math.unit(1000000, "people"),
  23724. name: "Hammerspace Size",
  23725. image: {
  23726. source: "./media/characters/gliss/front.svg",
  23727. extra: 2347 / 2231,
  23728. bottom: 113 / 2462
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(6.71, "feet"),
  23736. default: true
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23742. {
  23743. side: {
  23744. height: math.unit(1.44, "m"),
  23745. weight: math.unit(80, "kg"),
  23746. name: "Side",
  23747. image: {
  23748. source: "./media/characters/dune-anderson/side.svg",
  23749. bottom: 49 / 1426
  23750. }
  23751. },
  23752. },
  23753. [
  23754. {
  23755. name: "Wolf-sized",
  23756. height: math.unit(1.44, "meters")
  23757. },
  23758. {
  23759. name: "Normal",
  23760. height: math.unit(5.05, "meters"),
  23761. default: true
  23762. },
  23763. {
  23764. name: "Big",
  23765. height: math.unit(14.4, "meters")
  23766. },
  23767. {
  23768. name: "Huge",
  23769. height: math.unit(144, "meters")
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23775. {
  23776. front: {
  23777. height: math.unit(7, "feet"),
  23778. weight: math.unit(425, "lb"),
  23779. name: "Front",
  23780. image: {
  23781. source: "./media/characters/hind/front.svg",
  23782. extra: 2091 / 1860,
  23783. bottom: 129 / 2220
  23784. }
  23785. },
  23786. back: {
  23787. height: math.unit(7, "feet"),
  23788. weight: math.unit(425, "lb"),
  23789. name: "Back",
  23790. image: {
  23791. source: "./media/characters/hind/back.svg",
  23792. extra: 2091 / 1860,
  23793. bottom: 24.6 / 2309
  23794. }
  23795. },
  23796. tail: {
  23797. height: math.unit(2.8, "feet"),
  23798. name: "Tail",
  23799. image: {
  23800. source: "./media/characters/hind/tail.svg"
  23801. }
  23802. },
  23803. head: {
  23804. height: math.unit(2.55, "feet"),
  23805. name: "Head",
  23806. image: {
  23807. source: "./media/characters/hind/head.svg"
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "XS",
  23814. height: math.unit(0.7, "feet")
  23815. },
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(7, "feet"),
  23819. default: true
  23820. },
  23821. {
  23822. name: "XL",
  23823. height: math.unit(70, "feet")
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(6, "feet"),
  23832. weight: math.unit(150, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/dylan-skaven/front.svg",
  23836. extra: 2318 / 2063,
  23837. bottom: 93.4 / 2410
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Nano",
  23844. height: math.unit(1, "mm")
  23845. },
  23846. {
  23847. name: "Micro",
  23848. height: math.unit(1, "cm")
  23849. },
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(2.1, "meters"),
  23853. default: true
  23854. },
  23855. ]
  23856. ))
  23857. characterMakers.push(() => makeCharacter(
  23858. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23859. {
  23860. front: {
  23861. height: math.unit(7 + 5 / 12, "feet"),
  23862. weight: math.unit(357, "lb"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/solex-draconov/front.svg",
  23866. extra: 1993 / 1865,
  23867. bottom: 117 / 2111
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Natural Height",
  23874. height: math.unit(7 + 5 / 12, "feet"),
  23875. default: true
  23876. },
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(350, "feet")
  23880. },
  23881. {
  23882. name: "Macro+",
  23883. height: math.unit(1000, "feet")
  23884. },
  23885. {
  23886. name: "Megamacro",
  23887. height: math.unit(20, "km")
  23888. },
  23889. {
  23890. name: "Megamacro+",
  23891. height: math.unit(1000, "km")
  23892. },
  23893. {
  23894. name: "Gigamacro",
  23895. height: math.unit(2.5, "Gm")
  23896. },
  23897. {
  23898. name: "Teramacro",
  23899. height: math.unit(15, "Tm")
  23900. },
  23901. {
  23902. name: "Galactic",
  23903. height: math.unit(30, "Zm")
  23904. },
  23905. {
  23906. name: "Universal",
  23907. height: math.unit(21000, "Ym")
  23908. },
  23909. {
  23910. name: "Omniversal",
  23911. height: math.unit(9.861e50, "Ym")
  23912. },
  23913. {
  23914. name: "Existential",
  23915. height: math.unit(1e300, "meters")
  23916. },
  23917. ]
  23918. ))
  23919. characterMakers.push(() => makeCharacter(
  23920. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23921. {
  23922. side: {
  23923. height: math.unit(25, "feet"),
  23924. weight: math.unit(90000, "lb"),
  23925. name: "Side",
  23926. image: {
  23927. source: "./media/characters/mandarax/side.svg",
  23928. extra: 614 / 332,
  23929. bottom: 55 / 630
  23930. }
  23931. },
  23932. head: {
  23933. height: math.unit(11.4, "feet"),
  23934. name: "Head",
  23935. image: {
  23936. source: "./media/characters/mandarax/head.svg"
  23937. }
  23938. },
  23939. belly: {
  23940. height: math.unit(33, "feet"),
  23941. name: "Belly",
  23942. capacity: math.unit(500, "people"),
  23943. image: {
  23944. source: "./media/characters/mandarax/belly.svg"
  23945. }
  23946. },
  23947. dick: {
  23948. height: math.unit(8.46, "feet"),
  23949. name: "Dick",
  23950. image: {
  23951. source: "./media/characters/mandarax/dick.svg"
  23952. }
  23953. },
  23954. top: {
  23955. height: math.unit(28, "meters"),
  23956. name: "Top",
  23957. image: {
  23958. source: "./media/characters/mandarax/top.svg"
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Normal",
  23965. height: math.unit(25, "feet"),
  23966. default: true
  23967. },
  23968. ]
  23969. ))
  23970. characterMakers.push(() => makeCharacter(
  23971. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23972. {
  23973. front: {
  23974. height: math.unit(5, "feet"),
  23975. weight: math.unit(90, "lb"),
  23976. name: "Front",
  23977. image: {
  23978. source: "./media/characters/pixil/front.svg",
  23979. extra: 2000 / 1618,
  23980. bottom: 12.3 / 2011
  23981. }
  23982. },
  23983. },
  23984. [
  23985. {
  23986. name: "Normal",
  23987. height: math.unit(5, "feet"),
  23988. default: true
  23989. },
  23990. {
  23991. name: "Megamacro",
  23992. height: math.unit(10, "miles"),
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(7 + 2 / 12, "feet"),
  24001. weight: math.unit(200, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/angel/front.svg",
  24005. extra: 1830 / 1737,
  24006. bottom: 22.6 / 1854,
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Normal",
  24013. height: math.unit(7 + 2 / 12, "feet"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Macro",
  24018. height: math.unit(1000, "feet")
  24019. },
  24020. {
  24021. name: "Megamacro",
  24022. height: math.unit(2, "miles")
  24023. },
  24024. {
  24025. name: "Gigamacro",
  24026. height: math.unit(20, "earths")
  24027. },
  24028. ]
  24029. ))
  24030. characterMakers.push(() => makeCharacter(
  24031. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24032. {
  24033. front: {
  24034. height: math.unit(5, "feet"),
  24035. weight: math.unit(180, "lb"),
  24036. name: "Front",
  24037. image: {
  24038. source: "./media/characters/mekana/front.svg",
  24039. extra: 1671 / 1605,
  24040. bottom: 3.5 / 1691
  24041. }
  24042. },
  24043. side: {
  24044. height: math.unit(5, "feet"),
  24045. weight: math.unit(180, "lb"),
  24046. name: "Side",
  24047. image: {
  24048. source: "./media/characters/mekana/side.svg",
  24049. extra: 1671 / 1605,
  24050. bottom: 3.5 / 1691
  24051. }
  24052. },
  24053. back: {
  24054. height: math.unit(5, "feet"),
  24055. weight: math.unit(180, "lb"),
  24056. name: "Back",
  24057. image: {
  24058. source: "./media/characters/mekana/back.svg",
  24059. extra: 1671 / 1605,
  24060. bottom: 3.5 / 1691
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Normal",
  24067. height: math.unit(5, "feet"),
  24068. default: true
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24074. {
  24075. front: {
  24076. height: math.unit(4 + 6 / 12, "feet"),
  24077. weight: math.unit(80, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/pixie/front.svg",
  24081. extra: 1924 / 1825,
  24082. bottom: 22.4 / 1946
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Normal",
  24089. height: math.unit(4 + 6 / 12, "feet"),
  24090. default: true
  24091. },
  24092. {
  24093. name: "Macro",
  24094. height: math.unit(40, "feet")
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24100. {
  24101. front: {
  24102. height: math.unit(2.1, "meters"),
  24103. weight: math.unit(200, "lb"),
  24104. name: "Front",
  24105. image: {
  24106. source: "./media/characters/the-lascivious/front.svg",
  24107. extra: 1 / 0.893,
  24108. bottom: 3.5 / 573.7
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Human Scale",
  24115. height: math.unit(2.1, "meters")
  24116. },
  24117. {
  24118. name: "Wolxi Scale",
  24119. height: math.unit(46.2, "m"),
  24120. default: true
  24121. },
  24122. {
  24123. name: "Boinker of Buildings",
  24124. height: math.unit(10, "km")
  24125. },
  24126. {
  24127. name: "Shagger of Skyscrapers",
  24128. height: math.unit(40, "km")
  24129. },
  24130. {
  24131. name: "Banger of Boroughs",
  24132. height: math.unit(4000, "km")
  24133. },
  24134. {
  24135. name: "Screwer of States",
  24136. height: math.unit(100000, "km")
  24137. },
  24138. {
  24139. name: "Pounder of Planets",
  24140. height: math.unit(2000000, "km")
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(6, "feet"),
  24149. weight: math.unit(150, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/aj/front.svg",
  24153. extra: 2039 / 1562,
  24154. bottom: 40 / 2079
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(11 + 6 / 12, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Megamacro",
  24166. height: math.unit(60, "megameters")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24172. {
  24173. side: {
  24174. height: math.unit(31 + 8/12, "feet"),
  24175. weight: math.unit(75000, "kg"),
  24176. name: "Side",
  24177. image: {
  24178. source: "./media/characters/koros/side.svg",
  24179. extra: 1442/1297,
  24180. bottom: 122.7/1562
  24181. }
  24182. },
  24183. dicksKingsCrown: {
  24184. height: math.unit(6, "feet"),
  24185. name: "Dicks (King's Crown)",
  24186. image: {
  24187. source: "./media/characters/koros/dicks-kings-crown.svg"
  24188. }
  24189. },
  24190. dicksTailSet: {
  24191. height: math.unit(3, "feet"),
  24192. name: "Dicks (Tail Set)",
  24193. image: {
  24194. source: "./media/characters/koros/dicks-tail-set.svg"
  24195. }
  24196. },
  24197. dickCumming: {
  24198. height: math.unit(7.98, "feet"),
  24199. name: "Dick (Cumming)",
  24200. image: {
  24201. source: "./media/characters/koros/dick-cumming.svg"
  24202. }
  24203. },
  24204. dicksBack: {
  24205. height: math.unit(5.9, "feet"),
  24206. name: "Dicks (Back)",
  24207. image: {
  24208. source: "./media/characters/koros/dicks-back.svg"
  24209. }
  24210. },
  24211. dicksFront: {
  24212. height: math.unit(3.72, "feet"),
  24213. name: "Dicks (Front)",
  24214. image: {
  24215. source: "./media/characters/koros/dicks-front.svg"
  24216. }
  24217. },
  24218. dicksPeeking: {
  24219. height: math.unit(3.0, "feet"),
  24220. name: "Dicks (Peeking)",
  24221. image: {
  24222. source: "./media/characters/koros/dicks-peeking.svg"
  24223. }
  24224. },
  24225. eye: {
  24226. height: math.unit(1.7, "feet"),
  24227. name: "Eye",
  24228. image: {
  24229. source: "./media/characters/koros/eye.svg"
  24230. }
  24231. },
  24232. headFront: {
  24233. height: math.unit(11.69, "feet"),
  24234. name: "Head (Front)",
  24235. image: {
  24236. source: "./media/characters/koros/head-front.svg"
  24237. }
  24238. },
  24239. headSide: {
  24240. height: math.unit(14, "feet"),
  24241. name: "Head (Side)",
  24242. image: {
  24243. source: "./media/characters/koros/head-side.svg"
  24244. }
  24245. },
  24246. leg: {
  24247. height: math.unit(17, "feet"),
  24248. name: "Leg",
  24249. image: {
  24250. source: "./media/characters/koros/leg.svg"
  24251. }
  24252. },
  24253. mawSide: {
  24254. height: math.unit(12.8, "feet"),
  24255. name: "Maw (Side)",
  24256. image: {
  24257. source: "./media/characters/koros/maw-side.svg"
  24258. }
  24259. },
  24260. mawSpitting: {
  24261. height: math.unit(17, "feet"),
  24262. name: "Maw (Spitting)",
  24263. image: {
  24264. source: "./media/characters/koros/maw-spitting.svg"
  24265. }
  24266. },
  24267. slit: {
  24268. height: math.unit(2.8, "feet"),
  24269. name: "Slit",
  24270. image: {
  24271. source: "./media/characters/koros/slit.svg"
  24272. }
  24273. },
  24274. stomach: {
  24275. height: math.unit(6.8, "feet"),
  24276. capacity: math.unit(20, "people"),
  24277. name: "Stomach",
  24278. image: {
  24279. source: "./media/characters/koros/stomach.svg"
  24280. }
  24281. },
  24282. wingspanBottom: {
  24283. height: math.unit(114, "feet"),
  24284. name: "Wingspan (Bottom)",
  24285. image: {
  24286. source: "./media/characters/koros/wingspan-bottom.svg"
  24287. }
  24288. },
  24289. wingspanTop: {
  24290. height: math.unit(104, "feet"),
  24291. name: "Wingspan (Top)",
  24292. image: {
  24293. source: "./media/characters/koros/wingspan-top.svg"
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Normal",
  24300. height: math.unit(31 + 8/12, "feet"),
  24301. default: true
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24307. {
  24308. front: {
  24309. height: math.unit(18 + 5/12, "feet"),
  24310. weight: math.unit(3750, "kg"),
  24311. name: "Front",
  24312. image: {
  24313. source: "./media/characters/vexx/front.svg",
  24314. extra: 426/396,
  24315. bottom: 31.5/458
  24316. }
  24317. },
  24318. maw: {
  24319. height: math.unit(6, "feet"),
  24320. name: "Maw",
  24321. image: {
  24322. source: "./media/characters/vexx/maw.svg"
  24323. }
  24324. },
  24325. },
  24326. [
  24327. {
  24328. name: "Normal",
  24329. height: math.unit(18 + 5/12, "feet"),
  24330. default: true
  24331. },
  24332. ]
  24333. ))
  24334. characterMakers.push(() => makeCharacter(
  24335. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24336. {
  24337. front: {
  24338. height: math.unit(17 + 6/12, "feet"),
  24339. weight: math.unit(150, "lb"),
  24340. name: "Front",
  24341. image: {
  24342. source: "./media/characters/baadra/front.svg",
  24343. extra: 3137/2890,
  24344. bottom: 168.4/3305
  24345. }
  24346. },
  24347. back: {
  24348. height: math.unit(17 + 6/12, "feet"),
  24349. weight: math.unit(150, "lb"),
  24350. name: "Back",
  24351. image: {
  24352. source: "./media/characters/baadra/back.svg",
  24353. extra: 3142/2890,
  24354. bottom: 220/3371
  24355. }
  24356. },
  24357. head: {
  24358. height: math.unit(5.45, "feet"),
  24359. name: "Head",
  24360. image: {
  24361. source: "./media/characters/baadra/head.svg"
  24362. }
  24363. },
  24364. headAngry: {
  24365. height: math.unit(4.95, "feet"),
  24366. name: "Head (Angry)",
  24367. image: {
  24368. source: "./media/characters/baadra/head-angry.svg"
  24369. }
  24370. },
  24371. headOpen: {
  24372. height: math.unit(6, "feet"),
  24373. name: "Head (Open)",
  24374. image: {
  24375. source: "./media/characters/baadra/head-open.svg"
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Normal",
  24382. height: math.unit(17 + 6/12, "feet"),
  24383. default: true
  24384. },
  24385. ]
  24386. ))
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24389. {
  24390. front: {
  24391. height: math.unit(7 + 3/12, "feet"),
  24392. weight: math.unit(180, "lb"),
  24393. name: "Front",
  24394. image: {
  24395. source: "./media/characters/juri/front.svg",
  24396. extra: 1401/1237,
  24397. bottom: 18.5/1418
  24398. }
  24399. },
  24400. side: {
  24401. height: math.unit(7 + 3/12, "feet"),
  24402. weight: math.unit(180, "lb"),
  24403. name: "Side",
  24404. image: {
  24405. source: "./media/characters/juri/side.svg",
  24406. extra: 1424/1242,
  24407. bottom: 18.5/1447
  24408. }
  24409. },
  24410. sitting: {
  24411. height: math.unit(6, "feet"),
  24412. weight: math.unit(180, "lb"),
  24413. name: "Sitting",
  24414. image: {
  24415. source: "./media/characters/juri/sitting.svg",
  24416. extra: 1270/1143,
  24417. bottom: 100/1343
  24418. }
  24419. },
  24420. back: {
  24421. height: math.unit(7 + 3/12, "feet"),
  24422. weight: math.unit(180, "lb"),
  24423. name: "Back",
  24424. image: {
  24425. source: "./media/characters/juri/back.svg",
  24426. extra: 1377/1240,
  24427. bottom: 23.7/1405
  24428. }
  24429. },
  24430. maw: {
  24431. height: math.unit(2.8, "feet"),
  24432. name: "Maw",
  24433. image: {
  24434. source: "./media/characters/juri/maw.svg"
  24435. }
  24436. },
  24437. stomach: {
  24438. height: math.unit(0.89, "feet"),
  24439. capacity: math.unit(4, "liters"),
  24440. name: "Stomach",
  24441. image: {
  24442. source: "./media/characters/juri/stomach.svg"
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(7 + 3/12, "feet"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24456. {
  24457. fox: {
  24458. height: math.unit(5 + 6/12, "feet"),
  24459. weight: math.unit(140, "lb"),
  24460. name: "Fox",
  24461. image: {
  24462. source: "./media/characters/maxene-sita/fox.svg",
  24463. extra: 146/138,
  24464. bottom: 2.1/148.19
  24465. }
  24466. },
  24467. kitsune: {
  24468. height: math.unit(10, "feet"),
  24469. weight: math.unit(800, "lb"),
  24470. name: "Kitsune",
  24471. image: {
  24472. source: "./media/characters/maxene-sita/kitsune.svg",
  24473. extra: 185/176,
  24474. bottom: 4.7/189.9
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(5 + 6/12, "feet"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24488. {
  24489. front: {
  24490. height: math.unit(3 + 4/12, "feet"),
  24491. weight: math.unit(70, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/maia/front.svg",
  24495. extra: 227/219.5,
  24496. bottom: 40 / 267
  24497. }
  24498. },
  24499. back: {
  24500. height: math.unit(3 + 4/12, "feet"),
  24501. weight: math.unit(70, "lb"),
  24502. name: "Back",
  24503. image: {
  24504. source: "./media/characters/maia/back.svg",
  24505. extra: 237/225
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Normal",
  24512. height: math.unit(3 + 4/12, "feet"),
  24513. default: true
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(5 + 10/12, "feet"),
  24522. weight: math.unit(197, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/jabaro/front.svg",
  24526. extra: 225/216,
  24527. bottom: 5.06/230
  24528. }
  24529. },
  24530. back: {
  24531. height: math.unit(5 + 10/12, "feet"),
  24532. weight: math.unit(197, "lb"),
  24533. name: "Back",
  24534. image: {
  24535. source: "./media/characters/jabaro/back.svg",
  24536. extra: 225/219,
  24537. bottom: 1.9/227
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(5 + 10/12, "feet"),
  24545. default: true
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(5 + 8/12, "feet"),
  24554. weight: math.unit(139, "lb"),
  24555. name: "Front",
  24556. image: {
  24557. source: "./media/characters/risa/front.svg",
  24558. extra: 270/260,
  24559. bottom: 11.2/282
  24560. }
  24561. },
  24562. back: {
  24563. height: math.unit(5 + 8/12, "feet"),
  24564. weight: math.unit(139, "lb"),
  24565. name: "Back",
  24566. image: {
  24567. source: "./media/characters/risa/back.svg",
  24568. extra: 264/255,
  24569. bottom: 4/268
  24570. }
  24571. },
  24572. },
  24573. [
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(5 + 8/12, "feet"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24583. {
  24584. front: {
  24585. height: math.unit(2 + 11/12, "feet"),
  24586. weight: math.unit(30, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/weatley/front.svg",
  24590. bottom: 10.7/414,
  24591. extra: 403.5/362
  24592. }
  24593. },
  24594. back: {
  24595. height: math.unit(2 + 11/12, "feet"),
  24596. weight: math.unit(30, "lb"),
  24597. name: "Back",
  24598. image: {
  24599. source: "./media/characters/weatley/back.svg",
  24600. bottom: 10.7/414,
  24601. extra: 403.5/362
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(2 + 11/12, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(5 + 2/12, "feet"),
  24618. weight: math.unit(50, "kg"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/mercury-crescent/front.svg",
  24622. extra: 1088/1033,
  24623. bottom: 18.9/1109
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(5 + 2/12, "feet"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(2, "feet"),
  24640. weight: math.unit(15, "kg"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/diamond-jones/front.svg",
  24644. bottom: 16/568
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Normal",
  24651. height: math.unit(2, "feet"),
  24652. default: true
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24658. {
  24659. front: {
  24660. height: math.unit(3, "feet"),
  24661. weight: math.unit(30, "kg"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/sweet-bit/front.svg",
  24665. extra: 675/567,
  24666. bottom: 27.7/703
  24667. }
  24668. },
  24669. },
  24670. [
  24671. {
  24672. name: "Normal",
  24673. height: math.unit(3, "feet"),
  24674. default: true
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24680. {
  24681. side: {
  24682. height: math.unit(9.178, "feet"),
  24683. weight: math.unit(500, "lb"),
  24684. name: "Side",
  24685. image: {
  24686. source: "./media/characters/umbrazen/side.svg",
  24687. extra: 1730/1473,
  24688. bottom: 34.6/1765
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(9.178, "feet"),
  24696. default: true
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(10, "feet"),
  24705. weight: math.unit(750, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/arlist/front.svg",
  24709. extra: 961/778,
  24710. bottom: 6.2/986
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(10, "feet"),
  24718. default: true
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24724. {
  24725. front: {
  24726. height: math.unit(5 + 1/12, "feet"),
  24727. weight: math.unit(110, "lb"),
  24728. name: "Front",
  24729. image: {
  24730. source: "./media/characters/aradel/front.svg",
  24731. extra: 324/303,
  24732. bottom: 3.6/329.4
  24733. }
  24734. },
  24735. },
  24736. [
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(5 + 1/12, "feet"),
  24740. default: true
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24746. {
  24747. front: {
  24748. height: math.unit(3 + 8/12, "feet"),
  24749. weight: math.unit(50, "lb"),
  24750. name: "Front",
  24751. image: {
  24752. source: "./media/characters/serryn/front.svg",
  24753. extra: 1792/1656,
  24754. bottom: 43.5/1840
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(3 + 8/12, "feet"),
  24762. default: true
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Xavier Thyme" },
  24768. {
  24769. front: {
  24770. height: math.unit(7 + 10/12, "feet"),
  24771. weight: math.unit(255, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/xavier-thyme/front.svg",
  24775. extra: 3733/3642,
  24776. bottom: 131/3869
  24777. }
  24778. },
  24779. frontRaven: {
  24780. height: math.unit(7 + 10/12, "feet"),
  24781. weight: math.unit(255, "lb"),
  24782. name: "Front (Raven)",
  24783. image: {
  24784. source: "./media/characters/xavier-thyme/front-raven.svg",
  24785. extra: 4385/3642,
  24786. bottom: 131/4517
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(7 + 10/12, "feet"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(1.6, "m"),
  24803. weight: math.unit(50, "kg"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/kiki/front.svg",
  24807. extra: 4682/3610,
  24808. bottom: 115/4777
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Normal",
  24815. height: math.unit(1.6, "meters"),
  24816. default: true
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(50, "m"),
  24825. weight: math.unit(500, "tonnes"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/ryoko/front.svg",
  24829. extra: 4632/3926,
  24830. bottom: 193/4823
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Normal",
  24837. height: math.unit(50, "meters"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24844. {
  24845. front: {
  24846. height: math.unit(30, "m"),
  24847. weight: math.unit(22, "tonnes"),
  24848. name: "Front",
  24849. image: {
  24850. source: "./media/characters/elio/front.svg",
  24851. extra: 4582/3720,
  24852. bottom: 236/4828
  24853. }
  24854. },
  24855. },
  24856. [
  24857. {
  24858. name: "Normal",
  24859. height: math.unit(30, "meters"),
  24860. default: true
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24866. {
  24867. front: {
  24868. height: math.unit(6 + 3/12, "feet"),
  24869. weight: math.unit(120, "lb"),
  24870. name: "Front",
  24871. image: {
  24872. source: "./media/characters/azura/front.svg",
  24873. extra: 1149/1135,
  24874. bottom: 45/1194
  24875. }
  24876. },
  24877. frontClothed: {
  24878. height: math.unit(6 + 3/12, "feet"),
  24879. weight: math.unit(120, "lb"),
  24880. name: "Front (Clothed)",
  24881. image: {
  24882. source: "./media/characters/azura/front-clothed.svg",
  24883. extra: 1149/1135,
  24884. bottom: 45/1194
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Normal",
  24891. height: math.unit(6 + 3/12, "feet"),
  24892. default: true
  24893. },
  24894. {
  24895. name: "Macro",
  24896. height: math.unit(20 + 6/12, "feet")
  24897. },
  24898. {
  24899. name: "Megamacro",
  24900. height: math.unit(12, "miles")
  24901. },
  24902. {
  24903. name: "Gigamacro",
  24904. height: math.unit(10000, "miles")
  24905. },
  24906. {
  24907. name: "Teramacro",
  24908. height: math.unit(900000, "miles")
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24914. {
  24915. front: {
  24916. height: math.unit(12, "feet"),
  24917. weight: math.unit(1, "ton"),
  24918. capacity: math.unit(660000, "gallons"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/zeus/front.svg",
  24922. extra: 5005/4717,
  24923. bottom: 363/5388
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(12, "feet")
  24931. },
  24932. {
  24933. name: "Preferred Size",
  24934. height: math.unit(0.5, "miles"),
  24935. default: true
  24936. },
  24937. {
  24938. name: "Giga Horse",
  24939. height: math.unit(300, "miles")
  24940. },
  24941. {
  24942. name: "Riding Planets",
  24943. height: math.unit(30, "megameters")
  24944. },
  24945. {
  24946. name: "Cosmic Giant",
  24947. height: math.unit(3, "zettameters")
  24948. },
  24949. {
  24950. name: "Breeding God",
  24951. height: math.unit(9.92e22, "yottameters")
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24957. {
  24958. side: {
  24959. height: math.unit(9, "feet"),
  24960. weight: math.unit(1500, "kg"),
  24961. name: "Side",
  24962. image: {
  24963. source: "./media/characters/fang/side.svg",
  24964. extra: 924/866,
  24965. bottom: 47.5/972.3
  24966. }
  24967. },
  24968. },
  24969. [
  24970. {
  24971. name: "Normal",
  24972. height: math.unit(9, "feet"),
  24973. default: true
  24974. },
  24975. {
  24976. name: "Macro",
  24977. height: math.unit(75 + 6/12, "feet")
  24978. },
  24979. {
  24980. name: "Teramacro",
  24981. height: math.unit(50000, "miles")
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(10, "feet"),
  24990. weight: math.unit(2, "tons"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/rekhit/front.svg",
  24994. extra: 2796/2590,
  24995. bottom: 225/3022
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Normal",
  25002. height: math.unit(10, "feet"),
  25003. default: true
  25004. },
  25005. {
  25006. name: "Macro",
  25007. height: math.unit(500, "feet")
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Dahlia Verrick" },
  25013. {
  25014. front: {
  25015. height: math.unit(7 + 6.451/12, "feet"),
  25016. weight: math.unit(310, "lb"),
  25017. name: "Front",
  25018. image: {
  25019. source: "./media/characters/dahlia-verrick/front.svg",
  25020. extra: 1488/1365,
  25021. bottom: 6.2/1495
  25022. }
  25023. },
  25024. back: {
  25025. height: math.unit(7 + 6.451/12, "feet"),
  25026. weight: math.unit(310, "lb"),
  25027. name: "Back",
  25028. image: {
  25029. source: "./media/characters/dahlia-verrick/back.svg",
  25030. extra: 1472/1351,
  25031. bottom: 5.28/1477
  25032. }
  25033. },
  25034. frontBusiness: {
  25035. height: math.unit(7 + 6.451/12, "feet"),
  25036. weight: math.unit(200, "lb"),
  25037. name: "Front (Business)",
  25038. image: {
  25039. source: "./media/characters/dahlia-verrick/front-business.svg",
  25040. extra: 1478/1381,
  25041. bottom: 5.5/1484
  25042. }
  25043. },
  25044. frontCasual: {
  25045. height: math.unit(7 + 6.451/12, "feet"),
  25046. weight: math.unit(200, "lb"),
  25047. name: "Front (Casual)",
  25048. image: {
  25049. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25050. extra: 1478/1381,
  25051. bottom: 5.5/1484
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Travel-Sized",
  25058. height: math.unit(7.45, "inches")
  25059. },
  25060. {
  25061. name: "Normal",
  25062. height: math.unit(7 + 6.451/12, "feet"),
  25063. default: true
  25064. },
  25065. {
  25066. name: "Hitting the Town",
  25067. height: math.unit(37 + 8/12, "feet")
  25068. },
  25069. {
  25070. name: "Stomp in the Suburbs",
  25071. height: math.unit(964 + 9.728/12, "feet")
  25072. },
  25073. {
  25074. name: "Sit on the City",
  25075. height: math.unit(61747 + 10.592/12, "feet")
  25076. },
  25077. {
  25078. name: "Glomp the Globe",
  25079. height: math.unit(252919327 + 4.832/12, "feet")
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(6 + 4/12, "feet"),
  25088. weight: math.unit(320, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/balina-mahigan/front.svg",
  25092. extra: 447/428,
  25093. bottom: 18/466
  25094. }
  25095. },
  25096. back: {
  25097. height: math.unit(6 + 4/12, "feet"),
  25098. weight: math.unit(320, "lb"),
  25099. name: "Back",
  25100. image: {
  25101. source: "./media/characters/balina-mahigan/back.svg",
  25102. extra: 445/428,
  25103. bottom: 4.07/448
  25104. }
  25105. },
  25106. arm: {
  25107. height: math.unit(1.88, "feet"),
  25108. name: "Arm",
  25109. image: {
  25110. source: "./media/characters/balina-mahigan/arm.svg"
  25111. }
  25112. },
  25113. backPort: {
  25114. height: math.unit(0.685, "feet"),
  25115. name: "Back Port",
  25116. image: {
  25117. source: "./media/characters/balina-mahigan/back-port.svg"
  25118. }
  25119. },
  25120. hoofpaw: {
  25121. height: math.unit(1.41, "feet"),
  25122. name: "Hoofpaw",
  25123. image: {
  25124. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25125. }
  25126. },
  25127. leftHandBack: {
  25128. height: math.unit(0.938, "feet"),
  25129. name: "Left Hand (Back)",
  25130. image: {
  25131. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25132. }
  25133. },
  25134. leftHandFront: {
  25135. height: math.unit(0.938, "feet"),
  25136. name: "Left Hand (Front)",
  25137. image: {
  25138. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25139. }
  25140. },
  25141. rightHandBack: {
  25142. height: math.unit(0.95, "feet"),
  25143. name: "Right Hand (Back)",
  25144. image: {
  25145. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25146. }
  25147. },
  25148. rightHandFront: {
  25149. height: math.unit(0.95, "feet"),
  25150. name: "Right Hand (Front)",
  25151. image: {
  25152. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25153. }
  25154. },
  25155. },
  25156. [
  25157. {
  25158. name: "Normal",
  25159. height: math.unit(6 + 4/12, "feet"),
  25160. default: true
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(6, "feet"),
  25169. weight: math.unit(320, "lb"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/balina-mejeri/front.svg",
  25173. extra: 517/488,
  25174. bottom: 44.2/561
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(6 + 4/12, "feet")
  25182. },
  25183. {
  25184. name: "Business",
  25185. height: math.unit(155, "feet"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25192. {
  25193. kneeling: {
  25194. height: math.unit(6 + 4/12, "feet"),
  25195. weight: math.unit(300*20, "lb"),
  25196. name: "Kneeling",
  25197. image: {
  25198. source: "./media/characters/balbarian/kneeling.svg",
  25199. extra: 922/862,
  25200. bottom: 42.4/965
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Normal",
  25207. height: math.unit(6 + 4/12, "feet")
  25208. },
  25209. {
  25210. name: "Treasured",
  25211. height: math.unit(18 + 9/12, "feet"),
  25212. default: true
  25213. },
  25214. {
  25215. name: "Macro",
  25216. height: math.unit(900, "feet")
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25222. {
  25223. front: {
  25224. height: math.unit(6 + 4/12, "feet"),
  25225. weight: math.unit(325, "lb"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/balina-amarini/front.svg",
  25229. extra: 415/403,
  25230. bottom: 19/433.4
  25231. }
  25232. },
  25233. back: {
  25234. height: math.unit(6 + 4/12, "feet"),
  25235. weight: math.unit(325, "lb"),
  25236. name: "Back",
  25237. image: {
  25238. source: "./media/characters/balina-amarini/back.svg",
  25239. extra: 415/403,
  25240. bottom: 13.5/432
  25241. }
  25242. },
  25243. overdrive: {
  25244. height: math.unit(6 + 4/12, "feet"),
  25245. weight: math.unit(400, "lb"),
  25246. name: "Overdrive",
  25247. image: {
  25248. source: "./media/characters/balina-amarini/overdrive.svg",
  25249. extra: 269/259,
  25250. bottom: 12/282
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Boom",
  25257. height: math.unit(9 + 10/12, "feet"),
  25258. default: true
  25259. },
  25260. {
  25261. name: "Macro",
  25262. height: math.unit(280, "feet")
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25268. {
  25269. goddess: {
  25270. height: math.unit(600, "feet"),
  25271. weight: math.unit(2000000, "tons"),
  25272. name: "Goddess",
  25273. image: {
  25274. source: "./media/characters/lady-kubwa/goddess.svg",
  25275. extra: 1240.5/1223,
  25276. bottom: 22/1263
  25277. }
  25278. },
  25279. goddesser: {
  25280. height: math.unit(900, "feet"),
  25281. weight: math.unit(20000000, "lb"),
  25282. name: "Goddess-er",
  25283. image: {
  25284. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25285. extra: 899/888,
  25286. bottom: 12.6/912
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Macro",
  25293. height: math.unit(600, "feet"),
  25294. default: true
  25295. },
  25296. {
  25297. name: "Megamacro",
  25298. height: math.unit(250, "miles")
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(7 + 7/12, "feet"),
  25307. weight: math.unit(250, "lb"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/tala-grovehorn/front.svg",
  25311. extra: 2636/2525,
  25312. bottom: 147/2781
  25313. }
  25314. },
  25315. back: {
  25316. height: math.unit(7 + 7/12, "feet"),
  25317. weight: math.unit(250, "lb"),
  25318. name: "Back",
  25319. image: {
  25320. source: "./media/characters/tala-grovehorn/back.svg",
  25321. extra: 2635/2539,
  25322. bottom: 100/2732.8
  25323. }
  25324. },
  25325. mouth: {
  25326. height: math.unit(1.15, "feet"),
  25327. name: "Mouth",
  25328. image: {
  25329. source: "./media/characters/tala-grovehorn/mouth.svg"
  25330. }
  25331. },
  25332. dick: {
  25333. height: math.unit(2.36, "feet"),
  25334. name: "Dick",
  25335. image: {
  25336. source: "./media/characters/tala-grovehorn/dick.svg"
  25337. }
  25338. },
  25339. slit: {
  25340. height: math.unit(0.61, "feet"),
  25341. name: "Slit",
  25342. image: {
  25343. source: "./media/characters/tala-grovehorn/slit.svg"
  25344. }
  25345. },
  25346. },
  25347. [
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(7 + 7/12, "feet"),
  25355. weight: math.unit(225, "lb"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/epona/front.svg",
  25359. extra: 2445/2290,
  25360. bottom: 251/2696
  25361. }
  25362. },
  25363. back: {
  25364. height: math.unit(7 + 7/12, "feet"),
  25365. weight: math.unit(225, "lb"),
  25366. name: "Back",
  25367. image: {
  25368. source: "./media/characters/epona/back.svg",
  25369. extra: 2546/2408,
  25370. bottom: 44/2589
  25371. }
  25372. },
  25373. genitals: {
  25374. height: math.unit(1.5, "feet"),
  25375. name: "Genitals",
  25376. image: {
  25377. source: "./media/characters/epona/genitals.svg"
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(7 + 7/12, "feet")
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25390. {
  25391. front: {
  25392. height: math.unit(7, "feet"),
  25393. weight: math.unit(518, "lb"),
  25394. name: "Front",
  25395. image: {
  25396. source: "./media/characters/avia-bloodbourn/front.svg",
  25397. extra: 1466/1350,
  25398. bottom: 65/1527
  25399. }
  25400. },
  25401. },
  25402. [
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(9.35, "feet"),
  25410. weight: math.unit(600, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/amera/front.svg",
  25414. extra: 891/818,
  25415. bottom: 30/922.7
  25416. }
  25417. },
  25418. back: {
  25419. height: math.unit(9.35, "feet"),
  25420. weight: math.unit(600, "lb"),
  25421. name: "Back",
  25422. image: {
  25423. source: "./media/characters/amera/back.svg",
  25424. extra: 876/824,
  25425. bottom: 6.8/884
  25426. }
  25427. },
  25428. dick: {
  25429. height: math.unit(2.14, "feet"),
  25430. name: "Dick",
  25431. image: {
  25432. source: "./media/characters/amera/dick.svg"
  25433. }
  25434. },
  25435. },
  25436. [
  25437. {
  25438. name: "Normal",
  25439. height: math.unit(9.35, "feet"),
  25440. default: true
  25441. },
  25442. ]
  25443. ))
  25444. characterMakers.push(() => makeCharacter(
  25445. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25446. {
  25447. kneeling: {
  25448. height: math.unit(3 + 4/12, "feet"),
  25449. weight: math.unit(90, "lb"),
  25450. name: "Kneeling",
  25451. image: {
  25452. source: "./media/characters/rosewen/kneeling.svg",
  25453. extra: 1835/1571,
  25454. bottom: 27.7/1862
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(3 + 4/12, "feet"),
  25462. default: true
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25468. {
  25469. front: {
  25470. height: math.unit(5 + 10/12, "feet"),
  25471. weight: math.unit(200, "lb"),
  25472. name: "Front",
  25473. image: {
  25474. source: "./media/characters/sabah/front.svg",
  25475. extra: 849/763,
  25476. bottom: 33.9/881
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(5 + 10/12, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25490. {
  25491. front: {
  25492. height: math.unit(3 + 5/12, "feet"),
  25493. weight: math.unit(40, "kg"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/purple-flame/front.svg",
  25497. extra: 1577/1412,
  25498. bottom: 97/1694
  25499. }
  25500. },
  25501. frontDressed: {
  25502. height: math.unit(3 + 5/12, "feet"),
  25503. weight: math.unit(40, "kg"),
  25504. name: "Front (Dressed)",
  25505. image: {
  25506. source: "./media/characters/purple-flame/front-dressed.svg",
  25507. extra: 1577/1412,
  25508. bottom: 97/1694
  25509. }
  25510. },
  25511. headphones: {
  25512. height: math.unit(0.85, "feet"),
  25513. name: "Headphones",
  25514. image: {
  25515. source: "./media/characters/purple-flame/headphones.svg"
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Really Small",
  25522. height: math.unit(5, "cm")
  25523. },
  25524. {
  25525. name: "Micro",
  25526. height: math.unit(1 + 5/12, "feet")
  25527. },
  25528. {
  25529. name: "Normal",
  25530. height: math.unit(3 + 5/12, "feet"),
  25531. default: true
  25532. },
  25533. {
  25534. name: "Minimacro",
  25535. height: math.unit(125, "feet")
  25536. },
  25537. {
  25538. name: "Macro",
  25539. height: math.unit(0.5, "miles")
  25540. },
  25541. {
  25542. name: "Megamacro",
  25543. height: math.unit(50, "miles")
  25544. },
  25545. {
  25546. name: "Gigantic",
  25547. height: math.unit(750, "miles")
  25548. },
  25549. {
  25550. name: "Planetary",
  25551. height: math.unit(15000, "miles")
  25552. },
  25553. ]
  25554. ))
  25555. //characters
  25556. function makeCharacters() {
  25557. const results = [];
  25558. characterMakers.forEach(character => {
  25559. results.push(character());
  25560. });
  25561. return results;
  25562. }